﻿/* ══ SEO: Visually hidden text for screen readers / SEO ══ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

/* ══ Root improvements: smoother fonts ══ */
*, *::before, *::after {
    box-sizing: border-box
}

img {
    max-width: 100%;
    height: auto
}
/* ════════════════════════════════════════
                           IMAGE FADE SLIDER — HERO
                        ════════════════════════════════════════ */

/* ── Hero shell ── */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    margin-top: calc(-1*(var(--topbar-h) + var(--nav-h)));
    padding-top: calc(var(--topbar-h) + var(--nav-h) + 40px);
    padding-bottom: 44px;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

/* ── Slider track (stacks all slides) ── */
.hs-track {
    position: absolute;
    inset: 0
}

/* ── Individual slide ── */
.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    /* premium 1.5 s ease-in-out fade */
    transition: opacity 1.5s ease-in-out;
    will-change: opacity
}

.hs-slide--active {
    opacity: 1
}

/* ── WebP background image, full-cover, no distortion ── */
.hs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Ken-Burns zoom — subtle, premium feel */
    animation: hsKenBurns 7s ease-in-out both
}

/* Only play Ken-Burns on the active slide */
.hs-slide--active .hs-img {
    animation: hsKenBurns 7s ease-in-out both
}

.hs-slide:not(.hs-slide--active) .hs-img {
    animation: none;
    transform: scale(1.04)
}

@keyframes hsKenBurns {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.06)
    }
}

/* ── Dark overlay rgba(0,0,0,0.45) — text readability ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 105deg, rgba(6,8,14,.92) 0%, rgba(6,8,14,.72) 52%, rgba(6,8,14,.38) 100% );
    z-index: 1;
    pointer-events: none
}

/* ── Slide caption — bottom-right corner ── */
.hs-slide-caption {
    position: absolute;
    bottom: 110px;
    right: 36px;
    z-index: 3;
    background: rgba(10,12,18,.68);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(187,251,76,.3);
    border-radius: 14px;
    padding: 16px 20px;
    max-width: 260px;
    opacity: 0;
    transform: translateX(14px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none
}

.hs-slide--active .hs-slide-caption {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .7s
}

.hs-slide-tag {
    display: inline-block;
    background: var(--cta);
    color: var(--text);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 7px
}

.hs-slide-caption h4 {
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.28;
    margin-bottom: 5px
}

.hs-slide-caption p {
    font-size: .76rem;
    color: rgba(255,255,255,.6);
    line-height: 1.55
}

/* ── Arrow buttons ── */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background .22s, border-color .22s, transform .22s;
    outline: none
}

    .hs-arrow:hover {
        background: var(--cta);
        border-color: var(--cta);
        color: var(--text);
        transform: translateY(-50%) scale(1.08)
    }

.hs-arrow--prev {
    left: 22px
}

.hs-arrow--next {
    right: 22px
}

/* ── Dot navigation ── */
.hs-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
    align-items: center
}

.hs-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
    outline: none
}

.hs-dot--active {
    width: 30px;
    border-radius: 5px;
    background: var(--cta)
}

.hs-dot:hover:not(.hs-dot--active) {
    background: rgba(255,255,255,.6)
}

/* ── Progress bar (bottom edge) ── */
.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,.08);
    z-index: 4
}

.hs-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--cta);
    transition: width .12s linear
}

/* ── Particles ── */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--cta);
    opacity: 0;
    animation: particleFloat linear infinite
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    10% {
        opacity: .55
    }

    90% {
        opacity: .25
    }

    100% {
        transform: translateY(-30px) scale(1);
        opacity: 0
    }
}

/* ── Hero content (unchanged) ── */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(187,251,76,.12);
    border: 1.5px solid rgba(187,251,76,.35);
    color: var(--cta);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: badgePop .6s var(--ease) both
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: translateY(-12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-title {
    font-size: clamp(2.8rem,5.8vw,4.6rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeUp .7s .15s var(--ease) both
}

.hero-accent {
    color: var(--cta);
    display: inline
}

.hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,.72);
    line-height: 1.78;
    margin-bottom: 28px;
    max-width: 540px;
    animation: fadeUp .7s .25s var(--ease) both
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-checklist {
    list-style: none;
    margin-bottom: 38px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    animation: fadeUp .7s .35s var(--ease) both
}

    .hero-checklist li {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,.88);
        font-size: .95rem;
        font-weight: 500
    }

        .hero-checklist li svg {
            flex-shrink: 0;
            background: rgba(187,251,76,.15);
            border-radius: 50%;
            padding: 2px
        }

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    align-items: center;
    animation: fadeUp .7s .45s var(--ease) both
}

.btn-cta-hero {
    padding: 15px 36px;
    border-radius: 50px;
    font-size: .92rem;
    letter-spacing: .05em;
    box-shadow: 0 4px 22px rgba(187,251,76,.45);
    gap: 10px
}

    .btn-cta-hero:hover {
        box-shadow: 0 6px 32px rgba(187,251,76,.6);
        transform: translateY(-2px)
    }

.btn-ghost-hero {
    padding: 15px 32px;
    border-radius: 50px;
    font-size: .92rem;
    border: 1.5px solid rgba(255,255,255,.5);
    color: #fff;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s var(--ease)
}

    .btn-ghost-hero:hover {
        background: rgba(255,255,255,.16);
        border-color: rgba(255,255,255,.8);
        color: #fff;
        transform: translateY(-2px)
    }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    animation: fadeUp .7s .55s var(--ease) both
}

.hero-stat {
    padding: 0 32px 0 0;
    display: flex;
    flex-direction: column
}

/* NOTE: .hs-num is reused for counter spans — keep it */
.hs-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    display: inline
}

.hs-suf {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1
}

.hs-lbl {
    display: block;
    font-size: .72rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.12);
    margin: 0 32px 0 0;
    flex-shrink: 0
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.hero-scroll-dot {
    width: 5px;
    height: 22px;
    background: var(--cta);
    border-radius: 3px;
    animation: scrollBob 1.8s ease-in-out infinite
}

@keyframes scrollBob {
    0%, 100% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        transform: translateY(9px);
        opacity: .35
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hs-slide-caption {
        display: none
    }

    .hs-arrow {
        width: 40px;
        height: 40px
    }

    .hs-arrow--prev {
        left: 12px
    }

    .hs-arrow--next {
        right: 12px
    }
}

@media (max-width: 480px) {
    .hs-arrow {
        display: none
    }
}

/* ── TRUSTED STRIP ── */
.trusted-strip {
    background: #fff;
    border-bottom: 1.5px solid var(--card-border);
    padding: 16px 0
}

    .trusted-strip .container {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap
    }

.trusted-label {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--muted);
    text-transform: uppercase;
    white-space: nowrap
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.tl-item {
    font-size: .8rem;
    font-weight: 700;
    color: var(--muted);
    opacity: .65
}

.tl-sep {
    color: var(--card-border)
}

/* ── SECTIONS BASE ── */
.section {
    padding: 96px 0
}

.bg-white {
    background: #fff
}

.bg-light {
    background: var(--bg)
}

.section-tag-pill {
    display: inline-block;
    background: var(--cta);
    color: var(--text);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 5px;
    margin-bottom: 16px
}

.section-h2 {
    font-size: clamp(1.65rem,3.5vw,2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--text);
    margin-bottom: 18px
}

.section-p {
    font-size: .98rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 28px
}

.section-header-center {
    text-align: center;
    margin-bottom: 52px
}

.section-cta {
    text-align: center;
    margin-top: 44px
}

/* ── OFFER CARDS ── */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: center
}

.offer-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

.offer-card {
    background: var(--bg);
    border: 1.5px solid var(--card-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all .25s var(--ease)
}

    .offer-card:hover {
        transform: translateX(6px);
        border-color: var(--cta);
        box-shadow: 0 8px 32px rgba(0,0,0,.07)
    }

.oc-icon {
    width: 56px;
    height: 56px;
    background: rgba(187,251,76,.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.offer-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px
}

.offer-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65
}

.oc-line {
    width: 32px;
    height: 3px;
    background: var(--cta);
    border-radius: 2px;
    margin-top: 12px
}

/* ── ABOUT SPLIT ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.as-photo-wrap {
    position: relative
}

.as-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px
}

.as-badge {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 115px;
    height: 115px;
    background: var(--cta);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: 0 8px 32px rgba(187,251,76,.45)
}

.as-badge-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1
}

.as-badge-lbl {
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-align: center;
    line-height: 1.4;
    margin-top: 3px
}

.as-badge-2 {
    position: absolute;
    bottom: 24px;
    left: -16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: var(--shadow)
}

.as-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px
}

    .as-check-list li {
        display: flex;
        align-items: center;
        gap: 11px;
        font-size: .95rem;
        font-weight: 600;
        color: var(--text)
    }

/* ── PORTFOLIO (NEW) ── */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.pf-btn {
    padding: 8px 22px;
    border: 1.5px solid var(--card-border);
    border-radius: 100px;
    background: transparent;
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s var(--ease)
}

    .pf-btn.active, .pf-btn:hover {
        background: var(--cta);
        border-color: var(--cta);
        color: var(--text)
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden
}

.portfolio-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px
}

    .portfolio-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s var(--ease)
    }

.portfolio-item:hover .portfolio-img-wrap img {
    transform: scale(1.06)
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,12,18,.92) 50%, rgba(10,12,18,.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity .3s var(--ease)
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1
}

.port-cat-lbl {
    display: inline-block;
    background: var(--cta);
    color: var(--text);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    width: fit-content
}

.portfolio-overlay h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px
}

.portfolio-overlay p {
    font-size: .82rem;
    color: rgba(255,255,255,.65)
}

/* ── FEATURED SERVICES ── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.feat-card {
    background: var(--bg);
    border: 1.5px solid var(--card-border);
    border-radius: 16px;
    padding: 28px;
    transition: all .25s var(--ease)
}

    .feat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 44px rgba(0,0,0,.09);
        border-color: var(--cta)
    }

.feat-cat {
    display: inline-block;
    background: rgba(187,251,76,.2);
    color: #3d6b00;
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 14px
}

.feat-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px
}

.feat-desc {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px
}

.feat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1.5px solid var(--card-border)
}

.feat-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text)
}

.feat-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 15px;
    background: var(--cta);
    color: var(--text);
    font-weight: 700;
    font-size: .82rem;
    border-radius: 7px;
    transition: background .2s;
    text-decoration: none
}

    .feat-btn:hover {
        background: var(--cta-hover);
        color: var(--text)
    }

/* ── CTA BANNER ── */
.cta-banner {
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden
}

.cta-banner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cta-banner-body {
    background: var(--cta);
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px
}

    .cta-banner-body h2 {
        font-size: clamp(1.3rem,2.5vw,2rem);
        font-weight: 800;
        color: var(--text);
        line-height: 1.3
    }

    .cta-banner-body p {
        font-size: .95rem;
        color: rgba(24,24,24,.65)
    }

.cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    background: var(--text);
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .05em;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none
}

    .cta-banner-btn:hover {
        background: #333;
        color: #fff
    }

.cta-phone-wrap {
    display: flex;
    align-items: center;
    gap: 12px
}

.cta-phone-icon {
    width: 44px;
    height: 44px;
    background: rgba(24,24,24,.12);
    border: 2px solid rgba(24,24,24,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cta-phone-label {
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: rgba(24,24,24,.6)
}

.cta-phone-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text)
}

/* ── STEPS (UPGRADED) ── */
.steps-row {
    display: flex;
    align-items: center
}

.step-card {
    flex: 1;
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden
}

    .step-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(187,251,76,.06) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s
    }

    .step-card:hover::before {
        opacity: 1
    }

    .step-card:hover {
        border-color: var(--cta);
        box-shadow: 0 12px 40px rgba(0,0,0,.08);
        transform: translateY(-6px)
    }

.step-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(187,251,76,.12);
    border: 1.5px solid rgba(187,251,76,.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all .25s var(--ease)
}

.step-card:hover .step-icon-wrap {
    background: rgba(187,251,76,.25);
    border-color: var(--cta)
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--cta) 0%, #8fd400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
    z-index: 1
}

@supports not (-webkit-background-clip: text) {
    .step-num {
        color: var(--cta);
        background: none
    }
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px
}

.step-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50px;
    flex-shrink: 0
}

.step-connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--card-border), var(--cta), var(--card-border));
    position: relative
}

.step-connector-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--cta);
    border-radius: 50%;
    animation: dotSlide 2s ease-in-out infinite
}

@keyframes dotSlide {
    0%, 100% {
        left: 0
    }

    50% {
        left: calc(100% - 10px)
    }
}

/* ── PROMO SPLIT ── */
.promo-split {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.promo-half {
    position: relative;
    overflow: hidden;
    height: 380px
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease)
}

.promo-half:hover .promo-img {
    transform: scale(1.04)
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(15,17,23,.85) 40%,rgba(15,17,23,.2));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 36px
}

    .promo-overlay h3 {
        font-size: 1.6rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 18px;
        line-height: 1.2
    }

.promo-btn {
    display: inline-flex;
    align-items: center;
    background: var(--cta);
    color: var(--text);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .06em;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s
}

    .promo-btn:hover {
        background: var(--cta-hover);
        color: var(--text)
    }

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.testi-card {
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all .25s var(--ease)
}

    .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 40px rgba(0,0,0,.09);
        border-color: var(--cta)
    }

.testi-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px
}

.testi-text {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.78;
    flex: 1;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--card-border)
}

.testi-avatar {
    width: 42px;
    height: 42px;
    background: var(--cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    color: var(--text);
    flex-shrink: 0
}

.testi-author strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--text)
}

.testi-author span {
    display: block;
    font-size: .76rem;
    color: var(--muted);
    margin-top: 2px
}

/* ── FAQ (NEW) ── */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.faq-item {
    border-bottom: 1.5px solid var(--card-border)
}

    .faq-item:first-child {
        border-top: 1.5px solid var(--card-border)
    }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: .96rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: color .2s
}

    .faq-q:hover {
        color: var(--link)
    }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(187,251,76,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease)
}

.faq-item.active .faq-icon {
    background: var(--cta);
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s
}

.faq-item.active .faq-a {
    max-height: 200px;
    padding-bottom: 18px
}

.faq-a p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75
}

/* ── LIVE CHAT BUTTON (NEW) ── */
.live-chat-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 58px;
    height: 58px;
    background: var(--cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 6px 24px rgba(187,251,76,.5);
    transition: all .25s var(--ease);
    color: var(--text)
}

    .live-chat-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 32px rgba(187,251,76,.7)
    }

.lc-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--cta);
    opacity: .4;
    animation: lcPulse 2s ease-out infinite
}

@keyframes lcPulse {
    0% {
        transform: scale(1);
        opacity: .4
    }

    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

.lc-tooltip {
    position: absolute;
    left: 70px;
    background: var(--text);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s
}

    .lc-tooltip::after {
        content: '';
        position: absolute;
        left: -6px;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-left: none;
        border-left-color: var(--text)
    }

.live-chat-btn:hover .lc-tooltip {
    opacity: 1
}

/* ── CHAT POPUP (NEW) ── */
.chat-popup {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    z-index: 9999;
    overflow: hidden;
    display: none;
    animation: chatPop .3s var(--ease)
}

    .chat-popup.open {
        display: block
    }

@keyframes chatPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.chat-popup-header {
    background: var(--cta);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px
}

.chat-avatar-wrap {
    position: relative;
    flex-shrink: 0
}

.chat-av {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    color: var(--text)
}

.chat-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--cta)
}

.chat-popup-header strong {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    color: var(--text)
}

.chat-status-txt {
    font-size: .72rem;
    color: rgba(24,24,24,.65)
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text);
    opacity: .6;
    line-height: 1;
    padding: 2px
}

    .chat-close:hover {
        opacity: 1
    }

.chat-body {
    padding: 20px 18px
}

.chat-bubble {
    background: var(--bg);
    border: 1.5px solid var(--card-border);
    border-radius: 12px 12px 12px 2px;
    padding: 14px 16px;
    font-size: .88rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 16px
}

.chat-quick-btns {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.chat-qbtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1.5px solid var(--card-border);
    border-radius: 10px;
    font-size: .84rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    background: var(--bg);
    transition: all .2s
}

    .chat-qbtn:hover {
        border-color: var(--cta);
        background: rgba(187,251,76,.08);
        color: var(--text)
    }

.whatsapp-btn {
    border-color: #22c55e;
    color: #166534;
    background: #f0fdf4
}

    .whatsapp-btn:hover {
        background: #22c55e;
        color: #fff;
        border-color: #22c55e
    }

/* ── BUTTONS ── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: var(--cta);
    color: var(--text);
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .04em;
    border-radius: 50px;
    cursor: pointer;
    transition: all .25s var(--ease);
    text-decoration: none;
    box-shadow: 0 3px 14px rgba(187,251,76,.3)
}

    .btn-cta:hover {
        background: var(--cta-hover);
        color: var(--text);
        box-shadow: 0 5px 22px rgba(187,251,76,.5);
        transform: translateY(-2px)
    }

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:1024px) {
    .testi-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .feat-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width:768px) {
    .steps-row {
        flex-direction: column
    }

    .step-connector {
        width: 100%;
        height: 40px;
        transform: rotate(90deg)
    }

    .portfolio-grid {
        grid-template-columns: 1fr
    }

    .cta-banner {
        grid-template-columns: 1fr
    }

    .cta-banner-photo {
        display: none
    }

    .promo-split {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .testi-grid {
        grid-template-columns: 1fr
    }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: 1fr
    }

    .chat-popup {
        width: calc(100vw - 20px);
        right: 10px
    }
}

/* ══ CEO FEATURED CARD ══ */
.ceo-featured-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: center;
    background: linear-gradient(135deg, #f8fff0 0%, #f0fde4 50%, #fafff5 100%);
    border: 2px solid #bbfb4c;
    border-radius: 28px;
    padding: 52px 56px;
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(187,251,76,.18), 0 2px 16px rgba(0,0,0,.06)
}

    .ceo-featured-card::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(187,251,76,.22) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0
    }

    .ceo-featured-card::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 320px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(187,251,76,.12) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0
    }

.ceo-img-col {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1
}

.ceo-img-wrap {
    width: 300px;
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #bbfb4c;
    box-shadow: 0 16px 48px rgba(187,251,76,.35), 0 4px 20px rgba(0,0,0,.12)
}

    .ceo-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
        transition: transform .5s ease
    }

.ceo-featured-card:hover .ceo-img-wrap img {
    transform: scale(1.04)
}

.ceo-content-col {
    position: relative;
    z-index: 1
}

.ceo-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.ceo-exp-badge {
    background: rgba(187,251,76,.25);
    color: #2d5a00;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .07em;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1.5px solid rgba(187,251,76,.5);
    text-transform: uppercase
}

.ceo-name {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.03em;
    margin-bottom: 6px;
    line-height: 1.08
}

.ceo-title-line {
    font-size: .88rem;
    font-weight: 700;
    color: #3d7a00;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.ceo-bio {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 460px
}

.ceo-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px 24px;
    background: rgba(255,255,255,.7);
    border: 1.5px solid rgba(187,251,76,.4);
    border-radius: 16px;
    margin-bottom: 28px;
    backdrop-filter: blur(4px)
}

.ceo-stat-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center
}

    .ceo-stat-item strong {
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--text);
        line-height: 1
    }

    .ceo-stat-item span {
        font-size: .65rem;
        color: var(--muted);
        font-weight: 700;
        margin-top: 4px;
        text-transform: uppercase;
        letter-spacing: .08em
    }

.ceo-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(187,251,76,.5);
    flex-shrink: 0
}

.ceo-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.ceo-social-lbl {
    font-size: .74rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em
}

.ceo-social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.ceo-si {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1.5px solid var(--card-border);
    transition: all .22s ease;
    color: var(--muted);
    background: rgba(255,255,255,.8)
}

    .ceo-si:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,.14)
    }

.ceo-si--fb {
    background: #f0f2ff;
    border-color: #c7cdff;
    color: #4267B2
}

    .ceo-si--fb:hover {
        background: #1877f2;
        color: #fff;
        border-color: #1877f2
    }

.ceo-si--ig {
    background: #fff0f6;
    border-color: #ffc8e4;
    color: #c13584
}

    .ceo-si--ig:hover {
        background: #e1306c;
        color: #fff;
        border-color: #e1306c
    }

.ceo-si--li {
    background: #edf4ff;
    border-color: #c2d9ff;
    color: #0077b5
}

    .ceo-si--li:hover {
        background: #0077b5;
        color: #fff;
        border-color: #0077b5
    }

.ceo-si--fv {
    background: #f0fff5;
    border-color: #b2f0c8;
    color: #1dbf73
}

    .ceo-si--fv:hover {
        background: #1dbf73;
        color: #fff;
        border-color: #1dbf73
    }

.ceo-si--uw {
    background: #f5fff0;
    border-color: #c8f0b2;
    color: #6fda44
}

    .ceo-si--uw:hover {
        background: #6fda44;
        color: #fff;
        border-color: #6fda44
    }

.ceo-si--tw {
    background: #f0f8ff;
    border-color: #c2e0ff;
    color: #1da1f2
}

    .ceo-si--tw:hover {
        background: #1da1f2;
        color: #fff;
        border-color: #1da1f2
    }

@media (max-width: 960px) {
    .ceo-featured-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 20px;
        text-align: center;
        margin-bottom: 44px;
        border-radius: 20px
    }

    .ceo-img-col {
        justify-content: center
    }

    .ceo-img-wrap {
        width: 200px;
        height: 240px;
        margin: 0 auto;
        border-radius: 16px
    }

    .ceo-badge-row {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 8px
    }

    .ceo-name {
        font-size: 1.6rem;
        margin-bottom: 4px
    }

    .ceo-title-line {
        font-size: .78rem;
        letter-spacing: .05em;
        word-break: break-word;
        white-space: normal
    }

    .ceo-bio {
        font-size: .9rem;
        margin: 0 auto 20px;
        max-width: 100%;
        padding: 0 4px
    }

    .ceo-stats-row {
        justify-content: center;
        padding: 14px 12px;
        border-radius: 12px;
        width: 100%
    }

    .ceo-stat-item strong {
        font-size: 1.25rem
    }

    .ceo-stat-item span {
        font-size: .6rem
    }

    .ceo-stat-divider {
        height: 30px;
        margin: 0
    }

    .ceo-social-row {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px
    }

    .ceo-social-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        max-width: 280px
    }

    .ceo-si {
        width: 44px;
        height: 44px;
        border-radius: 12px
    }
}

@media (max-width: 480px) {
    .ceo-featured-card {
        padding: 22px 16px;
        margin: 0 0 36px 0
    }

    .ceo-img-wrap {
        width: 170px;
        height: 205px
    }

    .ceo-name {
        font-size: 1.45rem
    }

    .ceo-stats-row {
        padding: 12px 8px
    }

    .ceo-stat-item strong {
        font-size: 1.1rem
    }

    .ceo-social-icons {
        max-width: 260px
    }

    .ceo-si {
        width: 42px;
        height: 42px
    }
}

/* ── TEAM GRID ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.team-grid-wrap {
    display: contents
}

@media (min-width: 1025px) {
    .team-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 24px
    }

    .team-card:nth-child(1) {
        grid-column: 1 / span 2
    }

    .team-card:nth-child(2) {
        grid-column: 3 / span 2
    }

    .team-card:nth-child(3) {
        grid-column: 5 / span 2
    }

    .team-card:nth-child(4) {
        grid-column: 2 / span 2
    }

    .team-card:nth-child(5) {
        grid-column: 4 / span 2
    }
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr
    }

    .team-img-wrap {
        height: 220px
    }
}

/* ── TEAM CARD ── */
.team-card {
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .25s ease
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(0,0,0,.1);
        border-color: var(--cta)
    }

.team-img-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #e8eaed
}

    .team-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        transition: transform .5s ease
    }

.team-card:hover .team-img-wrap img {
    transform: scale(1.05)
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(10,12,18,.88), transparent);
    display: flex;
    gap: 8px;
    transform: translateY(100%);
    transition: transform .3s ease
}

.team-card:hover .team-social {
    transform: translateY(0)
}

.ts-link {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
    backdrop-filter: blur(4px)
}

    .ts-link:hover {
        background: var(--cta);
        color: var(--text);
        border-color: var(--cta)
    }

.team-info {
    padding: 22px
}

    .team-info h3 {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 5px
    }

.team-role {
    display: inline-block;
    background: rgba(187,251,76,.2);
    color: #2d5a00;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-transform: uppercase
}

.team-info p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65
}

@media (max-width: 1024px) {
    .team-img-wrap {
        height: 240px
    }
}

@media (max-width: 768px) {
    .team-img-wrap {
        height: 200px
    }

    .team-card:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--card-border)
    }

        .team-card:hover .team-social {
            transform: translateY(100%)
        }

        .team-card:hover .team-img-wrap img {
            transform: none
        }

    .team-info {
        padding: 14px 16px
    }

        .team-info h3 {
            font-size: .95rem
        }

        .team-info p {
            font-size: .8rem
        }
}

@media (max-width: 480px) {
    .team-img-wrap {
        height: 220px
    }

    .team-info {
        padding: 12px 14px
    }
}

@media (max-width: 380px) {
    .team-img-wrap {
        height: 190px
    }
}


/* ══════════════════════════════════════════════════════════════════
   HERO HEIGHT & MOBILE PERFORMANCE FIX  ← NEW SECTION
   ══════════════════════════════════════════════════════════════════ */

/* ── TABLET ── */
@media (max-width: 1024px) {
    .hero {
        min-height: 70vh;
    }

    .section {
        padding: 72px 0;
    }
}

/* ── MOBILE: Auto height — no more full screen hero ── */
@media (max-width: 768px) {

    .hero {
        min-height: 0 !important;
        height: auto !important;
        padding-top: calc(var(--topbar-h) + var(--nav-h) + 18px) !important;
        padding-bottom: 28px !important;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    /* Kill Ken-Burns on mobile — #1 LCP killer */
    .hs-img {
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
        object-position: center top;
    }

    /* Hide inactive slides — saves memory */
    .hs-slide:not(.hs-slide--active) {
        display: none !important;
    }

    /* Kill particles — GPU saver */
    .hero-particles {
        display: none !important;
    }

    /* Kill scroll indicator */
    .hero-scroll {
        display: none !important;
    }

    /* Remove backdrop-filter from arrows */
    .hs-arrow {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Faster fade on mobile */
    .hs-slide {
        will-change: auto !important;
        transition: opacity 0.35s ease !important;
    }

    /* Title */
    .hero-title {
        font-size: clamp(1.75rem, 7.5vw, 2.6rem) !important;
        margin-bottom: 12px !important;
        line-height: 1.1 !important;
    }

    /* Subtitle */
    .hero-sub {
        font-size: .88rem !important;
        margin-bottom: 14px !important;
    }

    /* Checklist */
    .hero-checklist {
        gap: 8px;
        margin-bottom: 20px;
    }

        .hero-checklist li {
            font-size: .84rem;
        }

    /* Buttons: full width stack */
    .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-bottom: 22px !important;
    }

    .btn-cta-hero,
    .btn-ghost-hero {
        width: 100% !important;
        justify-content: center !important;
        padding: 13px 20px !important;
        font-size: .86rem !important;
    }

    /* Stats */
    .hero-stats {
        padding-top: 16px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 0 !important;
    }

    .hero-stat {
        padding: 0 12px 0 0 !important;
        flex-shrink: 0 !important;
    }

    .hs-num, .hs-suf {
        font-size: 1.25rem !important;
    }

    .hs-lbl {
        font-size: .6rem !important;
    }

    .hero-stat-divider {
        margin: 0 12px 0 0 !important;
        height: 26px !important;
    }

    .hero-badge {
        margin-bottom: 16px;
        font-size: .7rem;
    }

    /* Steps connector: vertical */
    .step-connector {
        width: 2px;
        height: 40px;
        transform: none;
        margin: 0 auto;
    }

    .step-connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--card-border), var(--cta), var(--card-border));
    }

    .step-connector-dot {
        left: 50%;
        transform: translateX(-50%);
        animation: dotSlideV 2s ease-in-out infinite;
    }

    /* Promo */
    .promo-half {
        height: 240px;
    }

    .promo-overlay h3 {
        font-size: 1.2rem;
    }

    /* CTA Banner */
    .cta-banner-body {
        padding: 36px 24px;
    }

    .cta-banner-actions {
        flex-direction: column;
        gap: 16px;
    }

    /* About */
    .as-photo {
        height: 280px;
    }

    /* Section padding */
    .section {
        padding: 56px 0;
    }

    /* Chat popup */
    .chat-popup {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 90px;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {

    .hero {
        padding-top: calc(var(--topbar-h) + var(--nav-h) + 12px) !important;
        padding-bottom: 20px !important;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 1.9rem) !important;
    }

    .hero-sub {
        font-size: .82rem !important;
    }

    .hero-badge {
        font-size: .62rem !important;
        padding: 5px 12px !important;
        margin-bottom: 14px !important;
    }

    .hero-checklist li {
        font-size: .80rem !important;
    }

    .hs-num, .hs-suf {
        font-size: 1.1rem !important;
    }

    .hs-arrow {
        display: none !important;
    }

    .promo-half {
        height: 200px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 380px ── */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.45rem !important;
    }

    .hs-num, .hs-suf {
        font-size: 1rem !important;
    }

    .ceo-featured-card {
        padding: 18px 12px;
    }

    .ceo-img-wrap {
        width: 150px;
        height: 180px;
    }

    .ceo-name {
        font-size: 1.3rem;
    }

    .ceo-stats-row {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .ceo-stat-divider {
        display: none;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .hs-img,
    .particle,
    .lc-pulse,
    .hero-scroll-dot,
    .step-connector-dot {
        animation: none !important;
    }

    .hs-slide {
        transition: opacity 0.2s ease !important;
    }
}

/* ── Vertical step connector animation ── */
@keyframes dotSlideV {
    0%, 100% {
        top: 0;
    }

    50% {
        top: calc(100% - 10px);
    }
}
