/* ============================================
   BonusCard.ai Landing Page 2026
   Inspired by: Starbucks, Chipotle, Chick-fil-A
   ============================================ */

/* ============================================
   Design Tokens - Extended
   ============================================ */
:root {
    /* Primary - Trust Blue */
    --color-primary-50: #EFF6FF;
    --color-primary-100: #DBEAFE;
    --color-primary-200: #BFDBFE;
    --color-primary-300: #93C5FD;
    --color-primary-400: #60A5FA;
    --color-primary-500: #3B82F6;
    --color-primary-600: #2563EB;
    --color-primary-700: #1D4ED8;
    --color-primary-800: #1E40AF;
    --color-primary-900: #1E3A8A;

    /* Reward Gold - NEW (Starbucks inspired) */
    --color-gold-50: #FFFBEB;
    --color-gold-100: #FEF3C7;
    --color-gold-200: #FDE68A;
    --color-gold-300: #FCD34D;
    --color-gold-400: #FBBF24;
    --color-gold-500: #F59E0B;
    --color-gold-600: #D97706;
    --color-gold-700: #B45309;
    --color-gold-800: #92400E;
    --color-gold-900: #78350F;

    /* Success Green */
    --color-success-50: #ECFDF5;
    --color-success-100: #D1FAE5;
    --color-success-500: #10B981;
    --color-success-600: #059669;

    /* Warm Neutrals (Starbucks coffee warmth) */
    --color-warm-50: #FDFBF7;
    --color-warm-100: #F5F0E6;
    --color-warm-200: #E8DFD0;

    /* Tier Colors */
    --color-tier-bronze: #CD7F32;
    --color-tier-silver: #C0C0C0;
    --color-tier-gold: #FFD700;
    --color-tier-platinum: #E5E4E2;

    /* Premium Gradients */
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E40AF 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 95, 0.7) 100%);
    --gradient-reward: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-card-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Enhanced Shadows */
    --shadow-glow-blue: 0 0 40px rgba(59, 130, 246, 0.3);
    --shadow-glow-gold: 0 0 40px rgba(245, 158, 11, 0.3);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-hero-float: 0 25px 50px -12px rgba(0, 0, 0, 0.4);

    /* Animations */
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --animation-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Hero Section - Starbucks Inspired
   ============================================ */
.hero-2026 {
    position: relative;
    min-height: 100vh;
    padding: calc(80px + var(--space-16)) var(--space-4) var(--space-16);
    background: var(--gradient-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated particles background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-2026-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-2026-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

/* Hero Content */
.hero-2026-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-2026-content {
        text-align: left;
    }
}

/* NEW: Value Proposition Badge */
.hero-value-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-value-badge-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-reward);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hero-value-badge-text {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: rgba(255, 255, 255, 0.9);
}

.hero-value-badge-highlight {
    color: var(--color-gold-400);
}

/* Hero Title - IMPACT */
.hero-2026-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-2026-title-accent {
    display: block;
    background: var(--gradient-reward);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-2026-subtitle {
    font-size: var(--text-xl);
    font-weight: var(--font-normal);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto var(--space-8);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .hero-2026-subtitle {
        margin: 0 0 var(--space-8) 0;
    }
}

/* Hero CTAs - Premium */
.hero-2026-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-2026-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-2026-ctas {
        justify-content: flex-start;
    }
}

/* Primary CTA - Gold gradient */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-reward);
    color: var(--color-neutral-900);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: var(--shadow-glow-gold);
    transition: all 0.3s var(--animation-smooth);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Secondary CTA - Glass */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s var(--animation-smooth);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .hero-trust-indicators {
        justify-content: flex-start;
    }
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.hero-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-success-500);
}

/* ============================================
   Hero Phone Mockup - Starbucks style
   ============================================ */
.hero-2026-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.hero-phone-frame {
    position: relative;
    padding: 12px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 40px;
    box-shadow: var(--shadow-hero-float);
}

.hero-phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.hero-phone-screen {
    position: relative;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

/* App Screen Content */
.hero-app-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--color-warm-50);
}

.hero-app-header {
    padding: var(--space-6) var(--space-4) var(--space-4);
    background: var(--gradient-primary);
    color: white;
}

.hero-app-greeting {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-1);
}

.hero-app-subgreeting {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Points Card in App */
.hero-app-points-card {
    margin: calc(-1 * var(--space-6)) var(--space-4) var(--space-4);
    padding: var(--space-5);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 5;
}

.hero-app-points-value {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.hero-app-points-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-primary-600);
}

.hero-app-points-label {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
}

/* Progress Bar */
.hero-app-progress {
    height: 8px;
    background: var(--color-neutral-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-2);
}

.hero-app-progress-fill {
    height: 100%;
    width: 65%;
    background: var(--gradient-reward);
    border-radius: var(--radius-full);
    animation: progress-fill 2s ease-out forwards;
}

@keyframes progress-fill {
    from { width: 0; }
    to { width: 65%; }
}

.hero-app-progress-text {
    font-size: var(--text-xs);
    color: var(--color-neutral-500);
}

/* Scan Button in App */
.hero-app-scan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
    padding: var(--space-4);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: var(--font-bold);
    margin-top: var(--space-4);
}

/* Floating Stats */
.hero-float-stat {
    position: absolute;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.hero-float-stat-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.hero-float-stat-2 {
    bottom: 20%;
    right: -20%;
    animation-delay: 1s;
}

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

.hero-float-stat-value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-primary-600);
}

.hero-float-stat-label {
    font-size: var(--text-xs);
    color: var(--color-neutral-500);
}

/* ============================================
   Social Proof Bar - Chipotle style
   ============================================ */
.social-proof-bar {
    background: white;
    border-bottom: 1px solid var(--color-neutral-100);
    padding: var(--space-6) 0;
}

.social-proof-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
}

.social-proof-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-proof-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary-600);
}

.social-proof-value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-neutral-900);
}

.social-proof-label {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
}

/* ============================================
   Features Section - Card Grid
   ============================================ */
.features-2026 {
    padding: var(--space-24) 0;
    background: var(--color-warm-50);
}

.features-2026-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-16);
}

.features-2026-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary-50);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-primary-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.features-2026-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-neutral-900);
    margin-bottom: var(--space-4);
}

.features-2026-subtitle {
    font-size: var(--text-lg);
    color: var(--color-neutral-600);
    line-height: 1.6;
}

/* Feature Cards Grid */
.features-2026-grid {
    display: grid;
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .features-2026-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-2026-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Card */
.feature-card-2026 {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid var(--color-neutral-100);
    transition: all 0.3s var(--animation-smooth);
    overflow: hidden;
}

.feature-card-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--animation-smooth);
}

.feature-card-2026:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-primary-200);
}

.feature-card-2026:hover::before {
    transform: scaleX(1);
}

.feature-card-2026-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary-100) 0%, var(--color-primary-50) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    transition: transform 0.3s var(--animation-smooth);
}

.feature-card-2026:hover .feature-card-2026-icon {
    transform: scale(1.1);
}

.feature-card-2026-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card-2026-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-3);
}

.feature-card-2026-description {
    font-size: var(--text-base);
    color: var(--color-neutral-600);
    line-height: 1.7;
}

/* Featured card variant */
.feature-card-2026.featured {
    grid-column: span 1;
    background: var(--gradient-hero);
    border: none;
    color: white;
}

@media (min-width: 1024px) {
    .feature-card-2026.featured {
        grid-column: span 2;
    }
}

.feature-card-2026.featured .feature-card-2026-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-card-2026.featured .feature-card-2026-title {
    color: white;
}

.feature-card-2026.featured .feature-card-2026-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   How It Works - Dunkin Style
   ============================================ */
.how-it-works {
    padding: var(--space-24) 0;
    background: white;
}

.how-it-works-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-16);
    padding: 0 var(--space-4);
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    position: relative;
}

@media (min-width: 768px) {
    .how-it-works-steps {
        flex-direction: row;
        gap: var(--space-4);
    }
}

/* Connecting line */
.how-it-works-steps::before {
    display: none;
}

@media (min-width: 768px) {
    .how-it-works-steps::before {
        content: '';
        display: block;
        position: absolute;
        top: 40px;
        left: 80px;
        right: 80px;
        height: 3px;
        background: var(--color-neutral-200);
        z-index: 0;
    }
}

.how-it-works-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-it-works-step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    background: white;
    border: 3px solid var(--color-primary-500);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-primary-600);
    transition: all 0.3s var(--animation-smooth);
}

.how-it-works-step:hover .how-it-works-step-number {
    background: var(--color-primary-500);
    color: white;
    transform: scale(1.1);
}

.how-it-works-step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-4);
    background: var(--color-primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary-600);
}

.how-it-works-step-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-2);
}

.how-it-works-step-description {
    font-size: var(--text-sm);
    color: var(--color-neutral-600);
}

/* ============================================
   Pricing Section - Smile.io Style
   ============================================ */
.pricing-2026 {
    padding: var(--space-24) 0;
    background: var(--color-neutral-50);
}

.pricing-2026-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-12);
    padding: 0 var(--space-4);
}

.pricing-2026-grid {
    display: grid;
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .pricing-2026-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-2026-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Pricing Card */
.pricing-card-2026 {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 2px solid var(--color-neutral-200);
    transition: all 0.3s var(--animation-smooth);
}

.pricing-card-2026:hover {
    border-color: var(--color-primary-300);
    box-shadow: var(--shadow-lg);
}

.pricing-card-2026.popular {
    border-color: var(--color-primary-500);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.pricing-card-2026-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-1) var(--space-4);
    background: var(--gradient-reward);
    color: var(--color-neutral-900);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card-2026-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-1);
}

.pricing-card-2026-description {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
    margin-bottom: var(--space-6);
    min-height: 40px;
}

.pricing-card-2026-price {
    margin-bottom: var(--space-6);
}

.pricing-card-2026-amount {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-neutral-900);
}

.pricing-card-2026-period {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
}

.pricing-card-2026-features {
    list-style: none;
    margin-bottom: var(--space-8);
    padding: 0;
}

.pricing-card-2026-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--color-neutral-600);
}

.pricing-card-2026-feature svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-success-500);
}

.pricing-card-2026-cta {
    display: block;
    width: 100%;
    padding: var(--space-4);
    text-align: center;
    font-weight: var(--font-bold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s var(--animation-smooth);
}

.pricing-card-2026-cta.primary {
    background: var(--gradient-primary);
    color: white;
}

.pricing-card-2026-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
}

.pricing-card-2026-cta.secondary {
    background: var(--color-neutral-100);
    color: var(--color-neutral-700);
}

.pricing-card-2026-cta.secondary:hover {
    background: var(--color-neutral-200);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: var(--space-24) 0;
    background: white;
}

.faq-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-12);
    padding: 0 var(--space-4);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) 0;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-neutral-900);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

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

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

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

.faq-answer-content {
    padding: 0 0 var(--space-5) 0;
    font-size: var(--text-base);
    color: var(--color-neutral-600);
    line-height: 1.7;
}

/* ============================================
   Final CTA - Chick-fil-A Style
   ============================================ */
.final-cta {
    padding: var(--space-24) 0;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-4);
}

.final-cta-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
    }
}

.final-cta-note {
    margin-top: var(--space-6);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

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

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--animation-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--animation-smooth);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}
