:root {
    --teal: #00a99d;
    --teal-dk: #007570;
    --teal-lt: #e8faf9;
    --sage: #40916c;
    --navy: #0a1628;
    --ink: #1a2535;
    --muted: #5e6e80;
    --border: #d4dde5;
    --bg: #f7f9fb;
    --white: #ffffff;
    --amber: #f59e0b;
    --red: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
}

/* ── NAVBAR ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 68px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,169,157,.12);
    transition: box-shadow .3s;
}

    .nav.scrolled {
        box-shadow: 0 4px 20px rgba(0,0,0,.08);
    }

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,169,157,.35);
}

.nav-brand-name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-links a {
        font-size: 14px;
        font-weight: 600;
        color: var(--muted);
        text-decoration: none;
        transition: color .2s;
    }

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    transition: all .2s;
}

    .btn-ghost:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

.btn-cta {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    box-shadow: 0 4px 14px rgba(0,169,157,.3);
    transition: all .2s;
}

    .btn-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0,169,157,.4);
        color: #fff;
    }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    padding: 120px 5vw 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,169,157,.07) 0%, transparent 70%);
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,169,157,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,169,157,.05) 1px, transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
    }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-lt);
    border: 1px solid rgba(0,169,157,.2);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
}

    .hero-badge .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--teal);
        animation: blink 2s ease-in-out infinite;
    }

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

    .hero h1 span {
        background: linear-gradient(135deg, var(--teal), var(--teal-dk));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    box-shadow: 0 6px 24px rgba(0,169,157,.35);
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

    .btn-hero:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(0,169,157,.45);
        color: #fff;
    }

.btn-hero-outline {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: #fff;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-hero-outline:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.hero-avatars {
    display: flex;
}

    .hero-avatars .av {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid #fff;
        background: linear-gradient(135deg, var(--teal), var(--teal-dk));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        margin-right: -8px;
    }

.hero-social-proof p {
    font-size: 13px;
    color: var(--muted);
}

.hero-social-proof strong {
    color: var(--ink);
}
/* Hero visual card */
.hero-visual {
    position: relative;
}

.hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
    border: 1px solid rgba(0,169,157,.1);
    animation: float 6s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-12px)
    }
}

.hcard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hcard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .7;
        transform: scale(1.2)
    }
}

.hcard-header span {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.hcard-header .badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    background: var(--teal-lt);
    color: var(--teal);
    border: 1px solid rgba(0,169,157,.2);
}

.hcard-waveform {
    height: 48px;
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 12px;
    margin-bottom: 18px;
    overflow: hidden;
}

    .hcard-waveform .bar {
        width: 3px;
        border-radius: 3px;
        background: var(--teal);
        animation: wave 1.2s ease-in-out infinite;
    }

        .hcard-waveform .bar:nth-child(2) {
            animation-delay: .1s
        }

        .hcard-waveform .bar:nth-child(3) {
            animation-delay: .2s
        }

        .hcard-waveform .bar:nth-child(4) {
            animation-delay: .3s
        }

        .hcard-waveform .bar:nth-child(5) {
            animation-delay: .4s
        }

        .hcard-waveform .bar:nth-child(6) {
            animation-delay: .5s
        }

        .hcard-waveform .bar:nth-child(7) {
            animation-delay: .6s
        }

        .hcard-waveform .bar:nth-child(8) {
            animation-delay: .5s
        }

        .hcard-waveform .bar:nth-child(9) {
            animation-delay: .4s
        }

        .hcard-waveform .bar:nth-child(10) {
            animation-delay: .3s
        }

        .hcard-waveform .bar:nth-child(11) {
            animation-delay: .2s
        }

        .hcard-waveform .bar:nth-child(12) {
            animation-delay: .1s
        }

@keyframes wave {
    0%,100% {
        height: 8px
    }

    50% {
        height: 32px
    }
}

.hcard-note {
    background: var(--bg);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
    border-left: 3px solid var(--teal);
}

    .hcard-note strong {
        font-family: 'Sora', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: var(--teal);
        display: block;
        margin-bottom: 6px;
    }

.hcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

    .hcard-footer span {
        font-size: 11.5px;
        color: var(--muted);
    }

.hcard-approve {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--sage);
    border: none;
    border-radius: 8px;
    padding: 6px 16px;
    cursor: pointer;
}
/* Floating chips */
.hero-chip {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,.06);
}

    .hero-chip.chip-1 {
        top: -20px;
        right: -20px;
        color: var(--sage);
        animation: float 5s ease-in-out infinite .5s;
    }

    .hero-chip.chip-2 {
        bottom: 10px;
        left: -30px;
        color: var(--teal);
        animation: float 5.5s ease-in-out infinite 1s;
    }

    .hero-chip i {
        font-size: 16px;
    }

/* ── SECTION COMMONS ── */
section {
    padding: 96px 5vw;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ── STATS STRIP ── */
.stats-strip {
    background: linear-gradient(135deg, var(--navy), #1a2d4a);
    padding: 60px 5vw;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.1);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.stat-unit {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--teal);
}

.stat-label {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    margin-top: 8px;
    font-weight: 500;
}

/* PRODUCT VIDEO */
.video-showcase {
    position: relative;
    overflow: hidden;
    padding: 96px 5vw;
    background:
        radial-gradient(circle at 18% 18%, rgba(0,169,157,.13), transparent 32%),
        linear-gradient(135deg, #f8fbfc 0%, #eef8f7 100%);
}

    .video-showcase::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,169,157,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,169,157,.06) 1px, transparent 1px);
        background-size: 42px 42px;
        pointer-events: none;
    }

.video-showcase-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, 420px);
    gap: 72px;
    align-items: center;
}

.video-copy .section-title,
.video-copy .section-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.video-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.video-frame {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(10,22,40,.96), rgba(0,117,112,.88));
    box-shadow: 0 30px 80px rgba(10,22,40,.24), 0 0 0 1px rgba(255,255,255,.65) inset;
}

    .video-frame::before {
        content: 'MindScribeHealth.com';
        position: absolute;
        top: -18px;
        left: 32px;
        z-index: 1;
        padding: 8px 14px;
        border-radius: 999px;
        background: #fff;
        color: var(--teal-dk);
        font-family: 'Sora', sans-serif;
        font-size: 12px;
        font-weight: 800;
        box-shadow: 0 12px 28px rgba(10,22,40,.14);
    }

    .video-frame video {
        display: block;
        width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 24px;
        background: #07111f;
        object-fit: cover;
    }

/* SPECIALTIES */
.specialties {
    background: #fff;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.specialty-card {
    background: linear-gradient(180deg, #fff 0%, #f8fbfc 100%);
    border: 1px solid rgba(0,169,157,.16);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 14px 42px rgba(10,22,40,.06);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

    .specialty-card:hover {
        transform: translateY(-4px);
        border-color: rgba(0,169,157,.35);
        box-shadow: 0 20px 56px rgba(10,22,40,.1);
    }

.specialty-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--teal-lt);
    color: var(--teal-dk);
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 18px;
}

.specialty-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.specialty-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.specialty-note {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--sage);
    background: #edf8f0;
    border-radius: 10px;
    padding: 9px 11px;
}

/* ── FEATURES ── */
.features {
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all .3s;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0,0,0,.1);
        border-color: rgba(0,169,157,.3);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

    .feature-icon.teal {
        background: var(--teal-lt);
        color: var(--teal);
    }

    .feature-icon.sage {
        background: #d8f3dc;
        color: var(--sage);
    }

    .feature-icon.amber {
        background: #fef3c7;
        color: var(--amber);
    }

    .feature-icon.navy {
        background: #e8ecf0;
        color: var(--navy);
    }

    .feature-icon.red {
        background: #fee2e2;
        color: var(--red);
    }

    .feature-icon.purple {
        background: #ede9fe;
        color: #7c3aed;
    }

.feature-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

    .how-grid::before {
        content: '';
        position: absolute;
        top: 32px;
        left: calc(16.66% + 16px);
        right: calc(16.66% + 16px);
        height: 2px;
        background: linear-gradient(90deg, var(--teal), rgba(0,169,157,.2));
    }

.how-step {
    text-align: center;
    padding: 0 32px;
    position: relative;
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0,169,157,.35);
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1.5px solid var(--border);
    position: relative;
    transition: all .3s;
}

    .price-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0,0,0,.1);
    }

    .price-card.featured {
        border-color: var(--teal);
        box-shadow: 0 0 0 4px rgba(0,169,157,.1), 0 20px 60px rgba(0,169,157,.15);
    }

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: var(--teal);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.price-tier {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.price-amount {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

    .price-amount sup {
        font-size: 22px;
        vertical-align: top;
        margin-top: 10px;
    }

.price-period {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

    .price-features li {
        font-size: 14px;
        color: var(--ink);
        padding: 8px 0;
        border-bottom: 1px solid var(--bg);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .price-features li:last-child {
            border-bottom: none;
        }

        .price-features li i {
            color: var(--teal);
            font-size: 15px;
            flex-shrink: 0;
        }

.btn-price {
    display: block;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px;
    border-radius: 12px;
    text-decoration: none;
    transition: all .2s;
}

    .btn-price.primary {
        background: linear-gradient(135deg, var(--teal), var(--teal-dk));
        color: #fff;
        box-shadow: 0 4px 16px rgba(0,169,157,.3);
    }

        .btn-price.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(0,169,157,.4);
            color: #fff;
        }

    .btn-price.outline {
        border: 2px solid var(--border);
        color: var(--ink);
        background: #fff;
    }

        .btn-price.outline:hover {
            border-color: var(--teal);
            color: var(--teal);
        }

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid var(--border);
}

.testi-stars {
    color: var(--amber);
    font-size: 14px;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
}

/* ── DEMO REQUEST SECTION ── */
#demo {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2d4a 100%);
    position: relative;
    overflow: hidden;
}

    #demo::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,169,157,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0,169,157,.08) 1px, transparent 1px);
        background-size: 48px 48px;
    }

.demo-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.demo-left h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -.8px;
}

.demo-left p {
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.demo-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.demo-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,169,157,.15);
    border: 1px solid rgba(0,169,157,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--teal);
    flex-shrink: 0;
    transition: all .2s;
}

.demo-contact-item:hover .demo-contact-icon {
    background: rgba(0,169,157,.25);
}

.demo-contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 2px;
}

.demo-contact-value {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.demo-perks {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.6);
}

    .demo-perk i {
        color: var(--teal);
        font-size: 15px;
    }
/* Form card */
.demo-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 32px 80px rgba(0,0,0,.3);
}

    .demo-form-card h3 {
        font-family: 'Sora', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
    }

    .demo-form-card p {
        font-size: 13.5px;
        color: var(--muted);
        margin-bottom: 28px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .3px;
    margin-bottom: 5px;
    display: block;
}

    .form-label .req {
        color: var(--teal);
    }

.form-input, .form-select-el, .form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: var(--bg);
    transition: all .15s;
}

    .form-input:focus, .form-select-el:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--teal);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(0,169,157,.12);
    }

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    box-shadow: 0 6px 20px rgba(0,169,157,.35);
    cursor: pointer;
    transition: all .2s;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 28px rgba(0,169,157,.45);
    }

    .btn-submit:disabled {
        opacity: .7;
        cursor: not-allowed;
        transform: none;
    }

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
}

    .form-success .success-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #d8f3dc;
        color: var(--sage);
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

.form-error {
    font-size: 12.5px;
    color: var(--red);
    margin-top: 4px;
    display: none;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 60px 5vw 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    margin-top: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
}

    .footer-col a:hover {
        color: var(--teal);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,.3);
}

.footer-hipaa {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.35);
}

    .footer-hipaa i {
        color: var(--teal);
    }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        display: none;
    }

    .features-grid, .pricing-grid, .testimonials-grid, .specialties-grid {
        grid-template-columns: 1fr 1fr;
    }

    .video-showcase-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .video-copy .section-title,
    .video-copy .section-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .video-actions {
        justify-content: center;
    }

    .demo-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        gap: 8px;
        padding: 0 12px;
    }

    .nav-brand {
        flex: 0 0 auto;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 6px;
        margin-left: auto;
    }

    .nav-actions .btn-ghost,
    .nav-actions .btn-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 7px 10px;
        border-radius: 9px;
        font-size: 12px;
        white-space: nowrap;
    }

    .nav-actions .ms-lang-trigger--nav {
        width: 38px;
        min-height: 38px;
        padding: 0;
        border-radius: 9px;
    }

    .nav-actions .ms-lang-trigger--nav span {
        display: none;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

        .how-grid::before {
            display: none;
        }

    .features-grid, .pricing-grid, .testimonials-grid, .specialties-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .video-showcase {
        padding: 72px 5vw;
    }

    .video-frame {
        max-width: 330px;
        padding: 10px;
        border-radius: 28px;
    }

        .video-frame video {
            border-radius: 20px;
        }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav {
        height: 62px;
        padding: 0 8px;
    }

    .nav .ms-logo-shell {
        padding: 4px 6px;
        border-radius: 12px;
    }

    .nav .ms-logo--nav {
        height: 30px;
    }

    .nav-actions {
        gap: 5px;
    }

    .nav-actions .btn-ghost,
    .nav-actions .btn-cta {
        min-height: 34px;
        padding: 6px 8px;
        font-size: 11px;
        border-radius: 8px;
    }

    .nav-actions .ms-lang-trigger--nav {
        width: 34px;
        min-height: 34px;
        border-radius: 8px;
    }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Delay utilities (replaces inline style="animation-delay") ── */
.delay-1 {
    animation-delay: .1s !important;
    transition-delay: .1s;
}

.delay-2 {
    animation-delay: .2s !important;
    transition-delay: .2s;
}

.delay-3 {
    animation-delay: .3s !important;
    transition-delay: .3s;
}

.delay-4 {
    animation-delay: .4s !important;
    transition-delay: .4s;
}

/* ── Feature icon variants ── */
.icon-teal {
    background: var(--teal-lt);
    color: var(--teal);
}

.icon-sage {
    background: #d8f3dc;
    color: var(--sage);
}

.icon-amber {
    background: #fef3c7;
    color: var(--amber);
}

.icon-navy {
    background: #e8ecf0;
    color: var(--navy);
}

.icon-red {
    background: #fee2e2;
    color: var(--red);
}

.icon-purple {
    background: #ede9fe;
    color: #7c3aed;
}

/* ── Pricing card variants ── */
.price-featured {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0,169,157,.1), 0 20px 60px rgba(0,169,157,.15);
}

.btn-price-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,169,157,.3);
}

    .btn-price-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(0,169,157,.4);
        color: #fff;
    }

.btn-price-outline {
    border: 2px solid var(--border);
    color: var(--ink);
    background: #fff;
}

    .btn-price-outline:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

/* ── Hero card helpers ── */
.hero-card-wrap {
    position: relative;
}

.live-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    background: var(--teal-lt);
    color: var(--teal);
    border: 1px solid rgba(0,169,157,.2);
}

.chip-sage {
    color: #40916c;
    font-size: 16px;
}

.chip-amber {
    color: #f59e0b;
    font-size: 16px;
}

/* ── Waveform bar heights ── */
.h14 {
    height: 14px;
}

.h24 {
    height: 24px;
}

.h32 {
    height: 32px;
}

.h20 {
    height: 20px;
}

.h36 {
    height: 36px;
}

.h18 {
    height: 18px;
}

.h28 {
    height: 28px;
}

.h40 {
    height: 40px;
}

.h22 {
    height: 22px;
}

.h30 {
    height: 30px;
}

.h16 {
    height: 16px;
}

.h24b {
    height: 24px;
}

/* ── Demo section label ── */
.section-label-light {
    color: rgba(0,169,157,.8);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ── Footer helpers ── */
.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-brand-name {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* ── Form helpers ── */
.form-privacy {
    text-align: center;
    font-size: 11.5px;
    color: #9ca3af;
    margin-top: 14px;
}

.success-title {
    font-family: 'Sora', sans-serif;
    color: #1a2535;
    margin-bottom: 8px;
}

.success-msg {
    color: #5e6e80;
    font-size: 14px;
    line-height: 1.7;
}

.success-call {
    margin-top: 20px;
    font-size: 13px;
    color: #9ca3af;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
