/**
 * VerifiedPractitioner Landing Page
 * Mirrors DocVaulted design patterns with VP brand colours.
 */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --navy: #0B1D3A;
    --navy-light: #132D54;
    --navy-mid: #1A3A6B;
    --navy-deep: #0B1D3A;
    --slate: #3D5A80;
    --green: #1F5560;
    --green-dark: #095e43;
    --teal: #1F5560;
    --teal-dark: #17424b;
    --teal-glow: #EBF3F5;
    --accent: #C49A6C;
    --green-light: #E8F5EF;
    --gold: #C49A6C;
    --gold-light: #D4AD82;
    --amber: #C49A6C;
    --red: #EF4444;
    --text: #1A1F2E;
    --text-muted: #5A6578;
    --mid-gray: #8896A7;
    --border: #E8ECF1;
    --bg-light: #F7F8FA;
    --off-white: #F7F8FA;
    --bg-teal: #eef6f5;
    --white: #FFFFFF;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1180px;
    --section-pad: 100px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(11,29,58,0.06);
    --shadow-lg: 0 20px 50px rgba(11,29,58,0.12);
    --transition: 0.3s ease;
}

/* ── Base ──────────────────────────────────────────────────── */
html { font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 16px; letter-spacing: -0.015em; }
h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: 8px; }
p { font-size: 1.1rem; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.text-center { text-align: center; }

.section-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
    margin: 12px auto 40px;
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Navigation ────────────────────────────────────────────── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

#nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -1px;
    text-decoration: none !important;
}

.logo:hover {
    text-decoration: none !important;
}

.logo .logo-icon { width: 36px; height: auto; display: block; }

.logo-icon { object-fit: contain; }

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

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); text-decoration: none; }

.nav-cta {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: var(--white) !important;
    background: var(--teal);
    padding: 9px 22px;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--teal-dark) !important;
    color: var(--white) !important;
}

.nav-login {
    border: 1.5px solid var(--border);
    padding: 8px 20px !important;
    border-radius: 6px;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    transition: all 0.2s;
}

.nav-login:hover {
    border-color: var(--teal) !important;
    color: var(--teal) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--teal);
    border: none;
    padding: 16px 26px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(31, 85, 96, 0.3);
}

.btn-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 4px 20px rgba(31, 85, 96, 0.4);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--white);
}

.btn-primary-lg {
    font-size: 1.08rem;
    padding: 18px 42px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--teal);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-secondary:hover { color: var(--teal-dark); text-decoration: none; }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(3px); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: #eeeeee;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-decoration: none;
}

.hero-title,
.hero-title *,
.hero-title span,
.hero-title a {
    text-decoration: none !important;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 660px;
    line-height: 1.65;
    margin: 0 0 24px;
}

.hero-subline {
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 16px;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.subheadline strong { color: var(--navy); }

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.hero .btn-secondary { color: var(--teal); }

.hero-fine-print {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Hero Bullets */
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.hero-bullets svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.hero-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
}

.trust-item svg { opacity: 0.7; flex-shrink: 0; color: var(--teal); }

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

.hero-mockup {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(46,60,82,0.10), 0 8px 24px rgba(46,60,82,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.hero-mockup::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--accent));
    border-radius: 0 0 3px 3px;
}

/* Mockup score header */
.mockup-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.mockup-score-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.mockup-score-label {
    display: inline;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

.mockup-score-stars {
    display: inline;
    color: #e9a255;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-left: 6px;
}

.mockup-score-row {
    margin-bottom: 2px;
}

.mockup-score-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mockup-score-badge {
    text-align: center;
}

.mockup-score-badge span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-top: -2px;
}

/* Mockup review cards */
.mockup-review {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.mockup-review-alt { background: var(--bg-light); }

.mockup-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.mockup-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mockup-author { font-size: 0.85rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.mockup-review-stars { color: #e9a255; font-size: 0.8rem; letter-spacing: 1px; line-height: 1.2; }
.mockup-verified { color: var(--green); font-size: 0.7rem; font-weight: 600; letter-spacing: 0; }
.mockup-review p { font-family: 'Merriweather', Georgia, serif; font-size: 0.88rem; color: var(--text); line-height: 1.55; margin: 0; font-style: italic; }

.mockup-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    padding: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 14px;
}

.mockup-badge img { border-radius: 4px; }

/* Floating cards */
.float-card {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(46,60,82,0.10), 0 2px 8px rgba(46,60,82,0.06);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
    animation: floatBounce 6s ease-in-out infinite;
}

.float-card-top { top: -16px; right: -20px; }
.float-card-bottom { bottom: -16px; left: -20px; animation-delay: 3s; }

.float-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.float-dot-blue { background: #3B82F6; }

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Practitioner Search Bar ──────────────────────────────── */
.vp-search-bar {
    background: #1B4A53;
    padding: 28px 0;
    border-bottom: none;
}

.vp-search-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.vp-search-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.vp-search-input-wrap {
    flex: 1;
    position: relative;
}

.vp-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
}

.vp-search-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--navy);
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}

.vp-search-input:focus {
    border-color: var(--teal);
}

.vp-search-input::placeholder {
    color: #4B5563;
    opacity: 1;
}

.vp-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-top: 4px;
    z-index: 50;
    max-height: 300px;
    overflow-y: auto;
}

.vp-search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    border-bottom: 1px solid #F3F4F6;
}

.vp-search-result:last-child {
    border-bottom: none;
}

.vp-search-result:hover {
    background: #f0faf7;
    text-decoration: none;
}

.vp-search-result-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #E5E7EB;
}

.vp-search-result-info {
    flex: 1;
    min-width: 0;
}

.vp-search-result-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.vp-search-result-biz {
    font-size: 13px;
    color: #6B7280;
}

.vp-search-result-rating {
    font-size: 13px;
    color: #F59E0B;
    white-space: nowrap;
}

.vp-search-result-count {
    font-size: 12px;
    color: #9CA3AF;
}

.vp-search-no-results {
    padding: 16px;
    text-align: center;
    color: #6B7280;
    font-size: 14px;
}

@media (max-width: 768px) {
    .vp-search-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .vp-search-label {
        text-align: center;
    }
}

/* ── Video Explainer ───────────────────────────────────────── */
.video-explainer {
    padding: 60px 0 70px;
    background: #ffffff;
}
.video-explainer h2 {
    color: var(--navy);
    margin-bottom: 24px;
}
.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.video-pair-item { text-align: center; }
.video-pair-item h2 { color: var(--navy); margin-bottom: 24px; }
.video-pair-item .video-wrapper { max-width: none; }
.video-pair-item .video-caption { margin-top: 16px; font-size: 16px; color: var(--navy); font-weight: 600; }
@media (max-width: 900px) {
    .video-pair { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Problem ───────────────────────────────────────────────── */
.problem {
    background: #1B4A53;
    padding: 80px 0;
    color: rgba(255,255,255,0.85);
}

.problem h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.problem .section-label { color: var(--accent); }

.problem-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.pain-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.02rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.pain-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.problem-aside {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
}

.problem-aside p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.highlight-line {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    font-size: 1.15rem;
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    line-height: 1.6;
}

/* ── Outcomes ──────────────────────────────────────────────── */
.outcomes {
    background: #E8EEEF;
    padding: 80px 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.outcome-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.outcome-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.outcome-card.featured {
    grid-row: span 2;
    background: linear-gradient(160deg, var(--navy) 0%, #1e3045 100%);
    color: rgba(255,255,255,0.85);
    border: none;
}

.outcome-card.featured h3 { color: var(--white); }
.outcome-card.featured .outcome-icon { background: rgba(255,255,255,0.1); color: var(--accent); }

.outcome-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #F7F0E7;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.outcome-stat {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.outcome-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }
.outcome-card.featured p { color: rgba(255,255,255,0.7); }

.outcomes h2 { color: var(--navy); }

/* Benefits Grid (replaces outcomes for 6-card layout) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-card h3 { font-size: 1.25rem; }
.benefit-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 29px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: var(--border);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #3198AD;
    color: #3198AD;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
}

.step-icon {
    color: var(--teal);
    margin-bottom: 12px;
}

.step p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; max-width: 300px; margin: 0 auto; }

.steps-4 { grid-template-columns: repeat(4, 1fr); }
.steps-4::before { left: 10%; right: 10%; }

.steps-closing {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    max-width: 680px;
    margin: 40px auto 0;
    line-height: 1.7;
}

/* ── Google / SEO ──────────────────────────────────────────── */
.google-section {
    background: #E8EEEF;
    padding: 80px 0;
}

.google-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.google-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.google-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #F7F0E7;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.google-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }

/* ── Differentiation ──────────────────────────────────────── */
.differentiation {
    padding: 80px 0;
    background: #F7F8FA;
}

.differentiation h2 { margin-bottom: 40px; }

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.diff-col {
    border-radius: var(--radius);
    padding: 32px;
}

.diff-col h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.diff-col ul {
    list-style: none;
    padding: 0;
}

.diff-col li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.diff-col-other {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.diff-col-other h3 { color: #dc2626; }
.diff-col-other h3 svg { color: #dc2626; }

.diff-col-other li::before {
    content: '\2013';
    position: absolute;
    left: 4px;
    color: #dc2626;
    font-weight: 700;
}

.diff-col-vp {
    background: #fff;
    border: 1px solid rgba(0, 180, 166, 0.3);
}

.diff-col-vp h3 { color: var(--green); }
.diff-col-vp h3 svg { color: var(--teal); }

.diff-col-vp li::before {
    content: '\2713';
    position: absolute;
    left: 4px;
    color: var(--teal);
    font-weight: 700;
}

/* ── Comparison ────────────────────────────────────────────── */
.comparison {
    padding: 80px 0;
    background: #F7F8FA;
}

.comparison-table-wrap { overflow-x: auto; margin-top: 32px; border: 4px solid #3198AD; border-radius: 12px; overflow: hidden; padding: 10px; }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.comparison-table thead th {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000000;
    background: var(--bg-light);
    position: sticky;
    top: 0;
}

.highlight-col {
    background: var(--teal-glow) !important;
    font-weight: 500;
}

.comparison-table thead .highlight-col {
    background: var(--teal) !important;
    color: var(--white) !important;
}

.table-check { color: var(--teal); vertical-align: middle; }
.table-x { color: var(--red); opacity: 0.6; vertical-align: middle; }
.comparison-table td svg { vertical-align: middle; display: inline-block; }

.comparison-cards-mobile { display: none; }

.comp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 12px;
}

.comp-card-vp {
    border-color: var(--teal);
    background: var(--teal-glow);
}

.comp-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.comp-card ul {
    list-style: none;
    padding: 0;
}

.comp-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.comp-card li svg { flex-shrink: 0; }
.comp-card .table-check, .comp-card-vp li svg { color: var(--teal); }
.comp-card .table-x { color: var(--red); opacity: 0.6; }

/* ── Security Strip ────────────────────────────────────────── */
.security-strip {
    background: #E8EEEF;
    padding: 28px 0;
}

.security-strip-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.security-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 0.95rem;
    font-weight: 600;
}

.security-strip-item svg {
    flex-shrink: 0;
}

.security-strip-item span {
    color: var(--text);
}

.security-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing-card {
    max-width: 800px;
    margin: 32px auto 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid #58a1b0;
}

.pricing-header {
    background: #1F5560;
    color: var(--white);
    padding: 36px 32px;
    text-align: center;
}

.pricing-label {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
    line-height: 1.1;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-currency { font-size: 1.5rem; font-weight: 600; }
.pricing-value { font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 800; }
.pricing-period { font-size: 1rem; color: rgba(255,255,255,0.7); }

.pricing-note { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 4px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-toggle-btn.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pricing-toggle-btn:hover:not(.active) {
    color: rgba(255,255,255,0.9);
}

.pricing-save-badge {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--teal);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pricing-toggle-btn.active .pricing-save-badge {
    background: var(--teal);
    color: var(--white);
}

.pricing-option { display: none; }
.pricing-option.active { display: block; }

.pricing-setup {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}

.pricing-features {
    list-style: none;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg { color: var(--teal); flex-shrink: 0; }

/* Single-column variant - used by the Clinic card so its 6 features stack
   cleanly under the "Everything in Individual Plan, plus..." header. */
.pricing-features--single {
    grid-template-columns: 1fr;
}
.pricing-features__heading {
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    font-size: 1rem;
    color: var(--navy, #1A1F2E);
}
.pricing-features__heading strong { font-weight: 700; }

.pricing-cta {
    display: block;
    width: calc(100% - 64px);
    margin: 0 32px 20px;
    text-align: center;
    justify-content: center;
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0 32px 24px;
}

.guarantee-box {
    display: flex;
    gap: 16px;
    margin: 0 32px 32px;
    padding: 20px;
    background: #fff2d7;
    border: 1px solid #e0b265;
    border-radius: var(--radius);
}

.guarantee-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-box strong {
    font-family: 'Fraunces', serif;
    font-size: 1.25em;
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
}

.guarantee-box p { font-size: 1rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.guarantee-box.guarantee-highlight {
    background: #e8f5e9;
    border-color: #4caf50;
}
.guarantee-box.guarantee-highlight .guarantee-icon { color: #4caf50; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
    background: var(--bg-light);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    max-width: 1100px;
    margin: 32px auto 0;
}

.faq-list {
    
    
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq-question:hover { color: var(--teal); }

.faq-toggle {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-toggle { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Final CTA ─────────────────────────────────────────────── */
.final-cta {
    background: #1B4A53;
    padding: 80px 0;
    color: var(--white);
}

.final-cta h2 { color: var(--white); }
.final-cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-benefits {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.final-cta-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    font-weight: 500;
}

.final-cta-benefits svg { color: var(--accent); }

.final-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.final-cta .btn-primary-lg {
    background: var(--accent);
    box-shadow: 0 2px 12px rgba(196, 154, 108, 0.3);
}

.final-cta .btn-primary-lg:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 20px rgba(196, 154, 108, 0.4);
}

/* ── Signup ────────────────────────────────────────────────── */
.signup {
    padding: 80px 0;
    background: #F7F0E7;
}

.signup-layout {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 420px);
    gap: 40px;
    align-items: start;
    justify-content: center;
}
.signup-card {
    max-width: none;
    margin: 0;
    text-align: center;
}
.signup-testimonial {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: sticky;
    top: 24px;
}
@media (max-width: 1000px) {
    .signup-layout { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .signup-testimonial { position: static; }
}

.signup-card h2 { margin-bottom: 8px; }
.signup-card > p { color: var(--text-muted); margin-bottom: 28px; }

.signup-form {
    text-align: left;
}

.signup-plan-toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.signup-plan-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.signup-plan-option:has(input:checked) {
    border-color: var(--teal);
    background: rgba(0, 180, 166, 0.05);
}

.signup-plan-option input[type="radio"] {
    accent-color: var(--teal);
    width: 16px;
    height: 16px;
}

/* Tier picker (Individual / Clinic) - styled as side-by-side cards so the
   choice feels weighted, not like another inline radio. Each label wraps
   the radio (visually hidden) and a card surface that flips state via :has. */
.signup-tier-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.signup-tier-option {
    cursor: pointer;
    margin: 0;
}
.signup-tier-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    /* Constrain - without dimensions an absolutely-positioned empty input
       can stretch to its containing block on some browsers, causing
       horizontal overflow on the whole page. */
    width: 1px;
    height: 1px;
    left: 0;
    top: 0;
}
.signup-tier-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.signup-tier-option:hover .signup-tier-card {
    border-color: #58a1b0;
}
.signup-tier-option:has(input:checked) .signup-tier-card {
    border-color: var(--teal);
    background: #EAEDE3;
    box-shadow: 0 2px 8px rgba(31, 85, 96, 0.08);
}
.signup-tier-card__title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy, #1A1F2E);
}
.signup-tier-card__sub {
    font-size: 0.8rem;
    color: var(--text-muted, #6B7280);
}
.signup-tier-card__price {
    margin-top: 6px;
    font-weight: 600;
    color: var(--teal);
    font-size: 0.95rem;
}
.signup-tier-option:has(input[value="clinic"]:checked) .signup-tier-card__price {
    color: #C49A6C;
}

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

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-required {
    color: #C2553A;
    font-weight: 700;
    margin-left: 2px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 3px solid #d3d3d3;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-glow);
}

.signup-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.signup-fine-print {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
    background: #14383f;
    padding: 40px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-logo { margin-bottom: 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo svg, .footer-logo img { width: 48px; height: auto; }
.footer-logo svg path, .footer-logo svg circle, .footer-logo svg rect, .footer-logo svg polygon { fill: #fff !important; stroke: #fff !important; }
.footer-logo-text { font-family: var(--font-body); font-size: 1.25rem; font-weight: 700; color: var(--white); }
.footer-tagline { color: rgba(255,255,255,0.7); font-weight: 500; margin-bottom: 16px; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-links a:hover { color: var(--white); }
.footer-copy { margin: 0; }
.footer-company { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 8px; line-height: 1.5; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 100;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ── Legal Pages ───────────────────────────────────────────── */
.legal-header {
    padding: 140px 0 48px;
    background: var(--navy);
    position: relative;
    text-align: center;
}
.legal-header::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    pointer-events: none;
}
.legal-header-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.legal-header .section-label {
    color: var(--teal);
    margin-bottom: 12px;
}
.legal-header h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 16px;
}
.legal-header .legal-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.legal-header .legal-meta span {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
}
.legal-header .legal-meta .legal-version {
    background: rgba(0,180,166,0.15);
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 20px;
}

.legal-page {
    padding: 48px 0 80px;
    background: var(--bg-light);
    min-height: 60vh;
}
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-section-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.legal-section-title:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 12px;
}
.legal-content ul {
    list-style: none;
    margin: 8px 0 16px;
    padding: 0;
}
.legal-content ul li {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 6px;
}
.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}
.legal-content .legal-address {
    font-style: normal;
    background: var(--white);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 16px 0;
    border: 1px solid var(--border);
    line-height: 1.8;
    font-size: 1.05rem;
}
.legal-content .legal-note {
    font-weight: 600;
    color: var(--navy);
}
.legal-content .legal-end {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: var(--white);
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    flex: 1;
    min-width: 280px;
    line-height: 1.5;
}
.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
/* Both buttons share identical styling so "Essential only" is as prominent
   as "Accept all" (ICO / EDPB: rejecting must be as easy as accepting). */
.cookie-accept,
.cookie-decline {
    background: var(--teal);
    color: var(--white);
    border: 1px solid var(--teal);
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.cookie-accept:hover,
.cookie-decline:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-bullets { text-align: left; max-width: 460px; margin-left: auto; margin-right: auto; }
    .hero-visual { max-width: 460px; margin: 0 auto; }
    .float-card-top { right: -10px; }
    .float-card-bottom { left: -10px; }
    .problem-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
    .outcome-card.featured { grid-row: auto; }
    .steps-4 { grid-template-columns: repeat(2, 1fr); }
    .steps-4::before { display: none; }
    .google-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-table-wrap { display: none; }
    .comparison-cards-mobile { display: block; margin-top: 32px; }
}

@media (max-width: 768px) {
    /* Drop backdrop-filter on mobile - it creates a containing block that
       traps position:fixed descendants (the menu drawer), preventing them
       from anchoring to the viewport. The blur is a small visual nicety
       that's barely noticeable on a phone anyway. */
    #nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--white); }
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        background: var(--white);
        padding: 16px;
        box-sizing: border-box;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
        gap: 0;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--text) !important; padding: 12px 16px; font-size: 1rem; }
    .nav-links .nav-login { margin-top: 8px; }
    .nav-links .nav-cta { margin-top: 10px; color: var(--white) !important; }
    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2rem; }
    .subheadline { font-size: 1rem; }
    .legal-header { padding: 120px 0 36px; }
    .legal-page { padding: 36px 0 60px; }
    .legal-content { padding: 0 16px; }
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-banner-actions { justify-content: center; }
    .benefits-grid { grid-template-columns: 1fr; }
    .outcomes-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 24px; }
    .steps::before { display: none; }
    .steps-4 { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .final-cta-benefits { flex-direction: column; align-items: center; gap: 12px; }
    .pricing-card { margin: 32px 0 0; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 0 50px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: row; flex-wrap: wrap; gap: 6px; justify-content: center; }
    .hero-trust .trust-item { padding: 5px 10px; font-size: 0.85rem; gap: 4px; white-space: nowrap; }
    .hero-trust .trust-item svg { width: 14px; height: 14px; }
    .float-card { display: none; }
    .pricing-features { padding: 20px 16px; grid-template-columns: 1fr; }
    .pricing-cta { width: calc(100% - 32px); margin-left: 16px; margin-right: 16px; }
    .guarantee-box { margin: 0 16px 24px; flex-direction: column; text-align: center; }
}

/* ── Testimonial ───────────────────────────────────────────── */
.testimonial {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--teal-glow) 100%);
}
.testimonial-heading {
    margin: 0 auto 24px;
    max-width: 760px;
}

/* Pricing layout - pricing card + Maria testimonial side-by-side */
.pricing-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    max-width: 1100px;
    margin: 32px auto 0;
}
.pricing-tiers .pricing-card { margin: 0; max-width: none; display: flex; flex-direction: column; }
.pricing-tiers .pricing-features { flex: 1; }
.pricing-card--clinic { border: 2px solid #d09454; box-shadow: 0 12px 40px rgba(31, 85, 96, 0.18); }
.pricing-card--clinic .pricing-header { background: #56310a; }
.pricing-badge-best {
    display: inline-block;
    background: #C49A6C;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 6px;
    margin-bottom: 14px;
}
.pricing-badge-individual {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
/* Clinic-card overrides: caramel CTA + caramel ticks + caramel save-pill,
   so the upsell tier visually carries through the brand accent. */
.pricing-card--clinic .pricing-cta,
.pricing-card--clinic .pricing-cta-clinic {
    background: #C49A6C !important;
    border-color: #C49A6C !important;
    color: #ffffff !important;
}
.pricing-card--clinic .pricing-cta:hover,
.pricing-card--clinic .pricing-cta-clinic:hover {
    background: #B0875A !important;
    border-color: #B0875A !important;
}
.pricing-card--clinic .pricing-features svg {
    color: #C49A6C !important;
}
.pricing-card--clinic .pricing-save-badge {
    background: #C49A6C !important;
    color: #ffffff !important;
}
.pricing-guarantees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto 0;
}
.pricing-testimonial {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 40px auto 0;
}
@media (max-width: 900px) {
    .pricing-tiers { grid-template-columns: 1fr; max-width: 600px; }
    .pricing-guarantees-grid { grid-template-columns: 1fr; }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 20px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 280px;
    line-height: 1;
    color: var(--teal-glow);
    z-index: 0;
    pointer-events: none;
}
.testimonial-photo-wrap {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.testimonial-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(31, 85, 96, 0.18);
    display: block;
}
.testimonial-body {
    flex: 1;
    position: relative;
    z-index: 1;
}
.testimonial-stars {
    color: #e9a255;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.testimonial-quote {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    font-style: italic;
    margin: 0 0 24px;
    border: 0;
    padding: 0;
    text-align: left;
}
.testimonial-attribution {
    border-top: 1px solid #E5E7EB;
    padding-top: 16px;
    text-align: center;
    width: 100%;
}
.testimonial-name {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--teal);
}
.testimonial-business {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 2px;
}
@media (max-width: 768px) {
    .testimonial { padding: 56px 0; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        gap: 24px;
        margin: 0 16px;
    }
    .testimonial-card::before { font-size: 180px; top: -20px; left: 16px; }
    .testimonial-photo { width: 120px; height: 120px; }
    .testimonial-quote { font-size: 17px; text-align: left; }
    .testimonial-attribution { text-align: center; }
}

/* ── B1 funnel sprint additions: hero trial note, mockup caption,
   proof strip, founder block ─────────────────────────────────── */
.hero-trial-note {
    margin: 14px 0 20px;
    font-size: 1rem;
    color: var(--text-muted);
}
.hero-trial-note strong { color: var(--teal); }

.mockup-caption {
    /* 30px top clearance - .float-card-bottom hangs 16px below the mockup */
    margin: 30px 4px 0;
    font-size: 1rem;
    color: var(--mid-gray);
    text-align: center;
}

.proof-strip {
    background: var(--teal-glow);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.proof-strip p {
    margin: 0;
    text-align: center;
    font-size: 1rem;
    color: var(--text);
}
.proof-strip-star { color: #E8A838; }
.proof-strip a { font-weight: 600; }

.founder-note {
    padding: 72px 0;
    background: #fff;
}
.founder-note-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.founder-note-inner h2 { margin-bottom: 16px; }
.founder-note-inner p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 14px;
}
.founder-note-inner p:last-child { margin-bottom: 0; }
.founder-note-inner a { font-weight: 600; }
