﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0a1628;
    --navy2: #112240;
    --teal: #0d9488;
    --teal2: #14b8a6;
    --teal-lt: #ccfbf1;
    --amber: #f59e0b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --font-head: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 14px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,.10);
    --shadow-lg: 0 24px 60px rgba(0,0,0,.14);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-lt);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.06)
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── NAV ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

    #navbar.scrolled {
        background: rgba(10,22,40,.96);
        backdrop-filter: blur(14px);
        box-shadow: 0 2px 20px rgba(0,0,0,.3);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    /*background: var(--teal);*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-logo-icon svg {
        width: 22px;
        height: 22px;
        fill: white;
    }

.nav-logo-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -.02em;
}

    .nav-logo-text span {
        color: var(--teal2);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nav-links a {
        font-size: .88rem;
        font-weight: 500;
        color: rgba(255,255,255,.75);
        padding: 8px 14px;
        border-radius: 8px;
        transition: color var(--transition),background var(--transition);
    }

        .nav-links a:hover {
            color: var(--white);
            background: rgba(255,255,255,.08);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    color: var(--white);
    padding: 9px 20px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,.25);
    transition: all var(--transition);
    cursor: pointer;
    background: transparent;
}

    .btn-ghost:hover {
        border-color: var(--teal2);
        color: var(--teal2);
    }

.btn-primary {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--teal2);
    padding: 9px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .btn-primary:hover {
        background: var(--teal);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(13,148,136,.4);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        display: block;
    }

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10,22,40,.97);
    backdrop-filter: blur(14px);
    padding: 20px 24px 30px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}

    .mobile-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu a {
        display: block;
        padding: 14px 0;
        font-size: .95rem;
        font-weight: 500;
        color: rgba(255,255,255,.7);
        border-bottom: 1px solid rgba(255,255,255,.07);
        transition: color .2s;
    }

        .mobile-menu a:hover {
            color: var(--teal2);
        }

    .mobile-menu .mob-cta {
        display: block;
        margin-top: 20px;
        background: var(--teal);
        color: white;
        text-align: center;
        padding: 14px;
        border-radius: 12px;
        font-weight: 700;
    }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 72px;
}

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 70% 40%,rgba(13,148,136,.18) 0%,transparent 70%),radial-gradient(ellipse 50% 50% at 10% 80%,rgba(20,184,166,.10) 0%,transparent 60%);
    }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(13,148,136,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(13,148,136,.05) 1px,transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,148,136,.15);
    border: 1px solid rgba(13,148,136,.3);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--teal2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal2);
    letter-spacing: .05em;
}

.hero-title {
    font-size: clamp(2.2rem,4.5vw,3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.03em;
}

    .hero-title .accent {
        color: var(--teal2);
    }

    .hero-title .underline-teal {
        position: relative;
        display: inline-block;
    }

        .hero-title .underline-teal::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            right: 0;
            height: 4px;
            background: var(--teal);
            border-radius: 2px;
        }

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    background: var(--teal);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(13,148,136,.4);
}

    .btn-hero-primary:hover {
        background: var(--teal2);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(13,148,136,.5);
    }

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    background: transparent;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,.2);
    cursor: pointer;
    transition: all var(--transition);
}

    .btn-hero-ghost:hover {
        border-color: var(--teal2);
        color: var(--teal2);
    }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}

    .hero-trust-item svg {
        width: 15px;
        height: 15px;
        color: var(--teal2);
        flex-shrink: 0;
    }

.hero-visual {
    position: relative;
    animation: float 5s ease-in-out infinite;
}

.hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-card-dots {
    display: flex;
    gap: 6px;
}

    .hero-card-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .hero-card-dots .d1 {
        background: #ff5f56
    }

    .hero-card-dots .d2 {
        background: #ffbd2e
    }

    .hero-card-dots .d3 {
        background: #27c93f
    }

.hero-card-title {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    font-family: var(--font-head);
    font-weight: 600;
    margin-left: 8px;
}

.mini-dash-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.mini-stat {
    background: rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
}

.mini-stat-val {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.mini-stat-label {
    font-size: .68rem;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
}

.mini-chart-row {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 56px;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 14px;
}

.mini-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--teal);
}

    .mini-bar.amber {
        background: var(--amber)
    }

    .mini-bar.low {
        opacity: .4
    }

.mini-patient-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    margin-bottom: 8px;
}

.mini-patient-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: white;
}

    .mini-avatar.a1 {
        background: linear-gradient(135deg,#6366f1,#8b5cf6)
    }

    .mini-avatar.a2 {
        background: linear-gradient(135deg,#0d9488,#14b8a6)
    }

    .mini-avatar.a3 {
        background: linear-gradient(135deg,#f59e0b,#ef4444)
    }

.mini-patient-name {
    font-size: .78rem;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}

.mini-patient-test {
    font-size: .67rem;
    color: rgba(255,255,255,.35);
}

.mini-badge {
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
}

    .mini-badge.done {
        background: rgba(13,148,136,.2);
        color: var(--teal2)
    }

    .mini-badge.pend {
        background: rgba(245,158,11,.15);
        color: var(--amber)
    }

.chip {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.chip-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip1 {
    top: -20px;
    right: -30px
}

    .chip1 .chip-icon {
        background: var(--teal-lt)
    }

.chip2 {
    bottom: 30px;
    left: -40px
}

    .chip2 .chip-icon {
        background: #fef3c7
    }

/* ── STATS ── */
#stats {
    background: var(--navy2);
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 36px 0;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

    .stat-num span {
        color: var(--teal2)
    }

.stat-label {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
}

/* ── SECTIONS COMMON ── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(1.8rem,3.5vw,2.6rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ── FEATURES ── */
#features {
    padding: 100px 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--teal),var(--teal2));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition);
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feature-icon svg {
        width: 26px;
        height: 26px;
        color: var(--teal);
    }

    .feature-icon.amber-bg {
        background: #fef3c7
    }

        .feature-icon.amber-bg svg {
            color: var(--amber)
        }

    .feature-icon.purple-bg {
        background: #ede9fe
    }

        .feature-icon.purple-bg svg {
            color: #7c3aed
        }

    .feature-icon.rose-bg {
        background: #ffe4e6
    }

        .feature-icon.rose-bg svg {
            color: #e11d48
        }

    .feature-icon.blue-bg {
        background: #dbeafe
    }

        .feature-icon.blue-bg svg {
            color: #2563eb
        }

    .feature-icon.green-bg {
        background: #dcfce7
    }

        .feature-icon.green-bg svg {
            color: #16a34a
        }

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ── HOW IT WORKS ── */
#how {
    padding: 100px 0;
    background: var(--white);
}

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
}

    .step:last-child {
        border-bottom: none
    }

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .95rem;
    color: var(--gray-400);
    transition: all var(--transition);
}

.step.active .step-num {
    background: var(--teal);
    color: var(--white);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-desc {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.step.active .step-desc {
    max-height: 120px;
}

.how-visual {
    background: var(--navy);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .how-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 60% 30%,rgba(13,148,136,.25) 0%,transparent 60%);
    }

.how-visual-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.how-visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(13,148,136,.2);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .how-visual-icon svg {
        width: 40px;
        height: 40px;
        color: var(--teal2);
    }

.how-visual-title {
    font-family: var(--font-head);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-visual-desc {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
}

/* ══════════════════════════════════════════════════
       REPORT SAMPLES SECTION — NEW
    ══════════════════════════════════════════════════ */
#report-samples {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    #report-samples::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(13,148,136,.12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 80% 20%, rgba(245,158,11,.06) 0%, transparent 60%);
    }

    #report-samples .section-label {
        background: rgba(13,148,136,.2);
        color: var(--teal2);
    }

    #report-samples .section-title {
        color: var(--white);
    }

    #report-samples .section-desc {
        color: rgba(255,255,255,.5);
    }

/* Tab filters */
.sample-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.sample-tab {
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.55);
    background: transparent;
    cursor: pointer;
    transition: all .25s;
}

    .sample-tab:hover {
        border-color: var(--teal2);
        color: var(--teal2);
    }

    .sample-tab.active {
        background: var(--teal);
        border-color: var(--teal);
        color: white;
    }

/* Reports grid */
.samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.report-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

    .report-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(0,0,0,.4);
        border-color: rgba(13,148,136,.4);
    }
/* The actual report preview inside the card */
.report-preview {
    padding: 20px;
    background: white;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', Arial, sans-serif;
}

.report-card-footer {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rcard-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    color: white;
}

.rcard-type {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
}

.rcard-badge {
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(13,148,136,.2);
    color: var(--teal2);
}

/* ── Report Design 1: Classic Blue Header ── */
.rep1-header {
    background: #1a4fa0;
    padding: 14px 16px;
    margin: -20px -20px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rep1-lab-name {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-head);
}

.rep1-lab-sub {
    font-size: .62rem;
    color: rgba(255,255,255,.7);
    margin-top: 2px;
}

.rep1-logo-box {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .rep1-logo-box svg {
        width: 22px;
        height: 22px;
        fill: #1a4fa0;
    }

.rep1-patient-bar {
    display: flex;
    gap: 12px;
    background: #f0f4ff;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.rep1-field {
    flex: 1;
    min-width: 80px;
}

.rep1-label {
    font-size: .58rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

.rep1-value {
    font-size: .72rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 1px;
}

.rep1-test-title {
    font-size: .75rem;
    font-weight: 800;
    color: #1a4fa0;
    border-bottom: 2px solid #1a4fa0;
    padding-bottom: 5px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.rep1-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4px;
    padding: 5px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.rep1-row-head {
    font-size: .6rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.rep1-test-name {
    font-size: .68rem;
    color: #1e293b;
    font-weight: 500;
}

.rep1-test-val {
    font-size: .72rem;
    font-weight: 700;
    color: #1e293b;
}

    .rep1-test-val.high {
        color: #dc2626;
    }

    .rep1-test-val.low {
        color: #2563eb;
    }

.rep1-test-ref {
    font-size: .62rem;
    color: #94a3b8;
}

.rep1-test-unit {
    font-size: .62rem;
    color: #64748b;
}

.rep1-flag {
    display: inline-block;
    font-size: .58rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
}

    .rep1-flag.H {
        background: #fee2e2;
        color: #dc2626;
    }

    .rep1-flag.N {
        background: #dcfce7;
        color: #16a34a;
    }

    .rep1-flag.L {
        background: #dbeafe;
        color: #2563eb;
    }

.rep1-footer {
    background: #1a4fa0;
    margin: 10px -20px -20px;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .rep1-footer span {
        font-size: .58rem;
        color: rgba(255,255,255,.7);
    }

/* ── Report Design 2: Green Medical ── */
.rep2-header {
    background: linear-gradient(135deg,#065f46,#0d9488);
    padding: 16px;
    margin: -20px -20px 14px;
}

.rep2-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.rep2-lab {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-head);
}

.rep2-tagline {
    font-size: .6rem;
    color: rgba(255,255,255,.7);
    margin-top: 2px;
}

.rep2-logo {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .rep2-logo svg {
        width: 18px;
        height: 18px;
        fill: white;
    }

.rep2-divider {
    height: 1px;
    background: rgba(255,255,255,.2);
    margin-bottom: 10px;
}

.rep2-patient-strip {
    display: flex;
    gap: 10px;
}

.rep2-pf {
    flex: 1;
}

.rep2-pf-label {
    font-size: .58rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.rep2-pf-value {
    font-size: .7rem;
    color: white;
    font-weight: 700;
}

.rep2-section-title {
    font-size: .7rem;
    font-weight: 800;
    color: #065f46;
    background: #d1fae5;
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rep2-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 0.8fr;
    padding: 5px 6px;
    border-bottom: 1px solid #f0fdf4;
    font-size: .67rem;
    align-items: center;
}

.rep2-row-h {
    font-size: .6rem;
    font-weight: 700;
    color: #94a3b8;
    padding: 4px 6px;
    text-transform: uppercase;
}

.rep2-val-high {
    color: #dc2626;
    font-weight: 700;
}

.rep2-val-norm {
    color: #15803d;
    font-weight: 700;
}

.rep2-ref {
    color: #9ca3af;
    font-size: .6rem;
}

.rep2-footer {
    margin: 10px -20px -20px;
    background: #f0fdf4;
    border-top: 2px solid #0d9488;
    padding: 8px 14px;
    text-align: center;
}

    .rep2-footer p {
        font-size: .6rem;
        color: #6b7280;
    }

/* ── Report Design 3: Dark Premium ── */
.rep3-header {
    background: #0a1628;
    padding: 16px;
    margin: -20px -20px 14px;
    border-bottom: 3px solid #14b8a6;
}

.rep3-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rep3-lab {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: white;
    letter-spacing: -.01em;
}

    .rep3-lab span {
        color: #14b8a6;
    }

.rep3-barcode {
    display: flex;
    gap: 2px;
    height: 28px;
    align-items: flex-end;
}

.rep3-bar {
    width: 2px;
    background: rgba(255,255,255,.4);
}

    .rep3-bar:nth-child(odd) {
        height: 70%;
    }

    .rep3-bar:nth-child(3n) {
        height: 100%;
        background: #14b8a6;
    }

.rep3-meta {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.rep3-meta-item {
    font-size: .6rem;
    color: rgba(255,255,255,.5);
}

    .rep3-meta-item b {
        color: rgba(255,255,255,.9);
    }

.rep3-patient {
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.rep3-pf {
}

.rep3-pf-label {
    font-size: .58rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rep3-pf-value {
    font-size: .7rem;
    font-weight: 700;
    color: #0a1628;
    margin-top: 1px;
}

.rep3-test-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 0.6fr;
    padding: 4px 8px;
    background: #0a1628;
    border-radius: 6px 6px 0 0;
}

.rep3-th {
    font-size: .6rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
}

.rep3-test-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 0.6fr;
    padding: 6px 8px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.rep3-tname {
    font-size: .68rem;
    color: #334155;
    font-weight: 500;
}

.rep3-tval {
    font-size: .72rem;
    font-weight: 700;
    color: #0a1628;
}

    .rep3-tval.abn {
        color: #dc2626;
    }

.rep3-tref {
    font-size: .6rem;
    color: #94a3b8;
}

.rep3-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

    .rep3-status.ok {
        background: #22c55e;
    }

    .rep3-status.ab {
        background: #ef4444;
    }

.rep3-footer {
    background: #0a1628;
    margin: 10px -20px -20px;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .rep3-footer span {
        font-size: .58rem;
        color: rgba(255,255,255,.4);
    }

    .rep3-footer .teal {
        color: #14b8a6;
        font-weight: 700;
    }

/* ── Report Design 4: Minimal Clean ── */
.rep4-header {
    padding: 0 0 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rep4-lab {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
}

    .rep4-lab span {
        color: #0d9488;
    }

.rep4-lab-sub {
    font-size: .62rem;
    color: #94a3b8;
    margin-top: 2px;
}

.rep4-stamp {
    background: #0d9488;
    color: white;
    font-size: .6rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    text-align: center;
}

.rep4-stamp-date {
    font-size: .58rem;
    opacity: .8;
    margin-top: 1px;
}

.rep4-patient {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px 12px;
}

.rep4-pf-label {
    font-size: .58rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.rep4-pf-value {
    font-size: .7rem;
    font-weight: 700;
    color: #1e293b;
}

.rep4-chart-area {
    background: #f0fdf4;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.rep4-chart-title {
    font-size: .65rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.rep4-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.rep4-bar-label {
    font-size: .6rem;
    color: #475569;
    width: 60px;
    flex-shrink: 0;
}

.rep4-bar-track {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden;
}

.rep4-bar-fill {
    height: 100%;
    border-radius: 100px;
}

.rep4-bar-val {
    font-size: .6rem;
    font-weight: 700;
    color: #1e293b;
    width: 30px;
    text-align: right;
}

.rep4-normal {
    color: #16a34a;
    font-size: .58rem;
}

.rep4-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    padding: 5px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: .68rem;
}

.rep4-val {
    font-weight: 700;
    color: #1e293b;
}

    .rep4-val.flag-h {
        color: #dc2626;
    }

.rep4-ref {
    color: #94a3b8;
    font-size: .62rem;
}

.rep4-footer {
    border-top: 2px dashed #e2e8f0;
    margin-top: 10px;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rep4-dr {
    font-size: .65rem;
    font-weight: 700;
    color: #0d9488;
}

.rep4-sig-line {
    width: 60px;
    height: 1px;
    background: #94a3b8;
    margin-top: 14px;
}

.rep4-sig-label {
    font-size: .55rem;
    color: #94a3b8;
}

/* ── Report Design 5: Colorful Kids/Pediatric ── */
.rep5-header {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    padding: 14px 16px;
    margin: -20px -20px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rep5-lab {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .95rem;
    color: white;
}

.rep5-tag {
    font-size: .6rem;
    background: rgba(255,255,255,.2);
    color: white;
    padding: 3px 8px;
    border-radius: 100px;
    margin-top: 3px;
    display: inline-block;
}

.rep5-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .rep5-icon svg {
        width: 18px;
        height: 18px;
        fill: white;
    }

.rep5-patient {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.rep5-pf {
    background: #f3e8ff;
    border-radius: 8px;
    padding: 6px 10px;
    flex: 1;
    min-width: 70px;
}

.rep5-pf-label {
    font-size: .58rem;
    color: #7c3aed;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05em;
}

.rep5-pf-value {
    font-size: .7rem;
    font-weight: 700;
    color: #4c1d95;
}

.rep5-section {
    font-size: .68rem;
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rep5-progress-rows {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 10px;
}

.rep5-prog-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rep5-prog-name {
    font-size: .62rem;
    color: #1e293b;
    width: 70px;
    flex-shrink: 0;
    font-weight: 500;
}

.rep5-prog-track {
    flex: 1;
    height: 9px;
    background: #ede9fe;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.rep5-prog-fill {
    height: 100%;
    border-radius: 100px;
}

.rep5-prog-val {
    font-size: .65rem;
    font-weight: 700;
    width: 32px;
    text-align: right;
    color: #4c1d95;
}

.rep5-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 5px 6px;
    font-size: .68rem;
    border-bottom: 1px solid #f3e8ff;
}

.rep5-row-h {
    font-size: .58rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 6px;
}

.rep5-val-ok {
    color: #7c3aed;
    font-weight: 700;
}

.rep5-val-ab {
    color: #dc2626;
    font-weight: 700;
}

.rep5-footer {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    margin: 10px -20px -20px;
    padding: 8px 14px;
    text-align: center;
}

    .rep5-footer p {
        font-size: .6rem;
        color: rgba(255,255,255,.7);
    }

/* ── Report Design 6: Invoice Style ── */
.rep6-header {
    background: #f8fafc;
    border-bottom: 3px solid #f59e0b;
    padding: 14px 16px;
    margin: -20px -20px 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rep6-lab {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .95rem;
    color: #1e293b;
}

    .rep6-lab span {
        color: #f59e0b;
    }

.rep6-lab-address {
    font-size: .6rem;
    color: #94a3b8;
    margin-top: 2px;
}

.rep6-invoice-box {
    text-align: right;
}

.rep6-inv-label {
    font-size: .58rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.rep6-inv-num {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 800;
    color: #f59e0b;
}

.rep6-patient {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px;
    flex-wrap: wrap;
}

.rep6-pf {
    flex: 1;
    min-width: 80px;
}

.rep6-pf-label {
    font-size: .58rem;
    color: #92400e;
    text-transform: uppercase;
    font-weight: 600;
}

.rep6-pf-value {
    font-size: .7rem;
    font-weight: 700;
    color: #78350f;
}

.rep6-table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    background: #fbbf24;
    padding: 5px 8px;
    border-radius: 6px 6px 0 0;
}

.rep6-th {
    font-size: .6rem;
    font-weight: 800;
    color: #78350f;
    text-transform: uppercase;
}

.rep6-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    padding: 6px 8px;
    border-bottom: 1px solid #fef3c7;
    align-items: center;
}

.rep6-tname {
    font-size: .68rem;
    color: #1e293b;
    font-weight: 500;
}

.rep6-tval {
    font-size: .72rem;
    font-weight: 700;
    color: #1e293b;
}

    .rep6-tval.h {
        color: #dc2626;
    }

.rep6-tref {
    font-size: .6rem;
    color: #94a3b8;
}

.rep6-status {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .6rem;
    font-weight: 700;
}

    .rep6-status.ok {
        color: #16a34a;
    }

    .rep6-status.ab {
        color: #dc2626;
    }

.rep6-footer {
    background: #f59e0b;
    margin: 10px -20px -20px;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
}

    .rep6-footer span {
        font-size: .6rem;
        color: #78350f;
        font-weight: 600;
    }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .lightbox.open {
        display: flex;
    }

.lightbox-inner {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── PRICING ── */
#pricing {
    padding: 100px 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 22px;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .pricing-card.featured {
        background: var(--navy);
        border-color: var(--teal);
        box-shadow: 0 0 0 2px var(--teal),var(--shadow-lg);
    }

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: white;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.featured .plan-name {
    color: var(--teal2)
}

.plan-price {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.featured .plan-price {
    color: var(--white)
}

.plan-price .curr {
    font-size: 1rem;
    font-weight: 600
}

.plan-period {
    font-size: .78rem;
    color: var(--gray-400);
    margin-bottom: 20px
}

.featured .plan-period {
    color: rgba(255,255,255,.45)
}

.plan-divider {
    height: 1px;
    background: var(--gray-100);
    margin-bottom: 20px
}

.featured .plan-divider {
    background: rgba(255,255,255,.1)
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .82rem;
    color: var(--gray-600)
}

.featured .plan-feature {
    color: rgba(255,255,255,.7)
}

.plan-feature svg {
    width: 15px;
    height: 15px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px
}

.featured .plan-feature svg {
    color: var(--teal2)
}

.plan-feature strong {
    color: var(--navy)
}

.featured .plan-feature strong {
    color: var(--white)
}

.plan-cta {
    display: block;
    width: 100%;
    margin-top: 24px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .88rem;
    padding: 12px;
    border-radius: 10px;
    border: 1.5px solid var(--gray-200);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
}

    .plan-cta:hover {
        border-color: var(--teal);
        color: var(--teal)
    }

.featured .plan-cta {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white)
}

    .featured .plan-cta:hover {
        background: var(--teal2);
        border-color: var(--teal2)
    }

.pricing-custom {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-custom-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px
}

.pricing-custom-text p {
    font-size: .9rem;
    color: var(--gray-600)
}

/* ── TESTIMONIALS ── */
#testimonials {
    padding: 100px 0;
    background: var(--white)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition)
}

    .testimonial-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md)
    }

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px
}

    .stars span {
        color: var(--amber);
        font-size: 1rem
    }

.testimonial-text {
    font-size: .92rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: white
}

.author-name {
    font-weight: 700;
    font-size: .9rem
}

.author-role {
    font-size: .78rem;
    color: var(--gray-400)
}

/* ── FAQ ── */
#faq {
    padding: 100px 0;
    background: var(--gray-50)
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    color: var(--navy);
    gap: 12px
}

.faq-arrow {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    font-size: .75rem
}

.faq-item.open .faq-arrow {
    background: var(--teal);
    color: white;
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.7
}

.faq-item.open .faq-answer {
    max-height: 200px
}

.faq-answer p {
    padding: 0 22px 20px
}

/* ── CTA ── */
#cta {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 50% 50%,rgba(13,148,136,.15) 0%,transparent 70%)
    }

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto
}

    .cta-inner h2 {
        font-size: clamp(1.8rem,3vw,2.8rem);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 16px
    }

    .cta-inner p {
        font-size: 1rem;
        color: rgba(255,255,255,.6);
        margin-bottom: 36px;
        line-height: 1.7
    }

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.cta-phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 16px 24px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px
}

.cta-phone-item {
    display: flex;
    align-items: center;
    gap: 10px
}

.cta-phone-icon {
    width: 38px;
    height: 38px;
    background: var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

    .cta-phone-icon svg {
        width: 18px;
        height: 18px;
        color: white
    }

.cta-phone-label {
    font-size: .75rem;
    color: rgba(255,255,255,.4)
}

.cta-phone-num {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: white
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07)
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    /*background: var(--teal);*/
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center
}

    .footer-logo-icon svg {
        width: 20px;
        height: 20px;
        fill: white
    }

.footer-logo-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: white
}

    .footer-logo-text span {
        color: var(--teal2)
    }

.footer-tagline {
    font-size: .88rem;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 24px
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .footer-contact a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .85rem;
        color: rgba(255,255,255,.5);
        transition: color .2s
    }

        .footer-contact a:hover {
            color: var(--teal2)
        }

        .footer-contact a svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0
        }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .footer-col ul li a {
        font-size: .88rem;
        color: rgba(255,255,255,.5);
        transition: color .2s
    }

        .footer-col ul li a:hover {
            color: var(--teal2)
        }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: .82rem;
    color: rgba(255,255,255,.3)
}

.footer-bottom-links {
    display: flex;
    gap: 20px
}

    .footer-bottom-links a {
        font-size: .82rem;
        color: rgba(255,255,255,.3);
        transition: color .2s
    }

        .footer-bottom-links a:hover {
            color: var(--teal2)
        }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    transition: all .3s
}

    .whatsapp-float:hover {
        transform: scale(1.1)
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
        fill: white
    }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
        padding: 60px 24px 48px
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto
    }

    .hero-ctas {
        justify-content: center
    }

    .hero-trust {
        justify-content: center
    }

    .hero-visual {
        display: none
    }

    .stats-inner {
        grid-template-columns: repeat(2,1fr)
    }

    .features-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .how-inner {
        grid-template-columns: 1fr
    }

    .samples-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr
    }

    .faq-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .pricing-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .nav-links, .btn-ghost {
        display: none
    }

    .hamburger {
        display: flex
    }
}

@media(max-width:600px) {
    .features-grid {
        grid-template-columns: 1fr
    }

    .samples-grid {
        grid-template-columns: 1fr
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .stats-inner {
        grid-template-columns: repeat(2,1fr)
    }
}
