/* ═══════════════════════════════════════════════════════════════
   HYMNE D'AMOUR — Styles
   Thème Romantique : Rose / Crimson / Or
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    /* Palette Romantique */
    --love-rose: #E8477C;
    --love-crimson: #C71F51;
    --love-deep: #8B1A3A;
    --love-blush: #FFB6C1;
    --love-soft: #FFC1CC;
    --love-gold: #D4AF37;
    --love-gold-light: #F0D78C;
    
    /* Background */
    --bg-deep: #1A0A14;
    --bg-mid: #2D1022;
    --bg-card: rgba(232, 71, 124, 0.06);
    
    /* Text */
    --color-white: #F5F0F2;
    --color-cream: #FAF0F3;
    --color-text: #E8D8E0;
    --color-muted: #B89AA8;
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Gold (hérité pour compatibilité) */
    --gold: var(--love-gold);
    --accent: var(--love-rose);
    --color-gold: var(--love-gold);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(199, 31, 81, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 20%, rgba(139, 26, 58, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        var(--bg-deep);
    background-attachment: fixed;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a { color: var(--love-rose); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--love-blush); }

img { max-width: 100%; height: auto; }


/* ─── HEARTS BACKGROUND ─── */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    font-size: 14px;
    opacity: 0;
    animation: float-heart linear infinite;
    pointer-events: none;
}

@keyframes float-heart {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.08;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(45deg) scale(1);
    }
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--love-rose), var(--love-crimson), var(--love-gold));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ─── ANIMATIONS UTILITIES ─── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.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; }


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    padding: 5rem 0 3rem;
    text-align: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(232, 71, 124, 0.08);
    border: 1px solid rgba(232, 71, 124, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.rating-stars {
    color: var(--love-rose);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.rating-text {
    color: var(--color-muted);
    font-size: 0.8rem;
}

.hero-title, h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 .highlight, .hero-title .highlight {
    background: linear-gradient(135deg, var(--love-rose), var(--love-crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-intro {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    color: var(--color-cream);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.hero-benefit {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ─── AUDIO PLAYER (Hero) ─── */
.hero-player-wrapper {
    margin: 1rem auto;
    max-width: 500px;
}

.audio-player-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(145deg, rgba(232, 71, 124, 0.1) 0%, rgba(139, 26, 58, 0.15) 100%);
    border: 1px solid rgba(232, 71, 124, 0.25);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.audio-player-card:hover {
    border-color: rgba(232, 71, 124, 0.4);
    box-shadow: 0 8px 32px rgba(232, 71, 124, 0.15);
}

.audio-player-card.playing {
    border-color: var(--love-rose);
    box-shadow: 0 0 30px rgba(232, 71, 124, 0.2);
}

.play-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--love-rose) 0%, var(--love-crimson) 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 71, 124, 0.4);
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(232, 71, 124, 0.5);
}

.play-btn .pause-icon { display: none; }
.play-btn.is-playing .play-icon { display: none; }
.play-btn.is-playing .pause-icon { display: block; }

.track-info { flex: 1; text-align: left; }

.track-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 2px;
}

.track-subtitle {
    font-size: 0.78rem;
    color: var(--color-muted);
}

/* Soundwave Visualizer */
.soundwave-visualizer {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
}

.wave-bar {
    width: 3px;
    height: 8px;
    background: var(--love-rose);
    border-radius: 2px;
    transition: height 0.15s ease;
}

.soundwave-visualizer.active .wave-bar {
    animation: wave-dance 0.8s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes wave-dance {
    0%, 100% { height: 8px; opacity: 0.5; }
    50% { height: calc(12px + var(--i) * 3px); opacity: 1; }
}

/* Post-Listen Message */
.post-listen-message {
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(232, 71, 124, 0.08);
    border: 1px solid rgba(232, 71, 124, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--color-cream);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.post-listen-message.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Audio Caption */
.audio-caption {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 0.75rem;
    font-style: italic;
}


/* ─── CTA BUTTON ─── */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--love-rose) 0%, var(--love-crimson) 100%);
    color: white;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(199, 31, 81, 0.35);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(199, 31, 81, 0.45);
    color: white;
}

.cta-button .cta-main {
    font-size: 1rem;
    font-weight: 600;
}

.cta-button .cta-badge {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 3px;
}

.cta-button.glow-effect {
    animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { box-shadow: 0 6px 25px rgba(199, 31, 81, 0.35); }
    50% { box-shadow: 0 6px 40px rgba(232, 71, 124, 0.5), 0 0 60px rgba(232, 71, 124, 0.2); }
}

.cta-trigger {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 10px;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════════════════════════════ */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.section-title .highlight,
.section-title .love {
    color: var(--love-rose);
}

.section-title .gold {
    color: var(--love-gold);
}


/* ═══════════════════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════════════════ */
.problem-section {
    padding: 4rem 0;
    position: relative;
}

.problem-content {
    max-width: 650px;
    margin: 0 auto;
}

.problem-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.problem-box {
    background: rgba(232, 71, 124, 0.06);
    border: 1px solid rgba(232, 71, 124, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.problem-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--love-rose);
    margin-bottom: 0.8rem;
}

.problem-box p {
    color: var(--color-text);
    line-height: 1.7;
}

.problem-box .love {
    color: var(--love-rose);
}

.problem-revelation {
    text-align: center;
    margin-top: 2rem;
}

.revelation-text {
    font-size: 1.1rem;
    color: var(--color-cream);
    line-height: 1.8;
}

.revelation-icon {
    font-size: 1.5rem;
    margin-right: 8px;
    vertical-align: middle;
}

.muted { color: var(--color-muted); }
.whisper { color: var(--love-crimson); font-style: italic; }


/* ═══════════════════════════════════════════════════════════════
   SOLUTION SECTION
   ═══════════════════════════════════════════════════════════════ */
.solution-section {
    padding: 4rem 0;
}

.solution-content {
    max-width: 650px;
    margin: 0 auto;
}

.mechanism-box {
    background: linear-gradient(145deg, rgba(232, 71, 124, 0.08) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(232, 71, 124, 0.25);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.mechanism-icon {
    margin-bottom: 1rem;
}

.mechanism-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--love-blush);
    margin-bottom: 1rem;
}

.mechanism-box p {
    color: var(--color-text);
    line-height: 1.7;
}

.solution-explanation {
    margin: 2rem 0;
}

.solution-explanation p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--color-text);
}

.solution-list li:last-child { border-bottom: none; }

.list-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-result {
    margin-top: 2rem;
}

.solution-result p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.tagline {
    text-align: center;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    color: var(--color-cream);
}

.strikethrough { text-decoration: line-through; opacity: 0.6; }
.gold { color: var(--love-gold); }


/* ═══════════════════════════════════════════════════════════════
   SCIENCE BRIDGE SECTION
   ═══════════════════════════════════════════════════════════════ */
.science-bridge {
    padding: 4rem 0;
}

.science-content {
    max-width: 700px;
    margin: 0 auto;
}

.science-narrative {
    margin-top: 2rem;
}

.science-intro {
    font-size: 1.1rem;
    text-align: center;
    color: var(--color-cream);
    margin-bottom: 2.5rem;
}

.science-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.science-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--love-rose);
    opacity: 0.3;
    line-height: 1;
    min-width: 50px;
}

.science-text h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--love-blush);
    margin-bottom: 0.6rem;
}

.science-text p {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.science-footer {
    margin-top: 2rem;
    text-align: center;
}

.science-tagline {
    font-size: 0.95rem;
    color: var(--color-cream);
    padding: 1rem 1.5rem;
    background: rgba(232, 71, 124, 0.06);
    border-radius: var(--radius-md);
    display: inline-block;
}


/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — 3 STEPS
   ═══════════════════════════════════════════════════════════════ */
.how-it-works {
    padding: 4rem 0;
}

.steps-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(232, 71, 124, 0.05);
    border-color: rgba(232, 71, 124, 0.2);
    transform: translateX(5px);
}

.step-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--love-rose) 0%, var(--love-crimson) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.step-connector {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--love-rose), transparent);
    margin-left: 46px;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════
   AVANT/APRES SECTION
   ═══════════════════════════════════════════════════════════════ */
.avant-apres-section {
    padding: 4rem 0;
}

.avant-apres-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto;
}

.avant-box, .apres-box {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.avant-box {
    background: rgba(100, 100, 100, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.apres-box {
    background: rgba(232, 71, 124, 0.08);
    border: 1px solid rgba(232, 71, 124, 0.25);
}

.avant-box .emoji, .apres-box .emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.avant-box h4, .apres-box h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.avant-box h4 { color: var(--color-muted); }
.apres-box h4 { color: var(--love-rose); }

.avant-box ul, .apres-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.avant-box li, .apres-box li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--color-text);
}


/* ═══════════════════════════════════════════════════════════════
   OFFER SECTION (FORM + PRICING)
   ═══════════════════════════════════════════════════════════════ */
.offer-section {
    padding: 4rem 0;
}

.offer-wrapper {
    background: linear-gradient(145deg, rgba(232, 71, 124, 0.06) 0%, rgba(26, 10, 20, 0.6) 100%);
    border: 1px solid rgba(232, 71, 124, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
}

.glass-enhanced {
    position: relative;
}

.glass-enhanced::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--love-rose), transparent);
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-tagline {
    font-size: 0.9rem;
    color: var(--love-rose);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    font-size: 0.95rem;
    color: var(--color-muted);
}

/* Mockup */
.offer-mockup {
    text-align: center;
    margin: 1.5rem 0;
}

.mockup-image {
    max-width: 350px;
    width: 100%;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 20px 40px rgba(232, 71, 124, 0.2));
}

/* Value Stack */
.value-stack {
    margin: 2rem 0;
}

.stack-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.stack-item:hover {
    background: rgba(232, 71, 124, 0.05);
    border-color: rgba(232, 71, 124, 0.2);
}

.stack-item.main {
    background: rgba(232, 71, 124, 0.08);
    border-color: rgba(232, 71, 124, 0.3);
}

.stack-item.bonus {
    border-style: dashed;
    border-color: rgba(212, 175, 55, 0.3);
}

.stack-check {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.stack-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 3px;
}

.stack-content p {
    font-size: 0.85rem;
    color: var(--color-muted);
}


/* ─── TESTIMONIALS ─── */
.testimonial-highlight {
    background: rgba(232, 71, 124, 0.05);
    border-left: 3px solid var(--love-rose);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.testimonial-stars {
    color: var(--love-rose);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--love-crimson);
    border: 2px solid var(--love-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.author-info {}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-cream);
}

.author-badge {
    font-size: 0.75rem;
    color: var(--love-rose);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Carousel */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(232, 71, 124, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: var(--love-rose);
    transform: scale(1.3);
}


/* ─── PRICING BOX ─── */
.pricing-box {
    margin: 2rem 0;
}

.pricing-context {
    border-left: 3px solid var(--love-gold);
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.7;
}

.price-comparison {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-line.original { color: var(--color-muted); }
.price-line.original .price { text-decoration: line-through; }

.price-line.future { color: var(--color-muted); }
.price-line.future .price { text-decoration: line-through; }

.price-line.final {
    border-top: 1px solid rgba(232, 71, 124, 0.3);
    padding-top: 1rem;
    margin-top: 0.5rem;
    color: var(--love-rose);
    font-weight: 600;
}

.price-line.final .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--love-gold);
}

.scarcity-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--love-rose);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}


/* ─── ORDER FORM ─── */
.order-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 71, 124, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--love-rose);
    box-shadow: 0 0 0 3px rgba(232, 71, 124, 0.15);
    background: rgba(232, 71, 124, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted);
    opacity: 0.7;
}

.form-group select option {
    background: var(--bg-deep);
    color: var(--color-text);
}

.input-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--love-rose);
    margin-top: 0.4rem;
    opacity: 0.8;
}

.submit-btn {
    width: 100%;
    font-size: 1.05rem;
    padding: 1rem;
    margin-top: 0.5rem;
}

.form-trust {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 1rem;
}


/* ═══════════════════════════════════════════════════════════════
   GUARANTEE SECTION
   ═══════════════════════════════════════════════════════════════ */
.guarantee-section {
    padding: 3rem 0;
}

.guarantee-card {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, rgba(232, 71, 124, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(232, 71, 124, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
}

.guarantee-badge {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.guarantee-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.guarantee-action {
    font-size: 0.95rem;
    color: var(--color-text);
}

.guarantee-tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-cream);
}


/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
    padding: 4rem 0;
}

.faq-list {
    max-width: 650px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(232, 71, 124, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(232, 71, 124, 0.05);
}

.faq-toggle {
    font-size: 1.3rem;
    color: var(--love-rose);
    transition: transform 0.3s;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.faq-option-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-option-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   URGENCY SECTION
   ═══════════════════════════════════════════════════════════════ */
.urgency-section {
    padding: 3rem 0;
}

.urgency-card {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: rgba(232, 71, 124, 0.06);
    border: 1px solid rgba(232, 71, 124, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
}

.urgency-icon {
    margin-bottom: 1rem;
}

.urgency-card h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.urgency-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
}

.urgency-limit {
    margin: 1.5rem 0;
}

.final-cta {
    margin-top: 2rem;
}

.destiny-text {
    font-size: 1rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.cta-icon {
    margin-right: 8px;
    vertical-align: middle;
}


/* ═══════════════════════════════════════════════════════════════
   EXIT POPUP
   ═══════════════════════════════════════════════════════════════ */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    max-width: 450px;
    width: 100%;
    background: linear-gradient(145deg, #2D1022 0%, #1A0A14 100%);
    border: 1px solid rgba(232, 71, 124, 0.3);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(232, 71, 124, 0.2);
    animation: popup-in 0.4s ease;
}

@keyframes popup-in {
    from { transform: scale(0.8) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.exit-popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exit-popup h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.exit-popup h3 span {
    color: var(--love-rose);
}

.exit-popup p {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.exit-popup-dismiss {
    display: block;
    margin: 1rem auto 0;
    background: none;
    border: none;
    color: var(--color-muted);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}

.exit-popup-dismiss:hover {
    color: var(--color-text);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.logo-icon { color: var(--love-rose); }

.logo-text {
    font-size: 0.9rem;
    color: var(--color-muted);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--love-rose);
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #555;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero { padding: 3rem 0 2rem; }
    
    .offer-wrapper { padding: 2rem 1.25rem; }
    
    .avant-apres-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .science-block {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .science-number {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-connector {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    
    .hero-player-wrapper { margin: 1.5rem auto; }
    
    .audio-player-card { 
        flex-direction: column; 
        text-align: center; 
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .track-info { text-align: center; }
    
    .soundwave-visualizer { justify-content: center; }
    
    .cta-button { 
        width: 100%; 
        padding: 1rem 1.5rem;
    }
    
    .exit-popup { padding: 1.5rem; }
    
    .pricing-context {
        font-size: 0.85rem;
    }
}

/* ─────────────────────────────────────────────────────────────────
   CRO: STICKY CTA BAR (Mobile Only)
   ───────────────────────────────────────────────────────────────── */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(26, 10, 20, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--love-rose);
    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: linear-gradient(135deg, var(--love-rose), var(--love-crimson));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(232, 71, 124, 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-muted);
    white-space: nowrap;
}

.trust-badge svg {
    flex-shrink: 0;
    stroke: var(--love-rose);
    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(--love-rose) !important;
    box-shadow: 0 0 0 3px rgba(232, 71, 124, 0.15), 0 0 15px rgba(232, 71, 124, 0.1) !important;
}

.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); }
}

.form-feedback {
    font-size: 0.8rem;
    color: var(--love-rose);
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s, transform 0.3s;
    margin-top: 4px;
}

.form-feedback.visible {
    opacity: 1;
    transform: translateY(0);
}
