/* ================================
   DailySelah Waitlist - Modern Design
   Matching actual app color palette
   ================================ */

:root {
    /* ACTUAL APP COLORS */
    --navy: #243b53;
    --navy-light: #334e68;
    --navy-dark: #1a2d42;
    --cream: #fdfbf4;
    --cream-dark: #f5f0e3;
    --gold: #d4a574;
    --gold-light: #e8c9a8;

    /* Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Status */
    --success: #10b981;
    --error: #ef4444;

    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Newsreader', Georgia, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   Reset & Base
   ================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--navy);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================================
   Typography
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ================================
   Navigation
   ================================ */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 244, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* ================================
   Hero Section
   ================================ */

.hero {
    padding: clamp(1.5rem, 3vh, 2.5rem) 0 clamp(3rem, 6vh, 4rem) 0;
    background: var(--cream);
    overflow: visible;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    min-height: calc(100vh - 140px);
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    padding-left: 0;
    margin-left: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.hero-badge svg {
    color: var(--navy-dark);
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
    line-height: 1.65;
    color: var(--gray-600);
    margin-bottom: clamp(2rem, 4vh, 2.5rem);
    max-width: 560px;
}

/* Form Styling */

.hero-form, .cta-form {
    margin-bottom: var(--space-lg);
}

.form-wrapper {
    display: flex;
    gap: var(--space-sm);
    max-width: 540px;
}

.form-wrapper input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: white;
    color: var(--navy);
    transition: var(--transition);
}

.form-wrapper input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--navy);
    background: var(--gold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary svg {
    stroke: var(--navy);
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.form-privacy svg {
    fill: var(--gray-400);
    flex-shrink: 0;
}

/* Download Buttons */

.download-buttons {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.download-button-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-link {
    display: inline-block;
    transition: var(--transition);
}

.download-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.download-link-dimmed {
    opacity: 0.5;
}

.download-link-dimmed:hover {
    opacity: 0.7;
}

.download-badge {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.download-status {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* CTA Download Buttons */

.cta-download-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.cta-download-buttons .download-badge {
    max-width: 220px;
}

.cta-android-note {
    font-size: 0.9375rem;
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: var(--space-xl);
}

/* Android Waitlist Section */

.android-waitlist {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(253, 251, 244, 0.15);
}

.android-waitlist-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.android-waitlist-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 251, 244, 0.1);
    border-radius: var(--radius-md);
}

.android-waitlist-icon svg {
    stroke: var(--gold);
}

.android-waitlist-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.android-waitlist-text p {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: var(--space-lg);
}

.android-waitlist-form .form-wrapper {
    margin: 0 auto;
}

.success-message {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    border-radius: var(--radius-md);
    color: var(--success);
    font-weight: 600;
    animation: slideIn 0.4s ease-out;
}

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

.success-message.hidden {
    display: none;
}

.success-message svg {
    stroke: var(--success);
    flex-shrink: 0;
}

/* Stats Section - Below Hero */

.hero-stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    margin-top: clamp(3rem, 6vh, 5rem);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 4rem);
    padding: clamp(1.5rem, 3vh, 2.5rem) clamp(2rem, 4vw, 3rem);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--gray-100);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: var(--gray-500);
    font-weight: 500;
}

/* ================================
   iPhone Mockup
   ================================ */

.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

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

.phone-mockup {
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(36, 59, 83, 0.12));
}

.phone-frame {
    width: clamp(270px, 29vw, 310px);
    height: clamp(550px, 59vw, 630px);
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 11px;
    position: relative;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

/* Video inside iPhone */
.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Session UI Inside Phone (Static Mockup - not used when video is present) */

.session-header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    padding-top: 44px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.icon-btn svg {
    stroke: var(--cream);
}

.session-content {
    padding: 0 24px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Breathing Circle Animation */

.breath-container-phone {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.breath-outer-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--navy);
    border-radius: 50%;
}

.breath-circle-phone {
    width: 140px;
    height: 140px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathePulse 4s ease-in-out infinite;
}

@keyframes breathePulse {
    0%, 100% {
        transform: scale(0.85);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.breath-inner {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

/* Scripture Text */

.scripture-text {
    text-align: center;
    height: 60px;
    position: relative;
}

.scripture-phrase {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--cream);
    white-space: nowrap;
    width: 100%;
}

.phase-in {
    animation: textFade 4s ease-in-out infinite;
}

.phase-out {
    animation: textFade 4s ease-in-out infinite 2s;
}

@keyframes textFade {
    0%, 40% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Phase Label */

.phase-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
    animation: phaseSwitch 4s ease-in-out infinite;
}

@keyframes phaseSwitch {
    0%, 45% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.5;
    }
}

/* Progress Bar */

.progress-container {
    width: 100%;
    margin-top: 12px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--navy);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    width: 52%;
    height: 100%;
    background: var(--gold);
    animation: progressGrow 5s linear infinite;
}

@keyframes progressGrow {
    from { width: 0%; }
    to { width: 100%; }
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--cream);
    opacity: 0.7;
}

/* Session Controls */

.session-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--cream);
}

.control-skip {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
}

.control-skip svg {
    stroke: var(--cream);
}

.control-play {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 50%;
}

.control-play svg {
    stroke: var(--navy);
}

/* ================================
   Sections
   ================================ */

section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ================================
   Feature Showcase
   ================================ */

.feature-showcase {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(253, 251, 244, 0.4) 100%);
    position: relative;
}

.feature-showcase .container {
    max-width: 1200px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    margin-bottom: clamp(5rem, 10vh, 8rem);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px -10px rgba(36, 59, 83, 0.08);
    transform: translateY(-4px);
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-item:nth-child(even) {
    background: rgba(212, 165, 116, 0.03);
}

.showcase-item:nth-child(even):hover {
    background: rgba(212, 165, 116, 0.06);
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-image {
    width: 100%;
    position: relative;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 25px;
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.showcase-item:hover .showcase-image::before {
    opacity: 0.25;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow:
        0 10px 30px -5px rgba(36, 59, 83, 0.15),
        0 0 0 1px rgba(36, 59, 83, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.showcase-item:hover .feature-screenshot {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px -8px rgba(36, 59, 83, 0.2),
        0 0 0 1px rgba(36, 59, 83, 0.08);
}

.showcase-content {
    padding: var(--space-md);
}

.showcase-headline {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.showcase-subhead {
    font-size: clamp(1.0625rem, 1.15vw, 1.1875rem);
    line-height: 1.75;
    color: var(--gray-600);
    max-width: 520px;
}

/* Responsive */
@media (max-width: 968px) {
    .showcase-item,
    .showcase-item.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        direction: ltr;
        padding: var(--space-lg);
        margin-bottom: var(--space-3xl);
    }

    .showcase-content {
        padding: 0;
        text-align: center;
    }

    .showcase-subhead {
        max-width: 100%;
        margin: 0 auto;
    }

    .showcase-image::before {
        display: none;
    }

    .feature-screenshot {
        border-radius: 20px;
    }

    .feature-showcase {
        padding: var(--space-3xl) 0;
    }
}

/* ================================
   How It Works
   ================================ */

.how-it-works {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-md);
    opacity: 0.4;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: var(--radius-lg);
}

.step-icon svg {
    stroke: var(--navy-dark);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================
   Features
   ================================ */

.features {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.feature-icon svg {
    stroke: var(--navy-dark);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================
   Testimonials
   ================================ */

.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial {
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-light);
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--navy);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ================================
   FAQ
   ================================ */

.faq {
    background: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: var(--transition);
}

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

.faq-icon {
    flex-shrink: 0;
    stroke: var(--gold);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-light);
    transition: var(--transition);
}

.faq-answer a:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

/* ================================
   Founder Story
   ================================ */

.founder-story {
    background: white;
    padding: var(--space-3xl) 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.founder-greeting {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--navy);
}

.founder-paragraph {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.founder-scripture {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--cream);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
}

.founder-scripture p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.founder-scripture cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-style: normal;
    color: var(--gray-500);
}

.founder-signature {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.signature-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.signature-title {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream);
    border: 3px solid var(--gold-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.image-placeholder svg {
    opacity: 0.3;
}

.placeholder-text {
    position: absolute;
    bottom: var(--space-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-400);
    text-align: center;
}

/* Replace placeholder with actual image */
.founder-image img,
.founder-photo {
    width: 240px !important;
    height: 240px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--gold-light) !important;
    display: block !important;
    margin: 0 auto !important;
}

/* ================================
   CTA
   ================================ */

.cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--cream);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-form .form-wrapper {
    margin: 0 auto;
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--navy-dark);
    color: var(--cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(253, 251, 244, 0.1);
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    font-style: italic;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9375rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ================================
   Privacy Policy
   ================================ */

.privacy-policy {
    padding: var(--space-3xl) 0;
    background: white;
}

.privacy-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.privacy-updated {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-top: var(--space-sm);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: var(--space-2xl);
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.privacy-section p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: var(--space-sm);
}

.privacy-section ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.privacy-section li {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.privacy-section a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-light);
    transition: var(--transition);
}

.privacy-section a:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

/* ================================
   Cookie Consent Banner
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(36, 59, 83, 0.15);
    padding: var(--space-lg);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--gold);
}

.cookie-banner:not(.hidden) {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 700px;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid var(--gray-300);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cookie-secondary:hover {
    border-color: var(--navy);
    background: var(--gray-50);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cookie-settings:hover {
    background: var(--navy);
    color: white;
}

/* Cookie Modal */

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: var(--space-lg);
}

.cookie-modal:not(.hidden) {
    opacity: 1;
    pointer-events: all;
}

.cookie-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.cookie-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-500);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background: var(--gray-100);
    color: var(--navy);
}

.cookie-modal-body {
    padding: var(--space-lg);
}

.cookie-option {
    margin-bottom: var(--space-lg);
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.cookie-option h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.cookie-option p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Cookie Toggle Switch */

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--gold);
}

input:checked + .cookie-slider:before {
    transform: translateX(22px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--gray-200);
    text-align: right;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    /* Keep content first on mobile for above-the-fold CTA */
    .hero-phone {
        margin-top: var(--space-lg);
    }

    .phone-frame {
        width: 280px;
        height: 570px;
    }

    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-md);
    }

    .download-badge {
        max-width: 160px;
    }

    .form-wrapper {
        flex-direction: column;
        max-width: 100%;
        gap: var(--space-md);
    }

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

    .hero-stats-container {
        margin-top: var(--space-2xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .stat-item {
        padding: var(--space-sm) 0;
    }

    .stat-divider {
        display: none;
    }

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

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

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

    .founder-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .founder-image {
        order: -1;
    }

    .image-placeholder,
    .founder-image img {
        width: 180px;
        height: 180px;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 3rem;
    }

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

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

    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-secondary,
    .btn-cookie-settings {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner {
        padding: var(--space-md);
    }

    .cookie-modal-content {
        margin: var(--space-md);
        max-height: 85vh;
    }

    .cookie-modal-header h3 {
        font-size: 1.25rem;
    }

    /* Privacy Section Mobile */
    .privacy-section h3 {
        font-size: 1.25rem;
    }

    .privacy-content {
        padding: 0 var(--space-sm);
    }
}

/* ================================
   Accessibility
   ================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
