/* ═══════════════════════════════════════════
           RESET & VARIABLES
        ═══════════════════════════════════════════ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #111111;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --accent: #7b5cf0;
            --accent-glow: rgba(123, 92, 240, 0.35);
            --radius: 20px;
            --font-title: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) var(--bg-primary);
        }

        body {
            font-family: var(--font-body);
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-secondary);
            background: var(--bg-primary);
            overflow-x: hidden;
            cursor: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        ::selection {
            background: rgba(123, 92, 240, 0.4);
            color: #fff;
        }

        :focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        /* ═══════════════════════════════════════════
           CURSEUR PERSONNALISÉ
        ═══════════════════════════════════════════ */
        .cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            will-change: transform;
        }

        .cursor-ring {
            position: fixed;
            top: 0;
            left: 0;
            width: 36px;
            height: 36px;
            border: 1.5px solid rgba(123, 92, 240, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            will-change: transform;
            transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .cursor-ring.hover {
            width: 56px;
            height: 56px;
            border-color: var(--accent);
            background: rgba(123, 92, 240, 0.08);
        }

        /* ═══════════════════════════════════════════
           GRAIN OVERLAY
        ═══════════════════════════════════════════ */
        .grain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            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;
            background-size: 256px 256px;
        }

        /* ═══════════════════════════════════════════
           ANIMATIONS SCROLL
        ═══════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ═══════════════════════════════════════════
           UTILITAIRES
        ═══════════════════════════════════════════ */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        section {
            padding: 120px 0;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-title);
            color: var(--text-primary);
            font-weight: 800;
            text-rendering: optimizeLegibility;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: none;
        }

        button, input, textarea {
            cursor: none;
        }

        .section-label {
            font-family: var(--font-title);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
            display: block;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            line-height: 1.15;
            margin-bottom: 24px;
        }

        .section-subtitle {
            font-size: 19px;
            max-width: 600px;
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════
           NAVBAR
        ═══════════════════════════════════════════ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-family: var(--font-title);
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }

        .nav-logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color 0.3s ease;
            position: relative;
        }

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

        .nav-links a:hover {
            color: var(--text-primary);
        }

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

        .nav-cta {
            background: var(--accent);
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .nav-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px var(--accent-glow);
        }

        .nav-cta::after { display: none !important; }

        /* Burger mobile */
        .nav-burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            padding: 8px;
        }

        .nav-burger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .nav-burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-burger.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ═══════════════════════════════════════════
           HERO
        ═══════════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 160px 0 120px;
        }

        /* ── Hero aurora canvas ── */
        .hero-aurora {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-aurora canvas {
            display: block;
            width: 100%;
            height: 100%;
        }

        /* Bottom gradient to blend into next section */
        .hero-aurora-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 35%;
            background: linear-gradient(to bottom, transparent, #0a0a0a);
            z-index: 2;
            pointer-events: none;
        }

        /* Gradient mesh animé (CSS fallback — hidden when canvas is active) */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            display: none;
        }

        .hero .container {
            position: relative;
            z-index: 3;
        }

        .hero-title {
            font-size: clamp(48px, 7vw, 96px);
            line-height: 1.05;
            letter-spacing: -2px;
            max-width: 900px;
            margin-bottom: 28px;
        }

        .hero-title .accent {
            background: linear-gradient(135deg, #7b5cf0, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 36px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn:hover {
            transform: scale(1.03);
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }

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

        .btn-primary:hover {
            box-shadow: 0 0 40px var(--accent-glow);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.06);
            color: var(--text-primary);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        /* ═══════════════════════════════════════════
           BANDEAU STATS
        ═══════════════════════════════════════════ */
        .stats {
            background: var(--bg-secondary);
            padding: 80px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .stat-item.counted .stat-number {
            animation: statGlow 0.6s ease forwards;
        }

        @keyframes statGlow {
            0% { text-shadow: none; transform: scale(1); }
            50% { text-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(123,92,240,0.15); transform: scale(1.08); }
            100% { text-shadow: 0 0 15px rgba(123,92,240,0.2); transform: scale(1); }
        }

        .stat-number {
            font-family: var(--font-title);
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 8px;
            will-change: transform;
        }

        .stat-number .accent {
            color: var(--accent);
        }

        .stat-label {
            font-size: 15px;
            color: var(--text-secondary);
        }

        /* ═══════════════════════════════════════════
           BÉNÉFICES — CARTES GLASSMORPHISM
        ═══════════════════════════════════════════ */
        .benefits {
            background: #0f0f0f;
            position: relative;
            overflow: hidden;
        }
        .benefits-starfield {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        .benefits .container {
            position: relative;
            z-index: 1;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 64px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius);
            padding: 48px 40px;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.4s ease,
                        border-color 0.4s ease;
        }

        .benefit-card:hover {
            transform: scale(1.02) translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(123, 92, 240, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 24px;
        }

        .benefit-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 16px;
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════
           NOS CRÉATIONS — MOCKUPS NAVIGATEUR
        ═══════════════════════════════════════════ */
        .creations {
            background: var(--bg-secondary);
        }

        .creations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 64px;
        }

        .creation-card {
            display: block;
            border-radius: var(--radius);
            overflow: hidden;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.4s ease,
                        border-color 0.4s ease;
            color: inherit;
        }

        .creation-card:hover {
            transform: scale(1.02) translateY(-6px);
            box-shadow: 0 24px 60px rgba(0,0,0,0.4);
            border-color: rgba(123, 92, 240, 0.25);
        }

        /* Barre de navigateur */
        .browser-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 18px;
            background: rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .browser-dots {
            display: flex;
            gap: 6px;
        }

        .browser-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .browser-dots span:nth-child(1) { background: #ff5f57; }
        .browser-dots span:nth-child(2) { background: #ffbd2e; }
        .browser-dots span:nth-child(3) { background: #28c840; }

        .browser-url {
            flex: 1;
            margin-left: 12px;
            background: rgba(255,255,255,0.06);
            border-radius: 8px;
            padding: 6px 14px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* ═══════════════════════════════════════════
           MOCKUPS — Mini-sites réalistes CSS-only
        ═══════════════════════════════════════════ */
        .browser-content {
            height: 300px;
            position: relative;
            overflow: hidden;
        }
        .mock { position: absolute; inset: 0; }

        /* Overlay hover "Visiter" */
        .browser-content .preview-overlay {
            position: absolute; inset: 0; z-index: 2;
            display: flex; align-items: center; justify-content: center;
            background: rgba(0,0,0,0);
            transition: background 0.35s ease;
        }
        .creation-card:hover .preview-overlay { background: rgba(0,0,0,0.55); }
        .preview-overlay .visit-label {
            opacity: 0; transform: translateY(10px);
            transition: opacity 0.35s ease, transform 0.35s ease;
            background: var(--accent); color: #fff;
            padding: 10px 28px; border-radius: 50px;
            font-size: 14px; font-weight: 600;
            pointer-events: none;
        }
        .creation-card:hover .visit-label { opacity: 1; transform: translateY(0); }

        /* ── Éléments communs mockup ── */
        .m-nav {
            height: 28px; display: flex; align-items: center;
            padding: 0 12px; gap: 8px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .m-nav .m-logo { width: 40px; height: 7px; border-radius: 3px; }
        .m-nav .m-links { display: flex; gap: 6px; margin-left: auto; }
        .m-nav .m-link { width: 20px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.2); }
        .m-nav .m-btn { width: 32px; height: 12px; border-radius: 6px; margin-left: 6px; }
        .m-line { border-radius: 3px; }
        .m-hero { position: relative; }

        /* ════════════════════════════
           1. BLC CONSTRUCTION
           Site BTP — Fond sombre, accents orangés/dorés
        ════════════════════════════ */
        .mockup-blc .browser-content { background: #0e0e0e; }
        .mockup-blc .m-nav { background: rgba(14,14,14,0.95); }
        .mockup-blc .m-nav .m-logo { background: #d4922a; }
        .mockup-blc .m-nav .m-btn { background: #d4922a; }

        .mockup-blc .m-hero {
            margin: 0; height: 140px;
            background: linear-gradient(135deg, #1a1510, #2c2015);
            display: flex; align-items: center; padding: 0 20px;
            overflow: hidden;
        }
        .mockup-blc .m-hero::before {
            content: ''; position: absolute; top: 0; right: 0;
            width: 55%; height: 100%;
            background:
                linear-gradient(to left, rgba(14,14,14,0) 0%, #0e0e0e 100%),
                linear-gradient(135deg, #3a2a15 0%, #6b4c25 40%, #a07535 70%, #5c3d18 100%);
            opacity: 0.7;
        }
        .mockup-blc .m-hero-text { position: relative; z-index: 1; }
        .mockup-blc .m-hero-text .m-line:nth-child(1) { width: 130px; height: 10px; background: rgba(255,255,255,0.85); margin-bottom: 6px; }
        .mockup-blc .m-hero-text .m-line:nth-child(2) { width: 90px; height: 6px; background: rgba(255,255,255,0.3); margin-bottom: 10px; }
        .mockup-blc .m-hero-text .m-line:nth-child(3) { width: 60px; height: 16px; background: #d4922a; border-radius: 8px; }

        .mockup-blc .m-services {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
            padding: 12px;
        }
        .mockup-blc .m-service {
            background: #181818; border-radius: 8px; padding: 10px;
            border: 1px solid rgba(212,146,42,0.1);
        }
        .mockup-blc .m-service .m-icon {
            width: 20px; height: 20px; border-radius: 6px;
            background: rgba(212,146,42,0.15); margin-bottom: 6px;
        }
        .mockup-blc .m-service .m-line:nth-child(2) { width: 70%; height: 5px; background: rgba(255,255,255,0.5); margin-bottom: 4px; }
        .mockup-blc .m-service .m-line:nth-child(3) { width: 90%; height: 3px; background: rgba(255,255,255,0.12); margin-bottom: 2px; }
        .mockup-blc .m-service .m-line:nth-child(4) { width: 75%; height: 3px; background: rgba(255,255,255,0.08); }

        .mockup-blc .m-stats-bar {
            display: flex; justify-content: space-around;
            padding: 10px 12px; background: #141414;
            border-top: 1px solid rgba(212,146,42,0.12);
        }
        .mockup-blc .m-stat { text-align: center; }
        .mockup-blc .m-stat .m-num { width: 24px; height: 8px; background: #d4922a; border-radius: 3px; margin: 0 auto 3px; }
        .mockup-blc .m-stat .m-lbl { width: 30px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; margin: 0 auto; }

        /* ════════════════════════════
           2. MODA BIJOUX
           E-commerce bijoux — Noir/rose gold/crème
        ════════════════════════════ */
        .mockup-moda .browser-content { background: #0c0a0e; }
        .mockup-moda .m-nav { background: rgba(12,10,14,0.95); }
        .mockup-moda .m-nav .m-logo { background: linear-gradient(90deg, #c9a87c, #e8cfa9); }
        .mockup-moda .m-nav .m-btn { background: linear-gradient(90deg, #c9a87c, #e8cfa9); }

        .mockup-moda .m-hero {
            height: 130px;
            background: linear-gradient(160deg, #1a1520 0%, #221830 100%);
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 20px; overflow: hidden;
        }
        .mockup-moda .m-hero::after {
            content: ''; position: absolute; top: -30px; right: 30px;
            width: 120px; height: 120px; border-radius: 50%;
            background: radial-gradient(circle, rgba(201,168,124,0.2), transparent 70%);
        }
        .mockup-moda .m-hero-text { position: relative; z-index: 1; }
        .mockup-moda .m-hero-text .m-line:nth-child(1) { width: 100px; height: 9px; background: rgba(255,255,255,0.85); margin-bottom: 5px; }
        .mockup-moda .m-hero-text .m-line:nth-child(2) { width: 70px; height: 5px; background: rgba(255,255,255,0.25); margin-bottom: 10px; }
        .mockup-moda .m-hero-text .m-line:nth-child(3) { width: 55px; height: 14px; border-radius: 7px; background: linear-gradient(90deg, #c9a87c, #e8cfa9); }
        /* Bijou hero */
        .mockup-moda .m-ring {
            position: relative; z-index: 1;
            width: 50px; height: 50px; border-radius: 50%;
            border: 3px solid #c9a87c;
            box-shadow: 0 0 20px rgba(201,168,124,0.25);
        }
        .mockup-moda .m-ring::before {
            content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
            width: 12px; height: 12px;
            background: linear-gradient(135deg, #fff, #e8cfa9);
            clip-path: polygon(50% 0%, 100% 40%, 80% 100%, 20% 100%, 0% 40%);
            filter: drop-shadow(0 0 4px rgba(201,168,124,0.6));
        }

        .mockup-moda .m-products {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
            padding: 12px;
        }
        .mockup-moda .m-product {
            background: #13101a; border-radius: 10px; overflow: hidden;
            border: 1px solid rgba(201,168,124,0.08);
        }
        .mockup-moda .m-product .m-img {
            height: 65px;
            background: linear-gradient(145deg, #1a1525, #241d32);
            display: flex; align-items: center; justify-content: center;
        }
        .mockup-moda .m-product .m-img .m-jewel {
            width: 18px; height: 18px; border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, #e8cfa9, #c9a87c, #a08060);
            box-shadow: 0 0 10px rgba(201,168,124,0.2);
        }
        .mockup-moda .m-product .m-details { padding: 6px 8px; }
        .mockup-moda .m-product .m-details .m-line:nth-child(1) { width: 65%; height: 4px; background: rgba(255,255,255,0.4); margin-bottom: 3px; }
        .mockup-moda .m-product .m-details .m-line:nth-child(2) { width: 40%; height: 4px; background: #c9a87c; }

        /* ════════════════════════════
           3. SWEET & SALTY PARIS
           Food/traiteur — Tons chauds, crème, terracotta
        ════════════════════════════ */
        .mockup-sweet .browser-content { background: #faf6f1; }
        .mockup-sweet .m-nav { background: rgba(250,246,241,0.97); border-color: rgba(0,0,0,0.06); }
        .mockup-sweet .m-nav .m-logo { background: #2c2c2c; }
        .mockup-sweet .m-nav .m-link { background: rgba(0,0,0,0.2); }
        .mockup-sweet .m-nav .m-btn { background: #c45e3a; }

        .mockup-sweet .m-hero {
            height: 135px;
            background: linear-gradient(135deg, #f0e6d8 0%, #e8d5c0 50%, #d4b896 100%);
            display: flex; align-items: center; padding: 0 20px; gap: 20px;
            overflow: hidden;
        }
        .mockup-sweet .m-hero-text { flex: 1; }
        .mockup-sweet .m-hero-text .m-line:nth-child(1) { width: 110px; height: 10px; background: #2c2c2c; margin-bottom: 5px; }
        .mockup-sweet .m-hero-text .m-line:nth-child(2) { width: 80px; height: 5px; background: rgba(44,44,44,0.3); margin-bottom: 10px; }
        .mockup-sweet .m-hero-text .m-line:nth-child(3) { width: 55px; height: 15px; background: #c45e3a; border-radius: 8px; }
        /* Croissant/food shape */
        .mockup-sweet .m-food-img {
            width: 80px; height: 80px; border-radius: 50%;
            background: radial-gradient(ellipse at 40% 40%, #e8c88a, #c9a05c, #a07830);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            position: relative; flex-shrink: 0;
        }
        .mockup-sweet .m-food-img::before {
            content: ''; position: absolute; top: 20%; left: 15%; width: 70%; height: 50%;
            border-radius: 50%; background: rgba(255,255,255,0.2);
        }

        .mockup-sweet .m-cards {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
            padding: 12px;
        }
        .mockup-sweet .m-card {
            background: #fff; border-radius: 10px; overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .mockup-sweet .m-card .m-img {
            height: 60px;
        }
        .mockup-sweet .m-card:nth-child(1) .m-img { background: linear-gradient(135deg, #e8c88a, #d4a862); }
        .mockup-sweet .m-card:nth-child(2) .m-img { background: linear-gradient(135deg, #d4b896, #c9a87c); }
        .mockup-sweet .m-card:nth-child(3) .m-img { background: linear-gradient(135deg, #c45e3a, #e07050); }
        .mockup-sweet .m-card .m-details { padding: 7px 8px; }
        .mockup-sweet .m-card .m-details .m-line:nth-child(1) { width: 70%; height: 5px; background: #2c2c2c; margin-bottom: 3px; }
        .mockup-sweet .m-card .m-details .m-line:nth-child(2) { width: 45%; height: 4px; background: rgba(44,44,44,0.15); margin-bottom: 3px; }
        .mockup-sweet .m-card .m-details .m-line:nth-child(3) { width: 30%; height: 4px; background: #c45e3a; border-radius: 2px; }

        /* ════════════════════════════
           4. BLYSS DRINK
           Boisson lifestyle — Sombre, néon violet/bleu
        ════════════════════════════ */
        .mockup-blyss .browser-content { background: #08060e; }
        .mockup-blyss .m-nav { background: rgba(8,6,14,0.95); }
        .mockup-blyss .m-nav .m-logo { background: linear-gradient(90deg, #7b5cf0, #a78bfa); }
        .mockup-blyss .m-nav .m-btn { background: linear-gradient(90deg, #7b5cf0, #a78bfa); }

        .mockup-blyss .m-hero {
            height: 170px;
            background: radial-gradient(ellipse at 50% 80%, rgba(123,92,240,0.12), transparent 60%),
                        linear-gradient(180deg, #0c0818, #10082a);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 8px;
            overflow: hidden;
        }
        /* Canette CSS */
        .mockup-blyss .m-can-wrap {
            position: relative; width: 42px; height: 72px; margin-bottom: 4px;
        }
        .mockup-blyss .m-can {
            width: 42px; height: 72px;
            background: linear-gradient(180deg, #1a1040, #3520a0, #7b5cf0, #3520a0, #1a1040);
            border-radius: 6px 6px 4px 4px;
            box-shadow: -6px 0 20px rgba(123,92,240,0.15), 6px 0 20px rgba(123,92,240,0.15);
            position: relative; overflow: hidden;
        }
        .mockup-blyss .m-can::before {
            content: ''; position: absolute; top: 28%; left: 15%; right: 15%; height: 20%;
            background: rgba(255,255,255,0.07); border-radius: 2px;
        }
        .mockup-blyss .m-can::after {
            content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            width: 28px; height: 6px; border-radius: 0 0 3px 3px;
            background: linear-gradient(180deg, #888, #555);
        }
        .mockup-blyss .m-can-glow {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
            width: 100px; height: 100px; border-radius: 50%;
            background: radial-gradient(circle, rgba(123,92,240,0.25), transparent 70%);
            filter: blur(15px); z-index: -1;
        }
        .mockup-blyss .m-hero-text { text-align: center; }
        .mockup-blyss .m-hero-text .m-line:nth-child(1) { width: 100px; height: 8px; background: rgba(255,255,255,0.8); margin: 0 auto 5px; }
        .mockup-blyss .m-hero-text .m-line:nth-child(2) { width: 130px; height: 4px; background: rgba(255,255,255,0.2); margin: 0 auto 8px; }
        .mockup-blyss .m-hero-text .m-cta { width: 60px; height: 16px; border-radius: 8px; background: linear-gradient(90deg, #7b5cf0, #a78bfa); margin: 0 auto; }

        .mockup-blyss .m-features {
            display: flex; gap: 8px; padding: 10px 12px;
        }
        .mockup-blyss .m-feature {
            flex: 1; background: rgba(123,92,240,0.06);
            border: 1px solid rgba(123,92,240,0.1);
            border-radius: 8px; padding: 8px; text-align: center;
        }
        .mockup-blyss .m-feature .m-icon {
            width: 16px; height: 16px; border-radius: 50%;
            background: rgba(123,92,240,0.2); margin: 0 auto 5px;
        }
        .mockup-blyss .m-feature .m-line:nth-child(2) { width: 60%; height: 4px; background: rgba(255,255,255,0.35); margin: 0 auto 3px; }
        .mockup-blyss .m-feature .m-line:nth-child(3) { width: 80%; height: 3px; background: rgba(255,255,255,0.1); margin: 0 auto; }

        .creation-info {
            padding: 28px;
        }

        .creation-info h3 {
            font-size: 20px;
            margin-bottom: 6px;
        }

        .creation-info p {
            font-size: 14px;
        }

        .creation-tag {
            display: inline-block;
            margin-top: 12px;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(123, 92, 240, 0.12);
            color: var(--accent);
        }

        /* ═══════════════════════════════════════════
           PROCESSUS — 3 ÉTAPES
        ═══════════════════════════════════════════ */
        .process {
            background: var(--bg-primary);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 64px;
            position: relative;
        }

        /* Ligne de connexion */
        .process-steps::before {
            content: '';
            position: absolute;
            top: 48px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), rgba(123,92,240,0.2));
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            background: var(--bg-secondary);
            border: 2px solid rgba(123, 92, 240, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            font-family: var(--font-title);
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.08);
            box-shadow: 0 0 40px var(--accent-glow);
        }

        .process-step h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 16px;
            max-width: 300px;
            margin: 0 auto;
        }

        /* ═══════════════════════════════════════════
           CTA FINALE
        ═══════════════════════════════════════════ */
        .final-cta {
            background: var(--bg-secondary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-glow), transparent 70%);
            opacity: 0.3;
            pointer-events: none;
        }

        .final-cta .container {
            position: relative;
            z-index: 1;
        }

        .final-cta .section-title {
            max-width: 700px;
            margin: 0 auto 16px;
        }

        .final-cta .section-subtitle {
            max-width: 560px;
            margin: 0 auto 40px;
        }

        /* ═══════════════════════════════════════════
           FORMULAIRE CONTACT
        ═══════════════════════════════════════════ */
        .contact {
            background: var(--bg-primary);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 64px;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 32px;
            font-size: 17px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .contact-detail-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(123, 92, 240, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-detail span {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .contact-form {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius);
            padding: 48px;
        }

        .form-group {
            margin-bottom: 24px;
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.2);
        }

        .form-group input.error,
        .form-group textarea.error {
            border-color: #ff4d4d;
            box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
        }

        .form-error {
            font-size: 13px;
            color: #ff4d4d;
            margin-top: 6px;
            display: none;
        }

        .form-error.show {
            display: block;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            outline: none;
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237b5cf0' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        .form-group select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

        .form-group select option {
            background: #111;
            color: #fff;
        }

        .form-radio-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .form-radio-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
            transition: all 0.25s ease;
            flex: 1;
            min-width: 120px;
            justify-content: center;
        }

        .form-radio-group label:hover {
            border-color: rgba(123, 92, 240, 0.3);
            background: rgba(123, 92, 240, 0.06);
        }

        .form-radio-group input[type="radio"] {
            display: none;
        }

        .form-radio-group input[type="radio"]:checked + label {
            border-color: var(--accent);
            background: rgba(123, 92, 240, 0.12);
            color: var(--text-primary);
            font-weight: 600;
        }

        .form-section-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 16px;
            margin-top: 8px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-row-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .form-success.show {
            display: block;
        }

        .form-success-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(123, 92, 240, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
        }

        .form-success h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        /* ═══════════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════════ */
        .footer {
            background: var(--bg-secondary);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-family: var(--font-title);
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--text-secondary);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            font-size: 14px;
            color: rgba(255,255,255,0.25);
        }

        /* ═══════════════════════════════════════════
           BOUTON TÉLÉPHONE FLOTTANT
        ═══════════════════════════════════════════ */
        .phone-fab {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            box-shadow: 0 8px 30px var(--accent-glow);
            transition: transform 0.3s ease;
            animation: fabPulse 2.5s infinite;
        }

        .phone-fab:hover {
            transform: scale(1.1);
            animation: none;
        }

        .phone-fab svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }

        .phone-fab .tooltip {
            position: absolute;
            right: 72px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .phone-fab:hover .tooltip {
            opacity: 1;
        }

        @keyframes fabPulse {
            0%, 100% { box-shadow: 0 8px 30px var(--accent-glow); }
            50% { box-shadow: 0 8px 50px rgba(123, 92, 240, 0.55); }
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .creations-grid {
                grid-template-columns: 1fr;
                max-width: 520px;
                margin-left: auto;
                margin-right: auto;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
            }

            .process-steps::before {
                display: none;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 48px;
                max-width: 480px;
                margin-left: auto;
                margin-right: auto;
            }

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

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

            .container {
                padding: 0 20px;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(10, 10, 10, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 32px;
            }

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

            .nav-links a {
                font-size: 24px;
            }

            .nav-burger {
                display: flex;
                z-index: 1001;
            }

            .hero-title {
                letter-spacing: -1px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

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

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

            .form-row-3 {
                grid-template-columns: 1fr;
            }
            .form-radio-group {
                gap: 8px;
            }
            .form-radio-group label {
                min-width: 0;
                font-size: 13px;
                padding: 8px 12px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }

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

            /* Masquer le curseur custom sur mobile/tablette */
            .cursor-dot, .cursor-ring, .cursor-trail, #cursorTrail {
                display: none;
            }
            body {
                cursor: auto;
            }
            a, button, input, textarea {
                cursor: auto;
            }
        }

        @media (max-width: 480px) {
            .hero-ctas {
                flex-direction: column;
            }

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

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

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        /* Preloader */
        .preloader {
            position: fixed;
            inset: 0;
            z-index: 100000;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .preloader-text {
            font-family: var(--font-title);
            font-size: 40px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -1px;
            animation: preloaderPulse 1s ease-in-out infinite alternate;
        }
        .preloader-text span { color: var(--accent); }
        @keyframes preloaderPulse {
            from { opacity: 0.5; transform: scale(0.96); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Active nav link */
        .nav-links a.active {
            color: var(--text-primary);
        }
        .nav-links a.active::after {
            width: 100%;
        }

        /* Stat bounce on reveal */
        .stat-item.counted .stat-number {
            animation: statBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        @keyframes statBounce {
            0% { transform: scale(1); }
            50% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }

        /* ═══════════════════════════════════════════
           PREMIUM ANIMATIONS
        ═══════════════════════════════════════════ */

        /* ── Benefits: Rotating border gradient ── */
        .benefit-card {
            position: relative;
            overflow: hidden;
            z-index: 0;
        }
        .benefit-card::before {
            content: '';
            position: absolute;
            top: -1px; left: -1px; right: -1px; bottom: -1px;
            background: conic-gradient(from var(--border-angle, 0deg), transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
            border-radius: calc(var(--radius) + 1px);
            z-index: -2;
            opacity: 0;
            transition: opacity 0.5s ease;
            animation: borderRotate 4s linear infinite;
        }
        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: #0f0f0f;
            border-radius: var(--radius);
            z-index: -1;
        }
        .benefit-card:hover::before {
            opacity: 1;
        }
        @keyframes borderRotate {
            to { --border-angle: 360deg; }
        }
        @property --border-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        /* ── Benefits: Floating icons ── */
        .benefit-icon {
            animation: iconFloat 3s ease-in-out infinite;
            will-change: transform;
        }
        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        /* ── Benefits card hover icon ── */
        .benefit-card:hover .benefit-icon {
            background: rgba(123, 92, 240, 0.16);
            transition: background 0.4s ease;
        }

        /* ── Creation cards: stagger entrance + hover parallax hint ── */
        .creation-card {
            will-change: transform;
        }
        .creation-card .browser-content .mock {
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .creation-card:hover .browser-content .mock {
            transform: translateY(-15px);
        }
        .creation-card .browser-url {
            transition: box-shadow 0.4s ease, background 0.4s ease;
        }
        .creation-card:hover .browser-url {
            box-shadow: 0 0 12px rgba(123, 92, 240, 0.15);
            background: rgba(123, 92, 240, 0.08);
        }

        /* ── Process: Pulsing step number circles ── */
        .step-number {
            position: relative;
            will-change: transform;
        }
        .step-number::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1.5px solid rgba(123, 92, 240, 0.2);
            animation: pulseRing 2.5s ease-in-out infinite;
        }
        @keyframes pulseRing {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.12); opacity: 0; }
        }

        /* ── Process: Animated connecting line (gradient sweep) ── */
        .process-steps::before {
            background: linear-gradient(90deg, rgba(123,92,240,0.1), var(--accent), rgba(123,92,240,0.1));
            background-size: 200% 100%;
            animation: lineGradient 3s ease-in-out infinite;
        }
        @keyframes lineGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* ── CTA Section: Firefly particles (canvas positioned) ── */
        .final-cta {
            position: relative;
        }
        .cta-particles-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        .final-cta .container {
            position: relative;
            z-index: 1;
        }

        /* ── Contact Form: Enhanced focus glow ── */
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            box-shadow: 0 0 0 3px var(--accent-glow), 0 0 20px rgba(123, 92, 240, 0.1);
        }

        /* ── Contact Form: Shimmer submit button ── */
        .contact-form .btn-primary {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }
        .contact-form .btn-primary:hover {
            transform: scale(1.03) translateY(-2px);
            box-shadow: 0 8px 40px var(--accent-glow), 0 0 80px rgba(123, 92, 240, 0.15);
        }

        /* ── Navbar: Progressive glassmorphism ── */
        .navbar {
            transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
            border-bottom: 1px solid transparent;
        }

        /* ── Footer: Animated gradient border-top ── */
        .footer {
            border-top: 2px solid transparent;
            border-image: linear-gradient(90deg, transparent, var(--accent), transparent) 1;
            animation: footerBorder 4s ease-in-out infinite;
            position: relative;
        }
        @keyframes footerBorder {
            0%, 100% { border-image: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%) 1; }
            50% { border-image: linear-gradient(90deg, transparent 30%, rgba(123,92,240,0.4) 50%, transparent 70%) 1; }
        }

        /* ── Section divider animated lines ── */
        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            background-size: 200% 100%;
            animation: dividerSweep 3s ease-in-out infinite;
            opacity: 0.4;
        }
        @keyframes dividerSweep {
            0% { background-position: -100% 0; opacity: 0.2; }
            50% { background-position: 100% 0; opacity: 0.5; }
            100% { background-position: 300% 0; opacity: 0.2; }
        }

        /* ── Cursor trail dots ── */
        .cursor-trail {
            position: fixed;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent);
            pointer-events: none;
            z-index: 99997;
            opacity: 0;
            will-change: transform, opacity;
            transition: opacity 0.3s ease;
        }

        /* ── Section title subtle parallax class ── */
        .parallax-title {
            will-change: transform;
            transition: transform 0.1s linear;
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html { scroll-behavior: auto; }
            .reveal { opacity: 1; transform: none; }
            .cursor-trail, #cursorTrail { display: none; }
            .benefit-card::before { display: none; }
            .section-divider { animation: none; opacity: 0.3; }
            .cta-particles-canvas, .benefits-starfield { display: none; }
        }

/* ═══════════════════════════════════════════
   V4 — AMÉLIORATIONS
   Tarifs, témoignages, FAQ, about-mini,
   accessibilité, skip-link, focus-visible
═══════════════════════════════════════════ */

/* Skip link (a11y) */
.skip-to-main {
    position: absolute;
    top: -48px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s ease;
}
.skip-to-main:focus { top: 16px; outline: 3px solid #fff; outline-offset: 2px; }

/* Focus-visible universel */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible,
.pricing-card:focus-visible,
.faq-item summary:focus-visible {
    outline: 3px solid var(--accent) !important;
    outline-offset: 3px;
    border-radius: 10px;
}

/* ────────── TARIFS ────────── */
.pricing { padding: 110px 0; position: relative; }
.pricing-header { text-align: center; margin-bottom: 70px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}
.pricing-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 44px 32px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(123,92,240,0.35);
    box-shadow: 0 30px 70px rgba(123,92,240,0.18);
}
.pricing-card--featured {
    border-color: rgba(123,92,240,0.55);
    background: linear-gradient(180deg, rgba(123,92,240,0.10), rgba(123,92,240,0.02));
}
.pricing-card--featured::before {
    content: "Le plus demandé";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    white-space: nowrap;
}
.pricing-name {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.pricing-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 28px;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}
.pricing-amount {
    font-family: var(--font-title);
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}
.pricing-card--featured .pricing-amount { color: var(--accent); }
.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}
.pricing-from {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}
.pricing-features li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(123,92,240,0.18);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237b5cf0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}
.pricing-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}
.pricing-footnote {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}
.pricing-footnote strong { color: var(--text-primary); }

.pricing-included {
    margin-top: 56px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    text-align: center;
}
.pricing-included strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 700;
}
.pricing-included span {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 0 10px;
}

@media (max-width: 960px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
    .pricing-card--featured { order: -1; }
}

/* ────────── TÉMOIGNAGES ────────── */
.testimonials { padding: 110px 0; position: relative; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.testimonial-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .3s ease, border-color .3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(123,92,240,0.35);
}
.testimonial-stars { color: #ffc94d; font-size: 18px; letter-spacing: 2px; }
.testimonial-quote {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.65;
    font-style: italic;
}
.testimonial-quote::before { content: "« "; color: var(--accent); font-weight: 700; }
.testimonial-quote::after { content: " »"; color: var(--accent); font-weight: 700; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #4f8ef7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-title);
    flex-shrink: 0;
}
.testimonial-meta {
    display: flex;
    flex-direction: column;
}
.testimonial-name { color: var(--text-primary); font-weight: 600; font-size: 15px; }
.testimonial-role { color: var(--text-secondary); font-size: 13px; }

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ────────── FAQ ────────── */
.faq { padding: 110px 0; }
.faq-list {
    max-width: 820px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease;
}
.faq-item[open] { border-color: rgba(123,92,240,0.45); background: rgba(123,92,240,0.05); }
.faq-item summary {
    list-style: none;
    padding: 24px 28px;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 28px;
    font-weight: 300;
    color: var(--accent);
    transition: transform .3s ease;
    flex-shrink: 0;
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
    padding: 0 28px 26px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer strong { color: var(--text-primary); }

/* ────────── MINI ABOUT ────────── */
.about-mini { padding: 90px 0; }
.about-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.about-mini h2 {
    font-family: var(--font-title);
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}
.about-mini p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.about-badge {
    background: rgba(123,92,240,0.12);
    border: 1px solid rgba(123,92,240,0.3);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
}
.about-stat-num {
    font-family: var(--font-title);
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.about-stat-lbl { color: var(--text-secondary); font-size: 14px; }

@media (max-width: 800px) {
    .about-mini-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Nav link additions */
.nav-links a.nav-tarifs { color: var(--accent); font-weight: 600; }

/* Legal page */
.legal-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}
.legal-page h1 {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 40px;
}
.legal-page h2 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 14px;
}
.legal-page p, .legal-page li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 10px;
}
.legal-page a { color: var(--accent); text-decoration: underline; }
