/* ── Production Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.6);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#cf-submit-btn.loading {
    background-color: #ca99ff;
    pointer-events: none;
}

    #cf-submit-btn.loading .btn-text {
        visibility: hidden;
    }

    #cf-submit-btn.loading .btn-loader {
        display: block;
    }


html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* ═══════════════════════════════════════════
   DESIGN SYSTEM
   Brand: Briea Corporate Health
   Palette: Microsoft Blue + Deep Navy + White
   Typography: Cormorant Garamond (display) + 
               Plus Jakarta Sans (UI) + 
               Nunito Sans (body) + 
               Barlow Condensed (stats)
═══════════════════════════════════════════ */
:root {
    /* Colors */
    --c-brand: #0078D4;
    --c-brand-deep: #005A9E;
    --c-brand-dark: #003A70;
    --c-navy: #001529;
    --c-cyan: #00C8E8;
    --c-white: #FFFFFF;
    --c-surface: #F5F8FC;
    --c-surface2: #EBF3FB;
    --c-ink: #0D1B2A;
    --c-ink2: #2C3E50;
    --c-muted: #5A7184;
    --c-border: rgba(0,120,212,0.10);
    --c-border2: rgba(0,120,212,0.18);
    /* Shadows */
    --sh-sm: 0 1px 4px rgba(0,21,41,0.06), 0 2px 8px rgba(0,21,41,0.04);
    --sh-md: 0 4px 16px rgba(0,21,41,0.08), 0 8px 32px rgba(0,21,41,0.05);
    --sh-lg: 0 8px 32px rgba(0,21,41,0.10), 0 24px 64px rgba(0,21,41,0.08);
    --sh-blue: 0 8px 32px rgba(0,120,212,0.22);
    /* Radii */
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    /* Type families */
    --f-display: 'Cormorant Garamond', 'Georgia', serif;
    --f-ui: 'Plus Jakarta Sans', sans-serif;
    --f-body: 'Nunito Sans', 'Segoe UI', sans-serif;
    --f-stat: 'Barlow Condensed', sans-serif;
    /* Type scale */
    --t-xs: 11px;
    --t-sm: 13px;
    --t-base: 15px;
    --t-md: 18px;
    --t-lg: 24px;
    --t-xl: 32px;
    --t-2xl: clamp(28px, 3.5vw, 44px);
    --t-3xl: clamp(36px, 4.5vw, 60px);
    /* Nav */
    --nav-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-body);
    font-size: var(--t-base);
    line-height: 1.7;
    color: var(--c-ink2);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Reveal animation ── */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

    .rv.in {
        opacity: 1;
        transform: none;
    }

.d1 {
    transition-delay: 0.07s;
}

.d2 {
    transition-delay: 0.14s;
}

.d3 {
    transition-delay: 0.21s;
}

.d4 {
    transition-delay: 0.28s;
}

.d5 {
    transition-delay: 0.35s;
}

/* ── Layout ── */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media(max-width:640px) {
    .wrap {
        padding: 0 20px;
    }
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--nav-h);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--c-border);
    transition: box-shadow 0.3s ease;
}

    .nav.scrolled {
        box-shadow: 0 2px 20px rgba(0,21,41,0.07);
    }

.nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 58px;
    height: 50px;   
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: var(--f-ui);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--c-ink);
}

    .nav-logo-text span {
        background: linear-gradient(130deg, var(--c-brand) 30%, var(--c-cyan) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

    .nav-links a {
        font-family: var(--f-ui);
        font-size: var(--t-xs);
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--c-muted);
        transition: color 0.2s ease;
        white-space: nowrap;
        position: relative;
        padding-bottom: 2px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 1.5px;
            background: var(--c-brand);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
        }

        .nav-links a:hover {
            color: var(--c-brand);
        }

            .nav-links a:hover::after {
                transform: scaleX(1);
            }
/* Nav CTAs */
.nav-ctas {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--f-ui);
    font-size: var(--t-xs);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: all 0.24s ease;
    white-space: nowrap;
}

    .btn svg {
        width: 13px;
        height: 13px;
        transition: transform 0.2s ease;
    }

    .btn:hover svg {
        transform: translateX(3px);
    }

.btn-ghost {
    background: transparent;
    color: var(--c-brand);
    border: 1.5px solid var(--c-border2);
}

    .btn-ghost:hover {
        background: var(--c-surface2);
        border-color: var(--c-brand);
    }

.btn-fill {
    background: var(--c-brand);
    color: #fff;
    box-shadow: var(--sh-blue);
}

    .btn-fill:hover {
        background: var(--c-brand-deep);
        transform: translateY(-1px);
        box-shadow: 0 10px 28px rgba(0,120,212,0.3);
    }

.btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: all 0.28s ease;
    white-space: nowrap;
}

    .btn-lg svg {
        width: 14px;
        height: 14px;
        transition: transform 0.2s ease;
    }

    .btn-lg:hover svg {
        transform: translateX(3px);
    }

.btn-lg-fill {
    background: var(--c-brand);
    color: #fff;
    box-shadow: 0 6px 24px rgba(0,120,212,0.28);
}

    .btn-lg-fill:hover {
        background: var(--c-brand-deep);
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(0,120,212,0.35);
    }

.btn-lg-outline {
    background: transparent;
    color: var(--c-brand);
    border: 2px solid rgba(0,120,212,0.22);
}

    .btn-lg-outline:hover {
        background: var(--c-surface2);
        border-color: var(--c-brand);
    }

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--c-ink);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobile menu */
.mob-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 8px 32px rgba(0,21,41,0.12);
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
}

    .mob-menu.open {
        display: flex;
    }

    .mob-menu a {
        font-family: var(--f-ui);
        font-size: 16px;
        font-weight: 600;
        color: var(--c-ink2);
        padding: 14px 4px;
        border-bottom: 1px solid var(--c-border);
        transition: color 0.2s;
        display: block;
    }

        .mob-menu a:last-of-type {
            border-bottom: none;
        }

        .mob-menu a:hover {
            color: var(--c-brand);
        }

    .mob-menu .mob-cta {
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--c-brand);
        color: #fff;
        font-family: var(--f-ui);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        padding: 14px 24px;
        border-radius: 100px;
        border: none;
        width: 100%;
        text-decoration: none;
        cursor: pointer;
    }

        .mob-menu .mob-cta:hover {
            background: var(--c-brand-deep);
            color: #fff;
        }

/* ═══════════════════════════════════════
   SECTION HEADERS - reusable
═══════════════════════════════════════ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-ui);
    font-size: var(--t-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-brand);
    margin-bottom: 14px;
}

    .eyebrow::before {
        /*content: '';*/
        width: 24px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(90deg, var(--c-brand), var(--c-cyan));
    }

.eyebrow-center {
    justify-content: center;
}

    .eyebrow-center::before, .eyebrow-center::after {
        /*content: '';*/
        width: 24px;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--c-brand), var(--c-cyan));
    }

    .eyebrow-center::before {
        background: linear-gradient(270deg, var(--c-brand), var(--c-cyan));
    }

/* Section h2 */
.sec-h {
    font-family: var(--f-display);
    font-size: var(--t-2xl);
    font-weight: 600; /* Cormorant reads better at 600 than 700 */
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--c-ink);
    margin-bottom: 14px;
}

    .sec-h em {
        font-style: italic;
        color: var(--c-brand);
        font-weight: 400;
    }
/* Body lead */
.sec-lead {
    font-family: var(--f-body);
    font-size: var(--t-md);
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.75;
    max-width: 540px;
}

.sec {
    padding: 104px 0;
}

.sec-alt {
    background: var(--c-surface);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    padding-top: calc(var(--nav-h) + 72px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(152deg, #EEF5FD 0%, #FFFFFF 42%, #EBF6FB 100%);
}
/* Subtle grid */
.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(0,120,212,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,120,212,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
}
/* Glow orbs */
.hero-glow1 {
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,232,0.09) 0%, transparent 65%);
    top: -220px;
    right: -180px;
    pointer-events: none;
    animation: floatY 9s ease-in-out infinite;
}

.hero-glow2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,120,212,0.07) 0%, transparent 65%);
    bottom: -140px;
    left: -120px;
    pointer-events: none;
    animation: floatY 12s ease-in-out infinite reverse;
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-24px);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
/* Hero left */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 14px 6px 6px;
    background: var(--c-white);
    border: 1px solid var(--c-border2);
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: var(--sh-sm);
}

.hero-badge-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--c-brand), var(--c-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2.8s ease-in-out infinite;
}

    .hero-badge-dot svg {
        width: 10px;
        height: 10px;
        fill: #fff;
    }

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0,120,212,0.35);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0,120,212,0);
    }
}

.hero-badge-text {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-brand);
}

/* HERO H1 - Cormorant Garamond at optical size */
.hero-h1 {
    font-family: var(--f-display);
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--c-ink);
    margin-bottom: 22px;
}

    .hero-h1 em {
        font-style: italic;
        font-weight: 400;
        background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-cyan) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-family: var(--f-body);
    font-size: 17px;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.78;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
/* Trust bar */
.trust-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust-ico svg {
        width: 14px;
        height: 14px;
        stroke: var(--c-brand);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

.trust-val {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.2;
}

.trust-sub {
    font-family: var(--f-body);
    font-size: 11px;
    color: var(--c-muted);
    margin-top: 1px;
}

.trust-sep {
    width: 1px;
    height: 28px;
    background: var(--c-border);
}

/* Hero right - dashboard */
.hero-visual {
    position: relative;
}

.hero-card {
    background: #fff;
    border-radius: var(--r-xl);
    border: 1px solid rgba(0,120,212,0.08);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}

.dash-bar {
    background: linear-gradient(135deg, var(--c-navy), var(--c-brand-dark));
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-bar-title {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.dash-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--f-ui);
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    animation: liveBlink 1.6s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.dash-body {
    padding: 20px;
}
/* Metrics in dashboard */
.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.dash-m {
    padding: 13px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    background: var(--c-surface);
}

.dash-m-val {
    font-family: var(--f-stat);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-brand);
    line-height: 1;
}

.dash-m-lbl {
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-muted);
    margin-top: 4px;
}

.dash-m-trend {
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 600;
    color: #16A34A;
    margin-top: 3px;
}
/* Chart bars */
.dash-chart-label {
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--c-muted);
    margin-bottom: 8px;
}

.dash-bars {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 52px;
    margin-bottom: 14px;
}

.db {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, var(--c-brand-deep), var(--c-cyan));
}

.dash-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.dtag {
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
    background: var(--c-surface2);
    color: var(--c-brand);
    border: 1px solid var(--c-border2);
}
/* Floating cards */
.fc {
    position: absolute;
    background: #fff;
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    box-shadow: var(--sh-md);
    padding: 11px 15px;
}

.fc-tl {
    top: -16px;
    left: -22px;
    animation: fc1 4s ease-in-out infinite;
}

.fc-br {
    bottom: -16px;
    right: -22px;
    background: var(--c-brand);
    border-color: transparent;
    color: #fff;
    animation: fc1 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes fc1 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.fc-n {
    font-family: var(--f-stat);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--c-brand);
}

.fc-br .fc-n {
    color: #fff;
}

.fc-l {
    font-family: var(--f-body);
    font-size: 9px;
    color: var(--c-muted);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fc-br .fc-l {
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════
   CRISIS SECTION
═══════════════════════════════════════ */
.crisis {
    background: linear-gradient(148deg, var(--c-navy) 0%, var(--c-brand-dark) 55%, var(--c-brand-deep) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
    /* Dot matrix texture */
    .crisis::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(0,200,232,0.12) 1px, transparent 1px);
        background-size: 32px 32px;
    }

.crisis-hdr {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.crisis-eye {
/*    display: inline-flex;
*/    align-items: center;
    gap: 12px;
    font-family: var(--f-ui);
    font-size: var(--t-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-cyan);
    margin-bottom: 14px;
}

    .crisis-eye::before, .crisis-eye::after {
        content: '';
        flex: 0 0 32px;
        height: 1px;
        background: rgba(0,200,232,0.45);
    }

.crisis-h2 {
    font-family: var(--f-display);
    font-size: var(--t-2xl);
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
    max-width: 660px;
    margin: 0 auto 10px;
}

    .crisis-h2 em {
        font-style: italic;
        font-weight: 400;
        color: var(--c-cyan);
    }

.crisis-sub {
    font-family: var(--f-body);
    font-size: var(--t-sm);
    color: rgba(255,255,255,0.45);
    margin-top: 10px;
}

/* Crisis cards grid */
.crisis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.crisis-card {
    padding: 36px 30px;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.3s ease;
    cursor: default;
}

    .crisis-card:hover {
        background: rgba(255,255,255,0.05);
    }

/* THE FIX: Stat number - Barlow Condensed, proper weight, right size */
/* NOT too big, NOT neon. Reads as data, not decoration. */
.crisis-stat {
    font-family: var(--f-stat);
    font-size: 38px; /* Was 48px - reduced for elegance */
    font-weight: 600; /* Not 800 - not a display font */
    letter-spacing: -0.01em; /* Slightly tighter, feels structured */
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.92); /* WHITE, not cyan - calm, readable */
    margin-bottom: 8px;
}
    /* Accent: just the number gets a subtle cyan underline */
    .crisis-stat span {
        border-bottom: 2px solid var(--c-cyan);
        padding-bottom: 1px;
    }

.crisis-desc {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
}

.crisis-src {
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.22);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.crisis-footer {
    margin-top: 44px;
    text-align: center;
    position: relative;
    z-index: 1;
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

    .crisis-footer strong {
        color: rgba(255,255,255,0.85);
        font-weight: 600;
    }

/* ═══════════════════════════════════════
   PLATFORM PILLARS
═══════════════════════════════════════ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

    .pillar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--c-brand), var(--c-cyan));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .pillar:hover {
        transform: translateY(-5px);
        border-color: rgba(0,120,212,0.18);
        box-shadow: var(--sh-blue);
    }

        .pillar:hover::before {
            transform: scaleX(1);
        }

.pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--r-md);
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon {
    transform: scale(1.08) rotate(-4deg);
}

.pillar-num {
    font-family: var(--f-ui);
    font-size: var(--t-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-brand);
    margin-bottom: 7px;
}

.pillar-title {
    font-family: var(--f-ui);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-ink);
    margin-bottom: 10px;
}

.pillar-body {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.72;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 18px;
}

.ptag {
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 100px;
    background: var(--c-surface2);
    color: var(--c-brand);
    border: 1px solid var(--c-border2);
}

/* ═══════════════════════════════════════
   METRICS SECTION - THE KEY SECTION
   Stats use Barlow Condensed properly:
   - White, not neon
   - Proportionate size
   - Weight 600, not 800
═══════════════════════════════════════ */
.metrics-sec {
    background: linear-gradient(148deg, var(--c-navy) 0%, var(--c-brand-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .metrics-sec::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,200,232,0.09) 0%, transparent 60%);
        pointer-events: none;
    }

.m-hdr {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.m-eye {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-ui);
    font-size: var(--t-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-cyan);
    margin-bottom: 14px;
}

    .m-eye::before, .m-eye::after {
/*        content: '';
*/        flex: 0 0 28px;
        height: 1px;
        background: rgba(0,200,232,0.4);
    }

.m-h2 {
    font-family: var(--f-display);
    font-size: var(--t-2xl);
    font-weight: 600;
    color: #fff;
    line-height: 1.12;
}

    .m-h2 em {
        font-style: italic;
        font-weight: 400;
        color: var(--c-cyan);
    }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.mc {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    padding: 36px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .mc::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .mc:hover {
        background: rgba(255,255,255,0.09);
        transform: translateY(-4px);
    }

        .mc:hover::after {
            opacity: 1;
        }

/* METRICS NUMBERS - Barlow Condensed, white, proportionate */
.mc-num {
    font-family: var(--f-stat);
    font-size: 48px; /* Prominent but not overwhelming */
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(255,255,255,0.92); /* Clean white, not neon */
    margin-bottom: 10px;
    display: block;
}
    /* Accent line below each metric number - subtle, elegant */
    .mc-num::after {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: var(--c-cyan);
        border-radius: 2px;
        margin: 8px auto 0;
    }

.mc-label {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.52);
    line-height: 1.55;
}

.mc-src {
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.2);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════ */
.bene-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 88px;
    align-items: start;
}

.bene-sticky {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.bene-lead {
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.78;
    margin: 16px 0 28px;
    max-width: 360px;
}

.bene-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    font-family: var(--f-body);
    font-size: 12px;
    color: var(--c-muted);
}

    .bene-note svg {
        width: 14px;
        height: 14px;
        stroke: var(--c-brand);
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        flex-shrink: 0;
    }

.bene-grp {
    margin-bottom: 38px;
}

.bene-grp-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-border);
}

.bene-grp-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--c-brand), var(--c-brand-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bene-grp-title {
    font-family: var(--f-ui);
    font-size: var(--t-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-ink);
}

.bene-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,120,212,0.05);
}

    .bene-item:last-child {
        border-bottom: none;
    }

.bene-chk {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-brand), var(--c-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

    .bene-chk svg {
        width: 8px;
        height: 8px;
        fill: #fff;
    }

.bene-txt {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--c-ink2);
    line-height: 1.65;
}

/* ═══════════════════════════════════════
   ROI SECTION
═══════════════════════════════════════ */
.roi-sec {
    background: var(--c-navy);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .roi-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(0,200,232,0.06) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

.roi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.roi-eye {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-ui);
    font-size: var(--t-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-cyan);
    margin-bottom: 18px;
}

    .roi-eye::before {
/*        content: '';
*/        width: 24px;
        height: 1px;
        background: var(--c-cyan);
        opacity: 0.6;
    }

.roi-h {
    font-family: var(--f-display);
    font-size: var(--t-2xl);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 14px;
    color: #fff;
}

    .roi-h em {
        font-style: italic;
        font-weight: 400;
        color: var(--c-cyan);
    }

.roi-sub {
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.52);
    line-height: 1.75;
    margin-bottom: 32px;
}

.roi-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 17px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    transition: all 0.25s ease;
}

    .roi-item:hover {
        background: rgba(0,200,232,0.07);
        border-color: rgba(0,200,232,0.18);
        transform: translateX(4px);
    }
/* ROI item numbers - Barlow Condensed, proper */
.roi-item-n {
    font-family: var(--f-stat);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(255,255,255,0.88);
    min-width: 80px;
}

.roi-item-lbl {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--c-cyan);
    margin-bottom: 3px;
}

.roi-item-txt {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* ROI right panel */
.roi-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.roi-big {
    background: linear-gradient(135deg, var(--c-brand), var(--c-brand-deep));
    border-radius: var(--r-xl);
    padding: 44px 36px;
    text-align: center;
    box-shadow: 0 24px 56px rgba(0,120,212,0.38);
    position: relative;
    overflow: hidden;
}

    .roi-big::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        pointer-events: none;
    }

.roi-big-lbl {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
/* Big ROI number - this is a hero moment, can be larger */
.roi-big-n {
    font-family: var(--f-stat);
    font-size: 68px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #fff;
}

.roi-big-sub {
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    line-height: 1.55;
}

.roi-adopt {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--r-xl);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.ring-wrap {
    position: relative;
    flex-shrink: 0;
}

    .ring-wrap svg {
        transform: rotate(-90deg);
        width: 72px;
        height: 72px;
    }

.ring-lbl {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-stat);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.adopt-h {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.adopt-p {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.48);
    line-height: 1.65;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-sec {
    padding: 104px 0;
    background: linear-gradient(160deg, var(--c-surface2) 0%, var(--c-surface) 50%, #fff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-sec::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,120,212,0.05) 0%, transparent 60%);
        pointer-events: none;
    }

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-h {
    font-family: var(--f-display);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-ink);
    max-width: 640px;
    margin: 0 auto 16px;
}

    .cta-h em {
        font-style: italic;
        font-weight: 400;
        color: var(--c-brand);
    }

.cta-sub {
    font-family: var(--f-body);
    font-size: 17px;
    font-weight: 300;
    color: var(--c-muted);
    max-width: 440px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.cta-acts {
    display: flex;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--c-border2);
    border-radius: 100px;
    padding: 11px 20px;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 600;
    color: var(--c-ink2);
    box-shadow: var(--sh-sm);
    transition: all 0.25s ease;
}

    .chip:hover {
        border-color: var(--c-brand);
        color: var(--c-brand);
        box-shadow: 0 4px 18px rgba(0,120,212,0.12);
        transform: translateY(-2px);
    }

.chip-ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--c-brand), var(--c-brand-deep));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .chip-ico svg {
        width: 10px;
        height: 10px;
        fill: #fff;
    }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    background: var(--c-navy);
    color: rgba(255,255,255,0.45);
    padding: 21px 0;
    margin: 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    display: block;
    flex-shrink: 0;
}

.footer-name {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

    .footer-links a {
        font-family: var(--f-ui);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: #fff;
        }

.footer-copy {
    font-family: var(--f-body);
    font-size: 11px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Complete Mobile-First System
═══════════════════════════════════════════════════════ */

/* Desktop only: nav padding wider */
@media (min-width: 941px) {
    .nav-wrap {
        padding: 0 40px;
    }

    .hamburger {
        display: none !important;
    }
}

/* ── 1080px ── */
@media (max-width: 1080px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── 940px: hamburger appears ── */
@media (max-width: 940px) {
    .nav-links {
        display: none !important;
    }

    .nav-ctas {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column !important;
    }

    .nav-wrap {
        padding: 0 20px !important;
        gap: 12px !important;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-h) + 44px);
        padding-bottom: 60px;
    }

    .hero-sub {
        max-width: 100%;
    }

    .crisis-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bene-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .bene-sticky {
        position: static;
    }

    .roi-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .wrap {
        padding: 0 28px !important;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

        .pillars-grid .pillar[style] {
            grid-column: auto !important;
            max-width: 100% !important;
        }
}

/* ── 768px ── */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-feature {
        grid-template-columns: 1fr !important;
    }

    .banner-quote-inner {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }

    .feature-photo-banner {
        grid-template-columns: 1fr !important;
    }

    .feature-photo-side {
        min-height: 240px;
    }

        .feature-photo-side::after {
            background: linear-gradient(to bottom, transparent 40%, var(--c-navy) 100%) !important;
        }

    .platform-photo-strip {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }
}

/* ── 640px: mobile ── */
@media (max-width: 640px) {
    :root {
        --nav-h: 56px;
    }

    /* NAV — force show hamburger */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-ctas {
        display: none !important;
    }

    .nav-wrap {
        padding: 0 16px !important;
        gap: 8px !important;
    }

    .nav-logo-img {
        width: 30px !important;
        height: 30px !important;
    }

    .nav-logo-text {
        font-size: 15px !important;
    }

    /* LAYOUT */
    .wrap {
        padding: 0 16px !important;
    }

    .sec {
        padding: 52px 0 !important;
    }

    /* HERO */
    .hero {
        padding-top: calc(var(--nav-h) + 24px) !important;
        padding-bottom: 44px !important;
    }

    .hero-inner {
        gap: 24px !important;
    }

    .hero-badge {
        margin-bottom: 14px;
    }

    .hero-h1 {
        font-size: clamp(24px, 7vw, 36px) !important;
        line-height: 1.1 !important;
    }

    .hero-sub {
        font-size: 14px !important;
        margin-bottom: 22px !important;
    }

    .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
    }

    .btn-lg {
        width: 100% !important;
        justify-content: center !important;
    }

    .trust-bar {
        gap: 10px !important;
        flex-wrap: wrap !important;
    }

    .trust-sep {
        display: none !important;
    }

    /* CRISIS */
    .crisis {
        padding: 52px 0 !important;
    }

    .crisis-grid {
        grid-template-columns: 1fr !important;
    }

    .crisis-card {
        padding: 22px 16px !important;
    }

    .crisis-stat {
        font-size: 28px !important;
    }

    .crisis-h2 {
        font-size: clamp(22px, 6vw, 30px) !important;
    }

    .crisis-photo-wrap {
        height: 220px !important;
    }

    .crisis-photo-overlay {
        padding: 20px 16px !important;
    }

    /* PILLARS */
    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

        .pillars-grid .pillar {
            grid-column: 1 / -1 !important;
            max-width: 100% !important;
        }

    .pillar {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    .pillar-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    .pillar-title {
        font-size: 14px !important;
    }

    .pillar-body {
        font-size: 12px !important;
    }

    /* METRICS */
    .metrics-sec {
        padding: 52px 0 !important;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .mc {
        padding: 18px 12px !important;
        border-radius: 16px !important;
    }

    .mc-num {
        font-size: 34px !important;
    }

    .mc-label {
        font-size: 11px !important;
    }

    .m-h2 {
        font-size: clamp(22px, 6vw, 30px) !important;
    }

    /* BENEFITS */
    .bene-layout {
        gap: 24px !important;
    }

    .sec-h {
        font-size: clamp(22px, 6vw, 34px) !important;
    }

    .sec-lead {
        font-size: 14px !important;
    }

    /* ROI */
    .roi-sec {
        padding: 52px 0 !important;
    }

    .roi-layout {
        gap: 32px !important;
    }

    .roi-big {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .roi-big-n {
        font-size: 44px !important;
    }

    .roi-h {
        font-size: clamp(22px, 6vw, 30px) !important;
    }

    .roi-item {
        padding: 12px 12px !important;
        gap: 10px !important;
        border-radius: 12px !important;
    }

    .roi-item-n {
        font-size: 20px !important;
        min-width: 56px !important;
    }

    /* CONTACT — KEY FIX */
    .contact-sec {
        padding: 52px 0 !important;
    }

    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .contact-info-sub {
        max-width: 100% !important;
    }

    .contact-form-wrap {
        padding: 20px 14px !important;
        border-radius: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cf-field input, .cf-field textarea {
        font-size: 16px !important;
    }

    /* BANNER */
    .banner-feature {
        grid-template-columns: 1fr !important;
    }

    .banner-feature-img {
        min-height: 180px !important;
    }

    .banner-feature-content {
        padding: 24px 16px !important;
    }

    .banner-social-inner {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .banner-social-logos {
        gap: 10px !important;
        flex-wrap: wrap !important;
    }

    /* CHANNELS */
    .channel-icons {
        gap: 14px !important;
        flex-wrap: wrap !important;
    }

    .channel-ico {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
    }

    /* PLATFORM STRIP */
    .platform-photo-strip {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .platform-photo-card {
        height: 160px !important;
    }

    /* FEATURE BANNER */
    .feature-photo-banner {
        grid-template-columns: 1fr !important;
    }

    .feature-photo-side {
        min-height: 180px !important;
    }

    .feature-content-side {
        padding: 28px 16px !important;
    }

    /* EMPLOYER */
    .employer-photo-wrap {
        height: 180px !important;
    }

    .employer-photo-overlay {
        padding: 0 16px !important;
    }

    .employer-photo-stat-n {
        font-size: 40px !important;
    }

    /* CTA */
    .cta-acts {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

        .cta-acts .btn-lg {
            width: 100% !important;
            max-width: 320px !important;
        }

    /* FOOTER */
    .footer-inner {
        flex-direction: column !important;
        gap: 18px !important;
        text-align: center !important;
    }

    .footer-links {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }
}

/* ── 380px ── */
@media (max-width: 380px) {
    .wrap {
        padding: 0 12px !important;
    }

    .hero-h1 {
        font-size: 22px !important;
    }

    .crisis-stat {
        font-size: 24px !important;
    }

    .nav-logo-text {
        font-size: 13px !important;
    }

    .nav-logo-img {
        width: 26px !important;
        height: 26px !important;
    }

    .metrics-grid {
        grid-template-columns: 1fr !important;
    }

    .mc-num {
        font-size: 40px !important;
    }

    .sec {
        padding: 40px 0 !important;
    }
}

/* ═══════════════════════════════════════════
   IMAGE BANNERS
   Three banner types injected into the page:
   1. Hero social-proof banner (below hero stats)
   2. Mid-page feature split banner (after pillars)
   3. Testimonial quote banner (before CTA)
═══════════════════════════════════════════ */

/* ── Banner 1: Social proof strip ── */
.banner-social {
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 28px 0;
    overflow: hidden;
}

.banner-social-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.banner-social-label {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
    white-space: nowrap;
}

.banner-social-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.banner-logo-slot {
    /* Replace this div with an <img> tag for real logos */
    height: 28px;
    min-width: 80px;
    background: var(--c-surface2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 700;
    color: var(--c-muted);
    letter-spacing: 0.06em;
    border: 1px dashed var(--c-border2);
    padding: 0 14px;
}

/* ── Banner 2: Full-width image feature split ── */
.banner-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    overflow: hidden;
}

.banner-feature-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #001529 0%, #003A70 100%);
    min-height: 380px;
}

    .banner-feature-img > div {
        position: absolute;
        inset: 0;
    }
/* Image slot - replace .banner-img-slot with <img> */
.banner-img-slot {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, #001F40 0%, #0078D4 100%);
}

    .banner-img-slot::before {
        /* Decorative grid overlay */
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,200,232,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0,200,232,0.07) 1px, transparent 1px);
        background-size: 32px 32px;
    }

.banner-img-placeholder-text {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 0 32px;
}

.banner-img-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1.5px dashed rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.banner-feature-content {
    background: var(--c-navy);
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-feature-eye {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-cyan);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .banner-feature-eye::before {
/*        content: '';
*/        width: 20px;
        height: 1.5px;
        background: var(--c-cyan);
        opacity: 0.6;
        border-radius: 2px;
    }

.banner-feature-h {
    font-family: var(--f-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

    .banner-feature-h em {
        font-style: italic;
        font-weight: 400;
        color: var(--c-cyan);
    }

.banner-feature-body {
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.78;
    margin-bottom: 28px;
}

.banner-feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.bfs {
    padding: 16px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md);
}

.bfs-n {
    font-family: var(--f-stat);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(255,255,255,0.9);
}

.bfs-l {
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* ── Banner 3: Testimonial / quote ── */
.banner-quote {
    background: linear-gradient(135deg, var(--c-brand-dark) 0%, var(--c-navy) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .banner-quote::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 40px;
        font-family: var(--f-display);
        font-size: 240px;
        font-weight: 600;
        color: rgba(255,255,255,0.03);
        line-height: 1;
        pointer-events: none;
    }

.banner-quote-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.banner-quote-img-wrap {
    position: relative;
}
/* Replace .bq-img with <img src="your-photo.jpg" class="bq-img"> */
.bq-img-slot {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: linear-gradient(145deg, #002850 0%, #0078D4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px dashed rgba(255,255,255,0.15);
}

    .bq-img-slot .banner-img-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }

.bq-img {
    /* For real images: */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-xl);
}
/* Floating stat card on top of image */
.bq-stat-card {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: 14px 20px;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--c-border);
}

.bq-stat-n {
    font-family: var(--f-stat);
    font-size: 26px;
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1;
}

.bq-stat-l {
    font-family: var(--f-body);
    font-size: 10px;
    color: var(--c-muted);
    margin-top: 3px;
}

.banner-quote-content {
}

.bq-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.bq-star {
    color: #F59E0B;
    font-size: 18px;
}

.bq-text {
    font-family: var(--f-display);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 28px;
}

.bq-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
/* Replace .bq-avatar-slot with <img src="avatar.jpg" class="bq-avatar"> */
.bq-avatar-slot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    border: 1.5px dashed rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bq-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.bq-name {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.bq-role {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

/* ── Banner 4: Channel icons strip ── */
.banner-channels {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 48px 0;
}

.banner-channels-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.banner-channels-label {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 32px;
}

.channel-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.25s ease;
    cursor: default;
}

    .channel-item:hover {
        transform: translateY(-4px);
    }

.channel-ico {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--c-border);
}

.channel-ico-wa {
    background: #E8F9EE;
}

.channel-ico-voice {
    background: var(--c-surface2);
}

.channel-ico-app {
    background: #FEF3E8;
}

.channel-ico-ai {
    background: #F0EBFE;
}

.channel-ico-diag {
    background: #FEE8EC;
}

.channel-name {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-muted);
}

/* ── Banner responsive rules are handled in the main RESPONSIVE block above ── */


/* ═══════════════════════════════════════
   CONTACT FORM SECTION
═══════════════════════════════════════ */
.contact-sec {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--c-surface2) 0%, var(--c-surface) 50%, #fff 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-sub {
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.75;
    margin: 14px 0 32px;
    max-width: 380px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: var(--sh-sm);
}

    .contact-detail-item:hover {
        border-color: var(--c-brand);
        box-shadow: var(--sh-blue);
        transform: translateX(4px);
    }

.cdi-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cdi-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--c-brand);
    }

.cdi-label {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-muted);
    margin-bottom: 3px;
}

.cdi-val {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--c-ink);
}

/* Form */
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    box-shadow: var(--sh-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cf-row {
    margin-bottom: 18px;
}

.cf-field {
    position: relative;
}

    .cf-field input,
    .cf-field textarea {
        width: 100%;
        font-family: var(--f-body);
        font-size: 14px;
        font-weight: 400;
        color: var(--c-ink);
        background: var(--c-surface);
        border: 1.5px solid var(--c-border);
        border-radius: var(--r-md);
        padding: 13px 16px;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        resize: none;
        -webkit-appearance: none;
    }

        .cf-field input::placeholder,
        .cf-field textarea::placeholder {
            color: var(--c-muted);
            font-weight: 300;
        }

        .cf-field input:focus,
        .cf-field textarea:focus {
            border-color: var(--c-brand);
            box-shadow: 0 0 0 3px rgba(0,120,212,0.1);
            background: #fff;
        }

    .cf-field.error input,
    .cf-field.error textarea {
        border-color: #DC2626;
        box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
    }

    .cf-field.success input,
    .cf-field.success textarea {
        border-color: #16A34A;
    }

.cf-err {
    font-family: var(--f-body);
    font-size: 11px;
    color: #DC2626;
    margin-top: 5px;
    padding-left: 4px;
    display: none;
}

.cf-field.error .cf-err {
    display: block;
}

.cf-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--c-brand);
    border: none;
    border-radius: var(--r-md);
    padding: 15px 32px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 4px;
    box-shadow: 0 4px 16px rgba(0,120,212,0.28);
}

    .cf-submit:hover {
        background: var(--c-brand-deep);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(0,120,212,0.36);
    }

    .cf-submit:active {
        transform: translateY(0);
    }

.cf-submit-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.cf-submit:hover .cf-submit-arrow {
    transform: translateX(3px);
}

.cf-submit.loading {
    opacity: 0.75;
    pointer-events: none;
}

.cf-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--r-md);
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 600;
    color: #15803D;
}

    .cf-success svg {
        width: 20px;
        height: 20px;
        stroke: #15803D;
        flex-shrink: 0;
    }

    .cf-success.show {
        display: flex;
    }

/* ── Contact responsive rules are handled in the main RESPONSIVE block above ── */




/* ═══════════════════════════════════════
   IMAGE ENHANCEMENTS
═══════════════════════════════════════ */

/* Hero background photo overlay */
.hero-photo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.099;
    pointer-events: none;
}

/* Crisis photo split */
.crisis-photo-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 52px;
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 320px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

    .crisis-photo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        filter: saturate(0.6) brightness(0.5);
        display: block;
    }

.crisis-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,21,41,0.92) 0%, rgba(0,21,41,0.55) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 48px;
}

.crisis-photo-quote {
    font-family: var(--f-display);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    font-style: italic;
    color: #fff;
    line-height: 1.3;
    max-width: 480px;
    margin-bottom: 18px;
}

    .crisis-photo-quote em {
        color: var(--c-cyan);
        font-weight: 400;
    }

.crisis-photo-sub {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* Platform feature — phone mockup image strip */
.platform-photo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 56px;
    margin-bottom: 8px;
}

.platform-photo-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 200px;
    box-shadow: var(--sh-md);
}

    .platform-photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .platform-photo-card:hover img {
        transform: scale(1.05);
    }

.platform-photo-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 18px 16px;
    background: linear-gradient(transparent, rgba(0,21,41,0.88));
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* Feature banner with real photo */
.feature-photo-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
}

.feature-photo-side {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

    .feature-photo-side img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .feature-photo-side::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, transparent 40%, var(--c-navy) 100%);
    }

.feature-content-side {
    background: var(--c-navy);
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .feature-content-side::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(0,200,232,0.05) 1px, transparent 1px);
        background-size: 36px 36px;
        pointer-events: none;
    }

/* Diagnostics photo card */
.diag-photo-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 260px;
    position: relative;
    box-shadow: var(--sh-lg);
    margin-bottom: 20px;
}

    .diag-photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.75);
        transition: transform 0.5s ease;
    }

    .diag-photo-card:hover img {
        transform: scale(1.04);
    }

.diag-photo-card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--c-brand);
    color: #fff;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 100px;
}

/* Employer photo section */
.employer-photo-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 56px;
    height: 300px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

    .employer-photo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
        display: block;
        filter: brightness(0.45) saturate(0.7);
    }

.employer-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(0,21,41,0.97) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 48px;
}

.employer-photo-stat {
    text-align: right;
}

.employer-photo-stat-n {
    font-family: var(--f-stat);
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
}

.employer-photo-stat-l {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-cyan);
    margin-top: 6px;
}

/* Doctor / health coach photo in benefits sticky side */
.benefits-photo-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 220px;
    margin-top: 28px;
    box-shadow: var(--sh-lg);
    position: relative;
}

    .benefits-photo-wrap img {
        width: 100%;
        height: 100%;
/*        object-fit: cover;
*/        display: block;
        filter: brightness(0.85);
        transition: transform 0.5s ease;
    }

    .benefits-photo-wrap:hover img {
        transform: scale(1.03);
    }

.benefits-photo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,21,41,0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,200,232,0.3);
    border-radius: 100px;
    padding: 5px 12px;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-cyan);
}

