/* ============================
   MK Detailling - Premium Dark UI
   Fonts: Space Grotesk, Inter, Bebas Neue
   Colors: #0a0a0a, #ff6600, #00c8ff
   ============================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #050505;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #161616;
    --gray-1: #1e1e1e;
    --gray-2: #2a2a2a;
    --gray-3: #444;
    --gray-4: #666;
    --gray-5: #999;
    --white: #f0f0f0;
    --white-soft: rgba(240,240,240,0.7);
    --orange: #ff6600;
    --orange-soft: rgba(255,102,0,0.15);
    --orange-glow: rgba(255,102,0,0.35);
    --cyan: #00c8ff;
    --cyan-soft: rgba(0,200,255,0.15);
    --cyan-glow: rgba(0,200,255,0.35);
    --gradient: linear-gradient(135deg, var(--orange), var(--cyan));
    --glass-bg: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.06);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Bebas Neue', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
}

::selection {
    background: var(--orange);
    color: var(--dark);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Toutes les sections au-dessus du fond */
section, footer, .marquee {
    position: relative;
    z-index: 1;
}

/* Séparateurs lumineux entre sections */
/* Séparateurs supprimés */

/* ============================
   LOADER
   ============================ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader.hidden {
    pointer-events: none;
    visibility: hidden;
}

/* Texte reveal */
.loader-text-reveal {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-line {
    display: flex;
    justify-content: center;
}

.loader-line {
    overflow: hidden;
}

.loader-line span {
    display: block;
    transform: translateY(110%);
    animation: slideUp 0.6s var(--ease) forwards;
}

.loader-logo-img {
    height: clamp(80px, 15vw, 160px);
    width: auto;
}

.line-1 span {
    animation-delay: 0.3s;
}

.line-3 span {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 300;
    color: var(--gray-4);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 16px;
    animation-delay: 0.9s;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

/* Wipe - rideau qui remonte pour révéler le site */
.loader-wipe {
    position: absolute;
    inset: 0;
    background: var(--black);
    z-index: 1;
    transform: scaleY(0);
    transform-origin: bottom;
}

.loader.exit .loader-line span {
    animation: slideOut 0.4s var(--ease) forwards;
}

.loader.exit .line-1 span { animation-delay: 0s; }
.loader.exit .line-3 span { animation-delay: 0.08s; }

@keyframes slideOut {
    to { transform: translateY(-110%); }
}

.loader.exit {
    animation: loaderFadeOut 0.6s var(--ease) 0.5s forwards;
}

@keyframes loaderFadeOut {
    to { opacity: 0; }
}

/* ============================
   CUSTOM CURSOR
   ============================ */
@media (hover: hover) and (pointer: fine) {
    .cursor {
        width: 8px;
        height: 8px;
        background: var(--white);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 100000;
        transition: transform 0.1s, background 0.2s;
        mix-blend-mode: difference;
    }

    .cursor-follower {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 100000;
        transition: transform 0.3s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
    }

    .cursor-follower.hover {
        width: 56px;
        height: 56px;
        border-color: var(--orange);
    }

    body { cursor: none; }
    a, button, .magnetic { cursor: none; }
}

/* ============================
   BACKGROUND SYSTEM
   ============================ */
.bg-system {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Grid étendue sur tout le site */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.6;
}

/* Orbes de lumière ambiante */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
    transition: transform 0.1s linear;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,102,0,0.12) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,255,0.10) 0%, transparent 70%);
    top: 40%;
    right: -150px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.bg-orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,102,0,0.08) 0%, transparent 70%);
    bottom: 20%;
    left: -200px;
    animation: orbFloat3 22s ease-in-out infinite;
}

.bg-orb-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,200,255,0.07) 0%, transparent 70%);
    bottom: -100px;
    right: 10%;
    animation: orbFloat4 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(80px, 120px); }
    50% { transform: translate(40px, 60px); }
    75% { transform: translate(-40px, 80px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-60px, -80px); }
    50% { transform: translate(-100px, 40px); }
    75% { transform: translate(30px, -60px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(100px, -40px); }
    50% { transform: translate(60px, -80px); }
    75% { transform: translate(-30px, -20px); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-50px, 60px); }
    50% { transform: translate(30px, -40px); }
    75% { transform: translate(-80px, 20px); }
}

/* Particules */
.bg-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* Grain overlay */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ============================
   SECTION HEADER
   ============================ */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-5);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-animated {
    background: linear-gradient(90deg, var(--orange), var(--cyan), var(--orange), var(--cyan));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease infinite;
    filter: drop-shadow(0 0 20px rgba(255,102,0,0.3));
    text-shadow: none;
}

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

.section-subtitle {
    color: var(--gray-5);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================
   GLASS
   ============================ */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange), #ff8533);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--orange-glow);
}

.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-2);
    padding: 15px 31px;
}

.btn-ghost:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.5s var(--ease);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.nav-logo img {
    height: 100px;
    width: auto;
    transition: opacity 0.3s;
}

.nav-logo:hover img { opacity: 0.8; }

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray-5);
    transition: color 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border: 1px solid var(--gray-2);
    border-radius: 60px;
    color: var(--white);
    transition: all 0.4s var(--ease);
}

.nav-cta:hover {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 0 20px var(--orange-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Wall de 3 vidéos côte à côte */
.hero-video-wall {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    z-index: 0;
    overflow: hidden;
}

.hero-video-wall video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.15);
}

.hero-video-wall video:nth-child(2) {
    filter: brightness(0.35) saturate(1.2);
}

.hero-video-wall video:nth-child(3) {
    filter: brightness(0.3) saturate(1.15);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 60% at center, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.75) 80%, var(--dark) 100%),
        linear-gradient(180deg, rgba(5,5,5,0.3) 0%, transparent 40%, rgba(5,5,5,0.85) 100%);
}

/* Fondu horizontal entre les 3 vidéos (masque les jointures) */
.hero-video-wall::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            transparent 0%,
            transparent 28%,
            rgba(10,10,10,0.5) 33.33%,
            transparent 38%,
            transparent 62%,
            rgba(10,10,10,0.5) 66.66%,
            transparent 72%,
            transparent 100%
        );
    filter: blur(30px);
}

.hero-video-wall video {
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-video-wall video:first-child {
    mask-image: linear-gradient(90deg, black 0%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 92%, transparent 100%);
}

.hero-video-wall video:last-child {
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 100%);
}

@media (max-width: 768px) {
    .hero-video-wall {
        grid-template-columns: 1fr;
    }
    .hero-video-wall video:nth-child(2),
    .hero-video-wall video:nth-child(3) {
        display: none;
    }
    .hero-video-wall::before,
    .hero-video-wall::after {
        display: none;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, var(--orange-glow) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 60%, var(--cyan-glow) 0%, transparent 70%);
    opacity: 0.4;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.5; transform: scale(1.05); }
}

/* hero-grid-pattern supprimé - grid globale via bg-system */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 24px 0;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 60px;
    background: rgba(10,10,10,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(240,240,240,0.95);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4);
}

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

.hero-title .word {
    display: inline-block;
}

.hero-slogan {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(240,240,240,0.85);
    margin-bottom: 48px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-4);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gray-4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================
   MARQUEE
   ============================ */
.marquee {
    padding: 20px 0;
    background: rgba(10,10,10,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    font-family: var(--font-accent);
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--gray-4);
}

.marquee-track .separator {
    color: var(--orange);
}

.marquee-star {
    color: var(--orange);
    font-size: 0.8rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 60px;
    transition: all 0.3s var(--ease);
}

.trust-badge:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.trust-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trustpilot-logo {
    background: rgba(0,182,122,0.1);
}

.google-logo {
    background: rgba(255,255,255,0.05);
}

.trust-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.trust-text {
    font-size: 0.75rem;
    color: var(--gray-5);
    font-weight: 300;
}

.trust-text strong {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================
   SERVICES
   ============================ */
.services {
    padding: 56px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.service-card {
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

/* Carte bleue (intérieur / extérieur) */
.service-card.cyan-card .service-icon-wrap {
    color: var(--cyan);
}

.service-card.cyan-card:hover {
    border-color: rgba(0,200,255,0.25);
    box-shadow: 0 24px 64px rgba(0,200,255,0.08);
}

.service-card.cyan-card:hover .service-icon-wrap {
    background: var(--cyan);
    color: var(--dark);
}

.service-card.cyan-card li::before {
    background: var(--cyan);
}

.service-card.cyan-card .service-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* Carte orange (prestation complète) */
.service-card.featured {
    border-color: rgba(255,102,0,0.2);
    background: linear-gradient(180deg, rgba(255,102,0,0.06) 0%, var(--glass-bg) 100%);
}

.service-card.featured:hover {
    border-color: rgba(255,102,0,0.4);
    box-shadow: 0 24px 64px rgba(255,102,0,0.1);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.featured-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 60px;
    background: var(--orange-soft);
    color: var(--orange);
    margin-bottom: 20px;
}

.service-icon-wrap {
    min-width: 56px;
    height: 56px;
    padding: 0 16px;
    border-radius: 14px;
    background: var(--gray-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--orange);
    transition: all 0.4s var(--ease);
}

.service-card.featured .service-icon-wrap {
    background: var(--orange-soft);
    padding: 0 20px;
    border: 1px solid rgba(255,102,0,0.3);
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 15px var(--orange-glow), 0 0 30px rgba(255,102,0,0.1); }
    50% { box-shadow: 0 0 25px var(--orange-glow), 0 0 50px rgba(255,102,0,0.2); }
}

.service-card:hover .service-icon-wrap {
    background: var(--orange);
    color: var(--white);
}

.service-tag-wrap {
    margin-bottom: 24px;
}

.service-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 60px;
    background: var(--gray-1);
    color: var(--cyan);
    border: 1px solid rgba(0,200,255,0.15);
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-tag {
    background: var(--cyan-soft);
    border-color: rgba(0,200,255,0.3);
}

.featured-service-tag {
    color: var(--orange);
    border-color: rgba(255,102,0,0.3);
    background: var(--orange-soft);
    animation: glowPulse 2.5s ease-in-out infinite;
}

.service-card:hover .featured-service-tag {
    background: rgba(255,102,0,0.2);
    border-color: rgba(255,102,0,0.5);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.service-card ul {
    margin-bottom: 28px;
}

.service-card li {
    padding: 8px 0;
    color: var(--gray-5);
    font-size: 0.9rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.service-card.featured li::before {
    background: var(--cyan);
}

/* Description texte (prestation complète) */
.service-description {
    color: var(--gray-5);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Encadré "Ce qui est possible" */
.service-includes {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.includes-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray-4);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-includes ul {
    margin-bottom: 0;
}

/* Prix */
.service-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.price-range {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.featured-price {
    color: var(--orange);
}

.price-note {
    font-size: 0.75rem;
    color: var(--gray-4);
    font-weight: 300;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-5);
    letter-spacing: 0.5px;
}

.service-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-5);
    transition: all 0.3s var(--ease);
}

.service-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: rotate(0deg);
}

.services-note {
    text-align: center;
    color: var(--gray-4);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ============================
   ZONES
   ============================ */
.zones {
    padding: 56px 0;
    background: transparent;
}

/* ============================
   COMPTEURS
   ============================ */
.counters {
    padding: 56px 0;
    background: transparent;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.counter-item {
    padding: 24px 16px;
}

.counter-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-suffix {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-5);
}

.counter-item p {
    font-size: 0.8rem;
    color: var(--gray-4);
    font-weight: 300;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .counter-value {
        font-size: 2.4rem;
    }
}

/* ============================
   PARCOURS CLIENT
   ============================ */
.parcours {
    padding: 56px 0;
    background: transparent;
}

.parcours-timeline {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

/* Ligne verticale qui se dessine au scroll */
.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: transparent;
    z-index: 0;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--progress, 0%);
    background: linear-gradient(180deg, var(--orange), var(--cyan));
    box-shadow: 0 0 12px var(--orange-glow), 0 0 24px rgba(255,102,0,0.1);
    border-radius: 2px;
}

/* Steps */
.parcours-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.parcours-step.step-active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.parcours-step:last-child {
    margin-bottom: 0;
}

/* Numéro avec icône auto */
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-1);
    border: 2px solid var(--gray-3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.5s var(--ease);
}

.step-active .step-number {
    border-color: var(--orange);
    box-shadow: 0 0 20px var(--orange-glow);
    background: var(--dark);
}

.step-active:nth-child(even) .step-number {
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.step-number svg {
    color: var(--gray-4);
    transition: color 0.5s var(--ease);
}

.step-active .step-number svg {
    color: var(--orange);
}

.step-active:nth-child(even) .step-number svg {
    color: var(--cyan);
}

/* Contenu */
.step-content {
    flex: 1;
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    transition: all 0.4s var(--ease);
    position: relative;
}

.step-active .step-content {
    border-color: rgba(255,255,255,0.08);
}

.step-content:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

.step-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-4);
    margin-bottom: 8px;
    transition: color 0.4s;
}

.step-active .step-tag {
    color: var(--orange);
}

.step-active:nth-child(even) .step-tag {
    color: var(--cyan);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--gray-5);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .parcours-timeline {
        max-width: 100%;
    }

    .step-number {
        width: 44px;
        height: 44px;
    }

    .timeline-line {
        left: 22px;
    }

    .step-content {
        padding: 16px 18px;
    }
}

/* Zone pin icon */
.zone-pin {
    color: var(--cyan);
    margin-bottom: 16px;
}

/* CTA FAQ zone */
.zone-faq {
    text-align: center;
    margin-top: 32px;
}

.zone-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-5);
    transition: all 0.4s var(--ease);
}

.zone-faq-link:hover {
    color: var(--white);
    border-color: rgba(0,200,255,0.2);
    transform: translateY(-2px);
}

.zone-faq-link svg:first-child {
    color: var(--cyan);
    flex-shrink: 0;
}

.faq-arrow {
    opacity: 0.4;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.zone-faq-link:hover .faq-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Zones layout : carte + infos */
.zones-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* Panel infos prérequis */
.zones-info-panel {
    max-width: 600px;
    text-align: center;
}

.zones-info-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.zones-info-title svg {
    color: var(--cyan);
}

.zones-info-desc {
    color: var(--gray-5);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 24px;
}

.prereq-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.prereq-card {
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.prereq-card:nth-child(1):hover {
    transform: translateY(-4px);
    border-color: rgba(56,182,255,0.25);
    box-shadow: 0 12px 40px rgba(56,182,255,0.1);
}

.prereq-card:nth-child(2):hover {
    transform: translateY(-4px);
    border-color: rgba(255,214,0,0.25);
    box-shadow: 0 12px 40px rgba(255,214,0,0.08);
}

.prereq-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
}

/* Eau - bleu avec effet goutte */
.prereq-card:nth-child(1) .prereq-icon {
    background: rgba(56, 182, 255, 0.12);
    color: #38b6ff;
    animation: waterPulse 3s ease-in-out infinite;
}

@keyframes waterPulse {
    0%, 100% { box-shadow: 0 0 16px rgba(56,182,255,0.3), 0 0 32px rgba(56,182,255,0.12); }
    50% { box-shadow: 0 0 28px rgba(56,182,255,0.5), 0 0 56px rgba(56,182,255,0.2); }
}

/* Ondes concentriques autour de l'icône eau */
.prereq-card:nth-child(1) .prereq-icon::before,
.prereq-card:nth-child(1) .prereq-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(56,182,255,0.3);
    animation: waterRing 3s ease-out infinite;
}

.prereq-card:nth-child(1) .prereq-icon::after {
    inset: -4px;
    animation-delay: 1s;
}

@keyframes waterRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Électricité - jaune avec effet éclair */
.prereq-card:nth-child(2) .prereq-icon {
    background: rgba(255, 214, 0, 0.12);
    color: #ffd600;
    animation: boltPulse 3s ease-in-out infinite;
}

@keyframes boltPulse {
    0%, 100% { box-shadow: 0 0 16px rgba(255,214,0,0.3), 0 0 32px rgba(255,214,0,0.12); }
    50% { box-shadow: 0 0 28px rgba(255,214,0,0.5), 0 0 56px rgba(255,214,0,0.2); }
}

/* Flash effect */
.prereq-card:nth-child(2) .prereq-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,214,0,0.3) 0%, transparent 70%);
    animation: boltFlash 4s ease-in-out infinite;
    opacity: 0;
}

@keyframes boltFlash {
    0%, 80%, 100% { opacity: 0; transform: scale(1); }
    83% { opacity: 1; transform: scale(1.5); }
    85% { opacity: 0; transform: scale(1); }
    87% { opacity: 0.9; transform: scale(1.3); }
    89% { opacity: 0; transform: scale(1); }
    91% { opacity: 0.5; transform: scale(1.2); }
    93% { opacity: 0; }
}

/* Sparks effet étincelles */
.prereq-card:nth-child(2)::before,
.prereq-card:nth-child(2)::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #ffd600;
}

.prereq-card:nth-child(2)::before {
    top: 30%;
    right: 30%;
    animation: spark1 4s ease-out infinite;
    opacity: 0;
}

.prereq-card:nth-child(2)::after {
    top: 35%;
    left: 32%;
    animation: spark2 4s ease-out infinite 0.2s;
    opacity: 0;
}

@keyframes spark1 {
    80%, 100% { opacity: 0; }
    83% { opacity: 1; transform: translate(10px, -10px) scale(1.5); }
    86% { opacity: 0; transform: translate(18px, -18px) scale(0.5); }
}

@keyframes spark2 {
    80%, 100% { opacity: 0; }
    84% { opacity: 1; transform: translate(-8px, -12px) scale(1.5); }
    87% { opacity: 0; transform: translate(-16px, -20px) scale(0.5); }
}

.prereq-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.prereq-card p {
    color: var(--gray-4);
    font-size: 0.8rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .prereq-cards {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Carte 3D France */
.france-map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.france-map-3d {
    width: 100%;
    max-width: 650px;
    perspective: 800px;
}

.france-svg-object {
    width: 100%;
    height: auto;
    max-height: 520px;
    transform: perspective(800px) rotateX(12deg) rotateY(-5deg);
    transform-style: preserve-3d;
    transition: transform 0.8s var(--ease);
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
}

.france-svg-object:hover {
    transform: perspective(800px) rotateX(5deg) rotateY(0deg);
}

/* Legend */
.france-map-legend {
    display: flex;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-5);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.orange {
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange-glow);
}

@media (max-width: 768px) {
    .france-map-3d {
        max-width: 350px;
    }

    .france-svg {
        transform: rotateX(10deg) rotateY(0deg);
    }

    .pin-label {
        font-size: 9px;
    }
}

/* ============================
   GALERIE - AVANT / APRÈS SLIDER
   ============================ */
.galerie {
    padding: 56px 0;
    background: transparent;
}

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

.comparison-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.comparison-before,
.comparison-after {
    position: absolute;
    inset: 0;
}

.comparison-before img,
.comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.comparison-after {
    z-index: 1;
}

/* Labels Avant / Après */
.comparison-label {
    position: absolute;
    bottom: 12px;
    padding: 4px 12px;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
    pointer-events: none;
}

.label-before {
    left: 16px;
    background: rgba(255, 60, 60, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
}

.label-after {
    right: 16px;
    background: rgba(34, 197, 94, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
}

/* Handle (poignée de glissement) */
.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.handle-line {
    flex: 1;
    width: 2px;
    background: var(--white);
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.handle-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.comparison-slider:active .handle-circle {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.comparison-caption {
    text-align: center;
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-5);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .comparisons-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comparison-slider {
        aspect-ratio: 1/1;
    }

    .handle-circle {
        width: 36px;
        height: 36px;
    }

    .handle-circle svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================
   À PROPOS - TOUCHE PERSONNELLE
   ============================ */
.about-section {
    padding: 56px 0;
}

.about-wrapper {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Grid 2 colonnes : photo + texte */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 1.2s var(--ease), transform 6s ease-out;
    transform: scale(1);
}

.about-slide.active {
    opacity: 1;
    transform: scale(1.06);
}

.about-photo:hover .about-slide.active {
    transform: scale(1.08);
}

.about-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.about-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.4s var(--ease);
}

.about-dot.active {
    width: 20px;
    border-radius: 3px;
    background: var(--white);
}

.about-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(5,5,5,0.6) 100%);
    pointer-events: none;
}

.about-photo-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 60px;
    background: rgba(255,102,0,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content {
    text-align: left;
}

.about-content .about-signature {
    align-items: flex-start;
}

.about-content .about-stats {
    justify-content: flex-start;
    gap: 32px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
    }

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

    .about-content .about-signature {
        align-items: center;
    }

    .about-content .about-stats {
        justify-content: center;
    }
}

.about-signature {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.about-signature span {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.about-text {
    color: var(--gray-5);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--white);
    font-weight: 500;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat span {
    font-size: 0.75rem;
    color: var(--gray-4);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.about-qualities {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.quality-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 60px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-5);
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
}

.quality-tag:hover {
    border-color: rgba(255,102,0,0.3);
    color: var(--white);
    background: rgba(255,102,0,0.08);
}

.about-content .about-qualities {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .about-content .about-qualities {
        justify-content: center;
    }
}

/* ============================
   AVIS DRAGGABLE
   ============================ */
.reviews-section {
    padding: 56px 0;
    overflow: hidden;
}

.reviews-drag-wrapper {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    padding: 8px 0 24px;
}

.reviews-drag-wrapper.dragging {
    cursor: grabbing;
}

.reviews-track {
    display: flex;
    gap: 20px;
    padding: 0 5vw;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-drag-wrapper.dragging .reviews-track {
    transition: none;
}

.review-card {
    flex: 0 0 340px;
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: auto;
    transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.review-stars {
    color: #fbbc05;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray-5);
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 300;
    flex: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-author span {
    font-size: 0.72rem;
    color: var(--gray-4);
    font-weight: 300;
}

.review-card img,
.review-card * {
    -webkit-user-drag: none;
    user-drag: none;
}

.reviews-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 0.75rem;
    color: var(--gray-4);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.7;
}

.reviews-hint svg {
    color: var(--orange);
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 280px;
        padding: 24px 20px;
    }

    .reviews-track {
        padding: 0 24px;
    }
}

/* ============================
   MARQUES
   ============================ */
.brands-bar {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.brands-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.brands-track {
    display: flex;
    gap: 24px;
    white-space: nowrap;
    animation: brandsScroll 20s linear infinite;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-3);
    letter-spacing: 3px;
    transition: color 0.3s;
}

.brand-sep {
    color: var(--gray-3);
    opacity: 0.3;
}

@keyframes brandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================
   SOCIALS SECTION
   ============================ */
.socials-section {
    padding: 56px 0;
    background: transparent;
}

/* Reels row - 3 vidéos alignées */
.reels-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

/* Video reels natifs */
.reel-video {
    aspect-ratio: 9/16;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    background: var(--gray-1);
    cursor: pointer;
}

.reel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px;
    background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.reel-video:hover .reel-overlay {
    opacity: 1;
}

.reel-sound-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.reel-sound-btn:hover {
    background: var(--orange);
    transform: scale(1.1);
}

.reel-sound-btn .icon-unmuted { display: none; }
.reel-video.unmuted .reel-sound-btn .icon-muted { display: none; }
.reel-video.unmuted .reel-sound-btn .icon-unmuted { display: block; }

/* Tooltip "Active le son" */
.reel-sound-hint {
    position: absolute;
    bottom: 48px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 12px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reel-sound-hint::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 14px;
    width: 8px;
    height: 8px;
    background: rgba(0,0,0,0.7);
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: rotate(45deg);
}

.reel-video.show-hint .reel-sound-hint {
    opacity: 1;
    transform: translateY(0);
}

.reel-sound-hint .hint-icon {
    color: var(--cyan);
}

/* Teaser jeu concours */
.giveaway-teaser {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto 32px;
    border-color: rgba(255,102,0,0.15);
    background: linear-gradient(135deg, rgba(255,102,0,0.04), rgba(0,200,255,0.04));
    transition: all 0.4s var(--ease);
    animation: giveawayGlow 3s ease-in-out infinite;
}

@keyframes giveawayGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(255,102,0,0); }
    50% { box-shadow: 0 0 24px rgba(255,102,0,0.08); }
}

.giveaway-teaser:hover {
    border-color: rgba(255,102,0,0.3);
    transform: translateY(-2px);
}

.giveaway-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.giveaway-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.giveaway-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray-5);
}

.giveaway-arrow {
    color: var(--gray-4);
    flex-shrink: 0;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@media (max-width: 768px) {
    .giveaway-teaser {
        flex-direction: column;
        text-align: center;
    }

    .giveaway-arrow { display: none; }
}

/* CTA Réseaux */
.socials-cta {
    text-align: center;
}

.socials-cta-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-5);
    margin-bottom: 24px;
}

.socials-cta-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid var(--gray-2);
    background: var(--glass-bg);
    color: var(--white);
    transition: all 0.4s var(--ease);
}

.social-cta-btn .arrow {
    opacity: 0.4;
    transition: all 0.3s var(--ease);
}

.social-cta-btn:hover .arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.social-cta-btn.instagram:hover {
    border-color: #e1306c;
    background: rgba(225, 48, 108, 0.1);
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.15);
}

.social-cta-btn.tiktok:hover {
    border-color: var(--cyan);
    background: var(--cyan-soft);
    box-shadow: 0 0 30px var(--cyan-glow);
}

@media (max-width: 768px) {
    .reels-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .socials-cta-links {
        flex-direction: column;
        align-items: center;
    }

    .social-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================
   EASTER EGG CADEAU
   ============================ */
.easter-gift {
    position: relative;
    z-index: 10;
    cursor: pointer;
    filter: drop-shadow(0 0 12px rgba(255,102,0,0.5));
    pointer-events: auto;
    transition: filter 0.3s, transform 0.3s;
    margin: 24px auto 0;
    width: fit-content;
    animation: giftShine 2s ease-in-out infinite;
}

.easter-gift:hover {
    filter: drop-shadow(0 0 24px rgba(255,102,0,0.8));
    transform: scale(1.25) rotate(-5deg);
}

@keyframes giftShine {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255,102,0,0.3)) drop-shadow(0 0 20px rgba(255,102,0,0.1));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(255,102,0,0.6)) drop-shadow(0 0 40px rgba(255,102,0,0.25));
    }
}

.gift-sparkle {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: giftSparkle 1.5s ease-in-out infinite;
}

.gift-sparkle-2 {
    top: auto;
    bottom: 2px;
    right: auto;
    left: -4px;
    width: 5px;
    height: 5px;
    background: var(--cyan);
    animation-delay: 0.7s;
}

@keyframes giftSparkle {
    0%, 100% { opacity: 0.2; transform: scale(0.6); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Popup concours */
.gift-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.gift-popup.open {
    opacity: 1;
    visibility: visible;
}

.gift-popup-content {
    max-width: 420px;
    width: 90%;
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease);
}

.gift-popup.open .gift-popup-content {
    transform: scale(1) translateY(0);
}

.gift-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gray-4);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.gift-popup-close:hover { color: var(--white); }

.gift-popup-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: glowPulse 2.5s ease-in-out infinite;
}

.gift-popup-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.gift-popup-content p {
    color: var(--gray-5);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.gift-popup-content strong {
    color: var(--orange);
    font-weight: 600;
}

.gift-popup-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.gift-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.gift-cta-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
    color: white;
}

.gift-cta-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225,48,108,0.3);
}

.gift-cta-btn.tiktok {
    background: var(--gray-1);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.gift-cta-btn.tiktok:hover {
    transform: translateY(-2px);
    border-color: var(--cyan);
    box-shadow: 0 8px 24px var(--cyan-glow);
}

@media (max-width: 768px) {
    .gift-popup-ctas {
        flex-direction: column;
    }

    .gift-cta-btn {
        justify-content: center;
    }
}

/* ============================
   VIDEO SECTION
   ============================ */
.video-section {
    padding: 56px 0;
    background: transparent;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    background: var(--gray-1);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, var(--orange-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, var(--cyan-glow) 0%, transparent 50%);
    opacity: 0.2;
}

.video-logo {
    height: 48px;
    width: auto;
    position: relative;
    opacity: 0.6;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    transition: all 0.4s var(--ease);
}

.video-play-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
    box-shadow: 0 0 40px var(--orange-glow);
}

.video-coming {
    font-size: 0.85rem;
    color: var(--gray-4);
    font-weight: 300;
    position: relative;
}

/* ============================
   CONTACT
   ============================ */
.contact {
    padding: 56px 0;
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    border-radius: var(--radius);
    position: relative;
    transition: all 0.5s var(--ease);
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s var(--ease);
}

.contact-icon.whatsapp { background: rgba(37,211,102,0.12); color: #25d366; }
.contact-icon.phone { background: var(--cyan-soft); color: var(--cyan); }
.contact-icon.email { background: var(--orange-soft); color: var(--orange); }

.contact-card:hover .contact-icon.whatsapp { background: #25d366; color: white; }
.contact-card:hover .contact-icon.phone { background: var(--cyan); color: var(--dark); }
.contact-card:hover .contact-icon.email { background: var(--orange); color: white; }

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--gray-5);
    font-size: 0.9rem;
    font-weight: 300;
}

.contact-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--gray-3);
    transition: all 0.3s var(--ease);
}

.contact-card:hover .contact-arrow {
    color: var(--white);
    transform: translate(2px, -2px);
}

/* ============================
   FAQ
   ============================ */
.faq-section {
    padding: 56px 0;
    background: transparent;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

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

.faq-question svg {
    flex-shrink: 0;
    color: var(--gray-4);
    transition: transform 0.4s var(--ease), color 0.3s;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-5);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================
   EASTER EGG
   ============================ */
.easter-egg {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    filter: drop-shadow(0 0 8px rgba(56,182,255,0.4));
    animation: eggFloat 12s ease-in-out infinite;
    pointer-events: auto;
}

.easter-egg:hover {
    filter: drop-shadow(0 0 16px rgba(56,182,255,0.7));
    transform: scale(1.2);
}

.easter-sparkle {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    animation: sparkle 2s ease-in-out infinite;
}

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

@keyframes eggFloat {
    0% { top: 15%; right: 5%; }
    20% { top: 45%; right: 12%; }
    40% { top: 25%; right: 3%; }
    60% { top: 60%; right: 8%; }
    80% { top: 35%; right: 2%; }
    100% { top: 15%; right: 5%; }
}

.easter-egg.caught {
    animation: eggCatch 0.5s var(--ease) forwards;
}

@keyframes eggCatch {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

/* Pop-up parrainage */
.easter-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.easter-popup.open {
    opacity: 1;
    visibility: visible;
}

.easter-popup-content {
    max-width: 420px;
    width: 90%;
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease);
}

.easter-popup.open .easter-popup-content {
    transform: scale(1) translateY(0);
}

.easter-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gray-4);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.easter-popup-close:hover {
    color: var(--white);
}

.easter-popup-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(56,182,255,0.12);
    color: #38b6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: glowPulseCyan 2.5s ease-in-out infinite;
}

.easter-popup-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.easter-popup-content p {
    color: var(--gray-5);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.easter-popup-content strong {
    color: var(--orange);
    font-weight: 600;
}

.easter-popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 60px;
    background: #25d366;
    color: white;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.easter-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

@media (max-width: 768px) {
    @keyframes eggFloat {
        0% { top: 10%; right: 5%; }
        25% { top: 40%; right: 10%; }
        50% { top: 20%; right: 3%; }
        75% { top: 55%; right: 8%; }
        100% { top: 10%; right: 5%; }
    }
}

/* ============================
   CTA STICKY MOBILE
   ============================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 12px 16px;
    background: rgba(5,5,5,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    background: #25d366;
    color: white;
}

.sticky-cta-phone {
    background: var(--gray-1);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
    }

    /* Décaler le bouton WhatsApp flottant pour pas qu'il chevauche */
    .whatsapp-float {
        bottom: 80px;
    }
}

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 72px 0 32px;
    background: var(--black);
    border-top: 1px solid var(--glass-border);
}

/* Top : logo + slogan + socials, tout centré */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 72px;
    width: auto;
}

.footer-slogan {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-5);
    letter-spacing: 0.5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-1);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-5);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--orange-glow);
}

/* Nav liens centrés */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-4);
    transition: color 0.3s;
}

.footer-nav a:hover { color: var(--white); }

/* Bottom : copyright + legal */
.footer-bottom {
    text-align: center;
    color: var(--gray-4);
    font-size: 0.75rem;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}

.footer-legal a {
    color: var(--gray-4);
    font-size: 0.7rem;
    transition: color 0.3s;
}

.footer-legal a:hover { color: var(--gray-5); }

/* ============================
   WHATSAPP FLOATING
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.zones-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.zones-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.comparisons-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.comparisons-grid [data-reveal]:nth-child(3) { transition-delay: 0.15s; }
.comparisons-grid [data-reveal]:nth-child(4) { transition-delay: 0.2s; }
.contact-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.contact-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5,5,5,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--white);
    }

    .nav-cta { display: none; }
    .nav-toggle { display: flex; z-index: 1001; }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        letter-spacing: -1px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

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

    .services-grid,
    .zones-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links { flex-wrap: wrap; justify-content: center; }

    .section-header { margin-bottom: 48px; }

    .cursor, .cursor-follower { display: none !important; }

    .hero-scroll-indicator { display: none; }

    .marquee-track { font-size: 0.8rem; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card.featured {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}
