/* ==========================================================================
   NC Page Hero Widget
   ========================================================================== */

.nc-page-hero {
    padding: 140px 60px 80px;
    background: #0A0A0A;
    text-align: center;
}

.nc-page-hero__inner {
    max-width: 800px;
    margin: 0 auto;
}

.nc-page-hero__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.nc-page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nc-page-hero__breadcrumb a:hover {
    color: #2563EB;
}

.nc-page-hero__label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 20px;
}

.nc-page-hero__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px;
}

.nc-page-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 36px;
}

.nc-page-hero__btn {
    display: inline-block;
    padding: 16px 40px;
    background: #2563EB;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nc-page-hero__btn:hover {
    background: #0EA5E9;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .nc-page-hero {
        padding: 110px 24px 60px;
    }

    .nc-page-hero__heading {
        font-size: clamp(28px, 6vw, 40px);
    }

    .nc-page-hero__desc {
        font-size: 16px;
    }

    .nc-page-hero__btn {
        padding: 14px 32px;
    }
}
