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

:root {
    --bleu-nuit: #0E2954;
    --bleu-clair: #1a4174;
    --dore: #E0C097;
    --dore-sombre: #c9a67a;
    --blanc: #FFFFFF;
    --noir: #000000;
    --gris-clair: #F8F9FA;
    --gris-moyen: #E9ECEF;
    --theme-primary: #0E2954;
    --theme-secondary: #E0C097;
    --theme-accent: #1a4174;
}

/* ===== THEMES SAISONNIERS ===== */
body[data-theme="noel"] {
    --bleu-nuit: #165B33;
    --bleu-clair: #1e7a45;
    --dore: #C41E3A;
    --dore-sombre: #a01828;
    --theme-primary: #165B33;
    --theme-secondary: #C41E3A;
    --theme-accent: #FFD700;
}

body[data-theme="valentine"] {
    --bleu-nuit: #C41E3A;
    --bleu-clair: #e02a4a;
    --dore: #FF69B4;
    --dore-sombre: #ff1493;
    --theme-primary: #C41E3A;
    --theme-secondary: #FF69B4;
    --theme-accent: #FFB6C1;
}

body[data-theme="halloween"] {
    --bleu-nuit: #1a1a1a;
    --bleu-clair: #2d2d2d;
    --dore: #FF6B35;
    --dore-sombre: #e05525;
    --theme-primary: #1a1a1a;
    --theme-secondary: #FF6B35;
    --theme-accent: #8B4513;
}

/* ========================================
   🎄 THÈME NOËL - IMMERSION COMPLÈTE
======================================== */

/* Neige tombante plus réaliste */
body[data-theme="noel"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, white 1px, transparent 1px),
        radial-gradient(circle, white 1px, transparent 1px),
        radial-gradient(circle, white 0.5px, transparent 0.5px),
        radial-gradient(circle, rgba(255,255,255,0.8) 2px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px);
    background-size: 250px 250px, 400px 400px, 150px 150px, 350px 350px, 200px 200px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 150px 50px;
    animation: snowfall 15s linear infinite, snowfall-2 20s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes snowfall {
    from { background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 150px 50px; }
    to { background-position: 0 250px, 40px 310px, 130px 520px, 70px 350px, 150px 300px; }
}

@keyframes snowfall-2 {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Effet givre sur les cartes */
body[data-theme="noel"] .pricing-card,
body[data-theme="noel"] .benefit-card,
body[data-theme="noel"] .encart,
body[data-theme="noel"] .example-card {
    position: relative;
    overflow: hidden;
}

body[data-theme="noel"] .pricing-card::before,
body[data-theme="noel"] .benefit-card::before,
body[data-theme="noel"] .encart::before,
body[data-theme="noel"] .example-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%
    );
    background-size: 200% 200%;
    animation: frost-shimmer 3s ease-in-out infinite;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

@keyframes frost-shimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Sapins décoratifs */
body[data-theme="noel"] .hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid rgba(22, 91, 51, 0.6);
    z-index: 1;
    animation: tree-sway 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

body[data-theme="noel"] .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 8%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid rgba(22, 91, 51, 0.5);
    z-index: 1;
    animation: tree-sway 5s ease-in-out infinite reverse;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

@keyframes tree-sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Background Noël avec étoiles */
body[data-theme="noel"] .hero-bg {
    background: linear-gradient(135deg, #0a3d1f 0%, #165B33 50%, #1e7a45 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Étoiles scintillantes */
body[data-theme="noel"] .hero-gradient::before,
body[data-theme="noel"] .hero-gradient::after {
    content: '⭐';
    position: absolute;
    font-size: 30px;
    animation: twinkle 2s ease-in-out infinite;
    text-shadow: 0 0 20px #FFD700;
}

body[data-theme="noel"] .hero-gradient::before {
    top: 15%;
    right: 10%;
}

body[data-theme="noel"] .hero-gradient::after {
    top: 25%;
    left: 15%;
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* ========================================
   💕 THÈME SAINT-VALENTIN - IMMERSION COMPLÈTE
======================================== */

/* Pétales de roses tombants */
body[data-theme="valentine"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse 8px 12px at 50% 50%, #FFB6C1 40%, transparent 50%),
        radial-gradient(ellipse 6px 10px at 50% 50%, #FF69B4 40%, transparent 50%),
        radial-gradient(ellipse 10px 14px at 50% 50%, #FFC0CB 40%, transparent 50%),
        radial-gradient(ellipse 7px 11px at 50% 50%, #FFB6C1 40%, transparent 50%);
    background-size: 300px 300px, 250px 250px, 350px 350px, 400px 400px;
    background-position: 0 0, 50px 100px, 100px 50px, 150px 200px;
    animation: petals-fall 25s linear infinite;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
}

@keyframes petals-fall {
    from {
        background-position: 0 -300px, 50px -200px, 100px -250px, 150px -100px;
        transform: rotate(0deg);
    }
    to {
        background-position: 0 100vh, 50px calc(100vh + 200px), 100px calc(100vh + 250px), 150px calc(100vh + 100px);
        transform: rotate(360deg);
    }
}

/* Effet bokeh romantique */
body[data-theme="valentine"]::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 105, 180, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 192, 203, 0.25) 0%, transparent 50%);
    animation: bokeh-pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes bokeh-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Bordures en cœurs */
body[data-theme="valentine"] .pricing-card,
body[data-theme="valentine"] .benefit-card,
body[data-theme="valentine"] .example-card {
    border: 3px solid transparent;
    background-image: 
        linear-gradient(white, white),
        repeating-linear-gradient(45deg, 
            #FF69B4 0px, #FF69B4 10px,
            #FFB6C1 10px, #FFB6C1 20px,
            #FF1493 20px, #FF1493 30px
        );
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: border-flow 3s linear infinite;
}

@keyframes border-flow {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 0, 30px 30px; }
}

/* Cœurs flottants multiples */
body[data-theme="valentine"] .hero::before,
body[data-theme="valentine"] .hero::after {
    position: absolute;
    font-size: 40px;
    animation: float-hearts 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.8));
}

body[data-theme="valentine"] .hero::before {
    content: '💕';
    top: 15%;
    left: 10%;
}

body[data-theme="valentine"] .hero::after {
    content: '💖';
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 8s;
}

@keyframes float-hearts {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) scale(1.2) rotate(10deg);
        opacity: 1;
    }
}

/* Background romantique */
body[data-theme="valentine"] .hero-bg {
    background: linear-gradient(135deg, 
        #8B0A1A 0%, 
        #C41E3A 30%,
        #E02A4A 60%,
        #FF1744 100%
    );
    background-size: 400% 400%;
    animation: romantic-gradient 12s ease infinite;
}

@keyframes romantic-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Lueur rose douce sur les éléments */
body[data-theme="valentine"] .btn-primary,
body[data-theme="valentine"] .pricing-card.featured {
    box-shadow: 
        0 0 20px rgba(255, 105, 180, 0.5),
        0 0 40px rgba(255, 105, 180, 0.3),
        0 0 60px rgba(255, 105, 180, 0.1);
    animation: pink-glow 2s ease-in-out infinite;
}

@keyframes pink-glow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 105, 180, 0.5),
            0 0 40px rgba(255, 105, 180, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 105, 180, 0.7),
            0 0 60px rgba(255, 105, 180, 0.5),
            0 0 90px rgba(255, 105, 180, 0.3);
    }
}

/* ========================================
   🎃 THÈME HALLOWEEN - IMMERSION COMPLÈTE
======================================== */

/* Brouillard au sol */
body[data-theme="halloween"]::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(139, 69, 19, 0.4) 0%,
        rgba(139, 69, 19, 0.2) 50%,
        transparent 100%
    );
    animation: fog-move 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 9998;
}

@keyframes fog-move {
    0%, 100% { 
        transform: translateX(0);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(50px);
        opacity: 0.8;
    }
}

/* Toiles d'araignées */
body[data-theme="halloween"]::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 49%, rgba(200, 200, 200, 0.3) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(200, 200, 200, 0.3) 50%, transparent 51%),
        radial-gradient(circle at 10% 10%, rgba(200, 200, 200, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(200, 200, 200, 0.5) 1px, transparent 1px);
    background-size: 150px 150px, 150px 150px, 150px 150px, 150px 150px;
    background-position: 0 0, 0 0, 75px 75px, 75px 75px;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.15;
}

/* Chauves-souris volantes multiples */
body[data-theme="halloween"] .hero::before,
body[data-theme="halloween"] .hero::after {
    position: absolute;
    font-size: 35px;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
}

body[data-theme="halloween"] .hero::before {
    content: '🦇';
    top: 15%;
    left: 5%;
    animation: bat-fly-left 12s ease-in-out infinite;
}

body[data-theme="halloween"] .hero::after {
    content: '🦇';
    top: 30%;
    right: 10%;
    animation: bat-fly-right 15s ease-in-out infinite;
}

@keyframes bat-fly-left {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scaleX(1);
    }
    25% { 
        transform: translate(100px, -50px) rotate(-15deg) scaleX(1);
    }
    50% { 
        transform: translate(150px, 30px) rotate(10deg) scaleX(-1);
    }
    75% { 
        transform: translate(50px, 60px) rotate(-5deg) scaleX(-1);
    }
}

@keyframes bat-fly-right {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scaleX(-1);
    }
    25% { 
        transform: translate(-120px, 40px) rotate(12deg) scaleX(-1);
    }
    50% { 
        transform: translate(-80px, -30px) rotate(-8deg) scaleX(1);
    }
    75% { 
        transform: translate(-150px, 20px) rotate(15deg) scaleX(1);
    }
}

/* Background sombre et mystérieux */
body[data-theme="halloween"] .hero-bg {
    background: linear-gradient(135deg, 
        #0d0d0d 0%,
        #1a1a1a 25%,
        #2d2d2d 50%,
        #1a1a1a 75%,
        #0d0d0d 100%
    );
    background-size: 400% 400%;
    animation: dark-gradient 20s ease infinite;
}

@keyframes dark-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Bordures déchirées */
body[data-theme="halloween"] .pricing-card,
body[data-theme="halloween"] .benefit-card,
body[data-theme="halloween"] .encart,
body[data-theme="halloween"] .example-card {
    border: none;
    box-shadow: 
        0 0 0 3px #FF6B35,
        0 0 30px rgba(255, 107, 53, 0.5),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

body[data-theme="halloween"] .pricing-card::before,
body[data-theme="halloween"] .benefit-card::before,
body[data-theme="halloween"] .encart::before,
body[data-theme="halloween"] .example-card::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.1) 10px,
        rgba(255, 107, 53, 0.1) 20px
    );
    pointer-events: none;
    z-index: -1;
    animation: stripes-move 1s linear infinite;
}

@keyframes stripes-move {
    from { background-position: 0 0; }
    to { background-position: 28px 28px; }
}

/* Citrouilles décoratives */
body[data-theme="halloween"] .section-header {
    position: relative;
    padding-top: 80px;
}

body[data-theme="halloween"] .section-header::before {
    content: '🎃';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    animation: pumpkin-glow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
}

@keyframes pumpkin-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
        transform: translateX(-50%) scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(255, 107, 53, 1));
        transform: translateX(-50%) scale(1.1);
    }
}

/* Éclairs de lumière orangée */
body[data-theme="halloween"] .hero-gradient::before,
body[data-theme="halloween"] .hero-gradient::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    animation: lightning-flash 5s ease-in-out infinite;
    pointer-events: none;
}

body[data-theme="halloween"] .hero-gradient::before {
    top: 10%;
    left: 15%;
}

body[data-theme="halloween"] .hero-gradient::after {
    bottom: 15%;
    right: 10%;
    animation-delay: 2.5s;
}

@keyframes lightning-flash {
    0%, 90%, 100% { opacity: 0; }
    91%, 93%, 95% { opacity: 1; }
    92%, 94% { opacity: 0.3; }
}

/* Ombres lugubres sur les cartes */
body[data-theme="halloween"] .pricing-card:hover,
body[data-theme="halloween"] .benefit-card:hover,
body[data-theme="halloween"] .example-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 0 0 3px #FF6B35,
        0 30px 60px rgba(255, 107, 53, 0.4),
        0 50px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(0, 0, 0, 0.7);
}

/* Curseur fantomatique */
body[data-theme="halloween"] .cursor-dot {
    background: #FF6B35;
    box-shadow: 0 0 20px #FF6B35;
}

body[data-theme="halloween"] .cursor-outline {
    border-color: #FF6B35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

/* Logo decoration pour les thèmes */
.theme-decoration {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

body[data-theme="noel"] .theme-decoration {
    opacity: 1;
}

body[data-theme="valentine"] .theme-decoration {
    opacity: 1;
}

body[data-theme="halloween"] .theme-decoration {
    opacity: 1;
}

/* +FIX BUG : Offre Confort visible en Saint-Valentin */
body[data-theme="valentine"] .pricing-card.featured {
    background: linear-gradient(135deg, var(--bleu-nuit), var(--bleu-clair)) padding-box,
        repeating-linear-gradient(45deg, 
            #FF69B4 0px, #FF69B4 10px,
            #FFB6C1 10px, #FFB6C1 20px,
            #FF1493 20px, #FF1493 30px
        ) border-box;
    border: 4px solid transparent;
    color: var(--blanc);
}

body[data-theme="valentine"] .pricing-card.featured .pricing-desc,
body[data-theme="valentine"] .pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

/* Particules adaptées aux thèmes */
body[data-theme="noel"] #particles {
    filter: hue-rotate(120deg) brightness(1.2);
}

body[data-theme="valentine"] #particles {
    filter: hue-rotate(300deg) brightness(1.1);
}

body[data-theme="halloween"] #particles {
    filter: hue-rotate(30deg) brightness(0.7);
}

/* Boutons selon les thèmes */
body[data-theme="noel"] .btn-primary {
    background: linear-gradient(135deg, #165B33 0%, #1e7a45 100%);
}

body[data-theme="noel"] .btn-primary:hover {
    background: #C41E3A;
}

body[data-theme="valentine"] .btn-primary {
    background: linear-gradient(135deg, #C41E3A 0%, #e02a4a 100%);
}

body[data-theme="valentine"] .btn-primary:hover {
    background: #FF69B4;
}

body[data-theme="halloween"] .btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body[data-theme="halloween"] .btn-primary:hover {
    background: #FF6B35;
}

/* Animations du badge selon le thème */
.hero-badge {
    transition: all 0.4s ease;
}

body[data-theme="noel"] .hero-badge {
    background: rgba(196, 30, 58, 0.15);
    color: #C41E3A;
    border-color: rgba(196, 30, 58, 0.3);
}

body[data-theme="valentine"] .hero-badge {
    background: rgba(255, 105, 180, 0.15);
    color: #FF69B4;
    border-color: rgba(255, 105, 180, 0.3);
}

body[data-theme="halloween"] .hero-badge {
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    border-color: rgba(255, 107, 53, 0.3);
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--bleu-nuit);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--blanc);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--dore);
    color: var(--bleu-nuit);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== CURSEUR PERSONNALISÉ ===== */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    border-radius: 50%;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--dore);
    opacity: 0;
}

.cursor-outline {
    width: 32px;
    height: 32px;
    border: 2px solid var(--dore);
    opacity: 0;
    transition: all 0.15s ease;
}

@media (max-width: 1024px), (hover: none) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

a:hover ~ .cursor-outline,
button:hover ~ .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(224, 192, 151, 0.1);
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 20px;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--blanc);
    max-width: 90%;
}

.loader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 700;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-bar {
    width: min(300px, 90%);
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.loader-progress {
    height: 100%;
    background: var(--dore);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-text {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gold {
    color: var(--dore);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--dore) 0%, var(--dore-sombre) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-bottom: 1px solid rgba(14, 41, 84, 0.05);
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled {
    padding: 4px 0;
    box-shadow: 0 4px 30px rgba(14, 41, 84, 0.08);
}

.nav-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px;
    border-radius: 12px;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(224, 192, 151, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .logo::before {
    background: linear-gradient(135deg, rgba(14, 41, 84, 0.05) 0%, rgba(224, 192, 151, 0.05) 100%);
}

.logo:hover::before {
    opacity: 1;
}

.logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-icon {
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(14, 41, 84, 0.2);
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(224, 192, 151, 0.3) 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.logo:hover .logo-icon::before {
    transform: translateX(100%);
}

.letter-c,
.letter-n {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--blanc);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.letter-c {
    transform: translateX(0);
}

.letter-n {
    opacity: 0;
    transform: translateX(-10px);
}

.logo:hover .letter-c {
    opacity: 0;
    transform: translateX(10px);
}

.logo:hover .letter-n {
    opacity: 1;
    transform: translateX(0);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--blanc);
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .logo-text {
    color: var(--bleu-nuit);
    text-shadow: none;
}

.logo-tagline {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dore);
    font-weight: 600;
    margin-top: -2px;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-tagline {
    color: var(--dore);
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.navbar.scrolled .nav-link {
    color: var(--bleu-nuit);
    text-shadow: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(224, 192, 151, 0.15) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .nav-link::before {
    background: linear-gradient(135deg, rgba(14, 41, 84, 0.08) 0%, rgba(224, 192, 151, 0.08) 100%);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--dore);
    transform: translateY(-2px);
}

.navbar.scrolled .nav-link:hover {
    color: var(--dore);
}

.nav-link.active {
    color: var(--dore);
    font-weight: 600;
}

.nav-link.active::before {
    opacity: 1;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
    color: var(--blanc);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    margin-left: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(14, 41, 84, 0.2);
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dore) 0%, var(--dore-sombre) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 192, 151, 0.4);
}

.btn-cta:hover .btn-text {
    color: var(--bleu-nuit);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-cta:hover .btn-icon svg {
    transform: translateX(4px);
}

.nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bleu-nuit) 0%, var(--dore) 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--blanc);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--bleu-nuit);
    box-shadow: none;
}

.mobile-menu-btn:hover span {
    background: var(--dore);
}

/* ===== THEME SELECTOR ===== */
.theme-selector {
    position: relative;
    margin-left: 16px;
}

.theme-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar.scrolled .theme-btn {
    background: rgba(14, 41, 84, 0.05);
    border-color: rgba(14, 41, 84, 0.1);
}

.theme-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: rgba(224, 192, 151, 0.2);
    border-color: var(--dore);
}

.theme-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.theme-btn:hover .theme-icon {
    transform: scale(1.2);
}

.theme-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--blanc);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(14, 41, 84, 0.15);
    padding: 16px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 2px solid rgba(14, 41, 84, 0.05);
}

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

.theme-dropdown-header {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dore);
    margin-bottom: 12px;
    padding: 0 8px;
}

.theme-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 4px;
}

.theme-option:last-child {
    margin-bottom: 0;
}

.theme-option:hover {
    background: linear-gradient(135deg, rgba(14, 41, 84, 0.05) 0%, rgba(224, 192, 151, 0.05) 100%);
    transform: translateX(4px);
}

.theme-option.active {
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
    color: var(--blanc);
}

.theme-option.active .theme-name {
    color: var(--blanc);
}

.theme-emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.theme-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--bleu-nuit);
    transition: color 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
}

.btn-primary {
    background: var(--bleu-nuit);
    color: var(--blanc);
    box-shadow: 0 4px 20px rgba(14, 41, 84, 0.2);
}

.btn-primary:hover {
    background: var(--dore);
    color: var(--bleu-nuit);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(224, 192, 151, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--bleu-nuit);
    border-color: var(--bleu-nuit);
}

.btn-outline:hover {
    background: var(--bleu-nuit);
    color: var(--blanc);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--blanc);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--dore);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#particles {
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(224, 192, 151, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(224, 192, 151, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: var(--blanc);
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(224, 192, 151, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 192, 151, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dore);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--dore);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    margin-right: 16px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }
.word:nth-child(4) { animation-delay: 0.4s; }
.word:nth-child(5) { animation-delay: 0.5s; }

.highlight {
    background: var(--dore);
    color: var(--bleu-nuit);
    padding: 4px 20px;
    border-radius: 12px;
    position: relative;
}

.highlight::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--dore);
    border-radius: 14px;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.word-dot {
    color: var(--dore);
    font-size: 120px;
    line-height: 0.5;
}

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

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 64px;
    padding: 32px 0;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--dore);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
    100% { top: 8px; opacity: 1; }
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    padding: 120px 0;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gris-clair);
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dore);
    margin-bottom: 16px;
    position: relative;
    padding: 0 40px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--dore);
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(14, 41, 84, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== NOUVELLE SECTION EXEMPLES ===== */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 32px;
}

.example-card {
    background: var(--blanc);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    border: 2px solid rgba(14, 41, 84, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(224, 192, 151, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.example-card:hover {
    transform: translateY(-10px);
    border-color: var(--dore);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.example-card:hover::before {
    opacity: 1;
}

.example-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

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

.example-title {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--bleu-nuit);
    position: relative;
    z-index: 1;
}

.example-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(14, 41, 84, 0.7);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.example-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.tag {
    background: rgba(224, 192, 151, 0.2);
    color: var(--dore-sombre);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(224, 192, 151, 0.3);
}

.example-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bleu-nuit);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border: 2px solid var(--bleu-nuit);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.example-link:hover {
    background: var(--bleu-nuit);
    color: var(--blanc);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(14, 41, 84, 0.2);
}

.example-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.example-link:hover svg {
    transform: translateX(4px) translateY(-4px);
}

/* ===== OFFRES ===== */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-card {
    background: var(--blanc);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    border: 2px solid rgba(14, 41, 84, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(224, 192, 151, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--dore);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.pricing-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 192, 151, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover .card-glow {
    opacity: 1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
    color: var(--blanc);
    transform: scale(1.05);
    border-color: var(--dore);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--dore);
    color: var(--bleu-nuit);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(224, 192, 151, 0.4);
}

.popular-badge svg {
    width: 16px;
    height: 16px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.pricing-name {
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    opacity: 0.8;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    text-align: center;
    padding: 32px 0;
    border-top: 2px solid rgba(14, 41, 84, 0.1);
    border-bottom: 2px solid rgba(14, 41, 84, 0.1);
    margin-bottom: 32px;
}

.pricing-card.featured .pricing-price {
    border-color: rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--dore);
    font-family: 'Poppins', sans-serif;
}

.price-currency {
    font-size: 28px;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 16px;
    border-bottom: 1px solid rgba(14, 41, 84, 0.05);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

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

.pricing-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--dore);
    margin-top: 2px;
}

.pricing-note {
    background: var(--blanc);
    border: 2px solid var(--dore);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.note-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.pricing-note p {
    font-size: 16px;
    margin: 0;
    color: var(--bleu-nuit);
}

/* ===== OPTION BOX ===== */
.option-box {
    background: linear-gradient(135deg, rgba(224, 192, 151, 0.1) 0%, rgba(14, 41, 84, 0.05) 100%);
    border: 2px solid var(--dore);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.option-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.option-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--bleu-nuit);
}

.option-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(14, 41, 84, 0.8);
    margin-bottom: 16px;
}

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

.price-highlight {
    font-size: 32px;
    font-weight: 800;
    color: var(--dore);
    font-family: 'Poppins', sans-serif;
}

.option-note {
    font-size: 14px;
    font-style: italic;
    color: rgba(14, 41, 84, 0.6);
    margin: 0;
}

.pricing-features li.bonus {
    background: rgba(224, 192, 151, 0.1);
    border: 1px solid rgba(224, 192, 151, 0.3);
    font-weight: 600;
}

.pricing-features li.bonus svg {
    fill: var(--dore);
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--gris-clair);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: var(--blanc);
    border-color: var(--dore);
    box-shadow: 0 12px 32px rgba(14, 41, 84, 0.12);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--bleu-nuit);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(14, 41, 84, 0.7);
}

/* ===== PROCESSUS / TIMELINE ===== */
.processus {
    background: var(--gris-clair);
}

.timeline {
    max-width: 800px;
    margin: 0 auto 64px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 28px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 20px rgba(14, 41, 84, 0.3);
    position: relative;
    z-index: 1;
}

.marker-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(to bottom, var(--bleu-nuit) 0%, rgba(14, 41, 84, 0.2) 100%);
    margin-top: 16px;
}

.timeline-content {
    background: var(--blanc);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--dore);
    box-shadow: 0 4px 16px rgba(14, 41, 84, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(14, 41, 84, 0.12);
}

.timeline-badge {
    display: inline-block;
    background: var(--bleu-nuit);
    color: var(--blanc);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.timeline-badge.success {
    background: var(--dore);
    color: var(--bleu-nuit);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--bleu-nuit);
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(14, 41, 84, 0.7);
    margin: 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.requirement-box,
.results-box {
    background: var(--blanc);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(14, 41, 84, 0.08);
}

.requirement-box h3,
.results-box h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--bleu-nuit);
}

.requirement-box ul,
.results-box ul {
    list-style: none;
    padding: 0;
}

.requirement-box li,
.results-box li {
    padding: 12px 0;
    font-size: 16px;
    color: rgba(14, 41, 84, 0.8);
    border-bottom: 1px solid rgba(14, 41, 84, 0.1);
}

.requirement-box li:last-child,
.results-box li:last-child {
    border-bottom: none;
}

.req-note {
    margin-top: 20px;
    font-size: 14px;
    font-style: italic;
    color: var(--dore);
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--blanc);
}

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

.faq-item {
    background: var(--gris-clair);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(14, 41, 84, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--bleu-nuit);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--dore);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--bleu-nuit);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: var(--dore);
}

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

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

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(14, 41, 84, 0.8);
    margin: 0;
}

/* ===== ENCARTS MARKETING ===== */
.encarts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.encart {
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.encart.guarantee {
    background: linear-gradient(135deg, rgba(14, 41, 84, 0.05) 0%, rgba(224, 192, 151, 0.05) 100%);
    border: 2px solid var(--bleu-nuit);
}

.encart.events {
    background: linear-gradient(135deg, rgba(224, 192, 151, 0.1) 0%, rgba(224, 192, 151, 0.05) 100%);
    border: 2px solid var(--dore);
}

.encart.trust {
    background: linear-gradient(135deg, rgba(14, 41, 84, 0.03) 0%, rgba(224, 192, 151, 0.03) 100%);
    border: 2px solid rgba(14, 41, 84, 0.2);
}

.encart:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(14, 41, 84, 0.15);
}

.encart-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.encart h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--bleu-nuit);
}

.encart p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(14, 41, 84, 0.7);
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--gris-clair);
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    text-align: center;
}

.about-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(14, 41, 84, 0.3);
    position: relative;
}

.about-avatar::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, var(--dore) 0%, var(--dore-sombre) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.avatar-initial {
    font-size: 80px;
    font-weight: 800;
    color: var(--blanc);
    font-family: 'Poppins', sans-serif;
}

.about-text .section-label {
    text-align: left;
    padding: 0;
    margin-bottom: 16px;
}

.about-text .section-label::before,
.about-text .section-label::after {
    display: none;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 24px;
    font-size: 36px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(14, 41, 84, 0.8);
    margin-bottom: 32px;
}

.testimonial {
    background: var(--blanc);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--dore);
    box-shadow: 0 8px 24px rgba(14, 41, 84, 0.08);
}

.testimonial-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--bleu-nuit);
    margin-bottom: 12px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: var(--dore);
    font-weight: 600;
    margin: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(14, 41, 84, 0.8);
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--gris-clair);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateX(10px);
    background: var(--blanc);
    box-shadow: 0 10px 30px rgba(14, 41, 84, 0.1);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-clair) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--bleu-nuit);
}

.method-content a {
    color: var(--dore);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--dore-sombre);
}

.method-time {
    font-size: 14px;
    color: rgba(14, 41, 84, 0.6);
    display: block;
    margin-top: 4px;
}

.highlight-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--dore);
}

.contact-form-wrapper {
    background: var(--gris-clair);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(14, 41, 84, 0.08);
}

.form-row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--bleu-nuit);
    font-size: 14px;
}

.required {
    color: var(--dore);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(14, 41, 84, 0.1);
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background: var(--blanc);
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dore);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dore);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-border,
.form-group textarea:focus ~ .input-border,
.form-group select:focus ~ .input-border {
    width: 100%;
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(14, 41, 84, 0.6);
    margin-top: 16px;
}

.form-notice svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bleu-nuit);
    color: var(--blanc);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
}

.footer-col.brand {
    max-width: 350px;
}

.footer-logo {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.footer-logo span:first-child {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blanc);
}

.tagline {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dore);
    font-weight: 600;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dore);
    color: var(--bleu-nuit);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dore);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--dore);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--dore);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 14px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--dore);
}

.siret {
    opacity: 0.5;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--bleu-nuit);
    color: var(--blanc);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 41, 84, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dore);
    color: var(--bleu-nuit);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos].aos-animate {
    transform: translate(0) scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .theme-selector {
        position: static;
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }

    .theme-btn {
        width: 100%;
        height: 48px;
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .theme-btn::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .theme-dropdown.active ~ .theme-btn::after {
        transform: rotate(180deg);
    }

    .theme-dropdown {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 0 16px;
    }
    
    .theme-dropdown.active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        padding: 16px;
        margin-top: 8px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: -10px 0 50px rgba(14, 41, 84, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 4px;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px 20px;
        text-align: left;
        font-size: 16px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 16px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 48px;
    }

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

    .pricing-container,
    .examples-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 0;
    }

    .option-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .marker-circle {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .requirements-grid,
    .encarts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text .section-label,
    .about-text .section-title {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col.brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }

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

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .letter-c,
    .letter-n {
        font-size: 20px;
    }
    
    .examples-grid,
    .pricing-container,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body[data-theme="noel"]::before {
        background-size: 150px 150px, 200px 200px, 100px 100px, 180px 180px, 120px 120px;
        animation-duration: 20s;
    }

    body[data-theme="valentine"]::before {
        background-size: 200px 200px, 150px 150px, 220px 220px, 250px 250px;
        animation-duration: 30s;
    }

    body[data-theme="halloween"] .hero::before,
    body[data-theme="halloween"] .hero::after {
        font-size: 28px;
    }

    body[data-theme="noel"] .hero::before,
    body[data-theme="noel"] .hero::after {
        border-left-width: 30px;
        border-right-width: 30px;
        border-bottom-width: 60px;
    }

    body[data-theme="valentine"] .hero::before,
    body[data-theme="valentine"] .hero::after {
        font-size: 30px;
    }

    body[data-theme="halloween"] .section-header::before {
        font-size: 45px;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .word {
        margin-right: 8px;
    }

    .word-dot {
        font-size: 80px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
        padding: 24px 0;
    }
    
    .stat-number {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }
    
    .example-card {
        padding: 32px 24px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .timeline-content {
        padding: 24px 20px;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col.brand {
        grid-column: span 1;
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    .pricing-container,
    .examples-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .example-card,
    .benefit-card,
    .pricing-card {
        padding: 24px 20px;
    }
    
    .example-icon,
    .pricing-icon,
    .benefit-icon {
        font-size: 48px;
    }
    
    .example-title,
    .pricing-name,
    .benefit-card h3 {
        font-size: 22px;
    }
    
    .example-desc,
    .pricing-desc,
    .benefit-card p {
        font-size: 15px;
    }
    
    .price-amount {
        font-size: 48px;
    }
    
    .price-currency {
        font-size: 24px;
    }

    .timeline-item {
        grid-template-columns: 36px 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .marker-circle {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .timeline-content {
        padding: 20px 16px;
    }

    .timeline-content h3 {
        font-size: 20px;
    }
    
    .timeline-content p {
        font-size: 15px;
    }
    
    .timeline-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px 20px !important;
    }
    
    .faq-answer p {
        font-size: 15px;
    }

    .encarts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .encart {
        padding: 24px 20px;
    }
    
    .encart-icon {
        font-size: 40px;
    }
    
    .encart h4 {
        font-size: 17px;
    }
    
    .encart p {
        font-size: 14px;
    }
    
    .option-box {
        padding: 24px 20px;
    }
    
    .option-icon {
        font-size: 48px;
    }
    
    .option-content h3 {
        font-size: 20px;
    }
    
    .price-highlight {
        font-size: 28px;
    }

    .about-avatar {
        width: 140px;
        height: 140px;
    }

    .avatar-initial {
        font-size: 60px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .method-card {
        padding: 20px;
        gap: 16px;
    }
    
    .method-icon {
        width: 48px;
        height: 48px;
    }
    
    .method-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .method-content h4 {
        font-size: 15px;
    }
    
    .method-content a {
        font-size: 16px;
    }
    
    .highlight-text {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .footer-top {
        padding: 60px 0 32px;
    }
    
    .footer-grid {
        gap: 32px;
    }
    
    .footer-logo span:first-child {
        font-size: 24px;
    }
    
    .footer-desc {
        font-size: 14px;
    }
    
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .nav-links {
        max-width: 100%;
        padding: 90px 24px 24px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 14px 16px;
    }
    
    .btn-cta {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .scroll-indicator {
        bottom: 24px;
        font-size: 10px;
    }
    
    .mouse {
        width: 20px;
        height: 34px;
    }
    
    body[data-theme="noel"]::before,
    body[data-theme="valentine"]::before,
    body[data-theme="halloween"]::before {
        opacity: 0.4;
    }
    
    body[data-theme="noel"] .hero::before,
    body[data-theme="noel"] .hero::after {
        display: none;
    }
    
    body[data-theme="valentine"] .hero::before,
    body[data-theme="valentine"] .hero::after {
        font-size: 24px;
    }
    
    body[data-theme="halloween"] .hero::before,
    body[data-theme="halloween"] .hero::after {
        font-size: 24px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .mobile-menu-btn,
    .scroll-indicator,
    .back-to-top,
    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        color: var(--noir);
    }
}

/* ===== TRÈS GRANDS ÉCRANS ===== */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 84px;
    }
    
    .section-title {
        font-size: 56px;
    }
    
    .pricing-container,
    .examples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== OPTIMISATION LANDSCAPE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
}