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

        :root {
            /* ══════ PALETTE MSC — Bleu / Jaune / Vert / Marron ══════ */
            --bleu: #2478a0;
            --bleu-mid: #1d6586;
            --bleu-dark: #16506c;
            --bleu-light: #4a9dc0;
            --bleu-glow: rgba(36, 120, 160, 0.18);
            --bleu-glow-strong: rgba(36, 120, 160, 0.3);
            --bleu-soft: rgba(36, 120, 160, 0.07);

            --jaune: #e8a820;
            --jaune-mid: #d09418;
            --jaune-dark: #b07e10;
            --jaune-light: #f0c050;
            --jaune-glow: rgba(232, 168, 32, 0.2);
            --jaune-soft: rgba(232, 168, 32, 0.07);

            --vert: #2d8a4e;
            --vert-mid: #24713f;
            --vert-dark: #1c5a32;
            --vert-light: #4aaa6c;
            --vert-glow: rgba(45, 138, 78, 0.18);
            --vert-soft: rgba(45, 138, 78, 0.07);

            --marron: #7d5e35;
            --marron-mid: #6a4e2b;
            --marron-dark: #564022;
            --marron-light: #9a7a50;
            --marron-glow: rgba(125, 94, 53, 0.18);
            --marron-soft: rgba(125, 94, 53, 0.07);

            --corail: #c45545;
            --corail-mid: #aa4538;
            --corail-dark: #8e382d;
            --corail-glow: rgba(196, 85, 69, 0.15);

            /* ══════ LIGHT THEME ══════ */
            --bg-deep: #f0f2f5;
            --bg: #f7f8fa;
            --bg-white: #ffffff;
            --bg-card: rgba(255, 255, 255, 0.85);
            --bg-card-solid: #ffffff;
            --bg-card-hover: #f0f4f8;
            --bg-elevated: #e8ecf0;
            --bg-glass: rgba(255, 255, 255, 0.7);
            --bg-hero: linear-gradient(160deg, #eaf4f8 0%, #f7f8fa 40%, #fdf6ec 100%);

            --border: rgba(0, 0, 0, 0.06);
            --border-hover: rgba(0, 0, 0, 0.12);
            --border-bleu: rgba(36, 120, 160, 0.2);

            --text: #1a2332;
            --text-secondary: #3a4a5c;
            --text-muted: #7a8a9c;

            --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
        }

        html { scroll-behavior: smooth; }
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-deep);
            color: var(--text-secondary);
            overflow-x: hidden;
            line-height: 1.65;
            font-weight: 400;
        }

        /* subtle grain — lighter */
        body::after {
            content: '';
            position: fixed; inset: 0; z-index: 10000;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
            opacity: 0.35;
        }

        /* madras texture */
        .madras-bg {
            position: absolute; inset: 0; pointer-events: none; opacity: 0.015;
            background-image:
                repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(232,168,32,0.2) 40px, rgba(232,168,32,0.2) 42px),
                repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(196,85,69,0.15) 40px, rgba(196,85,69,0.15) 42px),
                repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(36,120,160,0.1) 80px, rgba(36,120,160,0.1) 82px);
        }

        #bgCanvas {
            position: fixed; inset: 0; z-index: 0;
            pointer-events: none;
        }

        /* wave dividers */
        .wave-divider {
            position: relative; z-index: 1;
            width: 100%; overflow: hidden;
            line-height: 0;
        }
        .wave-divider svg { display: block; width: 100%; height: 60px; }
        .wave-divider.flip svg { transform: rotate(180deg); }

        /* ════════════ NAVIGATION ════════════ */
        .nav-wrap {
            position: fixed; top: 0; width: 100%; z-index: 5000;
            padding: 1rem 2rem;
            transition: padding 0.4s cubic-bezier(0.16,1,0.3,1);
        }
        .nav-wrap.scrolled { padding: 0.5rem 2rem; }

        .nav-bar {
            max-width: 1280px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(24px) saturate(150%);
            -webkit-backdrop-filter: blur(24px) saturate(150%);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 0.4rem 0.4rem 0.4rem 1.5rem;
            transition: all 0.4s;
            box-shadow: var(--shadow-md);
        }
        .nav-wrap.scrolled .nav-bar {
            box-shadow: var(--shadow-lg);
        }

        .nav-brand {
            display: flex; align-items: center; gap: 0.7rem;
            text-decoration: none; color: var(--text);
            font-weight: 700; font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        .nav-logo {
            width: 36px; height: 36px; border-radius: 12px;
            background: linear-gradient(145deg, var(--bleu), var(--vert));
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 0.55rem;
            letter-spacing: 0.06em;
            box-shadow: 0 2px 12px var(--bleu-glow);
        }

        .nav-links { display: flex; gap: 0.1rem; list-style: none; }
        .nav-links a {
            text-decoration: none; color: var(--text-muted);
            font-size: 0.82rem; font-weight: 500;
            padding: 0.45rem 0.9rem; border-radius: 100px;
            transition: all 0.25s;
        }
        .nav-links a:hover { color: var(--bleu); background: var(--bleu-soft); }

        .nav-cta {
            padding: 0.55rem 1.5rem;
            background: linear-gradient(145deg, var(--bleu), var(--bleu-mid));
            color: #fff !important; border-radius: 100px;
            font-weight: 700; font-size: 0.8rem; text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
            box-shadow: 0 2px 16px var(--bleu-glow);
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 24px var(--bleu-glow-strong);
        }

        .mobile-btn {
            display: none; background: none; border: none;
            color: var(--text); font-size: 1.5rem; cursor: pointer; padding: 0.5rem;
        }

        /* ════════════ HERO ════════════ */
        .hero {
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden; padding: 7rem 2rem 5rem;
            background: var(--bg-hero);
        }

        /* ═══ HERO BACKGROUND IMAGE ═══
           Pour utiliser ta propre image, remplace l'URL ci-dessous.
           Formats supportés : .jpg, .png, .webp
           Taille recommandée : 1920x1080 minimum
        */
        .hero-bg-image {
            position: absolute; inset: 0; z-index: 0;
            /* ══ REMPLACE CETTE URL PAR TON IMAGE ══ */
            background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80');
            background-size: cover;
            background-position: center 40%;
            background-repeat: no-repeat;
            /* Léger zoom + ken burns effect */
            animation: heroBgZoom 25s ease-in-out infinite alternate;
        }
        @keyframes heroBgZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.06); }
        }

        /* Overlay sombre + gradient pour lisibilité du texte */
        .hero-bg-overlay {
            position: absolute; inset: 0; z-index: 1;
            background:
                /* Gradient principal : plus sombre en haut/centre pour le texte */
                linear-gradient(
                    180deg,
                    rgba(14, 20, 28, 0.7) 0%,
                    rgba(14, 20, 28, 0.55) 35%,
                    rgba(14, 20, 28, 0.4) 60%,
                    rgba(14, 20, 28, 0.65) 100%
                ),
                /* Teinte bleutée subtile */
                linear-gradient(
                    160deg,
                    rgba(36, 120, 160, 0.15) 0%,
                    transparent 50%,
                    rgba(232, 168, 32, 0.08) 100%
                );
            pointer-events: none;
        }

        /* Texte hero : blanc pour contraste sur image sombre */
        .hero .hero-pill {
            background: rgba(14, 20, 28, 0.5);
            border-color: rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.85);
            backdrop-filter: blur(12px);
        }
        .hero h1 { color: #ffffff; }
        .hero .hero-sub { color: rgba(255,255,255,0.85); }

        .hero .w-bleu {
            background: linear-gradient(145deg, #5bb8db, #8ad4ec);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .w-jaune {
            background: linear-gradient(145deg, #f0c050, #f5d78a);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .btn-outline {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.25);
            color: #fff;
            backdrop-filter: blur(8px);
        }
        .hero .btn-outline:hover {
            background: rgba(255,255,255,0.18);
            border-color: rgba(255,255,255,0.4);
            color: #fff;
        }

        .hero .scroll-bar { background: rgba(255,255,255,0.1); }

        .hero-ocean {
            position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
            background: linear-gradient(to top, rgba(36,120,160,0.04) 0%, transparent 100%);
            pointer-events: none; z-index: 2;
        }

        .hero-glow-1 {
            position: absolute; width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(36,120,160,0.12) 0%, transparent 70%);
            top: -15%; left: -8%; border-radius: 50%;
            animation: glowDrift 15s ease-in-out infinite;
            z-index: 2;
        }
        .hero-glow-2 {
            position: absolute; width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(45,138,78,0.08) 0%, transparent 70%);
            bottom: -10%; right: -5%; border-radius: 50%;
            animation: glowDrift 18s ease-in-out infinite reverse;
            z-index: 2;
        }
        .hero-glow-3 {
            position: absolute; width: 450px; height: 450px;
            background: radial-gradient(circle, rgba(232,168,32,0.1) 0%, transparent 70%);
            top: 40%; left: 55%; transform: translate(-50%, -50%);
            border-radius: 50%;
            animation: glowPulse 8s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes glowDrift {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
            50% { transform: translate(40px, -30px) scale(1.15); opacity: 1; }
        }
        @keyframes glowPulse {
            0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
        }

        .hero-content {
            position: relative; z-index: 3; max-width: 960px; text-align: center;
        }

        .hero-pill {
            display: inline-flex; align-items: center; gap: 0.6rem;
            padding: 0.35rem 1.1rem 0.35rem 0.35rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 100px; font-size: 0.76rem; color: var(--text-secondary);
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
            opacity: 0; animation: heroUp 1s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
        }
        .pill-live {
            width: 26px; height: 26px; border-radius: 50%;
            background: var(--vert-soft);
            display: flex; align-items: center; justify-content: center;
            position: relative;
        }
        .pill-live::after {
            content: ''; width: 8px; height: 8px; border-radius: 50%;
            background: var(--vert);
            box-shadow: 0 0 12px var(--vert);
            animation: livePulse 2s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 12px var(--vert); }
            50% { transform: scale(0.8); box-shadow: 0 0 6px var(--vert); }
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(3rem, 7vw, 5.8rem);
            font-weight: 800; line-height: 1.05;
            letter-spacing: -0.03em;
            color: var(--text);
            margin-bottom: 1.5rem;
            opacity: 0; animation: heroUp 1s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
        }

        .hero h1 .line { display: block; overflow: hidden; }
        .hero h1 .line-inner {
            display: inline-block;
            animation: lineReveal 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
            transform: translateY(110%);
        }
        .hero h1 .line:nth-child(1) .line-inner { animation-delay: 0.3s; }
        .hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.5s; }

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

        .w-bleu {
            background: linear-gradient(145deg, var(--bleu), var(--bleu-dark));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .w-jaune {
            font-style: italic;
            background: linear-gradient(145deg, var(--jaune-dark), var(--marron));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: 1.1rem; color: var(--text-secondary);
            max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.75;
            opacity: 0; animation: heroUp 1s 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
        }

        .hero-btns {
            display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
            opacity: 0; animation: heroUp 1s 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
        }

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

        .btn-glow {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.9rem 2.2rem;
            background: linear-gradient(145deg, var(--bleu), var(--bleu-mid));
            color: #fff; border-radius: 100px;
            font-weight: 700; font-size: 0.92rem;
            border: none; cursor: pointer; text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
            box-shadow: 0 4px 20px var(--bleu-glow), var(--shadow-md);
            position: relative; overflow: hidden;
        }
        .btn-glow:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 32px var(--bleu-glow-strong), var(--shadow-lg);
        }
        .btn-glow .arrow { transition: transform 0.3s; }
        .btn-glow:hover .arrow { transform: translateX(4px); }

        .btn-outline {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.9rem 2.2rem;
            background: var(--bg-white);
            color: var(--text); border-radius: 100px;
            font-weight: 600; font-size: 0.92rem;
            border: 1.5px solid var(--border-hover);
            text-decoration: none; cursor: pointer;
            transition: all 0.3s;
            box-shadow: var(--shadow-sm);
        }
        .btn-outline:hover {
            border-color: var(--bleu);
            color: var(--bleu);
            box-shadow: var(--shadow-md);
        }

        .hero-scroll {
            position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
            opacity: 0; animation: fadeIn 1s 2s forwards;
            z-index: 3;
        }
        .scroll-bar {
            width: 1px; height: 50px; position: relative; overflow: hidden;
            background: rgba(0,0,0,0.06);
        }
        .scroll-bar::after {
            content: '';
            position: absolute; top: -100%; left: 0;
            width: 100%; height: 50%;
            background: linear-gradient(to bottom, transparent, var(--bleu));
            animation: scrollDown 2s ease-in-out infinite;
        }
        @keyframes scrollDown { 0% { top: -50%; } 100% { top: 150%; } }
        @keyframes fadeIn { to { opacity: 1; } }

        /* ════════════ STATS MARQUEE ════════════ */
        .marquee-section {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--bg-white);
            overflow: hidden; position: relative; z-index: 1;
        }
        .marquee-track {
            display: flex; animation: marqueeScroll 40s linear infinite;
            width: max-content;
        }
        .marquee-group { display: flex; align-items: center; }

        .marquee-item {
            display: flex; align-items: center; gap: 0.8rem;
            padding: 1.75rem 2.5rem; white-space: nowrap;
        }
        .marquee-icon {
            width: 42px; height: 42px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; flex-shrink: 0;
        }
        .mi-bleu { background: var(--bleu-soft); }
        .mi-jaune { background: var(--jaune-soft); }
        .mi-vert { background: var(--vert-soft); }
        .mi-marron { background: var(--marron-soft); }
        .mi-corail { background: rgba(196,85,69,0.07); }

        .marquee-val {
            font-weight: 700; font-size: 1.6rem;
            color: var(--text); letter-spacing: -0.02em;
        }
        .marquee-label { font-size: 0.78rem; color: var(--text-muted); }
        .marquee-dot {
            width: 4px; height: 4px; border-radius: 50%;
            background: var(--bleu); opacity: 0.2;
        }
        @keyframes marqueeScroll { to { transform: translateX(-50%); } }

        /* ════════════ SECTIONS ════════════ */
        .section {
            padding: 7rem 2rem; max-width: 1280px; margin: 0 auto;
            position: relative; z-index: 1;
        }

        .section-tag {
            display: inline-flex; align-items: center; gap: 0.6rem;
            font-size: 0.68rem; font-weight: 600;
            letter-spacing: 0.15em; text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .tag-bleu { color: var(--bleu); }
        .tag-vert { color: var(--vert); }
        .tag-jaune { color: var(--jaune-dark); }
        .tag-marron { color: var(--marron); }
        .tag-corail { color: var(--corail); }

        .section-tag::before {
            content: ''; width: 24px; height: 2px; border-radius: 1px;
        }
        .tag-bleu::before { background: var(--bleu); }
        .tag-vert::before { background: var(--vert); }
        .tag-jaune::before { background: var(--jaune); }
        .tag-marron::before { background: var(--marron); }
        .tag-corail::before { background: var(--corail); }

        .section-h {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.4rem);
            font-weight: 700; letter-spacing: -0.02em;
            line-height: 1.12; color: var(--text);
            margin-bottom: 0.75rem;
        }
        .section-p {
            color: var(--text-muted); font-size: 1rem;
            max-width: 520px; margin-bottom: 3.5rem;
        }

        /* ════════════ GALLERY (static grid) ════════════ */
        .gallery {
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            grid-template-rows: 1fr 1fr;
            gap: 0.75rem; margin-top: 2rem;
        }
        .gal-item {
            border-radius: 20px; overflow: hidden;
            position: relative; min-height: 200px;
            background: var(--bg-white);
            border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
            box-shadow: var(--shadow-sm);
        }
        .gal-item:hover {
            border-color: var(--border-bleu);
            transform: scale(1.008);
            box-shadow: var(--shadow-lg);
        }
        .gal-item.big { grid-row: span 2; min-height: 440px; }

        .gal-visual {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .gal-shape {
            position: absolute; border-radius: 50%; opacity: 0.06;
            animation: shapeFloat 12s ease-in-out infinite;
        }
        @keyframes shapeFloat {
            0%, 100% { transform: translate(0,0) rotate(0deg); }
            50% { transform: translate(10px, -10px) rotate(5deg); }
        }

        .gal-ph {
            font-size: 3.5rem; opacity: 0.25;
            position: relative; z-index: 1;
        }
        .gal-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(26,35,50,0.85) 0%, transparent 100%);
        }
        .gal-chip {
            display: inline-block; padding: 0.2rem 0.55rem;
            border-radius: 6px;
            background: rgba(36,120,160,0.25);
            backdrop-filter: blur(8px);
            font-size: 0.62rem; font-weight: 600; color: #fff;
            margin-bottom: 0.3rem; letter-spacing: 0.06em;
        }
        .gal-text {
            font-weight: 600;
            font-size: 0.85rem; color: white;
        }

        /* ════════════ CAROUSEL ════════════ */
        .carousel-section {
            padding: 2rem 2rem 0;
            position: relative; z-index: 1;
        }
        .carousel-section .carousel-inner-wrap {
            max-width: 1280px; margin: 0 auto;
        }
        .carousel-header {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: 1.5rem;
        }
        .carousel-header-text h3 {
            font-weight: 700; font-size: 1.15rem; color: var(--text);
            margin-bottom: 0.15rem;
        }
        .carousel-header-text p {
            font-size: 0.85rem; color: var(--text-muted);
        }
        .carousel-nav {
            display: flex; gap: 0.5rem; align-items: center;
        }
        .carousel-btn {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--bg-white);
            border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.3s;
            box-shadow: var(--shadow-sm);
            color: var(--text);
            font-size: 1.1rem;
        }
        .carousel-btn:hover {
            background: var(--bleu);
            color: #fff;
            border-color: var(--bleu);
            box-shadow: 0 4px 16px var(--bleu-glow);
            transform: scale(1.08);
        }
        .carousel-btn:active { transform: scale(0.95); }
        .carousel-btn.disabled {
            opacity: 0.35; pointer-events: none;
        }

        .carousel-counter {
            font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
            min-width: 50px; text-align: center;
            font-variant-numeric: tabular-nums;
        }

        .carousel-track-wrapper {
            overflow: hidden;
            border-radius: 24px;
            position: relative;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            gap: 0.75rem;
            cursor: grab;
        }
        .carousel-track:active { cursor: grabbing; }

        .carousel-slide {
            min-width: calc(50% - 0.375rem);
            flex-shrink: 0;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 16 / 10;
            background: var(--bg-white);
            border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
            box-shadow: var(--shadow-sm);
        }
        .carousel-slide:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--border-bleu);
        }

        .carousel-slide .slide-visual {
            position: absolute; inset: 0; overflow: hidden;
        }
        .carousel-slide .slide-shape {
            position: absolute; border-radius: 50%; opacity: 0.06;
        }
        .carousel-slide .slide-emoji {
            font-size: 4rem; opacity: 0.2;
            position: relative; z-index: 1;
            transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        .carousel-slide:hover .slide-emoji {
            transform: scale(1.15) rotate(-5deg);
        }
        .carousel-slide .slide-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.25rem 1.5rem;
            background: linear-gradient(to top, rgba(26,35,50,0.88) 0%, rgba(26,35,50,0.3) 60%, transparent 100%);
            transform: translateY(4px);
            opacity: 0.9;
            transition: all 0.4s;
        }
        .carousel-slide:hover .slide-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        .carousel-slide .slide-label {
            display: inline-block; padding: 0.18rem 0.5rem;
            border-radius: 5px;
            font-size: 0.58rem; font-weight: 700;
            letter-spacing: 0.06em; text-transform: uppercase;
            margin-bottom: 0.25rem; color: #fff;
        }
        .sl-bleu { background: rgba(36,120,160,0.4); }
        .sl-vert { background: rgba(45,138,78,0.4); }
        .sl-jaune { background: rgba(232,168,32,0.4); }
        .sl-marron { background: rgba(125,94,53,0.4); }
        .sl-corail { background: rgba(196,85,69,0.4); }
        .carousel-slide .slide-title {
            font-weight: 600; font-size: 0.82rem; color: #fff;
        }
        .carousel-slide .slide-desc {
            font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 0.15rem;
        }

        /* progress dots */
        .carousel-dots {
            display: flex; justify-content: center; gap: 6px;
            margin-top: 1.25rem; padding-bottom: 0.5rem;
        }
        .carousel-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--border-hover);
            border: none; cursor: pointer;
            transition: all 0.4s;
            padding: 0;
        }
        .carousel-dot.active {
            background: var(--bleu);
            width: 24px; border-radius: 4px;
            box-shadow: 0 0 10px var(--bleu-glow);
        }

        @media (max-width: 768px) {
            .carousel-slide { min-width: calc(85%); }
        }

        /* ════════════ BENTO ════════════ */
        .bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: minmax(200px, auto);
            gap: 0.75rem;
        }
        .bc {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px; padding: 2rem;
            position: relative; overflow: hidden;
            display: flex; flex-direction: column; justify-content: flex-end;
            transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
            box-shadow: var(--shadow-sm);
        }
        .bc:hover {
            background: var(--bg-white);
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .bc::after {
            content: ''; position: absolute;
            top: 0; left: 0; right: 0; height: 3px;
            opacity: 0; transition: opacity 0.5s;
        }
        .bc:hover::after { opacity: 1; }

        .bc-water { grid-column: span 7; grid-row: span 2; }
        .bc-water::after { background: linear-gradient(90deg, var(--bleu), var(--bleu-light)); }
        .bc-cyclone { grid-column: span 5; }
        .bc-cyclone::after { background: linear-gradient(90deg, var(--jaune), var(--marron)); }
        .bc-seisme { grid-column: span 5; }
        .bc-seisme::after { background: linear-gradient(90deg, var(--corail), var(--marron)); }
        .bc-eco { grid-column: span 4; }
        .bc-eco::after { background: linear-gradient(90deg, var(--vert), var(--vert-light)); }
        .bc-sun { grid-column: span 4; }
        .bc-sun::after { background: var(--jaune); }
        .bc-local { grid-column: span 4; }
        .bc-local::after { background: var(--marron); }

        .bc-inner-glow {
            position: absolute; width: 200px; height: 200px;
            border-radius: 50%; filter: blur(80px);
            top: -40px; right: -40px; opacity: 0.06;
            transition: opacity 0.5s;
        }
        .bc:hover .bc-inner-glow { opacity: 0.1; }

        .bc-icon {
            width: 48px; height: 48px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; margin-bottom: 1.2rem;
        }
        .ic-bleu { background: var(--bleu-soft); }
        .ic-jaune { background: var(--jaune-soft); }
        .ic-vert { background: var(--vert-soft); }
        .ic-marron { background: var(--marron-soft); }
        .ic-corail { background: rgba(196,85,69,0.07); }

        .bc-stat {
            font-weight: 800; font-size: 3.8rem;
            letter-spacing: -0.04em; line-height: 1;
            margin-bottom: 0.5rem;
        }
        .s-bleu { color: var(--bleu); }
        .s-jaune { color: var(--jaune-dark); }
        .s-vert { color: var(--vert); }
        .s-corail { color: var(--corail); }

        .bc h3 {
            font-weight: 700; font-size: 1.15rem;
            color: var(--text); margin-bottom: 0.35rem;
        }
        .bc p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; }

        /* ════════════ GAMMES ════════════ */
        .gammes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }

        .gamme {
            background: var(--bg-white);
            border-radius: 24px; padding: 2.25rem 2rem;
            position: relative; overflow: hidden;
            display: flex; flex-direction: column;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
            box-shadow: var(--shadow-sm);
        }
        .gamme:hover {
            transform: translateY(-6px);
            border-color: var(--border-hover);
            box-shadow: var(--shadow-xl);
        }

        .gamme-top {
            position: absolute; top: 0; left: 0; right: 0; height: 3px;
        }
        .g-coco .gamme-top { background: linear-gradient(90deg, var(--vert), var(--vert-light)); }
        .g-raco .gamme-top { background: linear-gradient(90deg, var(--bleu), var(--bleu-light)); }
        .g-lamb .gamme-top { background: linear-gradient(90deg, var(--jaune), var(--marron)); }

        .gamme::before {
            content: ''; position: absolute;
            top: -100px; left: 50%; transform: translateX(-50%);
            width: 300px; height: 300px; border-radius: 50%;
            opacity: 0; transition: opacity 0.6s;
            pointer-events: none;
        }
        .g-coco::before { background: radial-gradient(circle, var(--vert-glow) 0%, transparent 70%); }
        .g-raco::before { background: radial-gradient(circle, var(--bleu-glow) 0%, transparent 70%); }
        .g-lamb::before { background: radial-gradient(circle, var(--jaune-glow) 0%, transparent 70%); }
        .gamme:hover::before { opacity: 1; }

        .gamme-badge {
            display: inline-block; padding: 0.22rem 0.65rem;
            border-radius: 100px; font-size: 0.62rem; font-weight: 700;
            letter-spacing: 0.07em; text-transform: uppercase;
            margin-bottom: 1.5rem; width: fit-content;
            position: relative; z-index: 1;
        }
        .g-coco .gamme-badge { background: var(--vert-soft); color: var(--vert); }
        .g-raco .gamme-badge { background: var(--bleu-soft); color: var(--bleu); }
        .g-lamb .gamme-badge { background: var(--jaune-soft); color: var(--jaune-dark); }

        .gamme-emoji {
            font-size: 2.5rem; margin-bottom: 0.75rem;
            position: relative; z-index: 1;
            transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        .gamme:hover .gamme-emoji { transform: scale(1.2) rotate(-8deg); }

        .gamme h3 {
            font-weight: 700; font-size: 1.4rem;
            color: var(--text); margin-bottom: 0.2rem;
            position: relative; z-index: 1;
        }
        .gamme-sub {
            font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem;
            position: relative; z-index: 1;
        }
        .gamme > p {
            color: var(--text-secondary); font-size: 0.87rem; line-height: 1.65;
            flex: 1; position: relative; z-index: 1;
        }
        .gamme-feats {
            margin-top: 1.5rem; padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            display: flex; flex-direction: column; gap: 0.55rem;
            position: relative; z-index: 1;
        }
        .gf {
            display: flex; align-items: center; gap: 0.55rem;
            font-size: 0.8rem; color: var(--text-secondary);
        }
        .gf-dot {
            width: 18px; height: 18px; border-radius: 6px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.55rem; flex-shrink: 0;
        }
        .g-coco .gf-dot { background: var(--vert-soft); color: var(--vert); }
        .g-raco .gf-dot { background: var(--bleu-soft); color: var(--bleu); }
        .g-lamb .gf-dot { background: var(--jaune-soft); color: var(--jaune-dark); }

        .gamme-num {
            position: absolute; top: 1.5rem; right: 1.5rem;
            font-weight: 900; font-size: 4rem; line-height: 1;
            color: var(--text); opacity: 0.03;
            transition: opacity 0.5s;
        }
        .gamme:hover .gamme-num { opacity: 0.06; }

        /* ════════════ INNOVATIONS ════════════ */
        .inno-list {
            display: flex; flex-direction: column; gap: 1px;
            background: var(--border);
            border-radius: 24px; overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .inno-row {
            display: grid; grid-template-columns: 70px 1fr auto;
            gap: 1.5rem; align-items: center;
            padding: 1.5rem 2rem;
            background: var(--bg-white);
            transition: all 0.4s;
            cursor: default;
            position: relative;
        }
        .inno-row:hover {
            background: var(--bg-card-hover);
            padding-left: 2.75rem;
        }
        .inno-num {
            font-weight: 300; font-size: 1.8rem;
            color: var(--text-muted);
            transition: all 0.4s;
        }
        .inno-row:hover .inno-num { color: var(--bleu); }

        .inno-h {
            font-weight: 600; font-size: 0.95rem;
            color: var(--text); margin-bottom: 0.15rem;
        }
        .inno-p { color: var(--text-muted); font-size: 0.83rem; }

        .inno-icon {
            width: 44px; height: 44px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.15rem;
            background: var(--bg-deep); border: 1px solid var(--border);
            transition: all 0.4s;
        }
        .inno-row:hover .inno-icon {
            transform: scale(1.12);
            background: var(--bleu-soft);
            border-color: rgba(36,120,160,0.2);
            box-shadow: 0 4px 16px var(--bleu-glow);
        }
        .inno-progress {
            position: absolute; bottom: 0; left: 0; height: 2px;
            width: 0; transition: width 0.8s cubic-bezier(0.16,1,0.3,1);
        }
        .inno-row:hover .inno-progress { width: 100%; }

        /* ════════════ IMPACT ════════════ */
        .impact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
        .impact-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 24px; padding: 2.5rem 2rem;
            transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
            position: relative; overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .impact-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-hover);
            box-shadow: var(--shadow-xl);
        }
        .impact-card::before {
            content: ''; position: absolute; inset: -1px;
            border-radius: 25px; padding: 1px;
            background: linear-gradient(135deg, transparent, transparent, var(--bleu-light), transparent, transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0; transition: opacity 0.5s;
        }
        .impact-card:hover::before { opacity: 1; }

        .impact-ic {
            width: 54px; height: 54px; border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin-bottom: 1.25rem;
        }
        .impact-ic.i-marron { background: var(--marron-soft); }
        .impact-ic.i-vert { background: var(--vert-soft); }
        .impact-ic.i-jaune { background: var(--jaune-soft); }

        .impact-card h3 {
            font-weight: 600; font-size: 1.1rem;
            color: var(--text); margin-bottom: 0.5rem;
        }
        .impact-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; }
        .hl { font-weight: 600; }
        .hl-b { color: var(--bleu); }
        .hl-v { color: var(--vert); }
        .hl-j { color: var(--jaune-dark); }
        .hl-c { color: var(--corail); }
        .hl-m { color: var(--marron); }

        /* ════════════ PARTNERS ════════════ */
        .partners {
            border-top: 1px solid var(--border);
            padding: 4rem 2rem;
            background: var(--bg-white);
            position: relative; z-index: 1;
        }
        .partners-inner {
            max-width: 1280px; margin: 0 auto; text-align: center;
        }
        .partners-label {
            font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
            color: var(--text-muted); margin-bottom: 1.75rem; font-weight: 600;
        }
        .partners-row {
            display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem;
        }
        .partner-chip {
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 0.5rem 1rem;
            background: var(--bg-deep);
            border: 1px solid var(--border);
            border-radius: 10px; text-decoration: none;
            font-size: 0.8rem; font-weight: 500; color: var(--text-secondary);
            transition: all 0.3s;
        }
        .partner-chip:hover {
            border-color: var(--border-bleu);
            background: var(--bg-white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .partner-chip .arr {
            font-size: 0.65rem; color: var(--text-muted);
            transition: transform 0.3s;
        }
        .partner-chip:hover .arr { transform: translate(2px, -2px); }

        .partners-row .partner-chip {
            opacity: 0; transform: translateY(15px);
            transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        .partners-row.vis .partner-chip { opacity: 1; transform: translateY(0); }
        .partners-row .partner-chip:nth-child(1) { transition-delay: 0.05s; }
        .partners-row .partner-chip:nth-child(2) { transition-delay: 0.1s; }
        .partners-row .partner-chip:nth-child(3) { transition-delay: 0.15s; }
        .partners-row .partner-chip:nth-child(4) { transition-delay: 0.2s; }
        .partners-row .partner-chip:nth-child(5) { transition-delay: 0.25s; }

        /* ════════════ CONTACT ════════════ */
        .contact-grid {
            display: grid; grid-template-columns: 1fr 1.1fr;
            gap: 3rem; align-items: start;
        }
        .contact-info h3 {
            font-weight: 600; font-size: 1.05rem;
            color: var(--text); margin-bottom: 1.75rem;
        }
        .ci {
            display: flex; align-items: flex-start; gap: 1rem;
            margin-bottom: 1.25rem;
        }
        .ci-icon {
            width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem;
            background: var(--bg-white); border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .ci span { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }
        .ci strong { color: var(--text); font-weight: 600; }

        .form-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 24px; padding: 2.5rem;
            position: relative; overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .form-card::before {
            content: ''; position: absolute;
            top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--bleu), var(--vert), var(--jaune), var(--marron));
        }

        .fg { margin-bottom: 1.25rem; }
        .fg label {
            display: block; font-size: 0.76rem; font-weight: 600;
            color: var(--text-secondary); margin-bottom: 0.35rem;
        }
        .fg input, .fg textarea {
            width: 100%; padding: 0.8rem 1rem;
            background: var(--bg-deep);
            border: 1.5px solid var(--border-hover);
            border-radius: 12px; color: var(--text);
            font-family: 'Poppins', sans-serif; font-size: 0.87rem;
            transition: all 0.3s; outline: none;
        }
        .fg input:focus, .fg textarea:focus {
            border-color: var(--bleu);
            box-shadow: 0 0 0 3px var(--bleu-glow);
            background: var(--bg-white);
        }
        .fg textarea { resize: vertical; min-height: 120px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        /* ════════════ FOOTER ════════════ */
        footer {
            border-top: 1px solid var(--border);
            padding: 2rem; background: var(--bg-white);
            position: relative; z-index: 1;
        }
        .footer-inner {
            max-width: 1280px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 1rem;
        }
        .footer-l, .footer-r { color: var(--text-muted); font-size: 0.76rem; }
        .footer-dots { display: flex; gap: 4px; }
        .fd {
            width: 6px; height: 6px; border-radius: 50%;
            box-shadow: 0 0 6px currentColor;
        }

        /* ════════════ SCROLL REVEAL ════════════ */
        [data-r] {
            opacity: 0; transform: translateY(40px);
            transition: all 0.9s cubic-bezier(0.16,1,0.3,1);
        }
        [data-r].vis { opacity: 1; transform: translateY(0); }
        [data-r-d="1"] { transition-delay: 0.1s; }
        [data-r-d="2"] { transition-delay: 0.2s; }
        [data-r-d="3"] { transition-delay: 0.3s; }
        [data-r-d="4"] { transition-delay: 0.4s; }
        [data-r-d="5"] { transition-delay: 0.5s; }
        [data-r-d="6"] { transition-delay: 0.6s; }

        /* floating decorative */
        .float-element {
            position: absolute; pointer-events: none; z-index: 0;
            opacity: 0.04;
            animation: floatY 8s ease-in-out infinite;
        }
        .float-element:nth-child(2) { animation-delay: -2s; animation-duration: 10s; }
        .float-element:nth-child(3) { animation-delay: -4s; animation-duration: 12s; }
        @keyframes floatY {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        .float-circle { width: 120px; height: 120px; border-radius: 50%; border: 2px solid var(--bleu); }
        .float-ring { width: 80px; height: 80px; border-radius: 50%; border: 1.5px dashed var(--jaune); animation: floatSpin 20s linear infinite; }
        @keyframes floatSpin { to { transform: rotate(360deg); } }

        /* bento stagger */
        .bento .bc { opacity: 0; transform: translateY(40px) scale(0.95); }
        .bento .bc.vis { opacity: 1; transform: translateY(0) scale(1); }
        .bento .bc:nth-child(1) { transition-delay: 0.05s; }
        .bento .bc:nth-child(2) { transition-delay: 0.12s; }
        .bento .bc:nth-child(3) { transition-delay: 0.19s; }
        .bento .bc:nth-child(4) { transition-delay: 0.26s; }
        .bento .bc:nth-child(5) { transition-delay: 0.33s; }
        .bento .bc:nth-child(6) { transition-delay: 0.40s; }

        /* scroll progress */
        .scroll-progress {
            position: fixed; top: 0; left: 0; height: 3px;
            background: linear-gradient(90deg, var(--bleu), var(--vert), var(--jaune), var(--marron));
            z-index: 9999; width: 0%;
            transition: width 0.1s linear;
        }

        .section-h em {
            position: relative; font-style: italic;
        }
        .section-h em::after {
            content: ''; position: absolute;
            bottom: 2px; left: 0; width: 0; height: 3px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--bleu), var(--jaune));
            transition: width 0.8s cubic-bezier(0.16,1,0.3,1);
        }
        .vis .section-h em::after,
        [data-r].vis .section-h em::after { width: 100%; }

        /* button ripple */
        .btn-glow, .btn-outline { position: relative; overflow: hidden; }
        .btn-ripple {
            position: absolute; border-radius: 50%;
            background: rgba(255,255,255,0.35);
            transform: scale(0); animation: ripple 0.6s ease-out;
            pointer-events: none;
        }
        @keyframes ripple { to { transform: scale(4); opacity: 0; } }

        /* mobile nav */
        .mob-nav {
            position: fixed; inset: 0; z-index: 6000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(24px);
            display: flex; flex-direction: column;
            justify-content: center; align-items: center; gap: 2rem;
            opacity: 0; pointer-events: none; transition: opacity 0.3s;
        }
        .mob-nav.active { opacity: 1; pointer-events: all; }
        .mob-nav a {
            font-weight: 700; font-size: 1.8rem;
            color: var(--text); text-decoration: none;
            transition: color 0.3s;
        }
        .mob-nav a:hover { color: var(--bleu); }
        .mob-close {
            position: absolute; top: 1.5rem; right: 1.5rem;
            background: none; border: none; color: var(--text);
            font-size: 2rem; cursor: pointer;
        }

        /* ════════════ RESPONSIVE ════════════ */
        @media (max-width: 1024px) {
            .bento { grid-template-columns: 1fr 1fr; }
            .bc-water, .bc-cyclone, .bc-seisme, .bc-eco, .bc-sun, .bc-local {
                grid-column: span 1; grid-row: span 1;
            }
            .gammes, .impact { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .gallery { grid-template-columns: 1fr; }
            .gal-item.big { min-height: 280px; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-btn { display: block; }
            .bento { grid-template-columns: 1fr; }
            .inno-row { grid-template-columns: 40px 1fr 44px; gap: 1rem; padding: 1.25rem; }
            .form-row { grid-template-columns: 1fr; }
            .section { padding: 4.5rem 1.25rem; }
            .footer-inner { flex-direction: column; text-align: center; }
            .carousel-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
        }

        /* ════════════════════════════════════════════
           ENRICHMENTS — Subtle & Elegant
        ════════════════════════════════════════════ */

        /* ═══ CUSTOM CURSOR ═══ */
        .cursor-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--bleu);
            position: fixed; top: 0; left: 0;
            pointer-events: none; z-index: 99999;
            transition: transform 0.1s ease, opacity 0.3s;
            mix-blend-mode: multiply;
        }
        .cursor-ring {
            width: 36px; height: 36px; border-radius: 50%;
            border: 1.5px solid var(--bleu);
            opacity: 0.35;
            position: fixed; top: 0; left: 0;
            pointer-events: none; z-index: 99998;
            transition: width 0.3s ease, height 0.3s ease, opacity 0.3s, border-color 0.3s;
            transform: translate(-50%, -50%);
        }
        .cursor-ring.hover {
            width: 56px; height: 56px;
            border-color: var(--jaune);
            opacity: 0.5;
        }
        .cursor-ring.click {
            width: 28px; height: 28px;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .cursor-dot, .cursor-ring { display: none; }
        }
        /* Hide default cursor on desktop */
        @media (min-width: 769px) {
            body { cursor: none; }
            a, button, input, textarea, .carousel-btn, .partner-chip, .gamme, .bc, .impact-card, .inno-row, .gal-item, .carousel-slide {
                cursor: none;
            }
        }

        /* ═══ ANIMATED GRADIENT BLOBS — background depth ═══ */
        .blob-container {
            position: fixed; inset: 0; z-index: 0;
            pointer-events: none; overflow: hidden;
        }
        .gradient-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0;
            animation: blobFloat 20s ease-in-out infinite;
        }
        .blob-1 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(36,120,160,0.12) 0%, transparent 70%);
            top: 10%; left: -5%;
            animation-delay: 0s;
        }
        .blob-2 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(45,138,78,0.1) 0%, transparent 70%);
            top: 50%; right: -8%;
            animation-delay: -7s;
            animation-duration: 25s;
        }
        .blob-3 {
            width: 350px; height: 350px;
            background: radial-gradient(circle, rgba(232,168,32,0.08) 0%, transparent 70%);
            bottom: 15%; left: 30%;
            animation-delay: -14s;
            animation-duration: 22s;
        }
        .blob-4 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(125,94,53,0.07) 0%, transparent 70%);
            top: 30%; right: 25%;
            animation-delay: -5s;
            animation-duration: 28s;
        }
        @keyframes blobFloat {
            0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
            25% { transform: translate(60px, -40px) scale(1.1); opacity: 0.8; }
            50% { transform: translate(-30px, 50px) scale(0.95); opacity: 1; }
            75% { transform: translate(40px, 20px) scale(1.12); opacity: 0.7; }
            100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
        }

        /* ═══ TROPICAL DECORATIVE SVGs (floating leaves/waves) ═══ */
        .deco-svg {
            position: absolute; pointer-events: none; z-index: 0;
            opacity: 0.035;
        }
        .deco-svg.deco-parallax {
            transition: transform 0.1s linear;
        }

        /* ═══ SECTION SEPARATOR — animated wave ═══ */
        .animated-wave svg path {
            animation: waveShift 8s ease-in-out infinite alternate;
        }
        @keyframes waveShift {
            0% { d: path("M0,0 C360,50 720,10 1080,40 C1260,55 1380,20 1440,30 L1440,60 L0,60 Z"); }
            100% { d: path("M0,20 C280,5 560,55 840,25 C1120,0 1320,45 1440,15 L1440,60 L0,60 Z"); }
        }

        /* ═══ ENHANCED HOVER — glow trail on cards ═══ */
        .bc, .gamme, .impact-card, .carousel-slide, .gal-item {
            position: relative;
        }
        .hover-glow {
            position: absolute; pointer-events: none;
            width: 200px; height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(36,120,160,0.08) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
            filter: blur(20px);
        }
        .bc:hover .hover-glow,
        .gamme:hover .hover-glow,
        .impact-card:hover .hover-glow,
        .gal-item:hover .hover-glow { opacity: 1; }

        /* ═══ MAGNETIC BUTTON EFFECT (global) ═══ */
        .btn-glow, .nav-cta, .carousel-btn {
            transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
        }

        /* ═══ SECTION ACCENTS — subtle top/bottom lines ═══ */
        .section-accent {
            position: absolute; left: 50%; transform: translateX(-50%);
            width: 60px; height: 3px; border-radius: 2px;
            background: linear-gradient(90deg, var(--bleu), var(--vert));
            opacity: 0.3;
        }
        .section-accent.top { top: 0; }
        .section-accent.bottom { bottom: 0; }

        /* ═══ STAGGER TEXT REVEAL for section headings ═══ */
        .section-h .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
        }
        [data-r].vis .section-h .word {
            opacity: 1; transform: translateY(0);
        }
        .section-h .word:nth-child(1) { transition-delay: 0.05s; }
        .section-h .word:nth-child(2) { transition-delay: 0.1s; }
        .section-h .word:nth-child(3) { transition-delay: 0.15s; }
        .section-h .word:nth-child(4) { transition-delay: 0.2s; }
        .section-h .word:nth-child(5) { transition-delay: 0.25s; }
        .section-h .word:nth-child(6) { transition-delay: 0.3s; }
        .section-h .word:nth-child(7) { transition-delay: 0.35s; }
        .section-h .word:nth-child(8) { transition-delay: 0.4s; }

        /* ═══ FLOATING TROPICAL SHAPES in sections ═══ */
        .tropical-deco {
            position: absolute; pointer-events: none; z-index: 0;
        }
        .td-leaf {
            opacity: 0.03;
            animation: leafSway 12s ease-in-out infinite;
        }
        .td-leaf:nth-child(even) {
            animation-delay: -5s;
            animation-duration: 15s;
        }
        @keyframes leafSway {
            0%, 100% { transform: rotate(0deg) translateY(0); }
            33% { transform: rotate(3deg) translateY(-10px); }
            66% { transform: rotate(-2deg) translateY(5px); }
        }

        .td-wave-line {
            opacity: 0.025;
            animation: waveLineMove 20s linear infinite;
        }
        @keyframes waveLineMove {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ═══ INNO-ROW icon bounce on hover ═══ */
        .inno-row:hover .inno-icon {
            animation: iconBounce 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        @keyframes iconBounce {
            0% { transform: scale(1); }
            40% { transform: scale(1.2); }
            70% { transform: scale(0.95); }
            100% { transform: scale(1.12); }
        }

        /* ═══ GAMME CARD — shimmer line on hover ═══ */
        .gamme::after {
            content: '';
            position: absolute; top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
            transition: left 0.8s ease;
            z-index: 0;
        }
        .gamme:hover::after { left: 100%; }

        /* ═══ PARTNER CHIP — hover underline ═══ */
        .partner-chip span:first-child {
            position: relative;
        }
        .partner-chip span:first-child::after {
            content: ''; position: absolute;
            bottom: -2px; left: 0;
            width: 0; height: 1.5px;
            background: var(--bleu);
            transition: width 0.3s ease;
        }
        .partner-chip:hover span:first-child::after { width: 100%; }

        /* ═══ FORM INPUT — animated underline focus ═══ */
        .fg { position: relative; }
        .fg::after {
            content: ''; position: absolute;
            bottom: 0; left: 50%;
            width: 0; height: 2px;
            background: linear-gradient(90deg, var(--bleu), var(--vert));
            border-radius: 1px;
            transition: width 0.4s ease, left 0.4s ease;
        }
        .fg:focus-within::after {
            width: 100%; left: 0;
        }

        /* ═══ MARQUEE — subtle gradient fade edges ═══ */
        .marquee-section::before,
        .marquee-section::after {
            content: ''; position: absolute; top: 0; bottom: 0;
            width: 80px; z-index: 2; pointer-events: none;
        }
        .marquee-section { position: relative; }
        .marquee-section::before {
            left: 0;
            background: linear-gradient(90deg, var(--bg-white), transparent);
        }
        .marquee-section::after {
            right: 0;
            background: linear-gradient(270deg, var(--bg-white), transparent);
        }

        /* ═══════════ RICH SECTION BACKGROUNDS ═══════════ */
        /* Subtle gradient mesh overlays per section */
        .section, [id="concept"], [id="innovations"], [id="contact"] {
            overflow: hidden;
        }

        /* Concept section — blue/green organic shapes */
        #concept::before {
            content: ''; position: absolute;
            top: -20%; right: -10%; width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(36,120,160,0.04) 0%, transparent 60%);
            border-radius: 50%; pointer-events: none; z-index: 0;
        }
        #concept::after {
            content: ''; position: absolute;
            bottom: -15%; left: -5%; width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(45,138,78,0.035) 0%, transparent 60%);
            border-radius: 50%; pointer-events: none; z-index: 0;
        }

        /* Innovations — warm diagonal gradient */
        #innovations::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(145deg, rgba(232,168,32,0.02) 0%, transparent 40%, rgba(125,94,53,0.02) 100%);
            pointer-events: none; z-index: 0;
        }
        #innovations::after {
            content: ''; position: absolute;
            top: 20%; right: -8%; width: 450px; height: 450px;
            background: radial-gradient(circle, rgba(232,168,32,0.04) 0%, transparent 60%);
            border-radius: 50%; pointer-events: none; z-index: 0;
        }

        /* Contact — blue accent */
        #contact::before {
            content: ''; position: absolute;
            top: -10%; left: -5%; width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(36,120,160,0.035) 0%, transparent 60%);
            border-radius: 50%; pointer-events: none; z-index: 0;
        }

        /* Gallery/carousel bg section */
        .section[style*="var(--bg)"]::before {
            content: ''; position: absolute; inset: 0;
            background:
                radial-gradient(ellipse at 20% 30%, rgba(36,120,160,0.025) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(45,138,78,0.02) 0%, transparent 50%);
            pointer-events: none; z-index: 0;
        }

        /* Subtle grid pattern on alternate sections */
        .section-grid-pattern {
            position: absolute; inset: 0; pointer-events: none; z-index: 0;
            opacity: 0.018;
            background-image:
                linear-gradient(rgba(36,120,160,0.3) 1px, transparent 1px),
                linear-gradient(90deg, rgba(36,120,160,0.3) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* Dot pattern for other sections */
        .section-dot-pattern {
            position: absolute; inset: 0; pointer-events: none; z-index: 0;
            opacity: 0.025;
            background-image: radial-gradient(circle, var(--bleu) 0.6px, transparent 0.6px);
            background-size: 28px 28px;
        }

        /* ═══════════ TERRAINS SECTION ═══════════ */
        #terrains {
            overflow: hidden;
        }
        #terrains::before {
            content: ''; position: absolute;
            top: -10%; right: -10%; width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(45,138,78,0.04) 0%, transparent 60%);
            border-radius: 50%; pointer-events: none; z-index: 0;
        }
        #terrains::after {
            content: ''; position: absolute;
            bottom: -10%; left: 20%; width: 450px; height: 450px;
            background: radial-gradient(circle, rgba(125,94,53,0.035) 0%, transparent 60%);
            border-radius: 50%; pointer-events: none; z-index: 0;
        }

        .terrain-options {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1rem; margin-bottom: 4rem;
        }

        .terrain-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 24px; padding: 2.25rem 2rem;
            position: relative; overflow: hidden;
            display: flex; flex-direction: column;
            transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
            box-shadow: var(--shadow-sm);
        }
        .terrain-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-hover);
            box-shadow: var(--shadow-xl);
        }
        .terrain-card::before {
            content: ''; position: absolute;
            top: -100px; left: 50%; transform: translateX(-50%);
            width: 300px; height: 300px; border-radius: 50%;
            opacity: 0; transition: opacity 0.6s;
            pointer-events: none;
        }
        .terrain-card:hover::before { opacity: 1; }

        .tc-own::before { background: radial-gradient(circle, var(--bleu-glow) 0%, transparent 70%); }
        .tc-pack::before { background: radial-gradient(circle, var(--vert-glow) 0%, transparent 70%); }
        .tc-cle::before { background: radial-gradient(circle, var(--jaune-glow) 0%, transparent 70%); }

        .terrain-card-top {
            position: absolute; top: 0; left: 0; right: 0; height: 3px;
        }
        .tc-own .terrain-card-top { background: linear-gradient(90deg, var(--bleu), var(--bleu-light)); }
        .tc-pack .terrain-card-top { background: linear-gradient(90deg, var(--vert), var(--vert-light)); }
        .tc-cle .terrain-card-top { background: linear-gradient(90deg, var(--jaune), var(--marron)); }

        .terrain-card-num {
            position: absolute; top: 1.5rem; right: 1.5rem;
            font-weight: 900; font-size: 4rem; line-height: 1;
            color: var(--text); opacity: 0.03;
            transition: opacity 0.5s;
        }
        .terrain-card:hover .terrain-card-num { opacity: 0.06; }

        .terrain-card-emoji {
            font-size: 2.5rem; margin-bottom: 0.75rem;
            position: relative; z-index: 1;
            transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        .terrain-card:hover .terrain-card-emoji { transform: scale(1.2) rotate(-5deg); }

        .terrain-badge {
            display: inline-block; padding: 0.22rem 0.65rem;
            border-radius: 100px; font-size: 0.62rem; font-weight: 700;
            letter-spacing: 0.07em; text-transform: uppercase;
            margin-bottom: 1.5rem; width: fit-content;
            position: relative; z-index: 1;
        }
        .tc-own .terrain-badge { background: var(--bleu-soft); color: var(--bleu); }
        .tc-pack .terrain-badge { background: var(--vert-soft); color: var(--vert); }
        .tc-cle .terrain-badge { background: var(--jaune-soft); color: var(--jaune-dark); }

        .terrain-card h3 {
            font-weight: 700; font-size: 1.3rem;
            color: var(--text); margin-bottom: 0.3rem;
            position: relative; z-index: 1;
        }
        .terrain-card > p {
            color: var(--text-secondary); font-size: 0.87rem; line-height: 1.65;
            flex: 1; position: relative; z-index: 1;
        }
        .terrain-card-sub {
            font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem;
            position: relative; z-index: 1;
        }

        .terrain-feats {
            margin-top: 1.5rem; padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            display: flex; flex-direction: column; gap: 0.55rem;
            position: relative; z-index: 1;
        }
        .tf {
            display: flex; align-items: center; gap: 0.55rem;
            font-size: 0.8rem; color: var(--text-secondary);
        }
        .tf-dot {
            width: 18px; height: 18px; border-radius: 6px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.55rem; flex-shrink: 0;
        }
        .tc-own .tf-dot { background: var(--bleu-soft); color: var(--bleu); }
        .tc-pack .tf-dot { background: var(--vert-soft); color: var(--vert); }
        .tc-cle .tf-dot { background: var(--jaune-soft); color: var(--jaune-dark); }

        .terrain-cta {
            margin-top: 1.5rem;
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 0.65rem 1.4rem;
            border-radius: 100px;
            font-size: 0.82rem; font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            position: relative; z-index: 1;
        }
        .tc-own .terrain-cta {
            background: var(--bleu-soft); color: var(--bleu);
            border: 1px solid rgba(36,120,160,0.15);
        }
        .tc-own .terrain-cta:hover { background: var(--bleu); color: #fff; box-shadow: 0 4px 16px var(--bleu-glow); }
        .tc-pack .terrain-cta {
            background: var(--vert-soft); color: var(--vert);
            border: 1px solid rgba(45,138,78,0.15);
        }
        .tc-pack .terrain-cta:hover { background: var(--vert); color: #fff; box-shadow: 0 4px 16px var(--vert-glow); }
        .tc-cle .terrain-cta {
            background: var(--jaune-soft); color: var(--jaune-dark);
            border: 1px solid rgba(232,168,32,0.15);
        }
        .tc-cle .terrain-cta:hover { background: var(--jaune); color: #fff; box-shadow: 0 4px 16px var(--jaune-glow); }

        .terrain-cta .arrow { transition: transform 0.3s; }
        .terrain-cta:hover .arrow { transform: translateX(3px); }

        /* Terrain highlight — Anse-Bertrand */
        .terrain-highlight {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 2rem; align-items: center;
            margin-bottom: 4rem;
        }
        .terrain-highlight-visual {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 24px;
            min-height: 320px;
            position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: center;
            box-shadow: var(--shadow-sm);
        }
        .terrain-highlight-visual .th-shape {
            position: absolute; border-radius: 50%; opacity: 0.05;
        }
        .terrain-highlight-visual .th-emoji {
            font-size: 5rem; opacity: 0.2;
            position: relative; z-index: 1;
        }
        .terrain-highlight-visual .th-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(26,35,50,0.85) 0%, transparent 100%);
        }
        .terrain-highlight-info h3 {
            font-weight: 700; font-size: 1.5rem;
            color: var(--text); margin-bottom: 0.5rem;
        }
        .terrain-highlight-info > p {
            color: var(--text-secondary); font-size: 0.92rem;
            line-height: 1.7; margin-bottom: 1.25rem;
        }
        .th-features {
            display: flex; flex-direction: column; gap: 0.6rem;
            margin-bottom: 1.5rem;
        }
        .th-feat {
            display: flex; align-items: center; gap: 0.65rem;
            font-size: 0.85rem; color: var(--text-secondary);
        }
        .th-feat-icon {
            width: 32px; height: 32px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.85rem; flex-shrink: 0;
            background: var(--vert-soft);
        }

        /* Vendeur form section */
        .vendeur-section {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
            position: relative; overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .vendeur-section::before {
            content: ''; position: absolute;
            top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--vert), var(--jaune), var(--marron));
        }
        .vendeur-grid {
            display: grid; grid-template-columns: 1fr 1.2fr;
            gap: 3rem; align-items: start;
        }
        .vendeur-info h3 {
            font-weight: 700; font-size: 1.3rem;
            color: var(--text); margin-bottom: 0.75rem;
        }
        .vendeur-info > p {
            color: var(--text-secondary); font-size: 0.9rem;
            line-height: 1.7; margin-bottom: 1.5rem;
        }
        .vendeur-perks {
            display: flex; flex-direction: column; gap: 0.7rem;
        }
        .vp {
            display: flex; align-items: center; gap: 0.65rem;
            font-size: 0.85rem; color: var(--text-secondary);
        }
        .vp-icon {
            width: 32px; height: 32px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.85rem; flex-shrink: 0;
            background: var(--marron-soft);
        }

        @media (max-width: 1024px) {
            .terrain-options { grid-template-columns: 1fr; }
            .terrain-highlight { grid-template-columns: 1fr; }
            .vendeur-grid { grid-template-columns: 1fr; }
        }

        /* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.65);
}
.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: waPulse 2.2s ease-out infinite;
    z-index: -1;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}
@media (max-width: 768px) {
    .wa-float { width: 54px; height: 54px; bottom: 1rem; right: 1rem; }
}


