/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.hero {

    position: relative;

    min-height: 72vh;

    display: flex;
    align-items: center;

    padding:
        calc(var(--header-height) + 20px)
        24px
        48px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at top left,
            rgba(255,255,255,0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255,255,255,0.05),
            transparent 30%
        ),
        #080809;
}

.hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.55)
        );
}

.hero-content {

    position: relative;

    width: var(--container);

    margin: 0 auto;

    z-index: 2;
}

.hero-badge {

    display: inline-flex;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.12);

    color: var(--text-soft);

    font-size: 0.88rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.hero-title {

    margin:
        28px 0 24px;

    max-width: 900px;

    font-size:
        clamp(
            3.4rem,
            8vw,
            7rem
        );

    line-height: 0.95;

    letter-spacing: -0.06em;

    font-weight: 800;
}

.hero-description {

    max-width: 720px;

    font-size:
        clamp(
            1rem,
            2vw,
            1.3rem
        );

    line-height: 1.8;

    color: var(--text-soft);
}

/*
|--------------------------------------------------------------------------
| SERVICES
|--------------------------------------------------------------------------
*/

.services-section {

    padding:
        100px 0;
}

.section-header {

    width: var(--container);

    margin:
        0 auto 42px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 24px;
}

.section-kicker {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--text-soft);

    letter-spacing: 0.12em;

    text-transform: uppercase;

    font-size: 0.85rem;
}

.section-title {

    margin: 0;

    font-size:
        clamp(
            2rem,
            5vw,
            4rem
        );

    line-height: 1;

    letter-spacing: -0.05em;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .hero {

        min-height: 82vh;

        padding:
            calc(var(--header-height) + 20px)
            20px
            60px;
    }

    .hero-title {

        line-height: 1;
    }

    .services-section {

        padding:
            70px 0;
    }

    .section-header {

        margin-bottom: 28px;
    }
}


.service-card-badges {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.92);
}

.service-badge.verified {
    background: rgba(34,197,94,0.12);
    border-color: rgba(34,197,94,0.18);
}

.service-badge.featured {
    background: rgba(251,191,36,0.12);
    border-color: rgba(251,191,36,0.18);
}