/* ==========================================================================
   MODERN VARIABLES - LA PRINCESSE ET LA GRENOUILLE
   ========================================================================== */

:root {
    /* Bayou Princess Palette */
    --primary-emerald: #2D6A4F;
    --emerald-light: #52B788;
    --emerald-dark: #1B4332;

    --primary-gold: #FFD700;
    --gold-light: #FFF4C1;
    --gold-dark: #D4AF37;

    --primary-purple: #4A1942;
    --purple-light: #8B5A83;
    --purple-dark: #2D0A26;

    --accent-bayou: #40916C;
    --accent-pink: #E63946;
    --accent-lily: #A7C957;

    /* Neutrals */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-gap: 120px;
    --container-width: 1400px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.4);
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

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

/* ==========================================================================
   HERO SECTION - BAYOU MAGIC
   ========================================================================== */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--primary-emerald) 50%, var(--primary-purple) 100%);
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.floating-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: float 8s ease-in-out infinite;
}

.star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.star:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; }
.star:nth-child(4) { top: 30%; left: 70%; animation-delay: 1s; }
.star:nth-child(5) { top: 70%; left: 50%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* ==========================================================================
   MAGIC PNG ELEMENTS - BAYOU THEME
   ========================================================================== */

.magic-lily-float {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 2;
    animation: lilyFloat 4s ease-in-out infinite;
}

.lily-png {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(82, 183, 136, 0.6));
}

.lily-glow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.6) 0%, transparent 70%);
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes lilyFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

.magic-firefly-float {
    position: absolute;
    top: 15%;
    right: 8%;
    z-index: 1;
    animation: fireflyFly 10s ease-in-out infinite;
}

.firefly-png {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(255, 215, 0, 0.6));
}

@keyframes fireflyFly {
    0%, 100% {
        transform: translate(0, 0) rotate(3deg);
    }
    25% {
        transform: translate(-30px, -30px) rotate(-2deg);
    }
    50% {
        transform: translate(20px, -15px) rotate(3deg);
    }
    75% {
        transform: translate(-15px, -40px) rotate(-1deg);
    }
}

.frog-float {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 0;
    animation: frogAppear 6s ease-in-out infinite;
    opacity: 0.15;
}

.frog-png {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(82, 183, 136, 0.4));
}

@keyframes frogAppear {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.2;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    max-width: 700px;
}

.logo-badge {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.logo {
    height: 70px;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
}

.hero-whisper {
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-title {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

.title-line-1 {
    font-size: 56px;
    color: var(--white);
}

.title-line-2 {
    font-size: 72px;
    color: var(--primary-gold);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-description strong {
    color: var(--primary-gold);
}

.hero-transformation {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

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

.transform-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.transform-item p {
    color: var(--white);
    font-size: 15px;
    font-style: italic;
}

.transform-item.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(82, 183, 136, 0.2));
    border: 1px solid var(--primary-gold);
    padding: 16px;
    border-radius: 12px;
}

.transform-arrow {
    color: var(--primary-gold);
}

.hero-event-details {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.event-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 20px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-title {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.badge-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.hero-price-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.4s forwards;
}

.price-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    display: block;
    color: var(--gold-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 20px;
    color: var(--gray-300);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-current {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.price-badge {
    background: var(--accent-pink);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.price-detail {
    color: var(--white);
    font-size: 14px;
}

.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-text {
    font-size: 18px;
    margin-bottom: 4px;
}

.btn-subtext {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.urgency-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(230, 57, 70, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid var(--accent-pink);
    border-radius: 12px;
    margin-bottom: 24px;
}

.urgency-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.urgency-text {
    flex: 1;
}

.urgency-text strong {
    display: block;
    color: var(--primary-gold);
    font-size: 16px;
    margin-bottom: 2px;
}

.urgency-text span {
    color: var(--gold-light);
    font-size: 14px;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badges span {
    color: var(--white);
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease 0.5s backwards;
}

.hero-main-image {
    width: 100%;
    height: auto;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.3) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 3;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

section {
    padding: var(--section-gap) 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header.dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
}

.section-header.dark .section-subtitle {
    color: var(--gray-300);
}

/* ==========================================================================
   PAIN POINTS SECTION
   ========================================================================== */

.pain-points {
    background: var(--gray-50);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pain-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pain-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

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

.promise-block {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--emerald-dark) 100%);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    color: var(--white);
    text-align: center;
    position: relative;
}

.promise-block h3 {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 32px;
}

.promise-list {
    display: grid;
    gap: 16px;
    text-align: left;
    margin-bottom: 32px;
}

.promise-item {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 18px;
    border-left: 3px solid var(--primary-gold);
}

.promise-tagline {
    font-size: 28px;
    line-height: 1.5;
}

.promise-tagline strong {
    color: var(--primary-gold);
    font-family: var(--font-display);
    font-size: 36px;
}

/* ==========================================================================
   VILLAIN WARNING SECTION - CONVERSION BOOSTER
   ========================================================================== */

.villain-warning {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.villain-warning::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.villain-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.villain-left {
    position: relative;
}

.villain-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(138, 43, 226, 0.6));
    animation: villainFloat 4s ease-in-out infinite;
}

@keyframes villainFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.villain-right {
    color: var(--white);
}

.villain-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
}

.villain-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.villain-text em {
    color: var(--accent-pink);
    font-style: italic;
    font-weight: 600;
}

.villain-text.strong {
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
    margin: 32px 0;
}

.villain-cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gold-light);
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
}

.btn-villain {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 48px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-villain::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-villain:hover::before {
    transform: translateX(100%);
}

.btn-villain:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.7);
}

.btn-villain .btn-subtext {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

/* ==========================================================================
   JOURNEY SECTION
   ========================================================================== */

.journey {
    background: var(--white);
}

.tiana-inspire {
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(45, 106, 79, 0.3));
}

.journey-visual {
    margin-bottom: 60px;
    overflow: hidden;
}

.journey-image {
    width: 100%;
    height: auto;
    display: block;
}

.journey-timeline {
    display: grid;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-day {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 20px;
    border-left: 4px solid var(--primary-emerald);
    transition: all 0.3s ease;
}

.timeline-day:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.timeline-day.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-left-color: var(--primary-gold);
}

.day-badge {
    display: inline-block;
    background: var(--primary-emerald);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.timeline-day.highlight .day-badge {
    background: var(--primary-gold);
    color: var(--black);
}

.timeline-day h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.timeline-day p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 17px;
}

.timeline-day strong {
    color: var(--primary-emerald);
}

.timeline-day.highlight strong {
    color: var(--primary-gold);
}

/* Journey Real Photo */
.journey-real-photo {
    margin-top: 60px;
    text-align: center;
}

.real-stage-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
    display: block;
}

.real-photo-caption {
    margin-top: 20px;
    font-size: 16px;
    color: var(--gray-600);
    font-style: italic;
}

/* ==========================================================================
   WHY IT WORKS SECTION
   ========================================================================== */

.why-works {
    background: var(--gray-50);
}

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

.why-card {
    padding: 36px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), var(--white));
    border: 2px solid var(--primary-gold);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.why-reason {
    font-style: italic;
    color: var(--primary-emerald);
    font-weight: 600;
    margin-bottom: 12px;
}

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

.why-card strong {
    color: var(--gray-900);
}

.show-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.show-image {
    width: 100%;
    height: auto;
    display: block;
}

.show-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.show-text h3 {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--white);
    margin-bottom: 8px;
}

.show-text p {
    color: var(--gold-light);
    font-size: 18px;
}

/* ==========================================================================
   SOCIAL PROOF SECTION
   ========================================================================== */

.testimonials {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--primary-emerald) 100%);
    color: var(--white);
}

.proof-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    position: relative;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(8px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.carousel-btn:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 24px;
    padding: 8px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.proof-slide {
    scroll-snap-align: center;
    min-width: 260px;
    max-width: 320px;
}

.proof-card {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    padding: 14px;
    display: block;
    position: relative;
    cursor: zoom-in;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.proof-card img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 12px;
    background: rgba(12, 8, 24, 0.35);
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

.proof-card:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 4px;
}

.proof-cta {
    position: absolute;
    right: 22px;
    bottom: 22px;
    background: rgba(15, 9, 30, 0.8);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.proof-card:hover .proof-cta,
.proof-card:focus-visible .proof-cta {
    opacity: 1;
    transform: translateY(0);
}

.carousel-note {
    text-align: center;
    margin-top: 24px;
    color: var(--gold-light);
    font-size: 15px;
}

.proof-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 4, 18, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 9999;
    padding: 24px;
}

.proof-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: min(960px, 92vw);
}

.proof-modal img {
    max-width: 92vw;
    max-height: 75vh;
    border-radius: 18px;
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.5);
    background: #0f0b1a;
}

.modal-caption {
    color: var(--gold-light);
    font-size: 14px;
    text-align: center;
}

.modal-close,
.modal-nav {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.modal-close {
    top: 24px;
    right: 24px;
    font-size: 32px;
}

.modal-close::before {
    content: "×";
}

.modal-nav.prev {
    left: 24px;
}

.modal-nav.next {
    right: 24px;
}

.modal-close:hover,
.modal-nav:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.modal-close:focus-visible,
.modal-nav:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 900px) {
    .proof-carousel {
        gap: 16px;
    }

    .carousel-track {
        grid-auto-columns: minmax(220px, 1fr);
    }
}

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

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .carousel-btn.prev {
        left: -6px;
    }

    .carousel-btn.next {
        right: -6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        scroll-behavior: auto;
    }

    .proof-card,
    .carousel-btn {
        transition: none;
    }
}

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

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

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

.faq-item {
    background: var(--gray-50);
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    gap: 24px;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.5;
}

.faq-icon {
    font-size: 32px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer strong {
    color: var(--gray-900);
}

/* ==========================================================================
   PRACTICAL INFO SECTION
   ========================================================================== */

.practical {
    background: var(--gray-50);
}

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

.info-card {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.info-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-card strong {
    color: var(--gray-900);
}

.price-big {
    font-size: 32px;
    color: var(--primary-gold);
}

.price-crossed {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 18px;
    margin-left: 8px;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--black) 100%);
    color: var(--white);
}

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

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--white);
    margin-bottom: 60px;
}

.paths-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.path {
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    text-align: left;
}

.path-no {
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid rgba(230, 57, 70, 0.3);
}

.path-yes {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid var(--primary-gold);
}

.path h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.path ul {
    list-style: none;
}

.path ul li {
    padding: 12px 0;
    font-size: 17px;
    line-height: 1.6;
}

.final-offer {
    padding: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 2px solid var(--primary-gold);
    border-radius: 32px;
}

.final-offer h3 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.offer-details {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    font-size: 16px;
}

.final-price {
    margin: 32px 0;
}

.final-price-old {
    font-size: 24px;
    text-decoration: line-through;
    color: var(--gray-400);
    margin-right: 16px;
}

.final-price-new {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.btn-xl {
    padding: 24px 60px;
    font-size: 20px;
    margin: 32px 0;
}

.final-urgency {
    margin: 24px 0;
    font-size: 18px;
}

.final-urgency strong {
    color: var(--primary-gold);
    font-size: 20px;
}

.final-ps {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-ps p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--gray-300);
}

.final-ps strong {
    color: var(--primary-gold);
}

/* ==========================================================================
   FLOATING STICKY CTA
   ========================================================================== */

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.floating-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-cta-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-900);
}

.floating-cta-price {
    font-size: 14px;
    color: var(--gray-600);
}

.floating-cta-price::before {
    content: '🔥 ';
}

.floating-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.floating-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p,
.footer-col a {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-600);
}

/* ==========================================================================
   MAGIC QUESTIONNAIRE MODAL - BAYOU THEME
   ========================================================================== */

.magic-quest {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a3a2e 0%, #16423e 50%, #0f1f1e 100%);
}

.magic-quest.is-open {
    opacity: 1;
    visibility: visible;
}

.quest-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1a3a2e 0%, #16423e 50%, #0f1f1e 100%);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.quest-stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(167, 201, 87, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(167, 201, 87, 0.5), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 215, 0, 0.7), transparent),
        radial-gradient(1px 1px at 160px 20px, rgba(167, 201, 87, 0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite;
}

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

.quest-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 30% 50%, rgba(82, 183, 136, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 40%);
}

.quest-close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.quest-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.quest-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.quest-progress-bar {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, var(--primary-gold), var(--emerald-light));
    border-radius: 0 2px 2px 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.quest-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 80px 40px 40px;
    text-align: center;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quest-step {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: questFadeIn 0.6s ease forwards;
    width: 100%;
    padding: 20px 0;
}

.quest-step.active {
    display: flex;
}

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

.quest-lily-icon {
    position: relative;
    margin-bottom: 40px;
}

.quest-lily-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(82, 183, 136, 0.6));
    animation: lilyHover 3s ease-in-out infinite;
}

@keyframes lilyHover {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.quest-lily-glow {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: glowPulse 2s ease-in-out infinite;
}

.quest-sparkle {
    font-size: 64px;
    margin-bottom: 32px;
    animation: sparkleFloat 2s ease-in-out infinite;
}

@keyframes sparkleFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.quest-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.3;
}

.quest-title-small {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.quest-child-name {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.quest-input-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 32px;
}

.quest-input {
    width: 100%;
    padding: 20px 24px;
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.quest-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.quest-input:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.quest-input.has-value {
    border-color: var(--primary-gold);
}

.quest-input-magic {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.quest-input:focus ~ .quest-input-magic,
.quest-input.has-value ~ .quest-input-magic {
    width: 80%;
}

.quest-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.quest-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.quest-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.quest-hint {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.quest-ages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    touch-action: manipulation;
}

.quest-age-btn {
    padding: 16px 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    pointer-events: auto;
    touch-action: manipulation;
}

.quest-age-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.quest-age-btn.selected {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.quest-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.quest-back:hover {
    color: var(--white);
}

/* Recap Step Styles */
.quest-recap-magic {
    margin-bottom: 40px;
}

.quest-scroll {
    position: relative;
    padding: 8px;
    animation: scrollAppear 0.8s ease forwards;
}

@keyframes scrollAppear {
    from {
        opacity: 0;
        transform: scale(0.8) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateX(0);
    }
}

.quest-scroll-content {
    background: linear-gradient(180deg, #f4e4c1 0%, #e8d4a8 50%, #f4e4c1 100%);
    border-radius: 8px;
    padding: 40px 50px;
    position: relative;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 60px rgba(139, 90, 43, 0.1);
}

.quest-scroll-decoration {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg,
        #8b5a2b 0%, #d4a855 20%, #f4d58d 50%, #d4a855 80%, #8b5a2b 100%);
    border-radius: 10px;
}

.quest-scroll-decoration.top {
    top: -8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.quest-scroll-decoration.bottom {
    bottom: -8px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.quest-scroll-text {
    text-align: center;
    color: #3d2914;
}

.quest-scroll-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b5a2b;
    margin-bottom: 12px;
}

.quest-scroll-name {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-emerald);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(45, 106, 79, 0.2);
}

.quest-scroll-age {
    font-size: 20px;
    font-weight: 600;
    color: #8b5a2b;
    margin-bottom: 16px;
}

.quest-scroll-message {
    font-size: 16px;
    line-height: 1.6;
    color: #5c4a32;
    font-style: italic;
}

.quest-final-cta {
    width: 100%;
    max-width: 450px;
}

.quest-final-text {
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.quest-checkout-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 24px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.quest-checkout-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.quest-checkout-btn:hover::before {
    transform: translateX(100%);
}

.quest-checkout-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.7);
}

.quest-checkout-text {
    font-size: 20px;
}

.quest-checkout-price {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.quest-checkout-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* New Step Styles */
.quest-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: -24px;
    margin-bottom: 32px;
    max-width: 450px;
    line-height: 1.5;
}

.quest-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
    font-size: 18px;
}

.quest-age-display {
    margin-top: -16px;
    margin-bottom: 24px;
    padding: 12px 24px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--gold-light);
    font-size: 16px;
}

.quest-age-display strong {
    color: var(--primary-gold);
    font-size: 20px;
}

.quest-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.quest-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: none;
}

.quest-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

/* Contact Form Styles */
.quest-contact-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    scroll-margin-top: 100px;
}

.quest-contact-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.quest-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quest-input-small {
    font-size: 18px;
    padding: 16px 20px;
    text-align: left;
}

.quest-secondary-contact {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Toggle Switch UX */
.quest-toggle-wrapper {
    margin-bottom: 16px;
}

.quest-toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quest-toggle-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.quest-toggle-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quest-toggle-question {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.quest-toggle-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* iOS-style Toggle Switch */
.quest-toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.quest-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.quest-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.quest-toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 2px;
    top: 2px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quest-toggle-input:checked + .quest-toggle-slider {
    background: var(--primary-gold);
}

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

.quest-toggle-input:focus + .quest-toggle-slider {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.quest-secondary-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin-top: 16px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-margin-top: 80px;
    scroll-margin-bottom: 80px;
}

.quest-secondary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.quest-secondary-header::before {
    content: '🛡️';
    font-size: 16px;
}

/* Recap Details */
.quest-scroll-large {
    max-width: 100%;
}

.quest-scroll-large .quest-scroll-content {
    padding: 32px 40px;
}

.quest-recap-details {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #c4a55a;
    text-align: left;
}

.quest-recap-item {
    display: flex;
    padding: 8px 0;
    font-size: 14px;
    color: #5c4a32;
}

.quest-recap-item .recap-label {
    font-weight: 600;
    color: #8b5a2b;
    min-width: 100px;
    flex-shrink: 0;
}

.quest-recap-item .recap-value {
    color: #3d2914;
}

.quest-recap-item.recap-warning {
    background: rgba(230, 57, 70, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 4px -12px;
}

.quest-recap-item.recap-warning .recap-label {
    color: #dc2626;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .title-line-1 {
        font-size: 48px;
    }

    .title-line-2 {
        font-size: 60px;
    }

    .magic-lily-float,
    .magic-firefly-float {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .villain-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .villain-left {
        max-width: 250px;
        margin: 0 auto;
    }

    .villain-title {
        font-size: 36px;
    }

    .villain-text {
        font-size: 18px;
    }

    .villain-text.strong {
        font-size: 24px;
    }

    .villain-cta-text {
        font-size: 16px;
    }

    .btn-villain {
        width: 100%;
        font-size: 18px;
    }

    .hero,
    section {
        overflow-x: hidden;
        width: 100%;
    }

    .section-title {
        font-size: 40px;
    }

    .title-line-1 {
        font-size: 36px;
    }

    .title-line-2 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-transformation {
        flex-direction: column;
    }

    .transform-arrow {
        transform: rotate(90deg);
    }

    .pain-grid,
    .why-grid,
    .info-grid,
    .paths-comparison {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .pain-card,
    .why-card,
    .info-card,
    .path {
        width: 100%;
        max-width: 100%;
    }

    .final-offer {
        padding: 40px 24px;
    }

    .final-price-new {
        font-size: 56px;
    }

    .show-overlay {
        padding: 32px 24px;
    }

    .show-text h3 {
        font-size: 28px;
    }

    .promise-block {
        padding: 40px 20px;
        margin: 0;
        width: 100%;
    }

    .promise-block h3 {
        font-size: 32px;
    }

    .cta-box h2 {
        font-size: 40px;
    }

    .final-offer {
        padding: 40px 20px;
        width: 100%;
    }

    .offer-details {
        gap: 12px;
    }

    .hero-transformation,
    .badge-info,
    .trust-badges {
        width: 100%;
        gap: 12px;
    }

    .magic-lily-float,
    .magic-firefly-float {
        display: none;
    }

    .frog-float {
        width: 120px;
        right: 10px;
    }

    .floating-cta-content {
        padding: 0 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .floating-cta-text {
        text-align: center;
    }

    .floating-cta-btn {
        width: 100%;
        padding: 16px 24px;
    }

    .real-stage-image {
        border-radius: 12px;
    }

    .real-photo-caption {
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .quest-container {
        padding: 70px 20px 30px;
        min-height: 100vh;
    }

    .quest-title {
        font-size: 28px;
    }

    .quest-input {
        font-size: 20px;
        padding: 16px 20px;
    }

    .quest-ages {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 300px;
    }

    .quest-age-btn {
        padding: 12px 6px;
        font-size: 14px;
    }

    .quest-scroll-content {
        padding: 32px 24px;
    }

    .quest-scroll-name {
        font-size: 32px;
    }

    .quest-checkout-btn {
        padding: 20px 24px;
    }

    .quest-checkout-text {
        font-size: 18px;
    }

    .quest-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .quest-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .quest-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .quest-btn-group .quest-btn {
        width: 100%;
    }

    .quest-contact-form {
        gap: 16px;
    }

    .quest-input-small {
        font-size: 16px;
        padding: 14px 16px;
    }

    .quest-toggle-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .quest-toggle-text {
        width: 100%;
    }

    .quest-toggle-question {
        font-size: 15px;
    }

    .quest-toggle-hint {
        font-size: 12px;
    }

    .quest-scroll-large .quest-scroll-content {
        padding: 24px 20px;
    }

    .quest-recap-item {
        flex-direction: column;
        gap: 4px;
    }

    .quest-recap-item .recap-label {
        min-width: auto;
    }
}
