/* ==========================================================================
   From Chaos to Ease — Premium AI Assistant Landing Page
   Design System & Style Rules (Supports Visual Images & Modal Form)
   ========================================================================== */

:root {
    /* Color Palette (Sleek, Robust, & Professional) - DARK MODE */
    --cream-bg: #0A0A0A;
    --cream-card: rgba(255, 255, 255, 0.03);

    --sage-soft: rgba(255, 255, 255, 0.05);
    --sage-accent: rgba(255, 255, 255, 0.1);
    --rose-soft: rgba(255, 255, 255, 0.05);
    --peach-soft: rgba(255, 255, 255, 0.05);
    --lavender-soft: rgba(255, 255, 255, 0.05);
    
    --brand-primary: #FFFFFF;
    --brand-light: #A1A1AA;
    --brand-dark: #FFFFFF;
    
    --bg-light: #0A0A0A;
    --bg-white: rgba(255, 255, 255, 0.03);
    
    --text-main: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-body: #E4E4E7;
    --text-muted: #A1A1AA;
    --text-inverse: #0A0A0A;
    
    --accent-glow: rgba(255, 255, 255, 0.05);
    
    --cream-surface: #0A0A0A;
    --border-light: rgba(255, 255, 255, 0.08);
    
    /* Mapping Gold Accent to match main page */
    --gold-accent: #E5C384; 
    --success: #10B981;
    --bg-gradient: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);

    --glass-bg: rgba(10, 10, 10, 0.85);
    --glass-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Spacing & Radii */
    --radius-full: 9999px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;

    --container-max: 1200px;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
    /* Color Palette (Sleek, Robust, & Professional) - LIGHT MODE */
    --cream-bg: #F0F4F8; /* Cool slate-gray for background */
    --cream-card: #FFFFFF; /* Crisp white for cards */

    --sage-soft: #D9E2EC; /* Cool steel blue for Module 1 */
    --sage-accent: #334E68; /* Slate blue */
    --rose-soft: #E4E7EB; /* Light cool gray for Module 2 */
    --peach-soft: #E2E8F0; /* Soft slate for glow */
    --lavender-soft: #CBD5E1; /* Muted steel for glow */
    
    --brand-primary: #102A43; /* Deep navy / charcoal */
    --brand-light: #243B53; /* Lighter navy */
    --brand-dark: #0A1929; /* Very dark navy */
    
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    
    --text-main: #12263F; /* Dark slate */
    --text-primary: #0A1929; /* Very dark for headings/buttons */
    --text-body: #1F2937; /* Dark gray for body text */
    --text-muted: #475569; /* Darker slate for high contrast legibility */
    --text-inverse: #FFFFFF;
    
    --accent-glow: rgba(16, 42, 67, 0.3);
    
    --cream-surface: #FFFFFF;
    --border-light: #CBD5E1;
    
    /* New UI Colors */
    --gold-accent: #B8860B; /* Dark goldenrod for a premium feel */
    --success: #2F855A;
    --bg-gradient: linear-gradient(135deg, #F0F4F8 0%, #DCE3EA 100%);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-shadow: 0 16px 40px -10px rgba(16, 42, 67, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Spacing & Radii */
    --radius-full: 9999px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;

    --container-max: 1200px;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--cream-bg);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-body);
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.flex-grow { flex-grow: 1; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #2b2b2b, #333, #2b2b2b);
    color: #ffffff;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .announcement-bar {
    background: linear-gradient(90deg, #F3E7DC, #EDE1E7, #E0E8E1);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.bar-link {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 0.25rem;
    transition: opacity 0.2s;
}

.bar-link:hover { opacity: 0.8; }

/* Navigation Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.85rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    flex: 1;
}

.logo-mark { font-size: 1.25rem; }

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    justify-content: center;
}

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

.nav-link:hover { color: var(--text-primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* Language Switcher Pill Styling */
.lang-toggle-pill {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: var(--cream-surface);
    padding: 0.25rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.lang-toggle-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--transition-smooth);
}

.lang-toggle-btn.active {
    background: var(--text-primary);
    color: var(--cream-surface);
    box-shadow: 0 4px 12px rgba(43, 40, 38, 0.2);
}

.lang-toggle-btn:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--transition-smooth);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--cream-surface);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 42, 67, 0.18);
    background-color: var(--brand-dark);
}

.btn-secondary {
    background-color: var(--rose-soft);
    color: var(--brand-primary);
    border: 1px solid rgba(228, 231, 235, 0.5);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background-color: #D3D8E0;
    box-shadow: 0 8px 20px rgba(16, 42, 67, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 1.5px solid var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: var(--cream-surface);
}

.shadow-glow {
    box-shadow: 0 10px 30px rgba(43, 40, 38, 0.15);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6.5rem 1.5rem 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.hero-glow-1 {
    top: 5%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--peach-soft) 0%, rgba(226, 232, 240, 0) 70%);
}

.hero-glow-2 {
    top: 25%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--sage-soft) 0%, rgba(217, 226, 236, 0) 70%);
}

.hero-glow-3 {
    bottom: 10%;
    left: 35%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--lavender-soft) 0%, rgba(203, 213, 225, 0) 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.badge-sparkle { color: var(--gold-accent); }

.hero-title {
    font-size: clamp(2.4rem, 5.1vw, 4rem);
    max-width: 980px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-intro-text {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--text-muted);
    max-width: 820px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.avatar-group { display: flex; align-items: center; }

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--cream-surface);
    margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.trust-info { text-align: left; }
.stars { color: #F59E0B; font-size: 0.8rem; letter-spacing: 2px; }
.trust-text { font-size: 0.8rem; color: var(--text-muted); }

.hero-floating-pills {
    position: absolute;
    width: 100%;
    max-width: var(--container-max);
    top: 50%;
    pointer-events: none;
}

.floating-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--glass-shadow);
}

.pill-left { left: 2rem; top: -40px; transform: rotate(-3deg); }
.pill-right { right: 2rem; top: 40px; transform: rotate(3deg); }

/* Section Common Headers */
.section-header {
    max-width: 780px;
    margin: 0 auto 4rem;
}

.sub-heading {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section 2: Pain Points (The Burden) */
.burden-section {
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--cream-bg) 0%, #E2E8F0 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.pain-card {
    background: var(--cream-surface);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.pain-image-banner {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.banner-badge {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: #0A0A0A;
}

.pain-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.pain-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background: var(--cream-bg);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    border: 1px solid var(--border-light);
}

.highlight-emoji { font-size: 1.1rem; shrink: 0; }

/* Transformation Bridge Banner */
.bridge-card {
    background: linear-gradient(135deg, #2B2826 0%, #3D3936 100%);
    color: var(--cream-surface);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
    box-shadow: 0 20px 50px rgba(43, 40, 38, 0.15);
}

.bridge-tag {
    display: inline-block;
    color: var(--gold-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bridge-content h3 {
    color: var(--cream-surface);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    max-width: 880px;
    line-height: 1.3;
}

.bridge-desc {
    color: #D6D1CA;
    font-size: 1.05rem;
    max-width: 860px;
    line-height: 1.65;
}

.bridge-card .btn-primary {
    background: var(--gold-accent);
    color: var(--text-primary);
    white-space: nowrap;
}

.bridge-card .btn-primary:hover { background: #E5B85C; }

/* Section 3: Bento Grid Modules with Media Cover Images */
.modules-section {
    padding: 7rem 0;
    background-color: var(--cream-bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bento-card {
    border-radius: var(--radius-xl);
    position: relative;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.025);
    overflow: hidden;
    background: var(--cream-surface);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.bento-large { grid-column: span 2; }
.bento-medium { grid-column: span 1; }

.bento-media-cover {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-media-cover {
    transform: scale(1.03);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}

.bento-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #0A0A0A;
    z-index: 2;
}

.bento-body {
    padding: 2.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bento-title {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.bento-subtitle-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.bento-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.module-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.module-detail-list li {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    background: var(--cream-bg);
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.module-detail-list strong { color: var(--text-primary); }

.bento-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    background: var(--cream-bg);
    border: 1px solid var(--border-light);
    color: var(--text-body);
}

.tag-icon {
    width: 14px;
    height: 14px;
    margin-right: 0.35rem;
    stroke: var(--gold-accent);
    flex-shrink: 0;
}

.chip-icon {
    width: 15px;
    height: 15px;
    stroke: var(--text-primary);
    flex-shrink: 0;
    margin-right: 0.25rem;
}

.role-chip:hover .chip-icon,
.role-chip input:checked + span .chip-icon {
    stroke: var(--gold-accent);
}

.option-icon {
    width: 16px;
    height: 16px;
    stroke: var(--text-primary);
    flex-shrink: 0;
    margin-right: 0.35rem;
}

/* Section 4: Audience Grid & Cards */
.audience-section {
    padding: 6rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.audience-card {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.25rem 1.75rem 1.75rem;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.audience-pill {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #2B2826;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.audience-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92) !important;
    line-height: 1.55;
    position: relative;
    z-index: 2;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.audience-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding-top: 1.25rem;
    border-top: 1px dashed var(--border-light);
    line-height: 1.5;
}

/* Section 5: FAQ Accordion */
.faq-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--cream-bg) 0%, #F5F0E6 100%);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--cream-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Section 6: High-Converting CTA Banner */
.cta-section { padding: 6rem 0 8rem; }

.cta-card {
    background: linear-gradient(135deg, var(--sage-soft) 0%, var(--peach-soft) 50%, var(--lavender-soft) 100%);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.cta-sparkle { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

.cta-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-form-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon { font-size: 1rem; }

/* Interactive Registration Modal Styling */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(43, 40, 38, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    padding: 1rem;
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--cream-surface);
    border-radius: var(--radius-xl);
    margin: 0 auto; /* Ensure horizontal centering fallback */
    width: min(540px, 100%);
    max-width: 100%;
    max-height: calc(100dvh - 2rem); /* Use dvh for mobile if supported, minus padding */
    min-height: min-content;
    overflow-y: auto; /* Scroll inside card if too tall */
    box-sizing: border-box;
    padding: 2.25rem 2rem 2rem;
    position: relative;
    border: 1px solid var(--border-light);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s var(--transition-smooth);
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
}

.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--cream-bg);
    border: 1px solid var(--border-light);
    font-size: 1.5rem;
    line-height: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.modal-close-btn:hover {
    color: var(--text-primary);
    background: #EDE6DC;
}

.modal-sparkle { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.modal-title { font-size: 1.75rem; margin-bottom: 0.5rem; overflow-wrap: break-word; word-break: break-word; min-width: 0; }
.modal-subtitle { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.75rem; overflow-wrap: break-word; word-break: break-word; min-width: 0; }

.modal-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream-bg);
    border: 1px solid var(--border-light);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.step-dot.active {
    background: var(--text-primary);
    color: var(--cream-surface);
    border-color: var(--text-primary);
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--border-light);
}

.modal-step-pane {
    display: none;
}

.modal-step-pane.active {
    display: block;
    animation: modalFadeIn 0.3s ease;
}

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

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: var(--cream-bg);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.modal-input:focus {
    border-color: var(--gold-accent);
}

.role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.role-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--cream-bg);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.role-chip input[type="radio"] {
    accent-color: var(--text-primary);
}

.role-chip:hover {
    border-color: var(--gold-accent);
}

.goal-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.goal-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--cream-bg);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.88rem;
    line-height: 1.4;
}

.goal-option input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--text-primary);
}

.modal-actions-dual {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.success-icon-box {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    padding: 4rem 0 3rem;
    background: transparent;
    color: var(--text-primary);
}

[data-theme="light"] .footer {
    background: transparent;
    color: var(--text-primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.footer-brand .logo-text { color: var(--text-primary); }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; }

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-accent); }

.footer-copyright {
    border-top: 1px solid var(--border-light);
    width: 100%;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

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

/* Mobile & Tablet Responsive Optimizations */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-medium { grid-column: span 1; }
    .hero-floating-pills { display: none; }
    .pain-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .logo-text { font-size: 1.05rem; }
    .nav-links { display: none; }
    .nav-actions { display: flex; align-items: center; gap: 0.35rem; }
    .nav-actions .btn-outline { display: none; }
    .nav-actions .btn-primary { padding: 0.4rem 0.65rem; font-size: 0.75rem; white-space: nowrap; }
    .lang-toggle-pill { padding: 2px; display: flex; gap: 2px; }
    .lang-toggle-btn { padding: 0.2rem 0.45rem; font-size: 0.75rem; min-width: 26px; }
}

@media (max-width: 640px) {
    .announcement-bar { padding: 0.45rem 0.65rem; font-size: 0.75rem; }
    .announcement-bar p { flex-direction: column; gap: 0.2rem; }
    .hero { padding: 4rem 1rem 3rem; }
    .hero-title { font-size: 1.85rem; }
    .hero-intro-text { font-size: 0.98rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .bridge-card { padding: 2rem 1.15rem; }
    .pain-grid, .audience-grid { grid-template-columns: 1fr; }
}

/* Mobile & Tablet Modal Responsive Optimizations (<= 960px or <= 800px height) */
@media (max-width: 960px), (max-height: 800px) {
    .modal-overlay {
        padding: 1rem;
        align-items: flex-start; /* Show on top for mobile */
    }
    .modal-card {
        padding: 1.5rem 1.15rem 1.15rem;
        margin: 0 auto;
        width: 100% !important;
        max-width: 100% !important;
        max-height: calc(100dvh - 2rem);
        overflow-y: auto;
        border-radius: var(--radius-lg);
    }
    .modal-close-btn {
        top: 0.5rem;
        right: 0.5rem;
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    .modal-header {
        margin-bottom: 0.35rem;
    }
    .modal-title {
        font-size: 1.12rem;
        line-height: 1.25;
        margin-bottom: 0.2rem;
        padding-right: 1.25rem;
        word-break: break-word;
    }
    .modal-subtitle {
        font-size: 0.76rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }
    .modal-steps {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .step-dot {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    .step-line {
        width: 26px;
    }
    .form-group {
        margin-bottom: 0.4rem;
    }
    .form-label {
        font-size: 0.72rem;
        margin-bottom: 0.15rem;
        letter-spacing: 0.03em;
    }
    .modal-input {
        font-size: 15px; /* Prevents auto-zoom on iOS Safari */
        padding: 0.45rem 0.6rem;
        border-radius: var(--radius-sm);
        width: 100%;
        box-sizing: border-box;
    }
    .role-selector {
        grid-template-columns: 1fr 1fr;
        gap: 0.35rem;
    }
    .role-chip {
        padding: 0.4rem 0.45rem;
        font-size: 0.72rem;
        gap: 0.3rem;
        min-width: 0;
        border-radius: var(--radius-sm);
        box-sizing: border-box;
    }
    .role-chip .chip-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    .role-chip span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .goal-checklist {
        gap: 0.35rem;
    }
    .goal-option {
        padding: 0.45rem 0.55rem;
        font-size: 0.76rem;
        gap: 0.45rem;
        border-radius: var(--radius-sm);
        box-sizing: border-box;
    }
    .goal-option .option-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    .modal-actions-dual {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 0.6rem;
    }
    .modal-actions-dual .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    .modal-step-pane .btn.w-full {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
        margin-top: 0.35rem !important;
    }
}

/* iPhone & Extra-Small Mobile Responsive Optimizations (<= 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    .header {
        padding: 0.65rem 0;
    }
    .header.scrolled {
        padding: 0.45rem 0;
    }
    .logo {
        gap: 0.35rem;
    }
    .logo-text {
        font-size: 0.92rem;
        letter-spacing: -0.01em;
        white-space: nowrap;
    }
    .nav-actions {
        gap: 0.25rem;
    }
    .lang-toggle-btn {
        padding: 0.18rem 0.35rem;
        font-size: 0.7rem;
        min-width: 22px;
    }
    .nav-actions .btn-primary {
        padding: 0.35rem 0.55rem;
        font-size: 0.72rem;
    }
    .announcement-bar {
        padding: 0.4rem 0.5rem;
        font-size: 0.72rem;
        line-height: 1.35;
    }
    .hero {
        padding: 2.25rem 0.75rem 2rem;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.85rem;
    }
    .hero-title {
        font-size: 1.55rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    .hero-intro-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.65rem;
    }
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.35rem;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
    }
    .hero-trust {
        font-size: 0.8rem;
    }
}

/* Inline Registration Form Styling */
.inline-form-card {
    background: var(--cream-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    max-width: 680px;
    margin: 2rem auto 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.form-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .inline-form-card {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 1.5rem auto 0;
    }
    .form-grid-dual {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}
