/* Custom Design Tokens & Variables */
:root {
    /* 1. Surfaces & Brand Palette (60-30-10 Rule) */
    --bg-canvas: #f9f9fc;
    --text-primary: #111113;
    --text-secondary: #414754;
    --accent-blue: #0066cc;
    --accent-blue-hover: #0052a3;
    --card-bg: #ffffff;
    --card-border: rgba(210, 210, 215, 0.5);

    /* 2. 3-Tier Layered Ambient Shadows (Level 1, 2, 3) */
    --shadow-level-1: 0 1px 3px rgba(0, 0, 0, 0.02), 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-level-2: 0 4px 8px rgba(0, 102, 204, 0.04), 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-level-3: 0 12px 24px rgba(0, 0, 0, 0.06), 0 24px 64px rgba(0, 0, 0, 0.12);
    --card-shadow: var(--shadow-level-1);
    --card-shadow-hover: var(--shadow-level-2);

    /* 3. 1.250 Major Third Modular Typography Tokens */
    --text-caption: 0.75rem;     /* 12px */
    --text-small: 0.875rem;     /* 14px */
    --text-body: 1rem;          /* 16px */
    --text-lead: 1.125rem;      /* 18px */
    --text-h4: 1.25rem;         /* 20px */
    --text-h3: 1.5rem;          /* 24px */
    --text-h2: 2rem;            /* 32px */
    --text-h1: 2.75rem;         /* 44px */
    --text-display: 3.5rem;     /* 56px */

    /* 4. Fluid Motion & Typography Constants */
    --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --nav-height: 80px;

    /* 5. Semantic Status & Surface Tokens */
    --color-success: #10b981;
    --color-success-bg: rgba(16, 185, 129, 0.1);
    --color-danger: #ef4444;
    --color-danger-bg: rgba(239, 68, 68, 0.1);
    --color-warning: #f59e0b;
    --color-warning-bg: rgba(245, 158, 11, 0.1);
    --surface-subtle: #f4f7fb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Accessibility Focus Ring Gate (WCAG 2.1 A11Y-03) */
:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    font-family: var(--font-stack);
}

body {
    overflow-x: hidden;
    line-height: 1.5;
}

/* Typography & Links */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-wrap: balance;
    text-wrap: pretty;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}


/* Tactile Active States (Micro-interactions) */
.btn:active {
    transform: translateY(1px) scale(0.98);
}

.btn-primary:active {
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
}

.btn-secondary:active {
    background-color: rgba(22, 22, 23, 0.1);
}

.faq-question:focus-visible,
.pricing-cta-btn:focus-visible,
.nav-item:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 3px;
    border-radius: 8px;
}

.faq-question:active {
    background-color: rgba(0, 102, 204, 0.04);
}

/* Utility Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: var(--text-body);
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
}

.btn-secondary {
    background-color: rgba(22, 22, 23, 0.05);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(22, 22, 23, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: var(--text-lead);
}

.btn-full {
    width: 100%;
}

.badge {
    display: inline-block;
    font-size: var(--text-caption);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-blue);
    background-color: rgba(0, 102, 204, 0.08);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

/* 1. TopNavBar (Glassmorphic) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(249, 249, 252, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(210, 210, 215, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-size: var(--text-h4);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-item {
    font-size: var(--text-small);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.nav-item:hover {
    color: var(--accent-blue);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 9999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Slideout Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-canvas);
    z-index: 999;
    padding: 120px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.mobile-nav-item {
    font-size: var(--text-h4);
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-cta {
    width: 100%;
    max-width: 280px;
    margin-top: 20px;
}

/* Hamburger Active Animations */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 2. Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, rgba(249, 249, 252, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 840px;
    padding: 0 40px;
    z-index: 1;
}

.hero-heading {
    font-size: var(--text-display);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.hero-heading .highlight {
    color: var(--accent-blue);
}

.hero-punchline-wrap {
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: var(--text-h4);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}



.lifestyle-card-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lifestyle-card {
    width: 100%;
    max-width: 1100px;
    height: 420px;
    border-radius: 24px;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%), 
                      url('woman_laptop.png'), 
                      url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 64px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    opacity: 1;
    transform: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lifestyle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.lifestyle-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 80%);
    z-index: 1;
}

.lifestyle-card-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: left;
}

.lifestyle-card-badge {
    display: inline-block;
    font-size: var(--text-caption);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lifestyle-card-heading {
    font-size: var(--text-display);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lifestyle-card-body {
    font-size: var(--text-h4);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
}

.lifestyle-card-buttons {
    display: flex;
    gap: 16px;
}

/* White Theme Buttons */
.btn-white {
    background-color: #ffffff;
    color: var(--text-primary);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* 4. Layout Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* 5. Local Trust Badges Cloud & The Guide */
.platform-section {
    padding: 60px 0 20px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    overflow: hidden;
}

.platform-heading {
    font-size: var(--text-h2);
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    text-align: center;
}

.typewriter-placeholder {
    visibility: hidden;
    display: block;
    pointer-events: none;
}

.typewriter-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: block;
}

.typewriter-text.typing::after {
    content: "|";
    display: inline-block;
    color: var(--accent-blue);
    margin-left: 4px;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
    from, to { color: transparent }
    50% { color: var(--accent-blue); }
}

.logo-cloud-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 16px 0 32px 0;
    margin-bottom: 72px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-cloud {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
    width: max-content;
    margin: 0;
    padding: 16px 0;
    animation: marquee-scroll 45s linear infinite;
    will-change: transform;
}

.logo-cloud:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-circle {
    --wave-offset: 0px;
    --hover-scale: 1;
    width: 64px;
    height: 64px;
    background-color: var(--bg-canvas);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transform: translateY(var(--wave-offset)) scale(var(--hover-scale));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    flex-shrink: 0;
    position: relative;
    will-change: transform;
}

/* Wavy vertical displacement offsets */
.logo-circle:nth-child(10n+1)  { --wave-offset: 0px; }
.logo-circle:nth-child(10n+2)  { --wave-offset: 16px; }
.logo-circle:nth-child(10n+3)  { --wave-offset: 24px; }
.logo-circle:nth-child(10n+4)  { --wave-offset: 24px; }
.logo-circle:nth-child(10n+5)  { --wave-offset: 16px; }
.logo-circle:nth-child(10n+6)  { --wave-offset: 0px; }
.logo-circle:nth-child(10n+7)  { --wave-offset: -16px; }
.logo-circle:nth-child(10n+8)  { --wave-offset: -24px; }
.logo-circle:nth-child(10n+9)  { --wave-offset: -24px; }
.logo-circle:nth-child(10n+10) { --wave-offset: -16px; }

.logo-circle:hover {
    --hover-scale: 1.15;
    background-color: rgba(0, 102, 204, 0.05);
    color: var(--accent-blue);
}

.logo-circle.highlight-circle {
    width: 80px;
    height: 80px;
    background-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.logo-circle.highlight-circle:hover {
    background-color: var(--accent-blue-hover);
}

/* 6. Timeline Process Section */
.process-section {
    padding: 80px 0 80px 0;
    overflow: hidden;
}

.process-heading {
    font-size: var(--text-h1);
    text-align: center;
    margin-bottom: 5rem;
}

.timeline-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.curve-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-card {
    width: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

/* Alternate card alignments and widths restricted to desktop viewports */
@media (min-width: 769px) {
    .timeline-grid {
        gap: 60px;
    }
    
    .timeline-card {
        width: 47%;
    }
    
    .timeline-grid > .timeline-card:nth-child(odd) {
        align-self: flex-start;
    }
    
    .timeline-grid > .timeline-card:nth-child(even) {
        align-self: flex-end;
    }

    /* Desktop-only progress animation overrides */
    .timeline-card.fade-up,
    .timeline-card.fade-up.visible {
        opacity: 0;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    }

    .timeline-card.fade-up.swipe-left,
    .timeline-card.fade-up.visible.swipe-left {
        transform: translateX(-80px);
    }

    .timeline-card.fade-up.swipe-right,
    .timeline-card.fade-up.visible.swipe-right {
        transform: translateX(80px);
    }

    .timeline-card.fade-up.is-revealed,
    .timeline-card.fade-up.visible.is-revealed {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SVG Line viewports configuration */
.curve-path-svg.desktop-only {
    display: block;
}

.vertical-path-svg.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .curve-path-svg.desktop-only {
        display: none;
    }
    .vertical-path-svg.mobile-only {
        display: block;
    }
}


.step-number {
    font-size: var(--text-display);
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 102, 204, 0.08);
    position: absolute;
    top: 24px;
    right: 32px;
}

.step-title {
    font-size: var(--text-h3);
    margin-bottom: 1rem;
}

.step-description {
    font-size: var(--text-body);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 7. Contact Form Section */
.contact-section {
    padding: 40px 0 120px 0;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    max-width: 580px;
    margin: 0 auto;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: var(--text-h2);
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: var(--text-lead);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: var(--text-caption);
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(210, 210, 215, 0.6);
    background-color: #f5f5f7;
    font-family: inherit;
    font-size: var(--text-body);
    color: var(--text-primary);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background-color: #ffffff;
}

.form-feedback {
    margin-top: 20px;
    text-align: center;
    font-size: var(--text-body);
    font-weight: 600;
}

.form-feedback.success {
    color: var(--color-success);
}

.form-feedback.error {
    color: var(--color-danger);
}

/* 8. Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid rgba(210, 210, 215, 0.4);
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    font-size: var(--text-h3);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: var(--text-small);
    font-weight: 500;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-copyright {
    font-size: var(--text-small);
    color: var(--text-secondary);
    margin-top: 8px;
}

/* --- New Redesign Components (Crisp Light Aesthetic) --- */

/* Hero Additions */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-caption);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-blue);
    background-color: rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.15);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 1.75rem;
}

.hero-risk-reducers {
    margin-top: 1.75rem;
    font-size: var(--text-small);
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-risk-reducers span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-risk-reducers .check-icon {
    color: var(--accent-blue);
    font-weight: 700;
}

/* 2. Zero-Risk Guarantee Strip */
.guarantee-strip-section {
    padding: 32px 0 64px 0;
    position: relative;
    z-index: 2;
}

.guarantee-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.guarantee-badge-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guarantee-badge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.06);
}

.badge-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(0, 102, 204, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-info h4 {
    font-size: var(--text-lead);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.badge-info p {
    font-size: var(--text-small);
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Generic Section Header */
.section-header {
    text-align: center;
    max-width: 1040px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-size: var(--text-h1);
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-wrap: balance;
    text-wrap: pretty;
}

.section-subtitle {
    font-size: var(--text-lead);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
    text-wrap: balance;
    text-wrap: pretty;
}

/* 3. The Stakes (PAS Side-by-Side Comparison) */
.stakes-section {
    padding: 80px 0;
}

.stakes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stakes-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.stakes-card.traditional {
    border: 1px solid rgba(235, 87, 87, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #fffcfc 100%);
}

.stakes-card.elytheus-model {
    border: 2px solid var(--accent-blue);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
    box-shadow: 0 12px 36px rgba(0, 102, 204, 0.08);
}

.stakes-badge {
    display: inline-block;
    font-size: var(--text-caption);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.stakes-badge.negative {
    background-color: rgba(235, 87, 87, 0.1);
    color: var(--color-danger);
}

.stakes-badge.positive {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--accent-blue);
}

.stakes-card h3 {
    font-size: var(--text-h2);
    margin-bottom: 1rem;
}

.stakes-card p.stakes-intro {
    font-size: var(--text-lead);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stakes-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.stakes-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--text-body);
    color: var(--text-primary);
    line-height: 1.5;
}

.stakes-checklist .list-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.stakes-checklist.negative .list-icon {
    color: var(--color-danger);
}

.stakes-checklist.positive .list-icon {
    color: var(--accent-blue);
}

/* 4. Value Proposition (3-Pillar Benefit Stack) */
.benefits-section {
    padding: 80px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.pillar-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: rgba(0, 102, 204, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: var(--text-h3);
    margin-bottom: 12px;
}

.pillar-benefit {
    font-size: var(--text-body);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pillar-relief {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(210, 210, 215, 0.4);
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 6. Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(210, 210, 215, 0.3);
    border-bottom: 1px solid rgba(210, 210, 215, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-canvas);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.stars {
    color: var(--color-warning);
    font-size: var(--text-lead);
    letter-spacing: 2px;
}

.rating-badge {
    font-size: var(--text-caption);
    font-weight: 700;
    color: var(--color-success);
    background-color: rgba(39, 174, 96, 0.1);
    padding: 4px 8px;
    border-radius: 9999px;
}

.testimonial-quote {
    font-size: var(--text-lead);
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-body);
}

.author-info h4 {
    font-size: var(--text-body);
    font-weight: 700;
}

.author-info p {
    font-size: var(--text-caption);
    color: var(--text-secondary);
}

/* 8. The Commitment (Shortened Narrative) */
.commitment-section {
    padding: 80px 0;
}

.commitment-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 56px;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.commitment-pullquote {
    font-size: var(--text-h3);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    border-left: 4px solid var(--accent-blue);
    padding-left: 24px;
    margin-bottom: 2rem;
}

.commitment-body {
    font-size: var(--text-body);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.commitment-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(210, 210, 215, 0.4);
}

.commitment-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.commitment-point .point-num {
    font-weight: 700;
    font-size: var(--text-lead);
    color: var(--accent-blue);
}

.commitment-point p {
    font-size: var(--text-small);
    color: var(--text-primary);
    line-height: 1.5;
}

/* 9. Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(210, 210, 215, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-canvas);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card.featured {
    background-color: #ffffff;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.12);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-blue);
    color: #ffffff;
    font-size: var(--text-caption);
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.pricing-tier-name {
    font-size: var(--text-h4);
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-target {
    font-size: var(--text-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 40px;
}

.pricing-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(210, 210, 215, 0.4);
}

.pricing-price {
    font-size: var(--text-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-term {
    font-size: var(--text-small);
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: var(--text-small);
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.pricing-features .check {
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-pay-note {
    font-size: var(--text-caption);
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

.pricing-guarantee-banner {
    max-width: 960px;
    margin: 48px auto 0 auto;
    background-color: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: var(--text-small);
    color: var(--text-primary);
}

.pricing-guarantee-banner strong {
    color: var(--accent-blue);
}

/* 10. Closing CTA Section */
.closing-cta-section {
    padding: 88px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.06) 0%, rgba(249, 249, 252, 0) 70%);
}

.closing-cta-card {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

.closing-cta-card h2 {
    font-size: var(--text-h1);
    margin-bottom: 1.25rem;
    text-wrap: balance;
    text-wrap: pretty;
}

.closing-cta-card p {
    font-size: var(--text-lead);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Form Inputs Extensions */
.form-select {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(210, 210, 215, 0.6);
    background-color: #f5f5f7;
    font-family: inherit;
    font-size: var(--text-body);
    color: var(--text-primary);
    transition: border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23414754' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-blue);
    background-color: #ffffff;
}

.form-trust-note {
    font-size: var(--text-caption);
    color: var(--text-secondary);
    text-align: center;
    margin-top: 16px;
}

/* Responsive Grid / Layout System Media Queries */

/* Tablet Viewports (992px) */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .guarantee-strip {
        grid-template-columns: 1fr;
    }

    .stakes-grid {
        grid-template-columns: 1fr;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .pillar-card.spotlight {
        grid-column: 1;
        grid-row: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .commitment-points {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-grid > .timeline-card:nth-child(even) {
        margin-top: 0;
    }

    .curve-path-svg {
        display: none;
    }

    .preview-layout {
        grid-template-columns: 1fr;
    }

    .preview-sidebar {
        display: none;
    }
}

/* Mobile Viewports (768px) */
@media (max-width: 768px) {
    html {
        font-size: var(--text-body);
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-heading {
        font-size: var(--text-h1);
    }

    .hero-subtitle {
        font-size: var(--text-lead);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-large {
        width: 100%;
    }

    .lifestyle-card-container {
        padding: 0 20px;
    }

    .lifestyle-card {
        padding: 40px 24px;
        height: auto;
        min-height: 460px;
        justify-content: flex-end;
    }

    .lifestyle-card-heading {
        font-size: var(--text-h2);
    }

    .lifestyle-card-body {
        font-size: var(--text-lead);
        margin-bottom: 2rem;
    }

    .lifestyle-card-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .lifestyle-card-buttons .btn {
        width: 100%;
    }

    .contact-card {
        padding: 40px 24px;
    }

    .logo-cloud { gap: 20px; }

    .section-title {
        font-size: var(--text-h2);
    }

    .hero-eyebrow {
        font-size: var(--text-caption);
        padding: 4px 12px;
    }

    .hero-risk-reducers {
        flex-direction: column;
        gap: 8px;
    }

    .stakes-card {
        padding: 32px 24px;
    }

    .pillar-card {
        padding: 32px 24px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .commitment-card {
        padding: 36px 20px;
    }

    .commitment-pullquote {
        font-size: var(--text-lead);
        padding-left: 16px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .pricing-price {
        font-size: var(--text-h1);
    }

    .closing-cta-card h2 {
        font-size: var(--text-h2);
    }
}

/* ==========================================================================
   Strategic Injected Sections & Conversion Components
   ========================================================================== */

/* 1. Dead-Zone Injected Centered CTAs */
.section-cta-wrap {
    text-align: center;
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-cta-subtext {
    font-size: var(--text-small);
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

/* 2. Objection FAQ Accordion */
.faq-section {
    padding: 112px 0;
    background: #ffffff;
    border-top: 1px solid rgba(210, 210, 215, 0.3);
    border-bottom: 1px solid rgba(210, 210, 215, 0.3);
}

.faq-accordion-wrap {
    max-width: 820px;
    margin: 48px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(210, 210, 215, 0.6);
    border-radius: 16px;
    background: var(--bg-canvas);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(0, 102, 204, 0.35);
    box-shadow: var(--shadow-level-1);
}

.faq-item.active {
    border-color: var(--accent-blue);
    background-color: #ffffff;
    box-shadow: var(--shadow-level-2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: var(--text-lead);
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--accent-blue);
    transition: transform 0.35s var(--ease-apple);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-apple), padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 320px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: var(--text-body);
    color: var(--text-secondary);
    line-height: 1.65;
}

/* 3. Transitional Lead Magnet Section */
.scorecard-section {
    padding: 96px 0;
    background: var(--bg-canvas);
}

.scorecard-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #eef5fc 100%);
    border: 1px solid rgba(0, 102, 204, 0.16);
    border-radius: 24px;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-level-2);
}

.scorecard-content {
    display: flex;
    flex-direction: column;
}

.scorecard-badge {
    margin-bottom: 16px;
    align-self: flex-start;
}

.scorecard-title {
    font-size: var(--text-h1);
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.scorecard-subtitle {
    font-size: var(--text-lead);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.scorecard-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: var(--text-body);
    color: var(--text-secondary);
    font-weight: 500;
}

.scorecard-benefits .check {
    color: var(--accent-blue);
    font-weight: 700;
    margin-right: 8px;
}

.scorecard-form-wrap {
    background: #ffffff;
    border: 1px solid rgba(210, 210, 215, 0.6);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow-level-1);
}

.scorecard-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scorecard-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scorecard-form .form-group label {
    font-size: var(--text-caption);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.scorecard-form .form-group input {
    padding: 16px 20px;
    font-size: var(--text-body);
    border-radius: 12px;
    border: 1px solid rgba(210, 210, 215, 0.7);
    background-color: #f9f9fc;
    transition: all 0.2s ease;
}

.scorecard-form .form-group input:focus {
    background-color: #ffffff;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.scorecard-form button {
    margin-top: 8px;
    padding: 16px 24px;
    font-size: var(--text-lead);
    font-weight: 700;
    border-radius: 12px;
}

.scorecard-trust-note {
    font-size: var(--text-small);
    color: var(--text-secondary);
    text-align: center;
    margin-top: 16px;
    font-weight: 500;
}

.priority-submit-btn {
    font-size: var(--text-lead);
    padding: 16px 28px;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
}

.priority-submit-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.45);
}

.mobile-line-path {
    display: none;
}

@media (max-width: 992px) {
    .scorecard-card {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        gap: 32px;
    }
}
