/* ═══════════════════════════════════════════════════════════════
   RÉSONANCE INTÉRIEURE - Styles v2
   Design: Épuré, Mystique mais Moderne / Wellness de Luxe
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   SCROLL PROGRESS BAR
   ───────────────────────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ─────────────────────────────────────────────────────────────────
   EXIT INTENT POPUP
   ───────────────────────────────────────────────────────────────── */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.exit-popup-overlay.visible {
    display: flex;
    opacity: 1;
}

.exit-popup {
    max-width: 480px;
    margin: 1rem;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(26, 16, 51, 0.98), rgba(13, 27, 42, 0.98));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.15);
    text-align: center;
    animation: popup-appear 0.4s ease-out;
}

@keyframes popup-appear {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.exit-popup-close:hover {
    color: var(--color-white);
}

.exit-popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exit-popup h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.exit-popup h3 span {
    color: var(--color-gold);
}

.exit-popup p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.exit-popup .cta-button {
    width: 100%;
    margin-bottom: 1rem;
}

.exit-popup-dismiss {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}

.exit-popup-dismiss:hover {
    color: var(--color-text);
}

/* ─────────────────────────────────────────────────────────────────
   CSS Variables / Design Tokens
   ───────────────────────────────────────────────────────────────── */
:root {
    /* Colors */
    --color-bg-deep: #0D1B2A;
    --color-bg-purple: #1A1033;
    --color-purple-dark: #2D1B69;
    --color-purple: #5C3D8D;
    --color-purple-light: #7B5BA6;
    --color-gold: #D4AF37;
    --color-gold-light: #F0D78C;
    --color-white: #FFFFFF;
    --color-cream: #F5F5F5;
    --color-text: #E8E8F0;
    --color-text-muted: #B8B8D1;
    --color-text-subtle: #8A8AA3;
    
    /* Shorthand Aliases for SVG icons */
    --gold: #D4AF37;
    --accent: #a855f7;
    
    /* Gradients */
    --gradient-cosmic: radial-gradient(ellipse at 50% 0%, #2D1B69 0%, #1A1033 40%, #0D1B2A 100%);
    --gradient-card: linear-gradient(145deg, rgba(92, 61, 141, 0.15) 0%, rgba(13, 27, 42, 0.4) 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F0D78C 50%, #D4AF37 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.4);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
}

/* ─────────────────────────────────────────────────────────────────
   Reset & Base
   ───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--gradient-cosmic);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ─────────────────────────────────────────────────────────────────
   TOAST NOTIFICATIONS
   ───────────────────────────────────────────────────────────────── */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(13, 27, 42, 0.95);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: var(--font-body);
    font-size: 0.95rem;
    z-index: 10000;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
}

.toast-notification.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification.error {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.toast-notification.success {
    border-color: #51cf66;
    color: #51cf66;
}

/* ─────────────────────────────────────────────────────────────────
   Animated Stars Background
   ───────────────────────────────────────────────────────────────── */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1.5px 1.5px at 100px 50px, rgba(255,255,255,1), transparent),
        radial-gradient(1px 1px at 200px 150px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 350px 250px, rgba(212, 175, 55, 1), transparent), /* Gold */
        radial-gradient(1.5px 1.5px at 450px 80px, rgba(255,255,255,1), transparent),
        radial-gradient(1px 1px at 500px 320px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 50px 400px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 280px 450px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 150px 520px, rgba(212, 175, 55, 0.9), transparent), /* Gold */
        /* Extra Density */
        radial-gradient(1px 1px at 400px 100px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 50px 200px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 300px 500px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 520px 40px, rgba(255,255,255,0.8), transparent);
    background-size: 550px 550px;
    animation: twinkle 5s ease-in-out infinite;
}

.stars-2 {
    background-image: 
        radial-gradient(1.5px 1.5px at 30px 60px, rgba(255,255,255,1), transparent),
        radial-gradient(1px 1px at 120px 200px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 220px 80px, rgba(255,255,255,1), transparent),
        radial-gradient(1px 1px at 320px 300px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 80px 420px, rgba(168, 85, 247, 0.9), transparent), /* Purple */
        radial-gradient(1px 1px at 250px 150px, rgba(255,255,255,0.9), transparent),
        /* Extra Density */
        radial-gradient(1px 1px at 10px 350px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 180px 50px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 290px 400px, rgba(255,255,255,0.8), transparent);
    background-size: 350px 350px;
    background-position: 50px 50px;
    animation-delay: -2s;
    opacity: 0.9;
}

.stars-3 {
    background-image: 
        radial-gradient(1px 1px at 10px 10px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 80px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 220px 180px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 60px 250px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 180px 220px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 120px 10px, rgba(255,255,255,0.8), transparent),
        /* Extra Density */
        radial-gradient(1px 1px at 40px 160px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 80px, rgba(255,255,255,0.8), transparent),
        radial-gradient(0.5px 0.5px at 90px 200px, rgba(255,255,255,0.7), transparent);
    background-size: 250px 250px;
    background-position: 100px 25px;
    animation-delay: -3s;
    opacity: 0.7;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ─────────────────────────────────────────────────────────────────
   Container & Layout
   ───────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

section {
    padding: var(--space-lg) 0;
}

/* Reduce spacing between consecutive sections */
section + section {
    padding-top: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────
   Typography
   ───────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--color-cream);
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold {
    color: var(--color-gold);
}

.muted {
    color: var(--color-text-muted);
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

.whisper {
    font-style: italic;
    color: var(--color-purple-light);
}

/* ─────────────────────────────────────────────────────────────────
   Fade-in Animations
   ───────────────────────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ─────────────────────────────────────────────────────────────────
   TYPEWRITER EFFECT
   ───────────────────────────────────────────────────────────────── */
.typewriter-line {
    opacity: 0;
    transform: translateY(10px);
    animation: typewriter-reveal 0.6s ease-out forwards;
}

/* Delays account for parent fade-in (0.8s) */
.fade-in.visible .typewriter-line:nth-child(1) { animation-delay: 0.3s; }
.fade-in.visible .typewriter-line:nth-child(2) { animation-delay: 0.6s; }
.fade-in.visible .typewriter-line:nth-child(3) { animation-delay: 0.9s; }

@keyframes typewriter-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────────────────────────────
   PLAY BUTTON PULSE (before click)
   ───────────────────────────────────────────────────────────────── */
.play-btn:not(.playing) {
    animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ─────────────────────────────────────────────────────────────────
   SOUNDWAVE IDLE ANIMATION
   ───────────────────────────────────────────────────────────────── */
.soundwave-visualizer:not(.playing) .wave-bar {
    animation: wave-idle 1.5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes wave-idle {
    0%, 100% { height: 8px; }
    50% { height: 14px; }
}

/* ─────────────────────────────────────────────────────────────────
   STARDUST ON CTA HOVER
   ───────────────────────────────────────────────────────────────── */
.cta-button {
    position: relative;
    overflow: visible;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 60px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease-out;
    pointer-events: none;
    z-index: -1;
}

.cta-button:hover::before {
    opacity: 1;
    animation: stardust-pulse 1.5s ease-in-out infinite;
}

@keyframes stardust-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ─────────────────────────────────────────────────────────────────
   GLOW PRICE EFFECT
   ───────────────────────────────────────────────────────────────── */
.price-current {
    animation: price-glow 2s ease-in-out infinite;
}

@keyframes price-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

/* ─────────────────────────────────────────────────────────────────
   PARALLAX STARS EFFECT
   ───────────────────────────────────────────────────────────────── */
.stars-container {
    transform: translateZ(0);
    will-change: transform;
}

.stars-container.parallax {
    transition: transform 0.1s ease-out;
}

/* ─────────────────────────────────────────────────────────────────
   GLASSMORPHISM ENHANCED
   ───────────────────────────────────────────────────────────────── */
.glass-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ─────────────────────────────────────────────────────────────────
   POST-LISTEN MESSAGE
   ───────────────────────────────────────────────────────────────── */
.post-listen-message {
    display: none;
    text-align: center;
    padding: var(--space-sm);
    margin-top: var(--space-sm);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: message-appear 0.5s ease-out;
}

.post-listen-message.visible {
    display: block;
}

.post-listen-message p {
    color: var(--color-cream);
    font-size: 1rem;
    margin: 0;
}

.post-listen-message strong {
    color: var(--color-gold);
}

@keyframes message-appear {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────────────────────────────
   STICKY CTA MOBILE
   ───────────────────────────────────────────────────────────────── */
.sticky-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: linear-gradient(to top, rgba(13, 27, 42, 0.98), rgba(13, 27, 42, 0.9));
        backdrop-filter: blur(10px);
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
    }
    
    .sticky-cta-mobile.visible {
        transform: translateY(0);
    }
    
    .sticky-cta-mobile .cta-button {
        width: 100%;
        padding: 1rem;
    }
}

/* ─────────────────────────────────────────────────────────────────
   CTA Button with Glow Effect
   ───────────────────────────────────────────────────────────────── */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-bg-deep);
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.cta-button .cta-icon {
    display: inline;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1.5rem 2.5rem;
}

.glow-effect {
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2),
        0 0 60px rgba(212, 175, 55, 0.1);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.4),
            0 0 40px rgba(212, 175, 55, 0.2),
            0 0 60px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 0.6),
            0 0 60px rgba(212, 175, 55, 0.3),
            0 0 90px rgba(212, 175, 55, 0.15);
    }
}

.cta-icon {
    font-size: 1.2em;
}

.cta-badge {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.cta-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ─────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-lg) 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 900px) {
    .hero .container {
        grid-template-columns: 1.3fr 0.7fr;
    }
}
.hero-rating {
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
    width: fit-content;
    white-space: nowrap;
    
    margin-bottom: 2rem;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    
    /* Security Reset */
    height: auto;
    text-align: left;
}
/* Renamed to avoid conflicts */
.hero-rating .rating-stars {
    display: inline-block !important;
    color: var(--color-gold);
    letter-spacing: 5px !important; /* increased spacing */
    font-size: 1.2em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    line-height: 1;
    margin-right: 15px !important; /* Force margin */
}
.hero-rating .rating-text {
    display: inline-block;
    color: var(--color-cream);
    font-weight: 500;
    font-family: var(--font-body);
    line-height: normal;
}

@media (max-width: 480px) {
    .hero-rating {
        white-space: normal !important;
        flex-wrap: wrap !important;
        justify-content: center;
        text-align: center !important;
        width: 90% !important; /* Prevent edge touching */
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-rating .rating-stars {
        margin-right: 0 !important;
        margin-bottom: 5px;
    }
}
.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hero-subtitle-inline {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    font-family: var(--font-body);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    line-height: 1.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
}

/* ─────────────────────────────────────────────────────────────────
   HERO - DEMO FIRST VARIANT
   ───────────────────────────────────────────────────────────────── */
.hero-demo-first {
    min-height: auto;
    padding: var(--space-xl) 0 var(--space-lg) 0;
    text-align: center;
}

.hero-demo-first .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
}

.hero-demo-first .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

/* Micro-copy: Son prénom. Ses rêves. Sa chanson. */
.hero-intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--color-white);
}

.hero-intro-line {
    color: var(--color-gold);
}

/* Benefit line */
.hero-benefit {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text);
    margin: 0 0 var(--space-sm) 0;
    max-width: 500px;
    line-height: 1.7;
}

.hero-benefit em {
    color: var(--color-cream);
    font-style: italic;
}

/* Player wrapper in hero */
.hero-player-wrapper {
    width: 100%;
    max-width: 500px;
    margin: var(--space-sm) 0;
}

.hero-demo-first .audio-player-card {
    background: rgba(255, 255, 255, 0.06);
}

/* CTA in demo-first hero */
.hero-demo-first .cta-button {
    margin-top: var(--space-sm);
}

/* ─────────────────────────────────────────────────────────────────
   PROBLEM SECTION
   ───────────────────────────────────────────────────────────────── */
.problem-section {
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 105, 0.15) 50%, transparent 100%);
}

.problem-content {
    max-width: 750px;
    margin: 0 auto;
}

.problem-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: var(--space-md);
    line-height: 1.9;
}

.problem-box {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    backdrop-filter: var(--glass-blur);
}

.problem-box h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--color-cream);
}

.problem-box p {
    color: var(--color-text-muted);
}

.problem-revelation {
    text-align: center;
    padding: var(--space-md);
}

.revelation-text {
    font-size: 1.1rem;
}

.revelation-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space-xs);
}

/* ─────────────────────────────────────────────────────────────────
   SOLUTION SECTION
   ───────────────────────────────────────────────────────────────── */
.solution-section {
    padding: var(--space-xl) 0;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
}

.mechanism-box {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, rgba(92, 61, 141, 0.1) 100%);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.mechanism-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.mechanism-box h3 {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.mechanism-box p {
    color: var(--color-text);
    font-size: 1.05rem;
}

.solution-explanation {
    margin-bottom: var(--space-lg);
}

.solution-explanation p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: var(--space-md);
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--color-cream);
    line-height: 1.5;
}

.solution-list li .list-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.solution-result {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: var(--glass-blur);
}

.solution-result p {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: var(--space-md);
}
/* ═══════════════════════════════════════════════════════════════
   SCIENCE BRIDGE SECTION
   ═══════════════════════════════════════════════════════════════ */




.science-narrative {
    max-width: 800px;
    margin: 0 auto;
}

.science-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-muted);
}

.science-intro strong {
    color: var(--color-gold);
    font-weight: 600;
}

.science-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--color-gold);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.science-block:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.science-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.3;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.science-text h3 {
    color: var(--color-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.science-text p {
    line-height: 1.8;
    color: var(--color-text);
    font-size: 1.05rem;
}

.science-text p strong {
    color: var(--color-cream);
}

.science-text p em {
    color: var(--color-text-muted);
    font-style: italic;
}

.science-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(212,175,55,0.1);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.2);
}

.science-tagline {
    font-size: 1.1rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.science-tagline strong {
    color: var(--color-gold);
}

.science-tagline em {
    color: var(--color-text-muted);
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE - SCIENCE SECTION
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .science-bridge {
        padding: 3rem 0;
    }
    
    .science-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .science-block {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .science-number {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .science-text h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .science-text p {
        font-size: 0.95rem;
    }
    
    .science-footer {
        padding: 1.5rem;
    }
    
    .science-tagline {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .science-tagline svg {
        margin: 0 auto 0.5rem;
    }
}

@media (max-width: 480px) {
    .science-block {
        padding: 1rem;
    }
    
    .science-number {
        font-size: 2rem;
    }
    
    .science-text h3 {
        font-size: 1.1rem;
    }
    
    .science-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
/* ─────────────────────────────────────────────────────────────────
   HOW IT WORKS SECTION
   ───────────────────────────────────────────────────────────────── */
.how-it-works {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.5) 50%, transparent 100%);
}

.steps-container {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body); /* Using Inter for symmetric numerals */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bg-deep);
    background: var(--gradient-gold);
    border-radius: 50%;
    line-height: 1;
    text-align: center;
}

.step-content h3 {
    font-size: 1.15rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.step-visual {
    text-align: center;
}

.step-emoji {
    font-size: 2rem;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION
   ───────────────────────────────────────────────────────────────── */
.testimonials-section {
    padding: var(--space-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: var(--glass-blur);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    border: none;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: var(--space-sm);
}

.author-name {
    font-weight: 600;
    color: var(--color-cream);
}

.author-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   OFFER SECTION
   ───────────────────────────────────────────────────────────────── */
.offer-section {
    padding: var(--space-xl) 0;
}

.offer-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gradient-card);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
}

.offer-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.offer-tagline {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.offer-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.offer-subtitle {
    color: var(--color-text-muted);
}

/* Offer Mockup */
.offer-mockup {
    text-align: center;
    margin: var(--space-md) 0 var(--space-lg) 0;
}

.mockup-image {
    max-width: 100%;
    width: 500px;
    height: auto;
    /* No border-radius or box-shadow for transparent PNG */
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.15)); /* Lueur dorée très subtile */
    transition: transform 0.3s ease;
}

.mockup-image:hover {
    transform: scale(1.02); /* Petit effet de zoom au survol pour rendre le produit "vivant" */
}

/* Value Stack */
.value-stack {
    margin-bottom: var(--space-lg);
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.stack-item.main {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 0.5rem;
}

.stack-item.bonus {
    opacity: 0.9;
}

.stack-check {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stack-content {
    flex: 1;
}

.stack-content h4 {
    font-size: 0.95rem;
    color: var(--color-cream);
    margin-bottom: 0.15rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
}

.stack-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.stack-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 107, 107, 0.8); /* Red-ish to emphasize "original price" */
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 107, 107, 0.6);
    white-space: nowrap;
}

/* Order Recap Box */
.order-recap {
    display: none;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(92, 61, 141, 0.15));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    animation: recap-appear 0.4s ease-out;
}

.order-recap.visible {
    display: block;
}

@keyframes recap-appear {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recap-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.recap-icon {
    font-size: 1.2rem;
}

.recap-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
}

.recap-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recap-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.recap-label {
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.recap-value {
    color: var(--color-text);
    font-weight: 500;
}

.recap-affirmations {
    font-style: italic;
    color: var(--color-text-muted);
}


/* Testimonial Highlight (Near Pricing) */
.testimonial-highlight {
    position: relative;
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-gold); /* Gold accent */
    border-radius: var(--radius-md);
    padding: 2rem 2rem 1.5rem 2.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Decorative quote mark */
.testimonial-highlight::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

.testimonial-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212, 175, 55, 0.08);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.testimonial-text strong {
    color: var(--color-white);
    background: linear-gradient(120deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-purple-dark);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.95rem;
}

.author-badge {
    font-size: 0.8rem;
    color: #4cd964; /* Success green */
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Pricing Box */
.pricing-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.price-comparison {
    margin-bottom: var(--space-sm);
}

.pricing-context {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    color: var(--color-text-muted);
}

.price-line .price {
    font-weight: 600;
}

.price-line.final {
    border-top: 2px solid var(--color-gold);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    font-size: 1.2rem;
    color: var(--color-cream);
}

.price-line.final .price {
    font-size: 2rem;
    font-family: var(--font-heading);
}

.scarcity-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--color-gold);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Order Form */
.order-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--color-cream);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-subtle);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-bg-deep);
    color: var(--color-text);
}

.input-hint {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
}

.form-trust {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   GUARANTEE SECTION
   ───────────────────────────────────────────────────────────────── */
.guarantee-section {
    padding: var(--space-lg) 0;
}

.guarantee-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(17, 153, 142, 0.1) 0%, rgba(56, 239, 125, 0.05) 100%);
    border: 1px solid rgba(56, 239, 125, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.guarantee-badge {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.guarantee-card h2 {
    font-size: 1.6rem;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.guarantee-card p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.guarantee-action {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    margin: var(--space-md) 0;
}

.guarantee-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-cream);
}

/* ─────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────── */
.faq-section {
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 2;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(30, 20, 50, 0.4); /* Slightly lighter for better visibility */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(30, 20, 50, 0.6);
    border-color: rgba(212, 175, 55, 0.3); /* Subtle gold hint on hover */
}

.faq-item.active {
    background: rgba(20, 10, 35, 0.8);
    border-color: rgba(212, 175, 55, 0.5); /* Soft gold border, not aggressive */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-toggle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s;
    margin-left: 1rem;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item:hover .faq-toggle {
    color: var(--color-gold);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--color-gold); /* Keep gold, no red */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    opacity: 1;
}

/* Common text styles */
.faq-answer p {
    margin: 0 0 1rem 0;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 1.5rem; /* Horizontal padding only */
    border: none; /* Reset border by default */
}

/* Separator and top padding only on the FIRST paragraph */
.faq-answer p:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 0;
}

/* Bottom padding on the LAST paragraph */
.faq-answer p:last-child {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

/* Specific styling for FAQ option lists */
.faq-option-list {
    list-style: none;
    padding: 0 1.5rem 0 3.5rem; /* Increased left padding for indentation */
    margin: 1rem 0;
}

.faq-option-list li {
    position: relative;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    text-indent: -1.8rem; /* Hanging indent for the emoji */
}

.faq-option-list li strong {
    color: var(--color-cream);
}



/* ─────────────────────────────────────────────────────────────────
   URGENCY SECTION
   ───────────────────────────────────────────────────────────────── */
.urgency-section {
    padding: var(--space-lg) 0;
}

.urgency-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, rgba(92, 61, 141, 0.1) 100%);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.urgency-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.urgency-card h2 {
    font-size: 1.8rem;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.urgency-card > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.urgency-limit {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: var(--space-lg);
}

.final-cta {
    margin-top: var(--space-lg);
}

.destiny-text {
    font-size: 1.1rem;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-cream);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-transparency {
    font-size: 0.85rem;
    color: var(--color-text-subtle);
    margin-bottom: var(--space-sm);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE - TABLET (768px)
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Global Section Spacing */
    section {
        padding: var(--space-lg) 0;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    /* Typography - Centered Headlines */
    .section-title {
        text-align: center;
        font-size: 1.75rem;
    }
    
    .section-subtitle,
    .offer-tagline,
    .offer-subtitle {
        text-align: center;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: var(--space-lg) 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image {
        max-width: 280px;
    }
    
    /* Steps */
    .step {
        grid-template-columns: 50px 1fr;
        gap: var(--space-sm);
    }
    
    .step-visual {
        display: none;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    /* Offer Section */
    .offer-wrapper {
        padding: var(--space-md);
    }
    
    .offer-header {
        text-align: center;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .stack-item {
        flex-wrap: wrap;
    }
    
    .stack-value {
        width: 100%;
        text-align: right;
        margin-top: 0.25rem;
    }
    
    .price-line {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE - MOBILE (480px)
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    /* Global */
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: var(--space-md) 0;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: var(--space-md) 0 var(--space-lg) 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
    }
    
    .hero-image {
        max-width: 220px;
    }
    
    /* CTA Button */
    .cta-button {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.25rem;
    }
    
    .cta-button .cta-icon {
        display: none;
    }
    
    .cta-main {
        display: block;
        text-align: center;
    }
    
    .cta-badge {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
    
    /* Problem Section */
    .problem-list li {
        font-size: 0.95rem;
        padding-left: 2rem;
    }
    
    /* Solution / Mechanism */
    .mechanism-box {
        padding: 1.25rem;
    }
    
    .mechanism-box h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .solution-list li {
        font-size: 0.95rem;
    }
    
    .solution-result {
        text-align: center;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    /* Steps - Complete Mobile Overhaul */
    .steps-container {
        gap: 2rem;
    }
    
    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
        margin: 0 auto;
        position: relative;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .step-connector {
        display: none;
    }
    
    /* Offer */
    .offer-wrapper {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .offer-title {
        font-size: 1.25rem;
    }
    
    .stack-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .stack-item h4 {
        font-size: 0.95rem;
    }
    
    .stack-item p {
        font-size: 0.8rem;
    }
    
    .stack-value {
        font-size: 0.85rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .pricing-context {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* Form */
    .order-form {
        padding: 1.25rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.9rem 1rem;
    }
    
    /* Guarantee & Urgency */
    .guarantee-card,
    .urgency-card {
        padding: 1.25rem;
        text-align: center;
    }
    
    .guarantee-title,
    .urgency-title {
        font-size: 1.1rem;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        /* Keep max-height: 0 from base styles, only adjust active state */
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    /* Footer */
    .footer {
        padding: var(--space-md) 0;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-disclaimer {
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM AUDIO PLAYER COMPONENT
   ═══════════════════════════════════════════════════════════════ */

.audio-demo-section {
    padding: var(--space-lg) 0;
    background: transparent;
}

.audio-player-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ─── Glass Card ─── */
.audio-player-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-player-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.15);
}

/* ─── Play/Pause Button ─── */
.play-btn {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 50%, var(--color-gold) 100%);
    background-size: 200% 200%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background-position 0.5s ease;
    box-shadow: 
        0 4px 20px rgba(142, 45, 226, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.1);
    position: relative;
}

.play-btn:hover {
    transform: scale(1.08);
    background-position: 100% 100%;
    box-shadow: 
        0 6px 30px rgba(142, 45, 226, 0.6),
        0 0 0 3px rgba(212, 175, 55, 0.3);
}

.play-btn:active {
    transform: scale(0.95);
}

/* Loading State - Spinner */
.play-btn.is-loading::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-gold);
    border-right-color: rgba(255, 255, 255, 0.5);
    animation: spinner-rotate 1s linear infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes spinner-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide icons while loading */
.play-btn.is-loading .play-icon,
.play-btn.is-loading .pause-icon {
    opacity: 0 !important;
}

.play-btn svg {
    width: 24px;
    height: 24px;
    color: white;
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.play-btn .play-icon {
    opacity: 1;
    transform: translateX(2px); /* Optical centering for play triangle */
}

.play-btn .pause-icon {
    opacity: 0;
    transform: scale(0.8);
}

/* Playing State - Icon Toggle */
.audio-player-card.is-playing .play-btn .play-icon {
    opacity: 0;
    transform: scale(0.8);
}

.audio-player-card.is-playing .play-btn .pause-icon {
    opacity: 1;
    transform: scale(1);
}

/* ─── Track Info ─── */
.track-info {
    flex: 1;
    text-align: left;
    min-width: 0; /* Prevent overflow */
    overflow: hidden; /* Clip scrolling text */
}

.track-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Animated message transition */
.track-title.message-animated {
    animation: message-fade 0.5s ease-out;
}

@keyframes message-fade {
    0% { opacity: 0.5; transform: translateY(-5px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Stardust dissolve effect for message exit */
.track-title.message-exit {
    animation: message-dissolve 0.6s ease-out forwards;
}

@keyframes message-dissolve {
    0% { opacity: 1; filter: blur(0); }
    50% { opacity: 0.5; filter: blur(1px); }
    100% { opacity: 0; filter: blur(3px); transform: scale(0.95); }
}

/* Stardust particles */
.stardust-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #D4AF37, transparent);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: stardust-fly 0.8s ease-out forwards;
}

@keyframes stardust-fly {
    0% { 
        opacity: 1; 
        transform: translate(0, 0) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* Scrolling message for long text (marquee effect - single pass) */
.track-title.message-scroll {
    display: inline-block;
    animation: message-scroll 4s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes message-scroll {
    0%, 10% { transform: translateX(0); }
    90%, 100% { transform: translateX(-45%); }
}

/* CTA message at the end */
.track-title.message-cta {
    color: var(--color-gold);
    animation: message-cta-pulse 1.5s ease-in-out infinite;
}

@keyframes message-cta-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.track-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─── Soundwave Visualizer ─── */
.soundwave-visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    flex-shrink: 0;
}

.wave-bar {
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--color-gold) 0%, #8E2DE2 100%);
    transition: height 0.1s ease;
}

/* Default state: flat/small bars */
.wave-bar {
    animation: none;
}

/* Playing state: animated bars with staggered delays */
.audio-player-card.is-playing .wave-bar {
    animation: soundwave 0.8s ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * 0.1s);
}

/* Staggered heights for organic look */
.audio-player-card.is-playing .wave-bar:nth-child(1) { animation-duration: 0.7s; }
.audio-player-card.is-playing .wave-bar:nth-child(2) { animation-duration: 0.9s; }
.audio-player-card.is-playing .wave-bar:nth-child(3) { animation-duration: 0.6s; }
.audio-player-card.is-playing .wave-bar:nth-child(4) { animation-duration: 1s; }
.audio-player-card.is-playing .wave-bar:nth-child(5) { animation-duration: 0.75s; }
.audio-player-card.is-playing .wave-bar:nth-child(6) { animation-duration: 0.85s; }
.audio-player-card.is-playing .wave-bar:nth-child(7) { animation-duration: 0.65s; }

@keyframes soundwave {
    0% {
        height: 8px;
        opacity: 0.6;
    }
    100% {
        height: 32px;
        opacity: 1;
    }
}

/* ─── Bass-Reactive Glow Effect ─── */
.audio-player-card {
    --bass-intensity: 0;
    transition: box-shadow 0.1s ease-out;
}

.audio-player-card.is-playing.bass-glow {
    box-shadow: 
        0 0 30px rgba(212, 175, 55, calc(0.05 + var(--bass-intensity) * 0.9)),
        0 0 60px rgba(142, 45, 226, calc(var(--bass-intensity) * 0.7)),
        0 0 100px rgba(212, 175, 55, calc(var(--bass-intensity) * 0.5)),
        0 0 150px rgba(212, 175, 55, calc(var(--bass-intensity) * 0.3)),
        inset 0 0 40px rgba(212, 175, 55, calc(var(--bass-intensity) * 0.2));
}

/* Flash effect on strong kicks */
.audio-player-card.bass-flash {
    animation: bass-flash 0.15s ease-out;
}

@keyframes bass-flash {
    0% {
        box-shadow: 
            0 0 50px rgba(255, 255, 255, 0.9),
            0 0 100px rgba(212, 175, 55, 0.8),
            0 0 150px rgba(255, 255, 255, 0.5);
        filter: brightness(1.3);
    }
    100% {
        filter: brightness(1);
    }
}

/* Glow on wave bars when bass hits */
.audio-player-card.is-playing.bass-glow .wave-bar {
    box-shadow: 0 0 calc(5px + var(--bass-intensity) * 10px) rgba(212, 175, 55, calc(0.5 + var(--bass-intensity) * 0.5));
}

/* ─── Cosmic Particles Effect ─── */
.cosmic-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    animation: cosmic-particle-rise 2s ease-out forwards, cosmic-shimmer 0.3s ease-in-out infinite;
}

/* Color variations */
.cosmic-particle.gold {
    background: radial-gradient(circle, #F0D78C 0%, #D4AF37 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 1), 0 0 30px rgba(212, 175, 55, 0.7), 0 0 45px rgba(212, 175, 55, 0.4);
}

.cosmic-particle.purple {
    background: radial-gradient(circle, #B088F9 0%, #8E2DE2 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(142, 45, 226, 1), 0 0 30px rgba(142, 45, 226, 0.7), 0 0 45px rgba(142, 45, 226, 0.4);
}

.cosmic-particle.pink {
    background: radial-gradient(circle, #FFB8D0 0%, #FF6B9D 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 107, 157, 1), 0 0 30px rgba(255, 107, 157, 0.7), 0 0 45px rgba(255, 107, 157, 0.4);
}

.cosmic-particle.blue {
    background: radial-gradient(circle, #88D3FF 0%, #4FC3F7 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(79, 195, 247, 1), 0 0 30px rgba(79, 195, 247, 0.7), 0 0 45px rgba(79, 195, 247, 0.4);
}


/* Size variations */
.cosmic-particle.small {
    width: 4px;
    height: 4px;
}

.cosmic-particle.large {
    width: 10px;
    height: 10px;
}

@keyframes cosmic-particle-rise {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.2);
    }
}

@keyframes cosmic-shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.4);
    }
}

/* ─── Energy Wave Rings ─── */
.energy-wave-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 0;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: energy-wave-expand 1.5s ease-out forwards;
    pointer-events: none;
}

@keyframes energy-wave-expand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
        border-width: 3px;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
        border-width: 1px;
    }
}

/* Position the audio player card for proper stacking */
.audio-player-card {
    position: relative;
    overflow: visible;
}

/* ─── Caption ─── */
.audio-caption {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--color-text-muted);
    text-align: center;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .audio-demo-section {
        padding: var(--space-md) 0;
    }
    
    .audio-player-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Force visibility on mobile (in case fade-in doesn't trigger) */
    .audio-player-wrapper.fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .audio-player-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }
    
    .play-btn {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }
    
    .play-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .track-info {
        text-align: center;
        order: 1;
    }
    
    .soundwave-visualizer {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .track-title {
        font-size: 0.9rem;
        white-space: normal; /* Allow wrap on mobile */
        line-height: 1.4;
    }
    
    /* Disable scroll animation on mobile - text wraps instead */
    .track-title.message-scroll {
        animation: none;
        display: block;
    }
    
    .track-subtitle {
        font-size: 0.75rem;
        white-space: normal;
    }
    
    .audio-caption {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   AUDIO PLAYER - NIGHT MODE / SHAMANIC TECH VARIANT
   ═══════════════════════════════════════════════════════════════ */

.audio-demo-night {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 11, 46, 0.3) 50%, transparent 100%);
}

.audio-player-night {
    background: rgba(26, 11, 46, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 240, 255, 0.1),
        0 0 0 1px rgba(112, 0, 255, 0.1) inset;
}

.audio-player-night:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 240, 255, 0.2),
        0 0 60px rgba(112, 0, 255, 0.15);
}

/* Night Mode Play Button */
.play-btn-night {
    background: linear-gradient(135deg, #7000FF 0%, #00F0FF 100%);
    box-shadow: 
        0 4px 20px rgba(0, 240, 255, 0.4),
        0 0 0 3px rgba(112, 0, 255, 0.2);
}

.play-btn-night:hover {
    box-shadow: 
        0 6px 30px rgba(0, 240, 255, 0.6),
        0 0 0 3px rgba(0, 240, 255, 0.3),
        0 0 40px rgba(112, 0, 255, 0.4);
}

/* Neon Soundwave */
.soundwave-neon .wave-bar {
    background: linear-gradient(180deg, #00F0FF 0%, #7000FF 100%);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

/* Neon animation - more energetic */
.audio-player-night.is-playing .wave-bar {
    animation: soundwave-neon 0.5s ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * 0.08s);
}

.audio-player-night.is-playing .wave-bar:nth-child(1) { animation-duration: 0.45s; }
.audio-player-night.is-playing .wave-bar:nth-child(2) { animation-duration: 0.55s; }
.audio-player-night.is-playing .wave-bar:nth-child(3) { animation-duration: 0.4s; }
.audio-player-night.is-playing .wave-bar:nth-child(4) { animation-duration: 0.6s; }
.audio-player-night.is-playing .wave-bar:nth-child(5) { animation-duration: 0.5s; }
.audio-player-night.is-playing .wave-bar:nth-child(6) { animation-duration: 0.55s; }
.audio-player-night.is-playing .wave-bar:nth-child(7) { animation-duration: 0.42s; }

@keyframes soundwave-neon {
    0% {
        height: 6px;
        opacity: 0.5;
        box-shadow: 0 0 4px rgba(0, 240, 255, 0.3);
    }
    100% {
        height: 36px;
        opacity: 1;
        box-shadow: 0 0 12px rgba(0, 240, 255, 0.8), 0 0 20px rgba(112, 0, 255, 0.4);
    }
}

/* ─────────────────────────────────────────────────────────────────
   CRO: STICKY CTA BAR (Mobile Only)
   ───────────────────────────────────────────────────────────────── */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-gold);
    padding: 10px 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 12px 20px;
    background: var(--gradient-gold);
    color: var(--color-bg-deep);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.sticky-cta-price {
    font-weight: 800;
    font-size: 1.1rem;
}

.sticky-cta-price:empty {
    display: none;
}

body.sticky-active {
    padding-bottom: 70px;
}

/* ─────────────────────────────────────────────────────────────────
   CRO: TRUST BADGES
   ───────────────────────────────────────────────────────────────── */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.trust-badge svg {
    flex-shrink: 0;
    stroke: var(--color-gold);
    opacity: 0.8;
}

/* ─────────────────────────────────────────────────────────────────
   CRO: FORM MICRO-INTERACTIONS
   ───────────────────────────────────────────────────────────────── */
.form-group {
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15), 0 0 15px rgba(212, 175, 55, 0.1) !important;
}

/* Validated field indicator */
.form-group.validated::after {
    content: "✓";
    position: absolute;
    top: 38px;
    right: 12px;
    color: #4cd964;
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    animation: check-pop 0.3s ease-out forwards;
}

@keyframes check-pop {
    0% { opacity: 0; transform: scale(0); }
    70% { transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* Feedback message under textarea */
.form-feedback {
    font-size: 0.8rem;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s, transform 0.3s;
    margin-top: 4px;
}

.form-feedback.visible {
    opacity: 1;
    transform: translateY(0);
}
