:root {
            /* Aliases onto the shared brand tokens (brand.css), so existing
               .class selectors below keep working without a full rewrite. */
            --color-cream: var(--surface-warm);
            --color-sage: var(--brand);
            --color-sage-dark: var(--brand-deep);
            --color-sage-button: var(--brand-button); /* white-text buttons only, WCAG AA 5.36:1 */
            --color-sage-light: var(--brand-tint);
            --color-terracotta: #C4704B;
            --color-terracotta-light: #E8A98A;
            --color-charcoal: var(--brand-text);
            --color-charcoal-light: var(--brand-text-muted);
            --color-white: #FFFFFF;
            --shadow-soft: 0 4px 20px rgba(45, 52, 54, 0.08);
            --shadow-medium: 0 8px 40px rgba(45, 52, 54, 0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-charcoal);
            background: var(--color-cream);
            line-height: 1.7;
            font-size: 17px;
            overflow-x: hidden;
        }

        /* Utility */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 247, 242, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(122, 158, 126, 0.1);
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ink);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            object-fit: cover;
        }

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

        nav a {
            color: var(--color-charcoal);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-sage);
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-sage-button) 0%, var(--color-sage-dark) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(122, 158, 126, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(122, 158, 126, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-sage-dark);
            border: 2px solid var(--color-sage);
        }

        .btn-secondary:hover {
            background: var(--color-sage-light);
        }

        .btn-terracotta {
            background: linear-gradient(135deg, var(--color-terracotta) 0%, #A85A3B 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(196, 112, 75, 0.3);
        }

        .btn-terracotta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 112, 75, 0.4);
        }

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

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(122, 158, 126, 0.15) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(196, 112, 75, 0.1) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(5deg); }
            66% { transform: translate(-20px, 20px) rotate(-5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--color-sage-light);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-sage-dark);
            margin-bottom: 24px;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .hero-badge::before {
            content: '✦';
            color: var(--color-sage);
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--ink);
            margin-bottom: 24px;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }

        .hero h1 span {
            color: var(--ink);
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--color-charcoal-light);
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }

        .hero-guide-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--color-sage-dark);
            margin: -16px 0 40px;
            animation: fadeInUp 0.6s ease-out 0.45s both;
        }

        .hero-guide-note::before {
            content: '✦';
            color: var(--color-sage);
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease-out 0.5s both;
        }

        /* Section Styles */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-sage);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--color-charcoal);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--color-charcoal-light);
        }

        /* Problem Section */
        .problem {
            background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
        }

        .problem-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-medium);
            border: 1px solid rgba(122, 158, 126, 0.1);
            position: relative;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-sage) 0%, var(--color-terracotta) 100%);
        }

        .problem-card p {
            font-size: 1.15rem;
            line-height: 1.8;
        }

        .problem-card p + p {
            margin-top: 20px;
        }

        /* Why section */
        .why {
            background: var(--color-white);
        }

        .why-card {
            background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-cream) 100%);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(122, 158, 126, 0.18);
            max-width: 820px;
            margin: 0 auto;
        }

        .why-card p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--color-charcoal);
        }

        .why-card p + p {
            margin-top: 20px;
        }

        .why-card .guide-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--color-sage-dark);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .why-card .guide-link:hover {
            color: var(--color-charcoal);
        }

        .why-card .guide-link i {
            font-size: 1.1em;
        }

        /* Features Grid */
        .features {
            background: var(--color-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
            gap: 32px;
        }

        .feature-card {
            background: var(--color-cream);
            border-radius: var(--radius-md);
            padding: 36px;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: var(--color-sage);
            box-shadow: var(--shadow-soft);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--color-sage-light) 0%, rgba(122, 158, 126, 0.2) 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .feature-icon i {
            font-size: 28px;
            color: var(--color-sage-dark);
            line-height: 1;
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--color-charcoal);
        }

        .feature-card p {
            color: var(--color-charcoal-light);
            font-size: 0.95rem;
        }

        /* Highlight Section */
        .highlight {
            background: linear-gradient(135deg, var(--color-sage-dark) 0%, #4A6E4E 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .highlight::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .highlight .section-label {
            color: var(--color-terracotta-light);
        }

        .highlight .section-title {
            color: white;
        }

        .highlight .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .highlight-item {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .highlight-item h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .highlight-item p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* Patient Cockpit Section */
        .patient-cockpit {
            background: var(--color-cream);
        }

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

        @media (max-width: 900px) {
            .cockpit-content {
                grid-template-columns: 1fr;
            }
        }

        .cockpit-text h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--color-charcoal);
        }

        .cockpit-text p {
            margin-bottom: 20px;
            color: var(--color-charcoal-light);
        }

        .cockpit-features {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: var(--shadow-soft);
        }

        .cockpit-features h4 {
            font-family: var(--font-display);
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--ink);
        }

        .cockpit-feature-list {
            list-style: none;
        }

        .cockpit-feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--color-sage-light);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cockpit-feature-list li:last-child {
            border-bottom: none;
        }

        .cockpit-feature-list li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: var(--color-sage-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--color-sage-dark);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Comparison Section */
        .comparison {
            background: var(--color-white);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr;
            }
        }

        .comparison-card {
            padding: 40px;
            border-radius: var(--radius-lg);
        }

        .comparison-card.old {
            background: #FDF2F2;
            border: 2px solid #F5D5D5;
        }

        .comparison-card.new {
            background: var(--color-sage-light);
            border: 2px solid var(--color-sage);
        }

        .comparison-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .comparison-card.old h3 {
            color: #C0392B;
        }

        .comparison-card.new h3 {
            color: var(--ink);
        }

        .comparison-card p {
            line-height: 1.8;
        }

        /* Tech Section */
        .tech {
            background: var(--color-charcoal);
            color: white;
        }

        .tech .section-label {
            color: var(--color-terracotta-light);
        }

        .tech .section-title {
            color: white;
        }

        .tech .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .tech-card {
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .tech-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            margin-bottom: 16px;
            color: var(--color-sage-light);
        }

        .tech-list {
            list-style: none;
        }

        .tech-list li {
            padding: 8px 0;
            opacity: 0.85;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .tech-list li::before {
            content: '→';
            color: var(--color-sage);
        }

        /* Audience Section */
        .audience {
            background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
        }

        .audience-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        .audience-tag {
            background: var(--color-white);
            padding: 16px 28px;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-sage-light);
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .audience-tag:hover {
            transform: translateY(-2px);
            border-color: var(--color-sage);
        }

        /* Credits note + pricing fineprint */
        .credits-note {
            text-align: center;
            margin-top: 40px;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--color-sage-dark);
        }

        .pricing-fineprint {
            margin-top: 20px;
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--color-text-muted, #6b6b6b);
            text-align: center;
        }

        /* Trust section */
        .trust {
            background: var(--color-white);
        }

        .trust-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        .trust-tag {
            background: var(--color-sage-light);
            padding: 14px 24px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--color-sage-dark);
            border: 1px solid var(--color-sage-light);
        }

        /* Two Cockpits */
        .two-cockpits {
            background: var(--color-white);
        }

        .cockpits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 800px) {
            .cockpits-grid {
                grid-template-columns: 1fr;
            }
        }

        .cockpit-box {
            background: var(--color-cream);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .cockpit-box:hover {
            border-color: var(--color-sage);
        }

        .cockpit-box.therapeut {
            border-top: 4px solid var(--color-sage);
        }

        .cockpit-box.patient {
            border-top: 4px solid var(--color-terracotta);
        }

        .cockpit-box h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 24px;
        }

        .cockpit-box.therapeut h3 {
            color: var(--ink);
        }

        .cockpit-box.patient h3 {
            color: var(--color-terracotta);
        }

        .cockpit-box ul {
            list-style: none;
        }

        .cockpit-box li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
        }

        .cockpit-box li::before {
            content: '•';
            position: absolute;
            left: 0;
            font-weight: 700;
        }

        .cockpit-box.therapeut li::before {
            color: var(--color-sage);
        }

        .cockpit-box.patient li::before {
            color: var(--color-terracotta);
        }

        /* Pricing Section */
        .pricing {
            background: var(--color-cream);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            position: relative;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .pricing-card:hover {
            border-color: var(--color-sage);
        }

        .pricing-card.featured {
            border-color: var(--color-sage);
            box-shadow: var(--shadow-medium);
            transform: scale(1.02);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--color-sage-button) 0%, var(--color-sage-dark) 100%);
            color: white;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-header h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-charcoal);
            margin-bottom: 16px;
        }

        .pricing-price {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 32px;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--color-charcoal-light);
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 32px;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid var(--color-sage-light);
            padding-left: 28px;
            position: relative;
        }

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

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-sage);
            font-weight: 700;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
        }

        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
        }

        .toggle-label {
            font-size: 1rem;
            color: var(--color-charcoal);
            opacity: 0.6;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .toggle-label.active {
            opacity: 1;
            font-weight: 600;
        }

        .toggle-discount {
            background: var(--color-sage-button);
            color: white;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 12px;
            margin-left: 4px;
        }

        .toggle-switch {
            position: relative;
            width: 56px;
            height: 30px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--color-sage-light);
            transition: 0.3s;
            border-radius: 30px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .toggle-switch input:checked + .toggle-slider {
            background-color: var(--color-sage);
        }

        .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }

        .pricing-billed {
            font-size: 0.85rem;
            color: var(--color-charcoal);
            opacity: 0.7;
            margin-top: 4px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--color-sage-button) 0%, var(--color-sage-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before,
        .cta::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
        }

        .cta::before {
            top: -150px;
            left: -150px;
        }

        .cta::after {
            bottom: -150px;
            right: -150px;
        }

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

        .cta h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: 24px;
        }

        .cta p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 40px;
        }

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

        .cta-form {
            max-width: 560px;
            margin: 0 auto 40px;
            padding: 32px 32px 24px;
            border-radius: var(--radius-md);
            background: var(--color-white);
            box-shadow: 0 20px 60px rgba(15, 33, 25, 0.18);
            text-align: left;
        }

        .cta-form .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .cta-form .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .cta-form label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-charcoal);
            letter-spacing: 0.01em;
        }

        .cta-form input,
        .cta-form textarea {
            border: none;
            border-radius: var(--radius-sm);
            padding: 12px 14px;
            font-size: 0.95rem;
            font-family: var(--font-body);
            color: var(--color-charcoal);
            background: #F4F1EC;
            transition: background 0.2s, box-shadow 0.2s;
        }

        .cta-form input::placeholder,
        .cta-form textarea::placeholder {
            color: #A0998F;
        }

        .cta-form input:focus,
        .cta-form textarea:focus {
            outline: none;
            background: #EDE9E3;
            box-shadow: 0 0 0 2px var(--color-sage);
        }

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

        .cta-form .btn.btn-primary {
            width: 100%;
            justify-content: center;
            margin-top: 4px;
            background: var(--color-sage-button);
            color: var(--color-white);
            border: none;
            font-size: 1rem;
            font-weight: 600;
            padding: 14px 24px;
        }

        .cta-form .btn.btn-primary:hover {
            background: var(--color-sage-dark);
        }

        .cta-form .btn.btn-primary:disabled {
            opacity: 0.7;
            cursor: wait;
        }

        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .cta-form .form-note {
            margin: 16px 0 0;
            font-size: 0.85rem;
            color: var(--color-charcoal-light);
            text-align: center;
            opacity: 1;
        }

        .form-status {
            min-height: 22px;
            margin-top: 10px;
            font-size: 0.9rem;
            text-align: center;
            font-weight: 500;
        }

        .form-status.success {
            color: var(--color-sage-dark);
        }

        .form-status.error {
            color: var(--color-terracotta);
        }

        .cta .btn-primary {
            background: white;
            color: var(--color-sage-dark);
        }

        .cta .btn-secondary {
            border-color: white;
            color: white;
        }

        .cta .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .cta-feature::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        /* Footer */
        footer {
            background: var(--color-charcoal);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 30px;
        }

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

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: white;
            font-weight: 600;
        }

        .footer-tagline {
            max-width: 500px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-nav {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .footer-nav a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.85rem;
        }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-charcoal);
            margin: 6px 0;
            transition: var(--transition);
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            header nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-cream);
                flex-direction: column;
                padding: 24px;
                gap: 16px;
                box-shadow: var(--shadow-medium);
            }

            header nav.active {
                display: flex;
            }

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

            /* Hero responsive */
            .hero {
                padding: 100px 0 60px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            /* Section headers responsive */
            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            /* Highlight grid responsive */
            .highlight-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .highlight-item {
                padding: 24px;
            }

            /* Comparison grid responsive */
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .comparison-card {
                padding: 24px;
            }

            /* Pricing responsive */
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .pricing-card {
                padding: 28px;
            }

            .pricing-toggle {
                flex-wrap: wrap;
                gap: 12px;
            }

            .pricing-price {
                font-size: 2.5rem;
            }

            /* CTA responsive */
            .cta-content h2 {
                font-size: 1.75rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .cta-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .cta-form {
                padding: 24px 20px 20px;
                margin-bottom: 32px;
            }

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

            .cta-features {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }

            /* Cockpit features responsive */
            .cockpit-features {
                padding: 24px;
            }

            /* Footer responsive */
            .footer-content {
                text-align: center;
                flex-direction: column;
            }

            .footer-nav {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            section {
                padding: 50px 0;
            }

            .hero {
                padding: 90px 0 50px;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .feature-card {
                padding: 24px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .pricing-card.featured {
                transform: none;
            }

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

            .logo-text {
                font-size: 1.1rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Oplossing: drie kaarten naast elkaar (design v2) */
        .features-grid-core {
            max-width: none;
            margin: 0 auto;
            grid-template-columns: repeat(3, 1fr);
        }

        @media (max-width: 980px) {
            .features-grid-core {
                grid-template-columns: 1fr;
                max-width: 560px;
            }
        }

        /* Oplossing-kaarten: zachtgroene tint uit het design, niet crème */
        .features-grid-core .feature-card {
            background: #EFF5EF;
            border-color: #DCE7DD;
        }

        .features-grid-core .feature-card:hover {
            border-color: #7A9E7E;
        }

        .features-grid-core .feature-icon {
            background: #4F7355;
        }

        .features-grid-core .feature-icon i {
            color: #FFFFFF;
        }

        .pricing-grid-core {
            max-width: 760px;
        }

        .cta-buttons {
            justify-content: center;
            margin-bottom: 32px;
        }

        .demo-toggle {
            margin-top: 40px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        .demo-toggle > summary {
            cursor: pointer;
            list-style: none;
            text-align: center;
            font-weight: 600;
            color: var(--color-white);
            padding: 14px 20px;
            border: 2px solid rgba(255, 255, 255, 0.55);
            border-radius: var(--radius-lg);
            transition: var(--transition);
        }

        .demo-toggle > summary::-webkit-details-marker {
            display: none;
        }

        .demo-toggle > summary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--color-white);
        }

        .demo-toggle[open] > summary {
            margin-bottom: 24px;
        }

        /* ============================================================
           v2 landing: hero met mockup, praktijk-basis, credits-blok,
           prijzen-split met marketingmodule, info-duo, ruimere features.
           Bouwt voort op de brand tokens hierboven.
           ============================================================ */

        /* Hero split: tekst links, cockpit-mockup rechts */
        .hero-split {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
            gap: clamp(44px, 5vw, 80px);
            align-items: center;
        }

        .hero-split .hero-content {
            max-width: none;
        }

        .hero-subtitle-soft {
            color: var(--color-charcoal-light);
            margin-bottom: 32px;
        }

        .hero-badge {
            background: transparent;
            border: 1px solid var(--brand-border, #D7E3D8);
            color: var(--color-sage-dark);
        }

        .hero-guide-note {
            font-weight: 400;
            font-size: 0.95rem;
            color: var(--color-charcoal-light);
            margin: 18px 0 0;
        }

        .hero-guide-note::before {
            content: none;
        }

        .hero-visual {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .hero-visual {
                max-width: 460px;
            }
        }

        /* Genummerde feature-kaarten */
        .feature-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .feature-card-top .feature-icon {
            margin-bottom: 0;
        }

        .feature-num {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--color-sage);
            letter-spacing: 0.04em;
        }

        .feature-card p + p {
            margin-top: 12px;
        }

        /* De basis: praktijktool-sectie */
        .basis {
            background: var(--surface-tint, var(--color-cream));
            border-top: 1px solid var(--color-sage-light);
            border-bottom: 1px solid var(--color-sage-light);
        }

        .basis-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: clamp(24px, 4vw, 56px);
            align-items: start;
        }

        .basis-intro .section-label {
            display: inline-block;
        }

        .basis-intro .section-title {
            margin-bottom: 14px;
        }

        .basis-intro .section-subtitle {
            max-width: 24em;
        }

        .basis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
            gap: 20px;
        }

        .basis-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .basis-icon {
            color: var(--color-sage-dark);
            font-size: 1.35rem;
            line-height: 1;
            flex-shrink: 0;
        }

        .basis-item-title {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--color-charcoal);
            margin-bottom: 4px;
        }

        .basis-item p {
            font-size: 0.92rem;
            line-height: 1.55;
            color: var(--color-charcoal-light);
        }

        /* Credits: "Jij bent geen ChatGPT" op groen vlak */
        .credits {
            background: linear-gradient(135deg, var(--color-sage-dark) 0%, #4A6E4E 100%);
            color: var(--color-white);
        }

        .credits-header {
            margin-bottom: clamp(40px, 5vw, 60px);
        }

        .credits .section-label {
            color: var(--color-white);
            opacity: 0.85;
        }

        .credits .section-title {
            color: var(--color-white);
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            max-width: 16em;
        }

        .credits-lead {
            font-size: 1.15rem;
            line-height: 1.6;
            color: var(--color-white);
            max-width: 58em;
            margin-top: 20px;
        }

        .credits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
            gap: 16px;
        }

        .credit-card {
            background: var(--color-white);
            border: 1px solid var(--color-white);
            border-radius: var(--radius-md);
            padding: 26px;
            transition: var(--transition);
        }

        .credit-card:hover {
            border-color: var(--color-charcoal);
        }

        .credit-icon {
            color: var(--color-sage-dark);
            font-size: 1.5rem;
            display: block;
            margin-bottom: 18px;
        }

        .credit-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            line-height: 1.25;
            margin-bottom: 10px;
            color: var(--color-charcoal);
        }

        .credit-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--color-charcoal-light);
        }

        .credit-card p + p {
            margin-top: 12px;
        }

        .credit-inline-link {
            color: var(--color-sage-dark);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .credit-inline-link:hover {
            color: var(--color-charcoal);
        }

        .credit-highlight {
            color: var(--color-sage-dark) !important;
            background: var(--color-sage-light);
            padding: 11px 12px;
            border-radius: 10px;
        }

        .credit-fnref {
            color: var(--color-sage-dark);
            font-weight: 500;
            text-decoration: none;
        }

        .credit-fnref sup {
            font-size: 0.68rem;
            padding-left: 1px;
        }

        .credits-notes {
            margin: 28px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
            max-width: 56em;
        }

        .credits-notes li {
            display: flex;
            gap: 8px;
            font-size: 0.84rem;
            line-height: 1.5;
            color: var(--color-white);
            opacity: 0.92;
        }

        .credits-note-num {
            opacity: 0.8;
        }

        .credits-note-link {
            color: var(--color-white);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .credits-note-link:hover {
            color: var(--color-charcoal);
        }

        .credits .credits-note {
            color: var(--color-white);
            font-weight: 400;
            text-align: left;
            max-width: 44em;
            margin-top: 22px;
            opacity: 0.95;
        }

        /* Prijzen: split-layout met marketingmodule-kaart */
        .pricing-split {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
            gap: clamp(36px, 5vw, 72px);
            align-items: center;
        }

        .pricing-intro .section-label {
            display: inline-block;
        }

        .pricing-intro .section-title {
            margin-bottom: 18px;
        }

        .pricing-intro .section-subtitle {
            max-width: 25em;
        }

        .pricing-split .pricing-card.featured {
            transform: none;
            text-align: left;
        }

        .pricing-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 20px;
        }

        .pricing-header-row h3 {
            margin-bottom: 0;
        }

        .pricing-badge-inline {
            font-size: 0.72rem;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            background: var(--color-sage-light);
            color: var(--color-sage-dark);
            padding: 6px 11px;
            border-radius: 999px;
            font-weight: 600;
        }

        .pricing-split .pricing-price {
            margin-bottom: 4px;
        }

        /* Compacter prijzenblok, dichter bij het design */
        .pricing-header-row {
            margin-bottom: 14px;
        }

        .pricing-split .pricing-trial {
            margin-bottom: 16px;
        }

        /* Grote, prominente prijs (compacte kaart-look) */
        .pricing-price-big {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 4px;
        }

        .pricing-price-big .price-amount {
            font-family: var(--font-display);
            font-size: clamp(2.6rem, 4vw, 3.4rem);
            font-weight: 700;
            line-height: 1;
            color: var(--ink);
        }

        .pricing-price-big .price-unit {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--color-charcoal-light);
        }

        .pricing-split .pricing-billed {
            margin-bottom: 18px;
        }

        .pricing-split .pricing-features {
            margin-bottom: 22px;
        }

        .pricing-split .pricing-features li {
            padding-top: 8px;
            padding-bottom: 8px;
        }

        .pricing-split .pricing-features li::before {
            content: '\2713';
        }

        .pricing-module {
            margin-top: 22px;
            padding-top: 20px;
            border-top: 1px solid var(--color-sage-light);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .pricing-module-icon {
            color: var(--color-sage-dark);
            font-size: 1.25rem;
            line-height: 1.1;
        }

        .pricing-module-head {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 4px;
        }

        .pricing-module-title {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1rem;
            color: var(--color-charcoal);
        }

        .pricing-module-badge {
            font-size: 0.72rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            background: var(--color-sage-light);
            color: var(--color-sage-dark);
            padding: 4px 9px;
            border-radius: 999px;
            font-weight: 600;
        }

        .pricing-module p {
            font-size: 0.9rem;
            line-height: 1.55;
            color: var(--color-charcoal-light);
        }

        /* Voor wie: intro-regel boven de tags */
        .audience-intro {
            text-align: center;
            font-size: 0.95rem;
            color: var(--color-charcoal-light);
            margin-bottom: 16px;
        }

        /* Info-duo: therapeutengids + veilig naast elkaar */
        .info-duo {
            background: var(--color-white);
        }

        .info-duo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            gap: 18px;
        }

        .info-card {
            border: 1px solid var(--color-sage-light);
            border-radius: var(--radius-md);
            padding: clamp(26px, 3vw, 36px);
        }

        .info-card-icon {
            color: var(--color-sage-dark);
            font-size: 1.5rem;
            display: block;
            margin-bottom: 18px;
        }

        .info-card .section-label {
            display: block;
            margin-bottom: 10px;
        }

        .info-card h3 {
            font-family: var(--font-display);
            font-size: 1.45rem;
            line-height: 1.2;
            margin-bottom: 14px;
            color: var(--color-charcoal);
        }

        .info-card p {
            font-size: 1rem;
            line-height: 1.62;
            color: var(--color-charcoal-light);
            margin-bottom: 10px;
        }

        .info-card-soft {
            color: var(--color-charcoal-light);
        }

        .info-card-list {
            list-style: none;
            display: grid;
            gap: 10px;
            margin-top: 4px;
        }

        .info-card-list li {
            display: flex;
            gap: 10px;
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--color-charcoal);
        }

        .info-card-list li::before {
            content: '\2713';
            color: var(--color-sage);
            font-weight: 700;
        }

        @media (max-width: 720px) {
            .credits-grid {
                grid-template-columns: 1fr;
            }

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

        /* ============================================================
           Kleuren exact volgens het Claude-design v2:
           pagina puur wit, zachte secties #F5F8F6, geen warme crème.
           ============================================================ */
        body {
            background: #FFFFFF;
        }

        .header {
            background: rgba(255, 255, 255, 0.86);
        }

        /* Hero op wit, met de zachtgroene glow zoals in het design */
        .hero {
            background: #FFFFFF;
            border-bottom: 1px solid #EBEFED;
        }

        .hero::after {
            display: none;
        }

        .hero::before {
            background: radial-gradient(circle, rgba(122, 158, 126, 0.20) 0%, transparent 68%);
        }

        /* Oplossing + info-duo: wit */
        .features,
        .info-duo {
            background: #FFFFFF;
        }

        /* Zachte secties: licht groenig grijs i.p.v. crème */
        .problem,
        .basis,
        .audience,
        .cta {
            background: #F5F8F6 !important;
            border-top: 1px solid #EBEFED;
            border-bottom: 1px solid #EBEFED;
        }

        .problem {
            border-top: none;
        }

        /* Problem-kaart en info-kaarten op wit met zachte rand */
        .problem-card {
            background: #FFFFFF;
            border-color: #E6EBE8;
        }

        .info-card {
            border-color: #E6EBE8;
        }

        /* Prijzen-sectie wit (de kaart houdt zijn eigen witte achtergrond) */
        .pricing {
            background: #FFFFFF;
        }

        .pricing-card {
            border-color: #E6EBE8;
        }


        /* CTA blijft een lichte sectie: donkere tekst i.p.v. wit op groen */
        .cta {
            color: var(--color-charcoal);
        }

        .cta h2 {
            color: var(--color-charcoal);
        }

        .cta p {
            color: var(--color-charcoal-light);
            opacity: 1;
        }

        .cta::before,
        .cta::after {
            background: rgba(122, 158, 126, 0.08);
        }

        /* Demo-toggle summary op lichte grond: donkere tekst en rand */
        .demo-toggle > summary {
            color: var(--color-charcoal);
            border-color: #DDE3E0;
        }

        .demo-toggle > summary:hover {
            background: #EFF5EF;
            border-color: #7A9E7E;
        }

        .cta .btn-secondary {
            border-color: #DDE3E0;
            color: var(--color-charcoal);
        }

        .cta .btn-secondary:hover {
            background: #EFF5EF;
        }

        /* Trial-badge in het prijzenblok */
        .pricing-trial {
            display: inline-block;
            background: var(--color-sage-light);
            color: var(--color-sage-dark);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.01em;
            padding: 6px 12px;
            border-radius: 999px;
            margin-bottom: 12px;
        }

        /* ============================================================
           LAYOUT exact volgens Claude-design v2:
           links uitgelijnde koppen, twee-koloms secties, donkere
           knoppen, strakke platte kaarten. Fraunces blijft kop-font.
           ============================================================ */

        /* Knoppen: donkergroen/inkt met witte tekst (design #16261F) */
        .btn-primary {
            background: #16261F;
            color: #FFFFFF;
            box-shadow: none;
            border-radius: 12px;
        }

        .btn-primary:hover {
            background: #4F7355;
            color: #FFFFFF;
            transform: none;
            box-shadow: none;
        }

        .btn-secondary {
            border: 1px solid #DDE3E0;
            color: #16261F;
            border-radius: 12px;
        }

        .btn-secondary:hover {
            background: #F4F8F4;
            border-color: #7A9E7E;
        }

        /* Header nav-knop ook donker */
        header nav > .btn-primary {
            background: #16261F;
        }

        /* Sectielabels: klein, grijsgroen, links (geen letter-spacing-caps-blok gecentreerd) */
        .section-label {
            color: #7A9E7E;
            letter-spacing: 0.12em;
            font-size: 12px;
            margin-bottom: 12px;
        }

        /* Sectiekoppen LINKS uitgelijnd i.p.v. gecentreerd */
        .section-header {
            text-align: left;
            max-width: 32em;
            margin: 0 0 clamp(36px, 4vw, 56px);
        }

        .section-title {
            letter-spacing: -0.035em;
        }

        /* Probleem-sectie: kop links, tekst rechts (twee kolommen), geen kaart */
        .problem .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            gap: clamp(28px, 4vw, 64px);
            align-items: start;
        }

        .problem .section-header {
            margin-bottom: 0;
        }

        .problem-card {
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
            display: grid;
            gap: 16px;
        }

        .problem-card::before {
            display: none;
        }

        /* Oplossing-kop links */
        .features#oplossing > .container > .section-header {
            text-align: left;
            margin-left: 0;
            margin-right: 0;
        }

        /* Voor wie: kop links (smalle kolom), tag-wolk rechts (brede kolom) */
        .audience .container {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
            gap: clamp(28px, 4vw, 64px);
            align-items: start;
        }

        .audience .section-header {
            margin-bottom: 0;
            max-width: none;
        }

        /* Rechterkolom: intro-regel boven de tag-wolk, normale flow */
        .audience-right {
            display: block;
        }

        .audience-intro {
            text-align: left;
            margin-bottom: 14px;
        }

        .audience-tags {
            justify-content: flex-start;
            align-content: start;
        }

        @media (max-width: 860px) {
            .audience .container {
                grid-template-columns: 1fr;
            }

            .audience-intro {
                margin-top: 8px;
            }
        }

        /* Tags als strakke rechthoekjes i.p.v. pillen */
        .audience-tag {
            background: #FFFFFF;
            border: 1px solid #E6EBE8;
            border-radius: 9px;
            padding: 8px 14px;
            font-size: 14.5px;
            box-shadow: none;
        }

        .audience-tag:hover {
            transform: none;
            border-color: #7A9E7E;
        }

        /* CTA/start: kop links + formulier rechts, lichte sectie, geen gecentreerde tekst */
        .cta .cta-content {
            text-align: left;
        }

        .cta .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
            gap: clamp(36px, 5vw, 72px);
            align-items: start;
        }

        .cta-content {
            display: contents;
        }

        .cta-content > h2,
        .cta-content > p,
        .cta-content > .cta-buttons {
            grid-column: 1;
        }

        .cta-content > .demo-toggle {
            grid-column: 2;
            grid-row: 1 / span 4;
            margin-top: 0;
            max-width: none;
        }

        .cta h2 {
            font-size: clamp(32px, 4.6vw, 48px);
            line-height: 1.06;
        }

        .cta .cta-buttons {
            justify-content: flex-start;
        }

        /* Demo-toggle open tonen als strak formulierblok (geen inklap-summary in design) */
        .demo-toggle > summary {
            text-align: left;
        }

        /* Strakke platte kaarten: dunne randen, subtiele schaduw */
        .feature-card,
        .info-card,
        .credit-card,
        .pricing-card,
        .problem-card {
            box-shadow: none;
        }

        .feature-card:hover {
            transform: none;
            box-shadow: none;
        }

        .info-card:hover,
        .pricing-card:hover {
            transform: none;
        }

        /* Prijzen: kop links (split heeft al eigen intro links) */
        .pricing .pricing-intro .section-title,
        .pricing .pricing-intro .section-label {
            text-align: left;
        }

        /* ============================================================
           HERO WIDGET-COLLAGE: vijf losse kaartjes naast de hero-tekst.
           Geen nep-interface, losse widgets die elk een stukje tonen.
           ============================================================ */
        .widget-collage {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
            gap: 16px;
            align-items: start;
        }

        .wc-col {
            display: grid;
            gap: 16px;
        }

        .wc-col-offset {
            padding-top: 34px;
        }

        .wc-card {
            background: #FFFFFF;
            border: 1px solid #E6EBE8;
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 16px 40px -32px rgba(22, 38, 31, 0.45);
        }

        /* Groene familie: oplopende schakering zodat de kaarten samenhangen,
           met de veiligheidscheck als donkerste anker onderaan. */
        .wc-card-tint-1 {
            background: #F5F9F6;
            border-color: #E2ECE4;
        }

        .wc-card-tint-2 {
            background: #EEF5EF;
            border-color: #DBE8DD;
        }

        .wc-card-tint-3 {
            background: #E6F0E8;
            border-color: #D2E1D5;
        }

        .wc-title {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .wc-title i {
            font-size: 17px;
            color: #4F7355;
            line-height: 1;
        }

        .wc-title span {
            font-size: 13.5px;
            font-weight: 500;
            color: #16261F;
        }

        .wc-caption {
            font-size: 12px;
            color: #5F6A66;
            margin-top: 12px;
            line-height: 1.4;
        }

        /* Kaart 1: cliënt-cockpit taken */
        .wc-task {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px 10px;
            border-radius: 10px;
            margin-bottom: 6px;
            font-size: 12.5px;
            color: #4A5551;
        }

        .wc-task i {
            font-size: 15px;
            line-height: 1;
        }

        .wc-task.done {
            border: 1px solid #EFF2F0;
        }

        .wc-task.done i {
            color: #7A9E7E;
        }

        .wc-task.open {
            border: 1px dashed #E1E6E3;
            color: #6E7671;
        }

        .wc-task.open i {
            color: #C8CFCB;
        }

        /* Kaart 2: tijdslijn */
        .wc-timeline {
            display: grid;
        }

        .wc-event {
            display: flex;
            gap: 11px;
        }

        .wc-event-marker {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
        }

        .wc-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #7A9E7E;
            margin-top: 3px;
        }

        .wc-dot-last {
            background: #4F7355;
        }

        .wc-line {
            width: 2px;
            min-height: 20px;
            flex: 1;
            background: #DCE7DD;
            margin-top: 2px;
        }

        .wc-event-body {
            padding-bottom: 12px;
        }

        .wc-year {
            font-size: 11px;
            color: #5F6A66;
            letter-spacing: 0.04em;
        }

        .wc-what {
            font-size: 12.5px;
            color: #16261F;
            line-height: 1.35;
        }

        .wc-what-now {
            font-weight: 500;
        }

        /* Kaart 3: labo-analyse */
        .wc-lab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
            border-bottom: 1px solid #EFF2F0;
        }

        .wc-lab-name {
            font-size: 12.5px;
            color: #4A5551;
            flex: 1;
        }

        .wc-lab-value {
            font-size: 12.5px;
            color: #16261F;
            font-weight: 500;
        }

        .wc-chip {
            font-size: 11px;
            padding: 3px 7px;
            border-radius: 5px;
        }

        .wc-chip-out {
            color: #A9552F;
            background: #F7EFEA;
        }

        .wc-chip-ok {
            color: #2F5138;
            background: #DCEBDE;
        }

        /* Kaart 4: DNA-panel chips */
        .wc-genes {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .wc-gene {
            font-size: 11.5px;
            padding: 4px 8px;
            border-radius: 6px;
            color: #5F6A66;
            background: #FFFFFF;
            border: 1px solid #DCE7DD;
        }

        .wc-gene-on {
            color: #2F5138;
            background: #CFE3D2;
            border-color: #BBD6BF;
        }

        /* Kaart 5: accent veiligheidscheck */
        .wc-card-accent {
            background: #4F7355;
            color: #FFFFFF;
            box-shadow: 0 18px 44px -30px rgba(22, 38, 31, 0.55);
        }

        .wc-title-accent i,
        .wc-title-accent span {
            color: #FFFFFF;
        }

        .wc-accent-value {
            font-family: var(--font-display);
            font-size: 19px;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #FFFFFF;
            margin-bottom: 4px;
        }

        .wc-accent-caption {
            font-size: 12.5px;
            color: #E3EFE4;
            line-height: 1.4;
        }
