/* Quiz Landing Page - Design Ultra Moderne & Haute Conversion */

:root {
    /* Palette de couleurs sophistiquée */
    --primary-rose: #FF6B9D;
    --primary-rose-light: #FF8FB1;
    --primary-rose-dark: #E55A8A;
    --secondary-mint: #A8E6CF;
    --secondary-mint-light: #C8F4E0;
    --secondary-mint-dark: #7FCDB8;
    --accent-lavender: #E6E6FA;
    --accent-lavender-light: #F0F0FF;
    --accent-lavender-dark: #D4D4F7;
    --accent-gold: #FFD700;
    --accent-gold-light: #FFE55C;
    --accent-gold-dark: #E6C200;
    
    /* Couleurs neutres élégantes */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #343A40;
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --text-muted: #ADB5BD;
    
    /* Couleurs fonctionnelles */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #17A2B8;
    
    /* Typographie moderne */
    --font-primary: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Tailles de police */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Espacements */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Rayons modernes */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Ombres sophistiquées */
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-3xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    
    /* Transitions fluides */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===== HEADER ===== */
.header {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

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

.logo-img {
    height: 80px;
    width: auto;
    filter: brightness(1);
    transition: var(--transition-fast);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* ===== BOUTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    font-family: inherit;
    min-height: 44px;
    touch-action: manipulation;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-normal);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-rose-dark), var(--primary-rose));
}

.cta-button i {
    font-size: var(--text-sm);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) 0 var(--space-24) 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-primary);
    max-width: 900px;
    padding: 0 var(--space-6);
    z-index: 1;
    position: relative;
    margin-top: 0.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-sm);
    margin-top: 1rem;
}

.hero-badge i {
    color: var(--accent-gold-dark);
}

.hero-title {
    font-family: var(--font-accent);
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-8);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-10);
    color: var(--text-primary);
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.offer-highlight {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1em;
    position: relative;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

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

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary-rose);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: var(--space-1);
}

.hero-cta {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-8);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: var(--space-8);
}

.hero-guarantee {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.hero-guarantee i {
    color: var(--success);
}

/* ===== SECTIONS GÉNÉRALES ===== */
section {
    padding: var(--space-32) 0;
}

.section-title {
    font-family: var(--font-accent);
    font-size: var(--text-5xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-16);
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* ===== SECTIONS AVEC ARRIÈRE-PLAN ===== */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    overflow: hidden;
    animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

.section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) saturate(1.1) contrast(1.05);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    position: relative;
    background: linear-gradient(to bottom, #fff6e9 0%, #fef2e6 50%, #fde2c2 100%);
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                      radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    opacity: 0.3;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(253, 226, 194, 0.4), 0 6px 20px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform: translateY(0);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-rose), var(--secondary-mint));
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(253, 226, 194, 0.6), 0 12px 30px rgba(0, 0, 0, 0.12), 0 6px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-rose);
    background: rgba(255, 255, 255, 0.98);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-rose));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-md);
}

.benefit-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.benefit-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.benefit-card p {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: var(--text-base);
    line-height: 1.6;
}

/* ===== QUIZ PREVIEW SECTION ===== */
.quiz-preview-section {
    position: relative;
    background: transparent;
}

.quiz-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    min-height: 400px;
}

.quiz-preview-text {
    position: relative;
    padding: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.quiz-preview-text h2 {
    font-family: var(--font-accent);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.quiz-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.quiz-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.quiz-features i {
    color: var(--success);
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.preview-cta {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-8);
    box-shadow: var(--shadow-lg);
}

/* ===== QUIZ MOCKUP ===== */
.quiz-mockup {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 15px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 400px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.mockup-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.mobile-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.mobile-progress-fill {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-rose), var(--primary-rose-light));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.mobile-step-indicator {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    min-width: 30px;
    text-align: center;
}

/* ===== LIVE QUIZ STYLES ===== */
.live-quiz-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 15px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    height: 350px;
    display: flex;
    flex-direction: column;
}

.live-quiz-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.live-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.live-progress-fill {
    width: 33%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-rose), var(--primary-rose-light));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.live-step-indicator {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    min-width: 30px;
    text-align: center;
}

.live-quiz-content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.live-question-container {
    text-align: center;
}

.live-question-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.live-options-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.live-option-item {
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    touch-action: manipulation;
}

.live-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.live-option-item:hover .live-option-content {
    border-color: var(--primary-rose-light);
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15), rgba(152, 251, 152, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.2), 0 4px 12px rgba(152, 251, 152, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-option-item:hover .live-option-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 0.6s ease-out;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.live-option-item.selected .live-option-content {
    border-color: var(--primary-rose);
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-rose));
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.live-option-text {
    font-weight: 500;
    text-align: left;
    flex: 1;
}

.live-option-check {
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 0.5rem;
}

.live-option-item.selected .live-option-check {
    opacity: 1;
}

.live-option-check i {
    color: var(--white);
    font-size: 1rem;
}

.live-question-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.live-btn-secondary {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.live-btn-secondary:hover {
    background: var(--medium-gray);
    color: var(--text-primary);
}

/* ===== VIDEO CONTAINER STYLES ===== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    height: 100%;
    border-radius: 0;
    overflow: visible;
    background: none;
    backdrop-filter: none;
    border: none;
    display: flex;
    align-items: center;
}

.video-container video {
    display: block;
    width: 100%;
    height:350px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    transition: transform 0.3s ease;
    background: transparent;
}

/* Effet hover supprimé - vidéo statique */

/* Pseudo-élément supprimé */

/* Responsive video et quiz */
@media (max-width: 768px) {
    .quiz-preview-text {
        padding: var(--space-3);
    }
    
    .video-container:hover video {
        transform: none;
    }
    
    .live-quiz-container {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .quiz-preview-text {
        padding: var(--space-2);
    }
}

.mockup-content {
    padding: var(--space-6);
}

/* ===== ROUTINE PAGE STYLES ===== */
.routine-results-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--space-20) 0;
}

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

.routine-title {
    font-family: var(--font-accent);
    font-size: var(--text-6xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: var(--text-primary);
    line-height: 1.2;
}

.routine-highlight {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.routine-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

/* Video Section */
.routine-video-section {
    padding: var(--space-20) 0;
    background: linear-gradient(to bottom, #fff6e9 0%, #fef2e6 50%, #fde2c2 100%);
}

.video-presentation {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.routine-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-description {
    padding: var(--space-6);
}

.video-description h3 {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.video-description p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Products Section */
.routine-products-section {
    padding: var(--space-20) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--space-6);
    text-align: center;
}

.product-info h4 {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.product-info p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-4);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-light));
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-top: auto;
    align-self: center;
}

.product-detailed-description {
    background: transparent;
    border: none;
    padding: var(--space-2) 0;
    margin: var(--space-2) 0;
    border-radius: 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Purchase Section */
.purchase-section {
    margin-top: var(--space-16);
}

.purchase-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.purchase-card h3 {
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.purchase-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.purchase-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.original-price {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discounted-price {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary-rose);
}

.savings {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-light));
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.purchase-button {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-light));
    color: var(--white);
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: 0 10px 30px rgba(var(--primary-rose-rgb), 0.3);
    margin-bottom: var(--space-4);
}

.purchase-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(var(--primary-rose-rgb), 0.4);
}

.guarantee {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .routine-title {
        font-size: var(--text-4xl);
    }
    
    .video-presentation {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .routine-video {
        height: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .purchase-card {
        padding: var(--space-8);
        margin: 0 var(--space-4);
    }
    
    .purchase-price {
        flex-direction: column;
        gap: var(--space-2);
    }
}

.mockup-question h4 {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    font-weight: 500;
}

.mockup-question p {
    font-size: var(--text-lg);
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.mockup-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mockup-option {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: var(--transition-fast);
    cursor: pointer;
}

.mockup-option.active {
    border-color: var(--primary-rose);
    background: var(--primary-rose-light);
    color: var(--white);
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
    position: relative;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    overflow-x: auto;
    padding: var(--space-4) 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    transform: translateY(0);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
    font-size: var(--text-4xl);
    color: var(--primary-rose);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-rose);
    background: rgba(255, 255, 255, 0.98);
}

.testimonial-stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    justify-content: center;
}

.testimonial-stars i {
    color: var(--accent-gold);
    font-size: var(--text-sm);
}

.testimonial-card p {
    font-size: var(--text-lg);
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--space-4);
    line-height: 1.6;
    padding-left: var(--space-4);
}

.testimonial-author {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    text-align: right;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(135deg, var(--text-primary), var(--dark-gray));
    color: var(--white);
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.final-cta-content h2 {
    font-family: var(--font-accent);
    font-size: var(--text-4xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--white);
}

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

.final-cta {
    font-size: var(--text-xl);
    padding: var(--space-5) var(--space-10);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.final-guarantee {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.final-guarantee i {
    color: var(--success);
}

/* ===== QUIZ MODAL ===== */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-4);
    backdrop-filter: blur(8px);
}

.quiz-modal.active {
    display: flex;
}

.quiz-modal-content {
    background: var(--white);
    border-radius: var(--radius-3xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-3xl);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--light-gray);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.quiz-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--light-gray);
    background: var(--off-white);
}

.quiz-modal-header h2 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
}

.close-quiz {
    background: none;
    border: none;
    font-size: var(--text-xl);
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-quiz:hover {
    color: var(--text-primary);
    background: var(--light-gray);
}

.quiz-progress {
    padding: var(--space-6);
    border-bottom: 1px solid var(--light-gray);
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-rose), var(--primary-rose-dark));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
    width: 20%;
}

.progress-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.quiz-container {
    padding: var(--space-6);
}

/* ===== STYLES QUIZ INTERACTIF ===== */
.question-container {
    text-align: center;
}

.question-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-item {
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    touch-action: manipulation;
}

.option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-xl);
    background: var(--white);
    transition: all 0.3s ease;
}

.option-item:hover .option-content {
    border-color: var(--primary-rose-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.option-item.selected .option-content {
    border-color: var(--primary-rose);
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-rose));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.option-text {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.option-check {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-item.selected .option-check {
    opacity: 1;
}

.option-check i {
    color: var(--white);
    font-size: 1.2rem;
}

.question-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    background: var(--medium-gray);
    color: var(--text-primary);
}

.routine-container {
    text-align: center;
}

.routine-header {
    margin-bottom: 2rem;
}

.routine-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.routine-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.routine-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form {
    text-align: left;
    margin-top: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary-rose);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-preview {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    margin: 2rem 0;
    border: 1px solid var(--light-gray);
}

.form-preview h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-preview ul {
    list-style: none;
    padding: 0;
}

.form-preview li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-preview i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.form-guarantee {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .header-container {
        padding: 0 var(--space-4);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
        line-height: 1.2;
        margin-bottom: var(--space-6);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        line-height: 1.5;
        margin-bottom: var(--space-8);
    }
    
    .section-title {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-12);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
        margin-bottom: var(--space-8);
    }
    
    .stat-number {
        font-size: var(--text-2xl);
    }
    
    .stat-label {
        font-size: var(--text-xs);
    }
    
    .quiz-preview-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .quiz-preview-text h2 {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-4);
    }
    
    .quiz-features li {
        font-size: var(--text-base);
        padding: var(--space-2) 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .benefit-card {
        padding: var(--space-6);
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-4);
    }
    
    .benefit-icon i {
        font-size: var(--text-xl);
    }
    
    .benefit-card h3 {
        font-size: var(--text-lg);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-4);
        overflow-x: auto;
        padding: var(--space-3) 0;
    }
    
    .testimonial-card {
        padding: var(--space-4);
        min-width: 250px;
    }
    
    .quiz-modal-content {
        margin: var(--space-4);
        max-height: 95vh;
    }
    
    .quiz-modal-header h2 {
        font-size: var(--text-lg);
        line-height: 1.3;
    }
    
    .question-title {
        font-size: var(--text-xl);
        margin-bottom: var(--space-6);
    }
    
    .option-content {
        padding: var(--space-4);
    }
    
    .option-text {
        font-size: var(--text-sm);
    }
    
    .question-actions {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .btn-primary, .btn-secondary {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
    
    section {
        padding: var(--space-12) 0;
    }
    
    .hero-section {
        padding: var(--space-20) 0 var(--space-12) 0;
        min-height: 90vh;
    }
    
    .hero-badge {
        margin-top: 2rem;
        margin-bottom: var(--space-6);
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }
    
    .hero-cta {
        font-size: 14px !important;
        padding: 12px 20px !important;
        margin-bottom: var(--space-6);
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        justify-content: center;
        font-weight: 600 !important;
        min-height: auto !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
    
    .hero-guarantee {
        font-size: var(--text-xs);
        flex-direction: column;
        gap: var(--space-1);
    }
    
    .final-cta-content h2 {
        font-size: var(--text-2xl);
    }
    
    .final-cta-content p {
        font-size: var(--text-base);
    }
    
    .final-cta {
        font-size: var(--text-lg);
        padding: var(--space-4) var(--space-8);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-2xl);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
        line-height: 1.4;
    }
    
    .hero-cta {
        font-size: 14px !important;
        padding: 12px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600 !important;
        min-height: auto !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
    
    .cta-button {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-4);
    }
    
    .section-title {
        font-size: var(--text-2xl);
        line-height: 1.2;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .container {
        padding: 0 var(--space-3);
    }
    
    .header-container {
        padding: 0 var(--space-3);
    }
    
    .hero-content {
        padding: 0 var(--space-3);
    }
    
    .benefit-card {
        padding: var(--space-5);
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: var(--text-lg);
    }
    
    .testimonial-card {
        padding: var(--space-5);
    }
    
    .testimonial-card p {
        font-size: var(--text-sm);
    }
    
    .quiz-mockup {
        max-width: 320px;
    }
    
    .mockup-content {
        padding: var(--space-4);
    }
    
    .mockup-question p {
        font-size: var(--text-base);
    }
    
    .mockup-option {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }
    
    .hero-badge {
        margin-top: 1.5rem;
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-2);
    }
    
    .hero-stats {
        gap: var(--space-3);
    }
    
    .stat-number {
        font-size: var(--text-xl);
    }
    
    .stat-label {
        font-size: var(--text-xs);
    }
    
    .hero-guarantee {
        font-size: var(--text-xs);
        text-align: center;
    }
    
    .final-cta {
        font-size: var(--text-base);
        padding: var(--space-3) var(--space-6);
        width: 100%;
        max-width: 280px;
    }
    
    .contact-form input {
        padding: var(--space-3);
        font-size: var(--text-sm);
    }
    
    .contact-form label {
        font-size: var(--text-xs);
    }
    
    .form-preview {
        padding: var(--space-4);
    }
    
    .form-preview h4 {
        font-size: var(--text-base);
    }
    
    .form-preview li {
        font-size: var(--text-xs);
        padding: var(--space-2) 0;
    }
}

/* ===== NOUVELLES SECTIONS - STYLES POUR LA CONVERSION ===== */

/* Section 1: Éléments de réassurance */
.reassurance-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.reassurance-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.reassurance-item i {
    color: var(--success);
    font-size: var(--text-base);
}

/* Section 2: Le problème */
.problem-section {
    position: relative;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 50%, #ffd6d6 100%);
    padding: var(--space-20) 0;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 182, 193, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.problem-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-text {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-10);
    line-height: 1.5;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
    border: 1px solid rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(10px);
}

.problem-results {
    margin-bottom: var(--space-10);
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
    border: 1px solid rgba(255, 107, 157, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.problem-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-rose), var(--primary-rose-light));
}

.problem-results h3 {
    font-size: var(--text-3xl);
    color: var(--primary-rose);
    margin-bottom: var(--space-6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.problem-list li {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 182, 193, 0.15));
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-rose);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.problem-list li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(255, 182, 193, 0.2));
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.problem-list li::before {
    content: '•';
    color: var(--primary-rose);
    font-weight: bold;
    font-size: var(--text-2xl);
    margin-right: var(--space-3);
}

.problem-empathy {
    font-size: var(--text-2xl);
    color: var(--primary-rose);
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    background-color: rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

/* Section 3: La promesse */
.promise-section {
    position: relative;
    background: linear-gradient(135deg, #fff6e9 0%, #fef2e6 50%, #fde2c2 100%);
}

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

.promise-title {
    font-family: var(--font-accent);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-8);
    line-height: 1.2;
}

.promise-benefits {
    margin-bottom: var(--space-8);
}

.promise-benefits p {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.promise-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto var(--space-6);
}

.promise-list li {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    padding-left: var(--space-2);
}

.promise-gift {
    font-size: var(--text-xl);
    color: var(--primary-rose);
    font-weight: 600;
    background: rgba(255, 107, 157, 0.1);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 157, 0.2);
}

.promise-cta {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-8);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* Section 4: Comment ça marche */
.how-it-works-section {
    background: var(--white);
    padding: var(--space-20) 0;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-12);
    font-weight: 500;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.step-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
}

.step-number {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    display: block;
}

.step-content h3 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
}

.steps-timing {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--primary-rose);
    font-weight: 600;
    background: rgba(255, 107, 157, 0.1);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    display: inline-block;
    border: 2px solid rgba(255, 107, 157, 0.2);
}

/* Section 5: Témoignages */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 182, 193, 0.15));
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 157, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-rose), var(--primary-rose-light));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(255, 182, 193, 0.2));
    border-color: var(--primary-rose);
}

.testimonial-card p {
    font-size: var(--text-lg);
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--space-4);
    line-height: 1.6;
    font-weight: 500;
}

.testimonial-author {
    color: var(--primary-rose);
    font-size: var(--text-base);
    font-weight: 600;
}

/* Section 6: Réassurance finale */
.reassurance-section {
    background: var(--white);
    padding: var(--space-16) 0;
}

.reassurance-content {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.reassurance-section .reassurance-item {
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-rose));
    color: var(--white);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border: none;
}

.reassurance-section .reassurance-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
}

.reassurance-section .reassurance-item i {
    color: var(--white);
    font-size: var(--text-lg);
}

/* Section 7: CTA final */
.final-cta-section {
    background: linear-gradient(135deg, var(--text-primary), var(--dark-gray));
    color: var(--white);
    position: relative;
    padding: var(--space-20) 0;
}

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

.final-cta-content h2 {
    font-family: var(--font-accent);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
    color: var(--white);
    line-height: 1.2;
}

.final-cta {
    font-size: var(--text-xl);
    padding: var(--space-5) var(--space-10);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, var(--primary-rose-dark), var(--primary-rose));
}

/* ===== SECTION MON HISTOIRE ===== */
.story-section {
    position: relative;
    background: #fafafa;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.story-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--primary-rose);
    margin-bottom: var(--space-16);
    line-height: 1.4;
    background: var(--white);
    padding: var(--space-8) var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
    border: 1px solid rgba(255, 107, 157, 0.2);
    position: relative;
    letter-spacing: -0.01em;
}

/* Responsive pour la section story */
@media (max-width: 768px) {
    .story-section {
        padding: var(--space-16) 0;
    }
    
    .story-title {
        font-size: var(--text-xl);
        padding: var(--space-6) var(--space-4);
        margin-bottom: var(--space-12);
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: var(--space-12) 0;
    }
    
    .story-title {
        font-size: var(--text-lg);
        padding: var(--space-5) var(--space-4);
        margin-bottom: var(--space-8);
        line-height: 1.3;
    }
}

/* ===== OPTIMISATIONS MOBILE POUR LA CONVERSION ===== */

/* Titres adaptatifs */
.hero-title-mobile {
    display: none;
}

.hero-title-desktop {
    display: block;
}

.hero-subtitle-mobile {
    display: none;
}

.cta-mobile-text {
    display: none;
}

.cta-desktop-text {
    display: inline;
}

/* CTA mobile optimisé */
.mobile-cta {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.mobile-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.6);
}

/* Éléments de réassurance mobile */
.reassurance-elements {
    margin-top: var(--space-6);
    gap: var(--space-2);
}

.reassurance-item {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
    flex: 1;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Section problème mobile */
.problem-text {
    font-size: var(--text-lg);
    line-height: 1.5;
    margin-bottom: var(--space-6);
}

.problem-results h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.problem-list {
    max-width: 100%;
    margin: 0 auto;
}

.problem-list li {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
    padding-left: var(--space-1);
}

.problem-empathy {
    font-size: var(--text-base);
    margin-top: var(--space-4);
}

/* Section promesse mobile */
.promise-title {
    font-size: var(--text-3xl);
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.promise-benefits p {
    font-size: var(--text-base);
    margin-bottom: var(--space-3);
}

.promise-list {
    max-width: 100%;
    margin: 0 auto var(--space-4);
}

.promise-list li {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
}

.promise-gift {
    font-size: var(--text-lg);
    padding: var(--space-3);
    margin: var(--space-4) 0;
    text-align: center;
}

.promise-cta {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-6);
    font-weight: 700;
}

/* Étapes mobile */
.steps-container {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.step-item {
    padding: var(--space-6);
    margin-bottom: var(--space-2);
}

.step-number {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.step-content h3 {
    font-size: var(--text-lg);
    line-height: 1.3;
}

.steps-timing {
    font-size: var(--text-base);
    padding: var(--space-2) var(--space-4);
    margin-top: var(--space-4);
}

/* Témoignages mobile */
.testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 100%;
}

.testimonial-card {
    padding: var(--space-6);
    margin-bottom: var(--space-2);
}

.testimonial-card p {
    font-size: var(--text-base);
    line-height: 1.5;
    margin-bottom: var(--space-3);
}

.testimonial-author {
    font-size: var(--text-sm);
}

/* Réassurance finale mobile */
.reassurance-content {
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
}

.reassurance-section .reassurance-item {
    width: 100%;
    max-width: 300px;
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-4);
    text-align: center;
}

/* CTA final mobile */
.final-cta-content h2 {
    font-size: var(--text-3xl);
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.final-cta {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .reassurance-elements {
        flex-direction: column;
        gap: var(--space-3);
        align-items: center;
    }
    
    .reassurance-item {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }
    
    .problem-text {
        font-size: var(--text-lg);
    }
    
    .problem-results h3 {
        font-size: var(--text-xl);
    }
    
    .problem-list li {
        font-size: var(--text-base);
    }
    
    .promise-title {
        font-size: var(--text-3xl);
    }
    
    .promise-benefits p {
        font-size: var(--text-base);
    }
    
    .promise-list li {
        font-size: var(--text-base);
    }
    
    .promise-gift {
        font-size: var(--text-lg);
        padding: var(--space-3);
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .step-item {
        padding: var(--space-6);
    }
    
    .step-number {
        font-size: var(--text-3xl);
    }
    
    .step-content h3 {
        font-size: var(--text-lg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .testimonial-card {
        padding: var(--space-6);
    }
    
    .testimonial-card p {
        font-size: var(--text-base);
    }
    
    .reassurance-content {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
    }
    
    .reassurance-section .reassurance-item {
        font-size: var(--text-sm);
        padding: var(--space-3) var(--space-5);
    }
    
    .final-cta-content h2 {
        font-size: var(--text-3xl);
    }
    
    .final-cta {
        font-size: var(--text-lg);
        padding: var(--space-4) var(--space-8);
    }
}

/* ===== OPTIMISATIONS MOBILE ULTRA-PETITS ÉCRANS ===== */
@media (max-width: 480px) {
    /* Titres adaptatifs pour mobile */
    .hero-title-mobile {
        display: block;
        font-size: var(--text-2xl);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: var(--space-2);
    }
    
    .hero-title-desktop {
        display: none;
    }
    
    .hero-subtitle-mobile {
        display: block;
        font-size: var(--text-lg);
        color: var(--primary-rose);
        font-weight: 600;
        margin-bottom: var(--space-4);
    }
    
    .cta-mobile-text {
        display: inline;
        font-size: var(--text-base);
        font-weight: 700;
    }
    
    .cta-desktop-text {
        display: none;
    }
    
    /* CTA mobile ultra-optimisé */
    .mobile-cta {
        width: 100%;
        max-width: 100%;
        font-size: var(--text-base);
        padding: var(--space-4) var(--space-4);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.95);
        margin: var(--space-4) 0;
    }
    
    .mobile-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.7);
    }
    
    /* Éléments de réassurance mobile ultra-compacts */
    .reassurance-elements {
        flex-direction: column;
        gap: var(--space-2);
        margin-top: var(--space-4);
    }
    
    .reassurance-item {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-2);
        text-align: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        white-space: normal;
        line-height: 1.3;
    }
    
    /* Section problème mobile ultra-optimisée */
    .problem-text {
        font-size: var(--text-base);
        line-height: 1.4;
        margin-bottom: var(--space-4);
    }
    
    .problem-results h3 {
        font-size: var(--text-lg);
        margin-bottom: var(--space-2);
    }
    
    .problem-list li {
        font-size: var(--text-sm);
        margin-bottom: var(--space-1);
        padding-left: 0;
    }
    
    .problem-empathy {
        font-size: var(--text-sm);
        margin-top: var(--space-3);
        text-align: center;
    }
    
    /* Section promesse mobile ultra-optimisée */
    .promise-title {
        font-size: var(--text-2xl);
        line-height: 1.1;
        margin-bottom: var(--space-4);
    }
    
    .promise-benefits p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-2);
    }
    
    .promise-list li {
        font-size: var(--text-sm);
        margin-bottom: var(--space-1);
    }
    
    .promise-gift {
        font-size: var(--text-base);
        padding: var(--space-2);
        margin: var(--space-3) 0;
        text-align: center;
        line-height: 1.4;
    }
    
    .promise-cta {
        width: 100%;
        max-width: 100%;
        font-size: var(--text-sm);
        padding: var(--space-3) var(--space-4);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Étapes mobile ultra-optimisées */
    .steps-container {
        grid-template-columns: 1fr;
        gap: var(--space-3);
        margin-bottom: var(--space-4);
    }
    
    .step-item {
        padding: var(--space-4);
        margin-bottom: var(--space-1);
    }
    
    .step-number {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-2);
    }
    
    .step-content h3 {
        font-size: var(--text-base);
        line-height: 1.2;
    }
    
    .steps-timing {
        font-size: var(--text-sm);
        padding: var(--space-2) var(--space-3);
        margin-top: var(--space-3);
    }
    
    /* Témoignages mobile ultra-optimisés */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: var(--space-4);
        margin-bottom: var(--space-1);
    }
    
    .testimonial-card p {
        font-size: var(--text-sm);
        line-height: 1.4;
        margin-bottom: var(--space-2);
    }
    
    .testimonial-author {
        font-size: var(--text-xs);
    }
    
    /* Réassurance finale mobile ultra-optimisée */
    .reassurance-content {
        flex-direction: column;
        gap: var(--space-2);
        align-items: center;
    }
    
    .reassurance-section .reassurance-item {
        width: 100%;
        max-width: 100%;
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
        text-align: center;
        line-height: 1.3;
    }
    
    /* CTA final mobile ultra-optimisé */
    .final-cta-content h2 {
        font-size: var(--text-2xl);
        line-height: 1.1;
        margin-bottom: var(--space-4);
    }
    
    .final-cta {
        width: 100%;
        max-width: 100%;
        font-size: var(--text-base);
        padding: var(--space-3) var(--space-4);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Optimisations générales mobile */
    .hero-section {
        padding: var(--space-16) 0 var(--space-8) 0;
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 0 var(--space-3);
    }
    
    .hero-title {
        font-size: var(--text-2xl);
        line-height: 1.1;
        margin-bottom: var(--space-4);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
        line-height: 1.4;
        margin-bottom: var(--space-6);
    }
    
    .section-title {
        font-size: var(--text-2xl);
        line-height: 1.2;
        margin-bottom: var(--space-8);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-6);
    }
    
    /* Espacement optimisé pour mobile */
    section {
        padding: var(--space-8) 0;
    }
    
    .container {
        padding: 0 var(--space-3);
    }
    
    /* Amélioration de la lisibilité mobile */
    .problem-content,
    .promise-content,
    .final-cta-content {
        padding: 0 var(--space-2);
    }
    
    .problem-results h3 {
        font-size: var(--text-lg);
    }
    
    .problem-list li {
        font-size: var(--text-sm);
    }
    
    .promise-title {
        font-size: var(--text-2xl);
    }
    
    .promise-benefits p {
        font-size: var(--text-sm);
    }
    
    .promise-list li {
        font-size: var(--text-sm);
    }
    
    .promise-gift {
        font-size: var(--text-base);
        padding: var(--space-2);
    }
    
    .step-item {
        padding: var(--space-4);
    }
    
    .step-number {
        font-size: var(--text-2xl);
    }
    
    .step-content h3 {
        font-size: var(--text-base);
    }
    
    .testimonial-card {
        padding: var(--space-4);
    }
    
    .testimonial-card p {
        font-size: var(--text-sm);
    }
    
    .reassurance-section .reassurance-item {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }
    
    .final-cta-content h2 {
        font-size: var(--text-2xl);
    }
    
    .final-cta {
        font-size: var(--text-base);
        padding: var(--space-3) var(--space-6);
    }
}