/* =====================================================
   LE QG ACADEMY - Main Stylesheet
   Design: Ultra-moderne, féminin, glassmorphism
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES & ROOT
   ===================================================== */
:root {
    /* Colors */
    --color-bg: #ffffff;
    --color-text: #605c47;
    --color-pink: #ffbdd9;
    --color-pink-light: #ffe4f0;
    --color-yellow: #f1ffaf;
    --color-cream: #f3eab8;
    --color-brown: #605c47;
    --color-brown-light: #8a8573;
    
    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #ffbdd9 0%, #ffe4f0 100%);
    --gradient-yellow: linear-gradient(135deg, #f1ffaf 0%, #f9ffdf 100%);
    --gradient-cream: linear-gradient(135deg, #f3eab8 0%, #faf7e8 100%);
    --gradient-brown: linear-gradient(135deg, #605c47 0%, #8a8573 100%);
    --gradient-hero: linear-gradient(160deg, #fff 0%, #faf7e8 40%, #f1ffaf 70%, #ffe4f0 100%);
    --gradient-soft: linear-gradient(135deg, #faf7e8 0%, #f1ffaf 50%, #ffe4f0 100%);
    
    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-cursive: 'Dancing Script', cursive;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    
    /* Spacing */
    --section-padding: 70px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;
    
    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* =====================================================
   2. RESET & BASE STYLES
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

strong {
    font-weight: 600;
    color: var(--color-brown);
}

/* =====================================================
   4. UTILITY CLASSES
   ===================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-brown);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--color-brown-light);
}

.accent-cursive {
    font-family: var(--font-cursive);
    color: var(--color-pink);
    font-size: 1.2em;
    font-weight: 600;
}

.accent-text {
    color: var(--color-brown-light);
    font-size: 0.85em;
}

.text-highlight {
    background: var(--gradient-pink);
    padding: 2px 8px;
    border-radius: 4px;
}

.highlight {
    color: var(--color-pink);
    font-weight: 600;
}

.check-icon {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 8px;
}

.cross-icon {
    color: #f44336;
    margin-right: 8px;
}

/* =====================================================
   5. GLASS CARD EFFECT
   ===================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
    transition: var(--transition-normal);
}

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

/* =====================================================
   6. BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--color-brown);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-cta {
    background: var(--gradient-brown);
    color: white;
    padding: 20px 40px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/* Wrapper pour centrer les CTA dans les sections */
.section .btn-cta,
.container .btn-cta {
    margin-left: auto;
    margin-right: auto;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-cta i {
    transition: transform var(--transition-fast);
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Ripple effect */
.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
}

.btn:active::after {
    transform: scale(2);
    opacity: 1;
    transition: 0s;
}

/* Pulse animation */
.pulse-animation {
    animation: pulse 2s infinite, ctaGlow 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(96, 92, 71, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(96, 92, 71, 0); }
    100% { box-shadow: 0 0 0 0 rgba(96, 92, 71, 0); }
}

/* =====================================================
   CTA ANIMATIONS - Subtiles et visibles sur mobile
   ===================================================== */

/* Animation de brillance sur les CTA */
@keyframes ctaGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(96, 92, 71, 0.3);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(96, 92, 71, 0.5);
    }
}

/* Animation subtile de scale pour tous les CTA */
.btn-cta {
    animation: ctaBreath 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

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

/* Effet de shimmer/brillance qui traverse le bouton */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

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

/* Animation spéciale pour le CTA hero (plus prononcée) */
.hero .btn-cta {
    animation: ctaBreath 4s ease-in-out infinite, heroGlow 2.5s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(96, 92, 71, 0.3), 0 0 0 0 rgba(255, 189, 217, 0);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(96, 92, 71, 0.4), 0 0 20px 5px rgba(255, 189, 217, 0.3);
    }
}

/* Animation de rebond léger pour le CTA pricing */
.pricing-cta {
    animation: ctaBreath 4s ease-in-out infinite, pricingBounce 2s ease-in-out infinite;
}

@keyframes pricingBounce {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-3px) scale(1.02);
    }
}

/* Animation d'attention pour les CTA de décision */
.choice-section .btn-cta,
.ps-section .btn-cta {
    animation: ctaAttention 3s ease-in-out infinite;
}

@keyframes ctaAttention {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(96, 92, 71, 0.3);
    }
    25% { 
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(96, 92, 71, 0.4);
    }
    50% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(96, 92, 71, 0.3);
    }
    75% { 
        transform: scale(1.02);
        box-shadow: 0 5px 22px rgba(96, 92, 71, 0.35);
    }
}

/* Animation de l'icône flèche */
.btn-cta i {
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Hover amélioré avec transition fluide */
.btn-cta:hover {
    animation: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(96, 92, 71, 0.4);
}

.btn-cta:hover::before {
    animation: none;
    left: 100%;
}

.btn-cta:hover i {
    animation: none;
    transform: translateX(8px);
}

/* Active state */
.btn-cta:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 15px rgba(96, 92, 71, 0.3);
}

/* =====================================================
   EFFETS LUMINEUX SUBTILS
   ===================================================== */

/* Glow subtil sur les titres de section */
.section-title {
    position: relative;
}

.section-title .accent-cursive {
    text-shadow: 0 0 20px rgba(255, 189, 217, 0.4);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 189, 217, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 189, 217, 0.5), 0 0 40px rgba(255, 189, 217, 0.2); }
}

/* Effet lumineux sur les glass cards au hover */
.glass-card {
    position: relative;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 189, 217, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(241, 255, 175, 0.3) 100%
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover::after {
    opacity: 1;
}

/* Effet de bordure lumineuse sur les cartes importantes */
.pricing-card {
    position: relative;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: calc(var(--radius-md) + 2px);
    background: linear-gradient(
        45deg,
        var(--color-pink),
        var(--color-cream),
        var(--color-yellow),
        var(--color-pink)
    );
    background-size: 300% 300%;
    animation: gradientBorder 6s ease infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glow sur les icônes des cartes */
.card-icon,
.impact-icon,
.module-number {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.problem-card:hover .card-icon,
.impact-card:hover .impact-icon,
.module:hover .module-number {
    box-shadow: 0 6px 25px rgba(255, 189, 217, 0.4);
    transform: scale(1.05);
}

/* Effet lumineux sur le texte highlight */
.text-highlight {
    position: relative;
    animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 189, 217, 0);
    }
    50% { 
        box-shadow: 0 0 10px 2px rgba(255, 189, 217, 0.3);
    }
}

/* Lueur douce sur le hero subtitle */
.hero-subtitle .highlight {
    animation: heroHighlight 3s ease-in-out infinite;
}

@keyframes heroHighlight {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 189, 217, 0.3);
    }
    50% { 
        text-shadow: 0 0 20px rgba(255, 189, 217, 0.6), 0 0 30px rgba(255, 189, 217, 0.3);
    }
}

/* Effet sur les checkmarks */
.check-icon {
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
    transition: text-shadow 0.3s ease;
}

.pricing-features li:hover .check-icon,
.mrr-benefits li:hover .check-icon {
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
}

/* Effet lumineux sur les calc-cards */
.calc-card {
    position: relative;
    overflow: hidden;
}

.calc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-20deg);
    animation: calcShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes calcShine {
    0%, 100% { left: -50%; }
    50% { left: 100%; }
}

/* Délais pour effet cascade */
.calc-card:nth-child(1)::before { animation-delay: 0s; }
.calc-card:nth-child(2)::before { animation-delay: 0.5s; }
.calc-card:nth-child(3)::before { animation-delay: 1s; }

/* Effet glow sur la timeline */
.timeline-marker {
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    filter: blur(6px);
    z-index: -1;
    animation: markerGlow 3s ease-in-out infinite;
}

@keyframes markerGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Effet sur les témoignages quote */
.quote-mark {
    animation: quoteGlow 4s ease-in-out infinite;
}

@keyframes quoteGlow {
    0%, 100% { opacity: 0.4; text-shadow: none; }
    50% { opacity: 0.7; text-shadow: 0 0 20px rgba(243, 234, 184, 0.5); }
}

/* Lueur sur la vision section */
.vision-proud .accent-cursive {
    animation: proudGlow 3s ease-in-out infinite;
}

@keyframes proudGlow {
    0%, 100% { 
        text-shadow: 0 0 15px rgba(255, 189, 217, 0.3);
    }
    50% { 
        text-shadow: 0 0 25px rgba(255, 189, 217, 0.6), 0 0 35px rgba(255, 189, 217, 0.3);
    }
}

/* Effet sur le choice-star */
.choice-star {
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { 
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(241, 255, 175, 0.6), var(--shadow-lg);
        transform: scale(1.05);
    }
}

/* Effet lumineux subtil sur le scroll-to-top */
.scroll-to-top {
    animation: scrollBtnGlow 3s ease-in-out infinite;
}

@keyframes scrollBtnGlow {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: 0 0 20px rgba(255, 189, 217, 0.4), var(--shadow-md); }
}

/* =====================================================
   7. FLOATING ELEMENTS
   ===================================================== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    max-width: 100vw;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--color-cream);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--color-yellow);
    bottom: 20%;
    left: -50px;
    animation-delay: -5s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    background: var(--color-pink);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* =====================================================
   8. NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo-img {
    height: 80px;
    width: auto;
}

/* Bouton Menu (hamburger) */
.menu-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--color-brown);
    transition: all 0.2s ease;
}

.menu-btn:hover {
    background: var(--color-pink);
    transform: scale(1.05);
}

/* =====================================================
   MENU MOBILE FULLSCREEN
   ===================================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf7e8 50%, #fff5f8 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Bouton Fermer (croix) */
.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-pink);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-brown);
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 189, 217, 0.4);
}

.menu-close:hover {
    background: var(--color-brown);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

/* Contenu du menu */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
}

.mobile-menu-content a {
    display: block;
    width: 100%;
    padding: 18px 24px;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-brown);
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu-content a:hover,
.mobile-menu-content a:active {
    background: var(--color-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 189, 217, 0.3);
}

.menu-cta {
    background: var(--gradient-brown) !important;
    color: #fff !important;
    margin-top: 15px;
    font-weight: 600;
}

.menu-cta:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(96, 92, 71, 0.3) !important;
}

/* Bloquer le scroll quand menu ouvert */
body.menu-open {
    overflow: hidden;
}

/* =====================================================
   9. HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-accent {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 0.9;
}

.title-accent .le {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--color-brown);
    letter-spacing: 2px;
}

.title-accent .qg {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-pink);
    letter-spacing: 3px;
}

.title-main {
    display: inline-block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--color-brown);
    letter-spacing: 12px;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-family: var(--font-elegant);
    color: var(--color-brown);
    margin-bottom: 50px;
    line-height: 1.8;
    text-align: center;
    max-width: 850px;
    font-weight: 500;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-pink);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    animation: heroBlob 10s ease-in-out infinite;
}

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

/* =====================================================
   10. PROBLEM SECTION
   ===================================================== */
.problem-section {
    background: var(--color-bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    text-align: center;
    padding: 40px 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-brown);
}

.problem-card:nth-child(2) .card-icon {
    background: var(--gradient-yellow);
}

.problem-card:nth-child(3) .card-icon {
    background: var(--gradient-pink);
}

.result-box {
    text-align: center;
    background: rgba(243, 234, 184, 0.2);
    border: 1px solid var(--color-cream);
    margin-bottom: 50px;
    padding: 40px;
}

.result-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.result-secondary {
    color: var(--color-brown-light);
    font-style: italic;
}

.difference-box {
    text-align: center;
    margin-bottom: 50px;
}

.difference-title {
    font-family: var(--font-cursive);
    font-size: 2rem;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.difference-text {
    font-size: 1.2rem;
}

.solution-highlight {
    background: white;
    border: 2px solid var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.solution-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-brown);
}

.solution-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-brown-light);
}

.solution-tagline {
    font-size: 1rem;
}

/* =====================================================
   11. WHY NOT WORKING SECTION
   ===================================================== */
.why-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #fafafa 100%);
}

.guess-box {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
}

.guess-title {
    font-family: var(--font-cursive);
    font-size: 1.8rem;
    color: var(--color-pink);
    margin-bottom: 25px;
}

.guess-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(96, 92, 71, 0.1);
}

.guess-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-pink);
    font-size: 1.5rem;
}

.guess-list li:last-child {
    border-bottom: none;
}

.real-problem {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.real-problem-title {
    font-size: 1.8rem;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.problem-highlight {
    font-size: 1.1rem;
    margin: 30px 0;
}

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

.problem-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.consequence-box {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    background: rgba(255, 189, 217, 0.1);
    border: 1px solid var(--color-pink);
}

.truth-box {
    text-align: center;
}

.truth-intro {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.truth-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brown);
}

/* =====================================================
   12. SOLUTION SECTION
   ===================================================== */
.solution-section {
    background: var(--color-bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    padding: 35px;
    text-align: center;
}

.solution-before {
    font-size: 1rem;
    color: var(--color-brown-light);
    margin-bottom: 15px;
    text-decoration: line-through;
    opacity: 0.7;
}

.solution-arrow {
    font-size: 1.5rem;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.solution-after {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brown);
}

.mrr-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--gradient-cream);
}

/* =====================================================
   13. VISION SECTION
   ===================================================== */
.vision-section {
    background: linear-gradient(180deg, #fafafa 0%, var(--color-bg) 100%);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border: 1px solid rgba(243, 234, 184, 0.5);
}

.vision-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
}

.vision-paragraphs p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.vision-proud {
    font-size: 1.5rem !important;
    text-align: center;
    margin: 40px 0 !important;
}

.vision-conclusion {
    background: var(--gradient-yellow);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 40px;
}

.vision-conclusion p {
    margin-bottom: 10px;
}

.vision-cta-text {
    font-size: 1.2rem;
}

/* =====================================================
   14. MRR SECTION
   ===================================================== */
.mrr-section {
    background: var(--color-bg);
}

.mrr-definition {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 50px;
    background: white;
    border: 2px solid var(--color-cream);
}

.mrr-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
}

.mrr-benefits {
    margin: 30px 0;
}

.mrr-benefits li {
    padding: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.mrr-simple {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 30px;
}

.mrr-concrete {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 40px;
    background: var(--gradient-yellow);
}

.mrr-concrete h3 {
    margin-bottom: 20px;
    text-align: center;
}

.concrete-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.mrr-calculations {
    text-align: center;
}

.calc-title {
    font-family: var(--font-cursive);
    font-size: 2rem;
    color: var(--color-brown);
    margin-bottom: 30px;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.calc-card {
    padding: 40px 30px;
    text-align: center;
    background: var(--gradient-cream);
    border: none;
}

.calc-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-brown);
}

.calc-label {
    display: block;
    font-size: 1rem;
    color: var(--color-brown-light);
    margin-bottom: 15px;
}

.calc-result {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-brown);
}

.calc-note {
    font-style: italic;
    color: var(--color-brown-light);
}

/* Counter animation */
.counter {
    display: inline-block;
}

/* =====================================================
   15. MODULES SECTION
   ===================================================== */
.modules-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #fafafa 100%);
}

.module {
    margin-bottom: 40px;
    padding: 50px;
    background: white;
    border: 1px solid rgba(243, 234, 184, 0.4);
}

.module-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.module-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brown);
}

.module:nth-child(2) .module-number {
    background: var(--gradient-yellow);
}

.module:nth-child(3) .module-number {
    background: var(--gradient-pink);
}

.module:nth-child(4) .module-number {
    background: var(--gradient-cream);
}

.module-title {
    font-size: 1.5rem;
    color: var(--color-brown);
}

.module-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-brown-light);
    margin-top: 5px;
}

.module-intro {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.module-highlight {
    font-weight: 600;
    margin-bottom: 15px;
}

.module-list {
    margin-bottom: 25px;
    padding-left: 20px;
}

.module-list li {
    padding: 8px 0;
    position: relative;
}

.module-list li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--color-pink);
}

.check-list li::before {
    display: none;
}

.module-result {
    background: var(--gradient-cream);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
}

/* Resource items */
.resource-item {
    margin: 30px 0;
    padding: 30px;
    background: rgba(243, 234, 184, 0.15);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-cream);
}

.resource-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-brown);
    line-height: 1.4;
}

.resource-value {
    font-weight: 400;
    color: var(--color-brown-light);
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 4px;
}

.resource-calc {
    background: var(--gradient-yellow);
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin: 15px 0;
    font-weight: 600;
}

.calc-detail {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 5px;
}

.resource-themes {
    font-style: italic;
    color: var(--color-brown-light);
}

.examples-list {
    margin: 15px 0;
    padding-left: 20px;
}

.examples-list li {
    padding: 5px 0;
}

.examples-list li::before {
    content: '•';
    color: var(--color-brown);
    margin-right: 10px;
}

.resource-result {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(96, 92, 71, 0.1);
}

.setup-list {
    margin: 15px 0;
}

.setup-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    counter-increment: step;
}

.setup-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-brown);
}

/* Value recap */
.value-recap {
    margin-top: 60px;
}

.recap-title {
    text-align: center;
    font-family: var(--font-cursive);
    font-size: 2rem;
    color: var(--color-brown);
    margin-bottom: 40px;
}

.recap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.recap-item {
    padding: 20px;
    text-align: center;
    background: rgba(243, 234, 184, 0.15);
    border: 1px solid var(--color-cream);
}

.recap-item .check-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.recap-text {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.recap-value {
    display: block;
    font-weight: 700;
    color: var(--color-brown);
    font-size: 1.1rem;
}

.total-value {
    text-align: center;
    padding: 50px;
    background: var(--gradient-cream);
    border-radius: var(--radius-lg);
}

.value-original {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.value-today {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-highlight {
    color: var(--color-brown);
    font-size: 2.5rem;
}

.value-note {
    font-style: italic;
    color: var(--color-brown-light);
    margin-bottom: 10px;
}

.value-comparison {
    color: var(--color-brown-light);
    margin-bottom: 20px;
}

.value-impact {
    font-size: 1.2rem;
}

/* =====================================================
   16. PRICING SECTION
   ===================================================== */
.pricing-section {
    background: var(--gradient-hero);
    padding: 80px 0;
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    padding: 60px 50px;
    text-align: center;
    background: white;
    border: 2px solid var(--color-cream);
    box-shadow: var(--shadow-xl);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 2rem;
    color: var(--color-brown);
    margin-bottom: 10px;
}

.pricing-subtitle {
    color: var(--color-brown-light);
    font-style: italic;
}

.pricing-price {
    margin-bottom: 15px;
}

.price-main {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-brown);
}

.price-suffix {
    font-size: 1.2rem;
    color: var(--color-brown-light);
}

.pricing-or {
    color: var(--color-brown-light);
    margin-bottom: 15px;
}

.pricing-installment {
    margin-bottom: 40px;
}

.installment-main {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-brown);
}

.installment-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-brown-light);
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(96, 92, 71, 0.1);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    width: 100%;
    margin-bottom: 30px;
}

.pricing-security {
    font-size: 0.9rem;
    color: var(--color-brown-light);
}

.pricing-security p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.pricing-security i {
    margin-right: 8px;
    color: var(--color-brown);
}

.payment-methods {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* =====================================================
   17. IMPACT SECTION
   ===================================================== */
.impact-section {
    background: var(--color-bg);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.impact-card {
    padding: 40px;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.impact-card:nth-child(2) .impact-icon {
    background: var(--gradient-yellow);
}

.impact-card:nth-child(3) .impact-icon {
    background: var(--gradient-pink);
}

.impact-card:nth-child(4) .impact-icon {
    background: var(--gradient-cream);
}

.impact-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-brown);
}

.impact-list li {
    padding: 8px 0;
    color: var(--color-brown-light);
}

.impact-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.impact-conclusion p {
    font-size: 1.2rem;
}

/* =====================================================
   18. FOR WHO SECTION
   ===================================================== */
.forwho-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #fafafa 100%);
}

.forwho-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.forwho-card {
    padding: 40px;
}

.forwho-yes {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.forwho-no {
    background: rgba(244, 67, 54, 0.05);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.forwho-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.forwho-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forwho-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.forwho-yes .forwho-list li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    flex-shrink: 0;
}

.forwho-no .forwho-list li::before {
    content: '✗';
    color: #f44336;
    font-weight: bold;
    flex-shrink: 0;
}

/* =====================================================
   19. COMPARISON SECTION
   ===================================================== */
.comparison-section {
    background: var(--color-bg);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--gradient-brown);
    color: white;
}

.comparison-col-before,
.comparison-col-after {
    padding: 20px 30px;
    font-weight: 600;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(96, 92, 71, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 20px 30px;
}

.comparison-cell.before {
    background: rgba(244, 67, 54, 0.05);
    color: var(--color-brown-light);
}

.comparison-cell.after {
    background: var(--gradient-yellow);
    font-weight: 500;
}

.comparison-conclusion {
    text-align: center;
    font-size: 1.2rem;
}

/* =====================================================
   20. ROADMAP SECTION
   ===================================================== */
.roadmap-section {
    background: linear-gradient(180deg, #fafafa 0%, var(--color-bg) 100%);
}

.timeline {
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-cream);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-brown);
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(2) .timeline-marker {
    background: var(--gradient-yellow);
}

.timeline-item:nth-child(4) .timeline-marker {
    background: var(--gradient-yellow);
}

.timeline-content {
    flex: 1;
    padding: 25px 30px;
}

.timeline-title {
    font-size: 1.2rem;
    color: var(--color-brown);
    margin-bottom: 10px;
}

.timeline-duration {
    display: inline-block;
    background: var(--color-cream);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.roadmap-result {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--gradient-cream);
}

/* =====================================================
   21. TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 25px;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    font-family: var(--font-title);
    color: var(--color-cream);
    opacity: 0.6;
    line-height: 1;
}

.testimonial-quote p {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid rgba(96, 92, 71, 0.1);
    color: var(--color-brown-light);
}

.testimonial-author strong {
    color: var(--color-brown);
}

/* Témoignages avec captures d'écran */
.testimonial-screenshot {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    background: white;
    position: relative;
}

.testimonial-screenshot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-md) + 3px);
    background: linear-gradient(135deg, var(--color-pink), var(--color-cream), var(--color-yellow));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

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

.testimonial-screenshot:hover::before {
    opacity: 0.5;
}

.testimonial-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* =====================================================
   22. FAQ SECTION
   ===================================================== */
.faq-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #fafafa 100%);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-brown);
    text-align: left;
    transition: var(--transition-normal);
    cursor: pointer;
}

.faq-question:hover {
    background: transparent;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-brown);
    transition: transform var(--transition-normal);
}

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

.faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 20px 30px;
}

.faq-answer p {
    color: var(--color-brown-light);
    margin: 0;
    line-height: 1.7;
}

.faq-answer ul {
    color: var(--color-brown-light);
    padding-left: 20px;
    margin: 10px 0 0 0;
}

.faq-answer li {
    padding: 5px 0;
}

.faq-answer li::before {
    content: '•';
    color: var(--color-brown);
    margin-right: 10px;
}

/* =====================================================
   23. CHOICE SECTION
   ===================================================== */
.choice-section {
    background: var(--color-bg);
}

.choice-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.choice-card {
    padding: 40px;
}

.choice-no {
    background: rgba(244, 67, 54, 0.03);
    border: 1px solid rgba(244, 67, 54, 0.15);
}

.choice-yes {
    background: rgba(241, 255, 175, 0.15);
    border: 2px solid var(--color-yellow);
    position: relative;
}

.choice-star {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-brown);
    box-shadow: var(--shadow-md);
}

.choice-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-brown);
}

.choice-card p {
    margin-bottom: 15px;
}

.choice-question {
    font-style: italic;
    color: var(--color-brown-light);
}

.choice-proud {
    font-size: 1.2rem;
    text-align: center;
    margin: 20px 0;
}

.choice-question-final {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.choice-payment-info {
    text-align: center;
    margin-top: 40px;
    color: var(--color-brown-light);
}

.choice-payment-info p {
    margin-bottom: 10px;
}

.choice-payment-info i {
    margin-right: 8px;
    color: var(--color-brown);
}

/* =====================================================
   24. P.S. SECTION
   ===================================================== */
.ps-section {
    background: linear-gradient(180deg, #fafafa 0%, var(--color-bg) 100%);
}

.ps-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    background: white;
    border: 2px solid var(--color-cream);
}

.ps-label {
    font-family: var(--font-cursive);
    font-size: 2rem;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.ps-question {
    font-size: 1.3rem;
    margin: 30px 0;
}

.ps-choice {
    font-size: 1.2rem;
    margin: 30px 0 10px;
}

.ps-warning {
    font-style: italic;
    color: var(--color-brown-light);
    margin-bottom: 40px;
}

/* =====================================================
   25. FOOTER
   ===================================================== */
.footer {
    background: var(--color-brown);
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    text-align: center;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* =====================================================
   26. SCROLL TO TOP
   ===================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-brown);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
    cursor: pointer;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Cascade animation for calc cards */
.calc-card[data-animation="cascade"] {
    opacity: 0;
    transform: translateY(30px);
}

.calc-card[data-animation="cascade"].animated {
    animation: fadeInUp 0.6s ease forwards;
}

.calc-card[data-animation="cascade"]:nth-child(1).animated {
    animation-delay: 0s;
}

.calc-card[data-animation="cascade"]:nth-child(2).animated {
    animation-delay: 0.2s;
}

.calc-card[data-animation="cascade"]:nth-child(3).animated {
    animation-delay: 0.4s;
}

/* =====================================================
   28. RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-grid .problem-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .recap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 45px 0;
    }
    
    /* ===== NAVIGATION MOBILE ===== */
    .nav-container {
        padding: 10px 16px;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .menu-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .mobile-menu-content a {
        padding: 16px 20px;
        font-size: 1.05rem;
    }
    
    /* ===== HERO MOBILE ===== */
    .hero {
        padding: 100px 16px 50px;
        min-height: auto;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    /* ===== BOUTONS CTA MOBILE ===== */
    .btn-cta {
        padding: 16px 24px;
        font-size: 0.95rem;
        width: calc(100% - 32px);
        max-width: 350px;
        text-align: center;
        justify-content: center;
        /* Animations adaptées mobile - plus subtiles */
        animation: ctaBreathMobile 4s ease-in-out infinite;
    }
    
    .btn-cta span {
        font-size: 0.9rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    /* Animation plus subtile pour mobile (économie batterie) */
    @keyframes ctaBreathMobile {
        0%, 100% { 
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(96, 92, 71, 0.25);
        }
        50% { 
            transform: scale(1.015);
            box-shadow: 0 5px 20px rgba(96, 92, 71, 0.35);
        }
    }
    
    /* Shimmer plus rapide sur mobile */
    .btn-cta::before {
        animation: shimmerMobile 4s ease-in-out infinite;
    }
    
    @keyframes shimmerMobile {
        0% { left: -100%; }
        40%, 100% { left: 100%; }
    }
    
    /* Hero CTA mobile */
    .hero .btn-cta {
        animation: ctaBreathMobile 4s ease-in-out infinite, heroGlowMobile 3s ease-in-out infinite;
    }
    
    @keyframes heroGlowMobile {
        0%, 100% { 
            box-shadow: 0 4px 15px rgba(96, 92, 71, 0.25);
        }
        50% { 
            box-shadow: 0 6px 25px rgba(96, 92, 71, 0.35), 0 0 15px 3px rgba(255, 189, 217, 0.2);
        }
    }
    
    /* Pricing CTA mobile */
    .pricing-cta {
        animation: pricingBounceMobile 2.5s ease-in-out infinite;
    }
    
    @keyframes pricingBounceMobile {
        0%, 100% { 
            transform: translateY(0) scale(1);
        }
        50% { 
            transform: translateY(-2px) scale(1.015);
        }
    }
    
    /* CTA décision mobile */
    .choice-section .btn-cta,
    .ps-section .btn-cta {
        animation: ctaAttentionMobile 3.5s ease-in-out infinite;
    }
    
    @keyframes ctaAttentionMobile {
        0%, 100% { 
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(96, 92, 71, 0.25);
        }
        50% { 
            transform: scale(1.02);
            box-shadow: 0 5px 20px rgba(96, 92, 71, 0.35);
        }
    }
    
    /* Flèche animation mobile */
    .btn-cta i {
        animation: arrowMoveMobile 2s ease-in-out infinite;
    }
    
    @keyframes arrowMoveMobile {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(3px); }
    }
    
    /* ===== SECTIONS MOBILE ===== */
    .section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* ===== GLASS CARDS MOBILE ===== */
    .glass-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .glass-card:hover {
        transform: none;
    }
    
    /* ===== PROBLEM SECTION MOBILE ===== */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .problem-grid .problem-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .problem-card {
        padding: 24px 16px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .result-box {
        padding: 24px 16px;
        margin-bottom: 30px;
    }
    
    .result-text {
        font-size: 1rem;
    }
    
    .difference-box {
        margin-bottom: 30px;
    }
    
    .difference-title {
        font-size: 1.5rem;
    }
    
    .solution-highlight {
        padding: 30px 16px;
        margin-bottom: 30px;
    }
    
    .solution-text {
        font-size: 1.3rem;
    }
    
    .solution-description {
        font-size: 1rem;
    }
    
    /* ===== WHY SECTION MOBILE ===== */
    .guess-box {
        padding: 24px 16px;
    }
    
    .guess-title {
        font-size: 1.4rem;
    }
    
    .guess-list li {
        padding: 10px 0;
        font-size: 0.95rem;
    }
    
    .real-problem-title {
        font-size: 1.4rem;
    }
    
    .problem-list li {
        font-size: 1rem;
    }
    
    .truth-text {
        font-size: 1.5rem;
    }
    
    /* ===== SOLUTION SECTION MOBILE ===== */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .solution-card {
        padding: 24px 16px;
    }
    
    .solution-before {
        font-size: 0.9rem;
    }
    
    .solution-after {
        font-size: 1rem;
    }
    
    .mrr-intro {
        padding: 24px 16px;
    }
    
    /* ===== VISION SECTION MOBILE ===== */
    .vision-content {
        padding: 30px 16px;
    }
    
    .vision-intro {
        font-size: 1.1rem;
    }
    
    .vision-paragraphs p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .vision-proud {
        font-size: 1.2rem !important;
    }
    
    .vision-conclusion {
        padding: 20px 16px;
    }
    
    /* ===== MRR SECTION MOBILE ===== */
    .mrr-definition {
        padding: 30px 16px;
    }
    
    .mrr-intro {
        font-size: 1rem;
    }
    
    .mrr-benefits li {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .mrr-concrete {
        padding: 24px 16px;
    }
    
    .calc-title {
        font-size: 1.5rem;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }
    
    .calc-card {
        padding: 24px 16px;
    }
    
    .calc-number {
        font-size: 2.2rem;
    }
    
    .calc-result {
        font-size: 1.4rem;
    }
    
    /* ===== MODULES SECTION MOBILE ===== */
    .module {
        padding: 24px 16px;
        margin-bottom: 20px;
    }
    
    .module-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .module-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .module-title {
        font-size: 1.2rem;
    }
    
    .module-intro {
        font-size: 0.95rem;
    }
    
    .module-list li {
        font-size: 0.95rem;
        padding: 6px 0;
    }
    
    .resource-item {
        padding: 20px 12px;
        margin: 20px 0;
    }
    
    .resource-item h4 {
        font-size: 1rem;
    }
    
    .resource-calc {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* ===== VALUE RECAP MOBILE ===== */
    .recap-title {
        font-size: 1.4rem;
    }
    
    .recap-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .recap-item {
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }
    
    .recap-item .check-icon {
        display: inline;
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .recap-text {
        flex: 1;
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .recap-value {
        font-size: 0.95rem;
    }
    
    .total-value {
        padding: 30px 16px;
    }
    
    .value-original {
        font-size: 1.1rem;
    }
    
    .value-today {
        font-size: 1.3rem;
    }
    
    .price-highlight {
        font-size: 2rem;
    }
    
    /* ===== PRICING SECTION MOBILE ===== */
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 30px 16px;
        margin: 0 16px;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .price-main {
        font-size: 2.8rem;
    }
    
    .installment-main {
        font-size: 1.4rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .pricing-cta {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    /* ===== IMPACT SECTION MOBILE ===== */
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .impact-card {
        padding: 24px 16px;
    }
    
    .impact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .impact-title {
        font-size: 1.1rem;
    }
    
    .impact-list li {
        font-size: 0.95rem;
    }
    
    .impact-conclusion p {
        font-size: 1rem;
    }
    
    /* ===== FOR WHO SECTION MOBILE ===== */
    .forwho-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .forwho-card {
        padding: 24px 16px;
    }
    
    .forwho-title {
        font-size: 1.1rem;
    }
    
    .forwho-list li {
        font-size: 0.95rem;
        padding: 8px 0;
    }
    
    /* ===== COMPARISON SECTION MOBILE ===== */
    .comparison-table {
        margin: 0;
    }
    
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .comparison-cell {
        padding: 16px;
    }
    
    .comparison-cell.before {
        font-size: 0.9rem;
        position: relative;
    }
    
    .comparison-cell.before::before {
        content: '○ Avant : ';
        font-weight: 600;
        color: var(--color-brown-light);
    }
    
    .comparison-cell.after {
        font-size: 0.95rem;
        position: relative;
    }
    
    .comparison-cell.after::before {
        content: '● Avec Le QG : ';
        font-weight: 600;
        color: var(--color-brown);
    }
    
    .comparison-col-before::after,
    .comparison-col-after::before {
        content: none;
    }
    
    /* ===== ROADMAP SECTION MOBILE ===== */
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 17px;
        width: 2px;
    }
    
    .timeline-item {
        gap: 16px;
    }
    
    .timeline-marker {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    
    .timeline-content {
        padding: 16px;
    }
    
    .timeline-title {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .roadmap-result {
        padding: 24px 16px;
    }
    
    /* ===== TESTIMONIALS SECTION MOBILE ===== */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -10px;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    /* Screenshots témoignages mobile */
    .testimonial-screenshot {
        border-radius: 16px;
    }
    
    .testimonial-screenshot:hover {
        transform: none;
    }
    
    .testimonial-screenshot::before {
        display: none;
    }
    
    .testimonial-screenshot img {
        border-radius: 16px;
    }
    
    /* ===== FAQ SECTION MOBILE ===== */
    .faq-item {
        margin-bottom: 10px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
        gap: 12px;
    }
    
    .faq-question span {
        padding-right: 10px;
    }
    
    .faq-icon {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 16px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* ===== CHOICE SECTION MOBILE ===== */
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .choice-card {
        padding: 24px 16px;
    }
    
    .choice-yes {
        order: -1;
    }
    
    .choice-star {
        top: -12px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .choice-title {
        font-size: 1.2rem;
    }
    
    .choice-card p {
        font-size: 0.95rem;
    }
    
    .choice-proud {
        font-size: 1.1rem;
    }
    
    .choice-question-final {
        font-size: 1.2rem;
    }
    
    .choice-payment-info {
        font-size: 0.9rem;
    }
    
    /* ===== P.S. SECTION MOBILE ===== */
    .ps-content {
        padding: 30px 16px;
        margin: 0 16px;
    }
    
    .ps-label {
        font-size: 1.5rem;
    }
    
    .ps-question {
        font-size: 1.1rem;
    }
    
    /* ===== FOOTER MOBILE ===== */
    .footer {
        padding: 40px 0 30px;
    }
    
    /* ===== EFFETS LUMINEUX MOBILE ===== */
    /* Réduire les animations lumineuses sur mobile */
    .section-title .accent-cursive {
        animation: titleGlowMobile 5s ease-in-out infinite;
    }
    
    @keyframes titleGlowMobile {
        0%, 100% { text-shadow: 0 0 15px rgba(255, 189, 217, 0.2); }\n        50% { text-shadow: 0 0 20px rgba(255, 189, 217, 0.35); }
    }
    
    /* Désactiver les effets au hover sur mobile (touch) */
    .glass-card::after {
        display: none;
    }
    
    /* Animation simplifiée pour pricing card */
    .pricing-card::before {
        animation: gradientBorder 8s ease infinite;
        opacity: 0.4;
    }
    
    /* Réduire les animations des icônes */
    .problem-card:hover .card-icon,
    .impact-card:hover .impact-icon,
    .module:hover .module-number {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Simplifier text-highlight */
    .text-highlight {
        animation: none;
    }
    
    /* Simplifier les calc-cards */
    .calc-card::before {
        animation: calcShine 6s ease-in-out infinite;
    }
    
    /* Timeline markers plus subtils */
    .timeline-marker::after {
        animation: markerGlow 4s ease-in-out infinite;
    }
    
    /* Scroll button */
    .scroll-to-top {
        animation: scrollBtnGlowMobile 4s ease-in-out infinite;
    }
    
    @keyframes scrollBtnGlowMobile {
        0%, 100% { box-shadow: var(--shadow-md); }
        50% { box-shadow: 0 0 12px rgba(255, 189, 217, 0.3), var(--shadow-md); }
    }
    
    .footer-info p {
        font-size: 0.9rem;
    }
    
    /* ===== FLOATING ELEMENTS MOBILE ===== */
    .floating-circle {
        display: none;
    }
    
    /* ===== PRÉVENIR LE SCROLL HORIZONTAL MOBILE ===== */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }
    
    * {
        max-width: 100vw;
    }
    
    .section,
    .container,
    .hero,
    .navbar {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* ===== SCROLL TO TOP MOBILE ===== */
    .scroll-to-top {
        bottom: 20px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
    
    /* ===== DISABLE HOVER EFFECTS ON TOUCH ===== */
    .glass-card:hover,
    .problem-card:hover,
    .solution-card:hover,
    .impact-card:hover,
    .testimonial-card:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 35px 0;
    }
    
    /* ===== NAVIGATION TRÈS PETIT ÉCRAN ===== */
    .nav-container {
        padding: 8px 12px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .menu-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .menu-close {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: 15px;
        right: 15px;
    }
    
    .mobile-menu-content a {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    /* ===== HERO TRÈS PETIT ÉCRAN ===== */
    .hero {
        padding: 90px 12px 40px;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        padding: 0;
    }
    
    /* ===== BOUTONS CTA TRÈS PETIT ÉCRAN ===== */
    .btn-cta {
        padding: 14px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: none;
        text-align: center;
        justify-content: center;
        /* Animation encore plus subtile pour très petits écrans */
        animation: ctaBreathTiny 5s ease-in-out infinite;
    }
    
    .btn-cta span {
        font-size: 0.85rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .btn-cta i {
        display: none;
    }
    
    @keyframes ctaBreathTiny {
        0%, 100% { 
            transform: scale(1);
            box-shadow: 0 3px 12px rgba(96, 92, 71, 0.2);
        }
        50% { 
            transform: scale(1.01);
            box-shadow: 0 4px 16px rgba(96, 92, 71, 0.3);
        }
    }
    
    /* Shimmer désactivé sur très petit écran pour performance */
    .btn-cta::before {
        animation: none;
        display: none;
    }
    
    /* Toutes les animations CTA unifiées sur très petit écran */
    .hero .btn-cta,
    .pricing-cta,
    .choice-section .btn-cta,
    .ps-section .btn-cta {
        animation: ctaBreathTiny 5s ease-in-out infinite;
    }
    
    /* ===== SECTIONS TRÈS PETIT ÉCRAN ===== */
    .section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    /* ===== GLASS CARDS TRÈS PETIT ÉCRAN ===== */
    .glass-card {
        padding: 16px 12px;
        border-radius: 12px;
    }
    
    /* ===== PROBLÈME TRÈS PETIT ÉCRAN ===== */
    .problem-card {
        padding: 20px 12px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .solution-highlight {
        padding: 24px 12px;
    }
    
    .solution-text {
        font-size: 1.1rem;
    }
    
    /* ===== MODULES TRÈS PETIT ÉCRAN ===== */
    .module {
        padding: 20px 12px;
    }
    
    .module-header {
        gap: 10px;
    }
    
    .module-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .module-title {
        font-size: 1.1rem;
    }
    
    .resource-item {
        padding: 16px 10px;
    }
    
    /* ===== PRICING TRÈS PETIT ÉCRAN ===== */
    .pricing-card {
        padding: 24px 12px;
        margin: 0 12px;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .price-main {
        font-size: 2.4rem;
    }
    
    .installment-main {
        font-size: 1.2rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    /* ===== FAQ TRÈS PETIT ÉCRAN ===== */
    .faq-question {
        padding: 14px 12px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 14px 12px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* ===== TIMELINE TRÈS PETIT ÉCRAN ===== */
    .timeline::before {
        left: 14px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .timeline-content {
        padding: 14px;
    }
    
    .timeline-title {
        font-size: 0.95rem;
    }
    
    /* ===== PS TRÈS PETIT ÉCRAN ===== */
    .ps-content {
        padding: 24px 12px;
        margin: 0 12px;
    }
    
    /* ===== SCROLL TO TOP TRÈS PETIT ÉCRAN ===== */
    .scroll-to-top {
        bottom: 16px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* ===== EFFETS LUMINEUX TRÈS PETIT ÉCRAN ===== */
    /* Désactiver la plupart des effets lumineux pour performance */
    .section-title .accent-cursive {
        animation: none;
        text-shadow: 0 0 10px rgba(255, 189, 217, 0.2);
    }
    
    .pricing-card::before {
        animation: none;
        opacity: 0.3;
    }
    
    .calc-card::before {
        display: none;
    }
    
    .timeline-marker::after {
        display: none;
    }
    
    .quote-mark {
        animation: none;
    }
    
    .choice-star {
        animation: none;
    }
    
    .scroll-to-top {
        animation: none;
    }
    
    .hero-subtitle .highlight {
        animation: none;
        text-shadow: 0 0 8px rgba(255, 189, 217, 0.3);
    }
    
    .vision-proud .accent-cursive {
        animation: none;
        text-shadow: 0 0 10px rgba(255, 189, 217, 0.3);
    }
    
    .footer-info p {
        font-size: 0.85rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* =====================================================
   29. PRINT STYLES
   ===================================================== */
@media print {
    .navbar,
    .floating-elements,
    .scroll-to-top,
    .btn {
        display: none !important;
    }
    
    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
    
    .glass-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}