/* ===== CLIQUE & BRILLE - STYLE PARTAGE ===== */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --creme: #F7F4EF;
            --creme-dark: #EDE9E2;
            --violet: #D98FEF;
            --violet-light: #EEC9F8;
            --violet-dark: #B866D4;
            --violet-glow: rgba(185,102,212,0.15);
            --noir: #1A1A1A;
            --noir-soft: #2C2C2C;
            --gris: #6B6B6B;
            --gris-light: #9A9A9A;
            --blanc: #ffffff;
            --gold: #C9A96E;
        }
        html { scroll-behavior: smooth; }
        @view-transition { navigation: auto; }
        body { font-family: 'DM Sans', sans-serif; background: var(--creme); color: var(--noir); overflow-x: hidden; position: relative; }

        /* ===== FOND ANIMÉ (site entier) ===== */
        body::before {
            content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
            background:
                radial-gradient(circle at 12% 18%, rgba(217,143,239,0.16), transparent 42%),
                radial-gradient(circle at 88% 12%, rgba(201,169,110,0.12), transparent 40%),
                radial-gradient(circle at 82% 82%, rgba(217,143,239,0.14), transparent 42%),
                radial-gradient(circle at 10% 85%, rgba(201,169,110,0.10), transparent 40%);
            background-repeat: no-repeat;
            animation: bgDrift 40s ease-in-out infinite alternate;
        }
        @keyframes bgDrift {
            0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%; }
            50%  { background-position: 8% 10%, 92% 8%, 92% 92%, 8% 90%; }
            100% { background-position: -4% 6%, 104% 4%, 104% 96%, -4% 94%; }
        }
        @media (prefers-reduced-motion: reduce) { body::before { animation: none; } }
        h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .animate-in { animation: fadeUp 0.6s ease forwards; }
        .delay-1 { animation-delay: 0.1s; opacity: 0; }
        .delay-2 { animation-delay: 0.2s; opacity: 0; }
        .delay-3 { animation-delay: 0.3s; opacity: 0; }
        .delay-4 { animation-delay: 0.4s; opacity: 0; }
        .delay-5 { animation-delay: 0.5s; opacity: 0; }

        /* ===== NAV — pilule flottante ===== */
        nav {
            position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
            z-index: 1000; width: calc(100% - 40px); max-width: 1160px;
            background: rgba(26,26,26,0.55); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 100px; padding: 0 0.6rem 0 1.6rem; height: 66px;
            display: flex; align-items: center; justify-content: space-between;
            box-shadow: 0 20px 50px -10px rgba(0,0,0,0.25), 0 4px 14px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s, background 0.3s;
        }
        nav.scrolled { background: rgba(20,20,20,0.7); box-shadow: 0 24px 60px -8px rgba(0,0,0,0.3); }
        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem; font-weight: 700; cursor: pointer;
            display: flex; align-items: center; gap: 0.55rem;
            text-decoration: none; color: var(--blanc);
        }
        .nav-logo img { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; }
        .nav-logo span { color: var(--violet-light); font-style: italic; }
        .nav-center { display: flex; gap: 2rem; list-style: none; }
        .nav-center a { text-decoration: none; color: rgba(247,244,239,0.75); font-size: 0.86rem; font-weight: 500; cursor: pointer; transition: color 0.3s; position: relative; padding-bottom: 2px; }
        .nav-center a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1.5px; background: var(--violet-light); transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease; }
        .nav-center a:hover { color: var(--blanc); }
        .nav-center a:hover::after { transform: scaleX(1); transform-origin: left; }
        .nav-right { display: flex; align-items: center; gap: 0.8rem; }
        .nav-cta-short { display: none; }
        .nav-social { display: flex; gap: 0.4rem; }
        .nav-social a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: all 0.3s; color: rgba(247,244,239,0.6); text-decoration: none; }
        .nav-social a:hover { background: rgba(255,255,255,0.08); color: var(--violet-light); transform: translateY(-2px); }
        .nav-social svg { width: 16px; height: 16px; fill: currentColor; }
        .nav-cta {
            background: var(--violet); color: var(--noir) !important;
            padding: 0.6rem 1.35rem; border-radius: 50px; font-size: 0.85rem;
            font-weight: 700; cursor: pointer; transition: all 0.3s;
            text-decoration: none; white-space: nowrap; border: none;
            box-shadow: 0 4px 16px rgba(217,143,239,0.35);
        }
        .nav-cta:hover { background: var(--blanc); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(255,255,255,0.25); }
        .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
        .burger span { width: 22px; height: 2px; background: var(--blanc); display: block; transition: all 0.3s; border-radius: 2px; }
        .mobile-menu {
            display: none; position: fixed; top: 90px; left: 20px; right: 20px;
            background: var(--noir); padding: 1.8rem 1.8rem; z-index: 999;
            border: 1px solid rgba(255,255,255,0.08); border-radius: 24px;
            flex-direction: column; gap: 1.3rem;
            box-shadow: 0 24px 60px rgba(0,0,0,0.35);
        }
        .mobile-menu.active { display: flex; animation: fadeIn 0.2s ease; }
        .mobile-menu a { text-decoration: none; color: var(--blanc); font-size: 1.02rem; font-weight: 500; cursor: pointer; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .mobile-social { display: flex; gap: 1rem; padding-top: 0.5rem; }
        .mobile-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.07); border-radius: 10px; color: var(--violet-light); text-decoration: none; }
        .mobile-social svg { width: 18px; height: 18px; fill: currentColor; }

        /* ===== PAGES ===== */
        .page { display: block; min-height: 100vh; padding-top: 100px; }

        /* ===== BOUTONS ===== */
        .btn-primary {
            background: var(--noir); color: var(--blanc);
            padding: 0.9rem 2rem; border-radius: 50px; border: none;
            font-size: 0.95rem; font-weight: 600; cursor: pointer;
            transition: all 0.3s; font-family: 'DM Sans', sans-serif;
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            position: relative; overflow: hidden;
        }
        .btn-primary::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--violet-dark), var(--violet));
            opacity: 0; transition: opacity 0.3s;
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(185,102,212,0.35); }
        .btn-primary:hover::before { opacity: 1; }
        .btn-primary span { position: relative; z-index: 1; }
        .btn-secondary {
            background: transparent; color: var(--noir);
            padding: 0.9rem 2rem; border-radius: 50px; border: 1.5px solid var(--noir);
            font-size: 0.95rem; font-weight: 600; cursor: pointer;
            transition: all 0.3s; font-family: 'DM Sans', sans-serif;
        }
        .btn-secondary:hover { background: var(--noir); color: var(--blanc); transform: translateY(-3px); }

        /* ===== BADGES ===== */
        .section-badge {
            display: inline-flex; align-items: center; gap: 0.4rem;
            background: rgba(217,143,239,0.12);
            border: 1px solid rgba(217,143,239,0.35); padding: 0.3rem 1rem;
            border-radius: 50px; font-size: 0.78rem; color: var(--violet-dark); font-weight: 600;
            margin-bottom: 1rem; letter-spacing: 0.03em; text-transform: uppercase;
        }

        /* ===== HERO ===== */
        .hero {
            min-height: calc(100vh - 100px);
            display: grid; grid-template-columns: 1fr 1fr;
            align-items: center; padding: 4rem 5%;
            gap: 4rem; position: relative; overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute; top: -100px; right: -100px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(217,143,239,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero::after {
            content: ''; position: absolute; bottom: -50px; left: 30%;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-content { max-width: 600px; }
        .hero-reassurance {
            display: flex; width: fit-content; align-items: center; gap: 0.7rem;
            background: var(--blanc); border: 1px solid rgba(26,26,26,0.07);
            padding: 0.55rem 1.2rem 0.55rem 0.6rem; border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            margin-bottom: 1.1rem; text-decoration: none;
            animation: fadeUp 0.6s ease forwards;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .hero-reassurance:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(185,102,212,0.18); }
        .hra-avatars { display: flex; }
        .hra-avatar {
            width: 26px; height: 26px; border-radius: 50%; margin-left: -8px;
            background: linear-gradient(135deg, var(--violet), var(--violet-dark));
            color: var(--blanc); font-size: 0.6rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            border: 2px solid var(--blanc);
        }
        .hra-avatar:first-child { margin-left: 0; }
        .hra-stars { color: #F5B300; font-size: 0.8rem; letter-spacing: 1px; }
        .hra-label { font-size: 0.82rem; font-weight: 700; color: var(--noir); }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(217,143,239,0.1); border: 1px solid rgba(217,143,239,0.35);
            padding: 0.45rem 1.1rem; border-radius: 50px; font-size: 0.82rem;
            color: var(--violet-dark); font-weight: 600; margin-bottom: 1.8rem;
            animation: fadeUp 0.6s ease forwards;
        }
        .hero-badge::before { content: '✦'; font-size: 0.7rem; }

        /* ===== PRIVACY BANNER ===== */
        .privacy-banner {
            display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998;
            background: var(--noir); color: var(--creme); padding: 0.9rem 5%;
            box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
        }
        .privacy-banner-inner {
            max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap;
            align-items: center; justify-content: space-between; gap: 1rem;
        }
        .privacy-banner-text { margin: 0; font-size: 0.85rem; line-height: 1.5; color: rgba(247,244,239,0.85); flex: 1; min-width: 240px; }
        .privacy-banner-text a { color: var(--violet-light); text-decoration: underline; }
        .privacy-banner-btn {
            flex-shrink: 0; background: var(--violet); color: var(--noir); border: none;
            padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
            cursor: pointer; white-space: nowrap;
        }
        .pbt-short { display: none; }
        @media (max-width: 640px) {
            .privacy-banner { padding: 0.65rem 5%; }
            .privacy-banner-inner { flex-wrap: nowrap; gap: 0.7rem; }
            .privacy-banner-text { font-size: 0.72rem; line-height: 1.35; min-width: 0; }
            .pbt-full { display: none; }
            .pbt-short { display: inline; }
            .privacy-banner-btn { padding: 0.5rem 0.9rem; font-size: 0.75rem; }
        }
        .hero h1 {
            font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.12;
            margin-bottom: 1.5rem; font-weight: 700;
            animation: fadeUp 0.6s 0.1s ease both;
        }
        .hero h1 em { font-style: italic; color: var(--violet-dark); }
        .hero p {
            color: var(--gris); font-size: 1.05rem; line-height: 1.75;
            margin-bottom: 2.5rem; max-width: 480px;
            animation: fadeUp 0.6s 0.2s ease both;
        }
        .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
        .hero-stats {
            display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem;
            border-top: 1px solid rgba(26,26,26,0.08); flex-wrap: wrap;
            animation: fadeUp 0.6s 0.4s ease both;
        }
        .stat { }
        .stat h3 { font-size: 2.2rem; color: var(--violet-dark); font-weight: 700; line-height: 1; margin-bottom: 0.3rem; }
        .stat p { font-size: 0.8rem; color: var(--gris-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

        /* Hero visual */
        .hero-visual {
            display: flex; align-items: center; justify-content: center;
            position: relative; animation: fadeIn 0.8s 0.3s ease both;
            min-height: 620px;
        }

        @keyframes floatBlob {
            0%,100% { transform: translate(-50%, -50%) translateY(0); }
            50%     { transform: translate(-50%, -50%) translateY(-12px); }
        }
        .hero-blob {
            position: absolute; width: 520px; height: 520px; border-radius: 50%;
            background: radial-gradient(circle at 40% 40%, rgba(217,143,239,0.18) 0%, rgba(201,169,110,0.06) 50%, transparent 70%);
            top: 50%; left: 50%;
            pointer-events: none; z-index: 0;
            animation: floatBlob 8s ease-in-out infinite;
        }
        .hero-browser-stage {
            perspective: 1800px; width: 100%; max-width: 820px; height: 560px;
            position: relative; z-index: 2; margin: 0 auto;
        }
        .hero-browser {
            position: absolute; background: var(--blanc); border-radius: 20px; overflow: hidden;
            box-shadow:
                0 60px 120px -20px rgba(26,26,26,0.35),
                0 25px 50px -12px rgba(185,102,212,0.25),
                0 0 0 1px rgba(0,0,0,0.05);
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.6s;
        }
        @keyframes floatBack3 {
            0%,100% { transform: translate(-50%,-50%) rotateY(-4deg) rotateX(1deg) rotateZ(-11deg) translateY(0); }
            50%     { transform: translate(-50%,-50%) rotateY(-4deg) rotateX(1deg) rotateZ(-11deg) translateY(-12px); }
        }
        @keyframes floatBack2 {
            0%,100% { transform: translate(-50%,-50%) rotateY(-6deg) rotateX(2deg) rotateZ(-8deg) translateY(0); }
            50%     { transform: translate(-50%,-50%) rotateY(-6deg) rotateX(2deg) rotateZ(-8deg) translateY(-12px); }
        }
        @keyframes floatBack1 {
            0%,100% { transform: translate(-50%,-50%) rotateY(-9deg) rotateX(3deg) rotateZ(5deg) translateY(0); }
            50%     { transform: translate(-50%,-50%) rotateY(-9deg) rotateX(3deg) rotateZ(5deg) translateY(-12px); }
        }
        @keyframes floatMid {
            0%,100% { transform: translate(-50%,-50%) rotateY(-11deg) rotateX(4deg) rotateZ(-3deg) translateY(0); }
            50%     { transform: translate(-50%,-50%) rotateY(-11deg) rotateX(4deg) rotateZ(-3deg) translateY(-12px); }
        }
        @keyframes floatFront {
            0%,100% { transform: translate(-50%,-50%) rotateY(-14deg) rotateX(5deg) rotateZ(-1deg) translateY(0); }
            50%     { transform: translate(-50%,-50%) rotateY(-14deg) rotateX(5deg) rotateZ(-1deg) translateY(-12px); }
        }
        .hero-browser.stack-back-3 {
            width: 32%; left: -4%; top: 4%; z-index: 0; filter: brightness(0.8) saturate(0.8);
            animation: floatBack3 9s 1.2s ease-in-out infinite;
        }
        .hero-browser.stack-back-2 {
            width: 38%; left: 10%; top: 10%; z-index: 1; filter: brightness(0.86) saturate(0.85);
            animation: floatBack2 8s 0.8s ease-in-out infinite;
        }
        .hero-browser.stack-back-1 {
            width: 42%; left: 32%; top: 18%; z-index: 2; filter: brightness(0.92) saturate(0.9);
            animation: floatBack1 7s 0.4s ease-in-out infinite;
        }
        .hero-browser.stack-mid {
            width: 44%; left: 58%; top: 44%; z-index: 3; filter: brightness(0.97) saturate(0.96);
            animation: floatMid 7.5s 0.2s ease-in-out infinite;
        }
        .hero-browser.stack-front {
            width: 44%; left: 84%; top: 78%; z-index: 4;
            animation: floatFront 6s ease-in-out infinite;
        }
        .hero-browser-bar {
            display: flex; align-items: center; gap: 6px;
            padding: 0.85rem 1.1rem; background: var(--creme-dark);
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .hbb-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(26,26,26,0.15); }
        .hbb-dot:nth-child(1) { background: #ED6A5E; }
        .hbb-dot:nth-child(2) { background: #F4BF4F; }
        .hbb-dot:nth-child(3) { background: #61C454; }
        .hero-browser-url {
            margin-left: 0.7rem; background: var(--blanc); border-radius: 50px;
            padding: 0.3rem 1.1rem; font-size: 0.8rem; color: var(--gris);
            flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
        }
        .hero-browser img { width: 100%; display: block; }
        .hero-browser-glow {
            position: absolute; inset: -10%; z-index: -1; border-radius: 40px;
            background: radial-gradient(circle at 60% 40%, rgba(185,102,212,0.25), transparent 65%);
            filter: blur(30px);
        }

        /* ===== SECTIONS ===== */
        .section { padding: 6rem 5%; }
        .section-header { text-align: center; margin-bottom: 3.5rem; }
        .section-header h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1rem; font-weight: 700; }
        .section-header p { color: var(--gris); max-width: 480px; margin: 0 auto; line-height: 1.75; font-size: 1.02rem; }

        /* ===== CARDS ===== */
        .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
        .card {
            background: var(--blanc); border-radius: 22px; padding: 2.4rem 2.2rem 2.2rem;
            border: 1px solid rgba(26,26,26,0.06);
            position: relative; overflow: hidden;
            transform-style: preserve-3d;
            transition: box-shadow 0.4s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease;
            will-change: transform;
        }
        .card::before { display: none; }
        .card::after {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--violet), var(--violet-dark));
            transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            border-color: rgba(217,143,239,0.35);
            box-shadow: 0 30px 60px rgba(185,102,212,0.16), 0 10px 24px rgba(0,0,0,0.06);
        }
        .card:hover::after { transform: scaleX(1); }
        .card-num {
            position: absolute; top: 1.2rem; right: 1.5rem;
            font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700;
            color: rgba(26,26,26,0.05); line-height: 1; pointer-events: none;
        }
        .card-icon {
            width: 54px; height: 54px; border-radius: 16px;
            background: rgba(217,143,239,0.1); border: 1px solid rgba(217,143,239,0.25);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.4rem;
            transition: background 0.4s ease, border-color 0.4s ease;
        }
        .card:hover .card-icon { background: rgba(217,143,239,0.16); border-color: rgba(217,143,239,0.4); }
        .card-icon svg { width: 24px; height: 24px; stroke: var(--violet-dark); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
        .card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; position: relative; }
        .card p { color: var(--gris); font-size: 0.88rem; line-height: 1.7; position: relative; }

        /* ===== OFFRES ===== */
        .offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
        .offer-card {
            background: var(--blanc); border-radius: 22px; padding: 2.2rem;
            border: 1px solid rgba(26,26,26,0.07);
            position: relative; overflow: hidden;
            transform-style: preserve-3d;
            transition: box-shadow 0.4s ease, transform 0.1s ease;
            will-change: transform;
        }
        .offer-card:hover {
            box-shadow: 0 24px 60px rgba(185,102,212,0.15), 0 8px 20px rgba(0,0,0,0.06);
        }
        .offer-card.featured {
            background: var(--noir); color: var(--blanc);
            box-shadow: 0 20px 60px rgba(26,26,26,0.25);
        }
        .offer-card.featured p { color: rgba(255,255,255,0.55); }
        .offer-badge { display: inline-block; background: rgba(217,143,239,0.18); color: var(--violet-dark); padding: 0.2rem 0.8rem; border-radius: 50px; font-size: 0.73rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.03em; text-transform: uppercase; }
        .offer-card.featured .offer-badge { color: var(--violet-light); background: rgba(217,143,239,0.2); }
        .offer-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; margin-bottom: 0.3rem; line-height: 1; }
        .offer-price span { font-size: 0.95rem; font-weight: 400; opacity: 0.5; font-family: 'DM Sans', sans-serif; }
        .offer-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; margin-top: 0.5rem; }
        .offer-card > p { color: var(--gris); font-size: 0.87rem; line-height: 1.65; margin-bottom: 1.8rem; }
        .offer-features {
            list-style: none; margin: 0 0 1.6rem; display: flex; flex-direction: column; gap: 0.5rem;
        }
        .offer-features li {
            font-size: 0.84rem; color: var(--gris); display: flex; align-items: center; gap: 0.6rem;
        }
        .offer-features li::before {
            content: '✓'; width: 18px; height: 18px; border-radius: 50%;
            background: rgba(217,143,239,0.18); color: var(--violet-dark);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.65rem; font-weight: 800; flex-shrink: 0;
        }
        .offer-card.featured .offer-features li { color: rgba(255,255,255,0.55); }
        .offer-card.featured .offer-features li::before { background: rgba(217,143,239,0.2); color: var(--violet-light); }

        .offer-btn {
            width: 100%; padding: 0.85rem; background: transparent;
            border: 1.5px solid var(--noir); border-radius: 50px;
            font-size: 0.88rem; font-weight: 600; cursor: pointer;
            transition: all 0.3s; font-family: 'DM Sans', sans-serif;
        }
        .offer-card.featured .offer-btn { border-color: rgba(217,143,239,0.5); color: var(--violet-light); }
        .offer-btn:hover { background: var(--violet-dark); border-color: var(--violet-dark); color: var(--blanc); transform: scale(1.02); }

        /* ===== TEMOIGNAGES — GRILLE ===== */
        .temoignages-section { padding: 5rem 5%; background: linear-gradient(to bottom, var(--creme), var(--creme-dark)); }

        .testi-rating-badge {
            display: flex; align-items: center; gap: 0.5rem;
            width: fit-content; margin: 0 auto 3rem; padding: 0.6rem 1.2rem;
            background: var(--blanc); border: 1px solid rgba(26,26,26,0.08);
            border-radius: 50px; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            font-size: 0.9rem; text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .testi-rating-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(185,102,212,0.15); }
        .testi-stars { color: #F5B300; letter-spacing: 1px; font-size: 0.85rem; }
        .testi-score { font-weight: 700; color: var(--noir); }
        .testi-count { color: var(--gris); }

        .testi-grid {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
            max-width: 1100px; margin: 0 auto;
        }
        .testi-grid .testi-card { flex: 1 1 300px; max-width: 340px; }
        @media (max-width: 900px) { .testi-grid .testi-card { flex-basis: 100%; max-width: 480px; } }

        .testi-card {
            background: var(--blanc); border-radius: 20px; padding: 2rem;
            border: 1px solid rgba(26,26,26,0.06);
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            display: flex; flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(185,102,212,0.12); }
        .testi-quote-mark { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--violet-light); line-height: 1; margin-bottom: 0.3rem; }
        .testi-card-stars { color: #F5B300; letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 0.9rem; }
        .testi-card-text { color: var(--noir); font-size: 0.95rem; line-height: 1.6; flex: 1; margin-bottom: 1.5rem; }
        .testi-card-footer { display: flex; align-items: center; gap: 0.75rem; }
        .testi-avatar {
            width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
            background: linear-gradient(135deg, var(--violet), var(--violet-dark));
            display: flex; align-items: center; justify-content: center;
            color: var(--blanc); font-weight: 700; font-size: 0.85rem;
        }
        .testi-card-name { font-weight: 700; font-size: 0.9rem; color: var(--noir); }
        .testi-card-role { font-size: 0.78rem; color: var(--gris); }
        .temoignage-author p { color: var(--gris-light); font-size: 0.78rem; margin: 0; font-style: normal; }

        /* ===== FAQ ===== */
        .faq-section { padding: 6rem 5%; max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid rgba(26,26,26,0.08); }
        .faq-question {
            width: 100%; display: flex; justify-content: space-between; align-items: center;
            padding: 1.4rem 0; background: none; border: none; cursor: pointer;
            text-align: left; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600;
            color: var(--noir); transition: color 0.3s;
        }
        .faq-question:hover { color: var(--violet-dark); }
        .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(217,143,239,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; font-size: 1.2rem; color: var(--violet-dark); }
        .faq-item.open .faq-icon { background: var(--violet-dark); color: var(--blanc); transform: rotate(45deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
        .faq-answer p { color: var(--gris); font-size: 0.92rem; line-height: 1.75; padding-bottom: 1.5rem; }
        .faq-item.open .faq-answer { max-height: 300px; }

        /* ===== CTA BOX ===== */
        .cta-section { padding: 5rem 5%; text-align: center; }
        .cta-box {
            background: linear-gradient(135deg, var(--noir) 0%, var(--noir-soft) 100%);
            border-radius: 28px; padding: 4.5rem 2rem;
            max-width: 750px; margin: 0 auto;
            position: relative; overflow: hidden;
        }
        .cta-box::before {
            content: ''; position: absolute; top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(217,143,239,0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-box .section-badge { background: rgba(217,143,239,0.15); color: var(--violet-light); }
        .cta-box h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1rem; color: var(--blanc); position: relative; }
        .cta-box p { color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; font-size: 1.05rem; position: relative; }
        .cta-box .btn-primary { background: var(--violet-dark); box-shadow: 0 8px 30px rgba(185,102,212,0.4); }
        .cta-box .btn-primary::before { background: linear-gradient(135deg, var(--violet-dark), var(--violet)); }
        .cta-box .btn-primary:hover { box-shadow: 0 12px 40px rgba(185,102,212,0.6); }

        /* ===== PAGE HEADER ===== */
        .page-header { padding: 4rem 5% 2rem; text-align: center; }
        .page-header h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 1rem; font-weight: 700; }
        .page-header p { color: var(--gris); max-width: 550px; margin: 0 auto; line-height: 1.75; font-size: 1.02rem; }

        /* ===== SERVICES ===== */
        .services-detail { padding: 2rem 5%; }
        .service-block {
            display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
            align-items: center; padding: 5rem 0;
            border-bottom: 1px solid rgba(26,26,26,0.07);
        }
        .service-block:last-child { border-bottom: none; }
        .service-block.reverse { direction: rtl; }
        .service-block.reverse > * { direction: ltr; }
        .service-info .price-tag { display: inline-block; background: rgba(217,143,239,0.15); color: var(--violet-dark); padding: 0.4rem 1rem; border-radius: 50px; font-weight: 700; font-size: 1rem; margin-bottom: 1.2rem; }
        .service-info h2 { font-size: 1.9rem; margin-bottom: 1rem; }
        .service-info p { color: var(--gris); line-height: 1.8; margin-bottom: 1.5rem; }
        .features-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
        .features-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.93rem; }
        .features-list li::before {
            content: '✓'; width: 22px; height: 22px; background: rgba(217,143,239,0.2);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 0.72rem; color: var(--violet-dark); font-weight: 800; flex-shrink: 0;
        }
        .service-visual {
            background: linear-gradient(135deg, rgba(217,143,239,0.08), rgba(217,143,239,0.03));
            border-radius: 28px; padding: 3.5rem 2rem; text-align: center;
            border: 1px solid rgba(217,143,239,0.15); position: relative; overflow: hidden;
        }
        .service-visual::before {
            content: ''; position: absolute; top: -30px; right: -30px;
            width: 120px; height: 120px; border-radius: 50%;
            background: radial-gradient(circle, rgba(217,143,239,0.15), transparent);
        }
        .big-icon { font-size: 4.5rem; margin-bottom: 1rem; display: block; }
        .service-visual h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
        .service-visual p { color: var(--gris); font-size: 0.9rem; }
        .service-visual-img { padding: 0; border: none; background: none; overflow: hidden; aspect-ratio: 4/3; }
        .service-visual-img::before { display: none; }
        .service-visual-img img {
            width: 100%; height: 100%;
            object-fit: cover; border-radius: 28px;
            transition: transform 0.5s ease;
        }
        .service-visual-img:hover img { transform: scale(1.03); }

        /* ===== SUR MESURE ===== */
        .sur-mesure-section { background: var(--noir); margin: 2rem 5%; border-radius: 28px; padding: 3.5rem; color: var(--blanc); position: relative; overflow: hidden; }
        .sur-mesure-section::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(217,143,239,0.12), transparent); pointer-events: none; }
        .sur-mesure-section h2 { font-size: 1.9rem; margin-bottom: 0.8rem; color: var(--blanc); }
        .sur-mesure-section > p { color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; line-height: 1.75; }
        .sur-mesure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
        .sur-mesure-info { display: flex; flex-direction: column; gap: 1rem; }
        .sur-mesure-item { display: flex; align-items: flex-start; gap: 1rem; background: rgba(255,255,255,0.05); border-radius: 16px; padding: 1.1rem 1.3rem; border: 1px solid rgba(255,255,255,0.06); transition: background 0.3s; }
        .sur-mesure-item:hover { background: rgba(217,143,239,0.1); }
        .sur-mesure-item-icon {
            width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
            background: rgba(217,143,239,0.12); border: 1px solid rgba(217,143,239,0.25);
            display: flex; align-items: center; justify-content: center;
        }
        .sur-mesure-item-icon svg { width: 20px; height: 20px; stroke: var(--violet-light); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
        .sur-mesure-item h4 { color: var(--blanc); font-size: 0.95rem; margin-bottom: 0.3rem; }
        .sur-mesure-item p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.5; margin: 0; }
        .sur-mesure-form { background: rgba(255,255,255,0.04); border-radius: 20px; padding: 2.2rem; border: 1px solid rgba(255,255,255,0.07); }
        .sur-mesure-form h3 { color: var(--blanc); margin-bottom: 1.5rem; font-size: 1.15rem; }

        /* ===== FORMULAIRES ===== */
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; font-size: 0.83rem; margin-bottom: 0.4rem; color: rgba(255,255,255,0.6); font-weight: 500; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.07); color: var(--blanc); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border 0.3s; }
        .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(217,143,239,0.1); }
        .form-group select option { background: var(--noir); color: var(--blanc); }
        .form-group textarea { resize: vertical; min-height: 100px; }

        .cfg { margin-bottom: 1rem; }
        .cfg label { display: block; font-size: 0.83rem; margin-bottom: 0.4rem; color: var(--gris); font-weight: 600; letter-spacing: 0.02em; }
        .cfg input, .cfg select, .cfg textarea { width: 100%; padding: 0.85rem 1.1rem; border-radius: 12px; border: 1.5px solid rgba(26,26,26,0.12); background: var(--blanc); color: var(--noir); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: all 0.3s; }
        .cfg input:focus, .cfg select:focus, .cfg textarea:focus { border-color: var(--violet-dark); box-shadow: 0 0 0 3px rgba(185,102,212,0.1); }
        .cfg textarea { resize: vertical; min-height: 120px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        .form-submit { width: 100%; padding: 1rem; background: var(--noir); color: var(--blanc); border: none; border-radius: 50px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
        .form-submit:hover { background: var(--violet-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(185,102,212,0.35); }

        .success-msg { display: none; background: rgba(217,143,239,0.15); border: 1px solid rgba(217,143,239,0.4); border-radius: 12px; padding: 1.2rem; text-align: center; margin-top: 1rem; color: var(--violet-dark); font-weight: 600; font-size: 0.92rem; }
        .success-dark { display: none; background: rgba(217,143,239,0.1); border: 1px solid rgba(217,143,239,0.3); border-radius: 12px; padding: 1.2rem; text-align: center; margin-top: 1rem; color: var(--violet-light); font-weight: 600; }

        /* ===== PORTFOLIO ===== */
        .portfolio-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.8rem; padding: 2rem 5%; }
        .portfolio-grid .portfolio-card { flex: 1 1 320px; max-width: 400px; }
        .portfolio-card { display: block; text-decoration: none; color: inherit; background: var(--blanc); border-radius: 22px; overflow: hidden; border: 1px solid rgba(26,26,26,0.06); transition: all 0.35s; }
        .portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .portfolio-img { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3.2rem; position: relative; overflow: hidden; }
        .portfolio-img-1 { background: linear-gradient(135deg, rgba(217,143,239,0.15), rgba(201,169,110,0.1)); }
        .portfolio-img-2 { background: linear-gradient(135deg, rgba(217,143,239,0.1), rgba(100,180,255,0.1)); }
        .portfolio-img-3 { background: linear-gradient(135deg, rgba(100,200,150,0.1), rgba(217,143,239,0.08)); }
        .portfolio-info { padding: 1.8rem; }
        .portfolio-tag { display: inline-block; background: rgba(217,143,239,0.12); color: var(--violet-dark); padding: 0.2rem 0.8rem; border-radius: 50px; font-size: 0.73rem; font-weight: 700; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
        .portfolio-info h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
        .portfolio-info p { color: var(--gris); font-size: 0.88rem; line-height: 1.65; }
        .portfolio-result { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(100,200,150,0.12); color: #3a8c5c; padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-top: 0.7rem; }
        .portfolio-coming { padding: 2rem 5% 4rem; }
        .coming-box { background: var(--blanc); border-radius: 22px; padding: 3.5rem 2rem; text-align: center; border: 1.5px dashed rgba(217,143,239,0.4); max-width: 520px; margin: 0 auto; }
        .coming-box h3 { margin: 1rem 0 0.5rem; font-size: 1.3rem; }
        .coming-box p { color: var(--gris); font-size: 0.9rem; line-height: 1.65; }

        /* ===== À PROPOS ===== */
        .about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 4rem 5%; }
        .about-text h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
        .about-text p { color: var(--gris); line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.98rem; }
        .about-visual { background: linear-gradient(135deg, rgba(217,143,239,0.1), rgba(217,143,239,0.03)); border-radius: 28px; padding: 3.5rem 2rem; text-align: center; border: 1px solid rgba(217,143,239,0.15); }
        .about-icon-wrap { position: relative; display: inline-block; }
        .about-icon-wrap .big-icon { font-size: 5rem; }
        .about-ring { width: 170px; height: 170px; border-radius: 70%; border: 1.5px dashed rgba(217,143,239,0.35); position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; animation: spin-slow 20s linear infinite; }
        .about-visual h3 { font-size: 1.4rem; margin-top: 1.5rem; }
        .about-visual p { color: var(--gris); margin-top: 0.5rem; font-size: 0.9rem; }

        .about-founder-card { padding: 3rem 2.6rem; position: relative; overflow: hidden; }
        .about-founder-card::before {
            content: ''; position: absolute; top: -60px; right: -60px;
            width: 220px; height: 220px; border-radius: 50%;
            background: radial-gradient(circle, rgba(217,143,239,0.18), transparent 70%);
            pointer-events: none;
        }
        .about-founder-card .quentin-avatar { position: relative; z-index: 1; }
        .about-founder-card blockquote {
            position: relative; z-index: 1;
            font-family: 'Playfair Display', serif; font-style: italic;
            font-size: 1.05rem; color: var(--noir-soft); line-height: 1.75;
            margin: 0 0 1.3rem;
        }
        .about-founder-card blockquote::before { content: '"'; color: var(--violet-dark); font-size: 2.6rem; line-height: 0; vertical-align: -0.7rem; margin-right: 0.15rem; }
        .about-founder-card blockquote::after { content: '"'; color: var(--violet-dark); font-size: 2.6rem; line-height: 0; vertical-align: -0.7rem; margin-left: 0.15rem; }
        .about-founder-card .quentin-name { position: relative; z-index: 1; }
        .about-founder-card .quentin-role { position: relative; z-index: 1; margin-bottom: 1.2rem; }
        .quentin-contact {
            position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.5rem;
            margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(217,143,239,0.2);
        }
        .quentin-contact a { color: var(--violet-dark); text-decoration: none; font-size: 0.87rem; font-weight: 600; transition: color 0.2s; }
        .quentin-contact a:hover { color: var(--noir); }
        @media (max-width: 900px) { .about-founder-card { padding: 2.4rem 1.8rem; } }

        .values-section { padding: 5rem 5%; text-align: center; }
        .values-section h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 700; }
        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
        .value-card { background: var(--blanc); border-radius: 22px; padding: 2.2rem; border: 1px solid rgba(26,26,26,0.06); transition: all 0.3s; }
        .value-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.07); }
        .value-icon {
            width: 52px; height: 52px; border-radius: 15px;
            background: rgba(217,143,239,0.1); border: 1px solid rgba(217,143,239,0.25);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.2rem; transition: background 0.4s ease, border-color 0.4s ease;
        }
        .value-card:hover .value-icon { background: rgba(217,143,239,0.16); border-color: rgba(217,143,239,0.4); }
        .value-icon svg { width: 24px; height: 24px; stroke: var(--violet-dark); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
        .value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
        .value-card p { color: var(--gris); font-size: 0.87rem; line-height: 1.65; }

        .process-section { padding: 5rem 5%; }
        .process-section h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 3rem; text-align: center; font-weight: 700; }
        .steps { display: flex; flex-direction: column; gap: 0; max-width: 600px; margin: 0 auto; }
        .step { display: flex; gap: 1.5rem; align-items: flex-start; position: relative; padding-bottom: 2rem; }
        .step::before { content: ''; position: absolute; left: 20px; top: 42px; bottom: 0; width: 1.5px; background: linear-gradient(to bottom, rgba(217,143,239,0.3), transparent); }
        .step:last-child::before { display: none; }
        .step-number { width: 42px; height: 42px; background: var(--noir); color: var(--blanc); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-family: 'Playfair Display', serif; font-size: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
        .step-content h3 { font-size: 1.05rem; margin-bottom: 0.4rem; padding-top: 0.55rem; }
        .step-content p { color: var(--gris); font-size: 0.9rem; line-height: 1.65; }

        /* ===== CONTACT ===== */
        .contact-section { padding: 3rem 5% 5rem; display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
        .contact-infos h3 { font-size: 1.35rem; margin-bottom: 2rem; }
        .contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
        .contact-item-icon { width: 46px; height: 46px; background: rgba(217,143,239,0.12); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: all 0.3s; }
        .contact-item-icon svg { width: 21px; height: 21px; stroke: var(--violet-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
        .contact-item:hover .contact-item-icon { background: var(--violet-dark); }
        .contact-item:hover .contact-item-icon svg { stroke: var(--blanc); }
        .contact-item-info p:first-child { font-size: 0.78rem; color: var(--gris-light); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
        .contact-item-info p:last-child { font-weight: 600; font-size: 0.95rem; }
        .contact-social { margin-top: 2.5rem; }
        .contact-social h4 { font-size: 0.85rem; color: var(--gris-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
        .social-icons { display: flex; gap: 0.8rem; flex-wrap: wrap; }
        .social-btn {
            display: flex; align-items: center; gap: 0.6rem;
            padding: 0.6rem 1rem; border-radius: 12px;
            border: 1.5px solid rgba(26,26,26,0.1); background: var(--blanc);
            text-decoration: none; color: var(--noir); font-size: 0.82rem; font-weight: 600;
            transition: all 0.3s;
        }
        .social-btn:hover { border-color: var(--violet-dark); color: var(--violet-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
        .social-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
        .contact-form-box { background: var(--blanc); border-radius: 24px; padding: 2.8rem; border: 1px solid rgba(26,26,26,0.06); box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
        .contact-form-box h3 { font-size: 1.25rem; margin-bottom: 2rem; }

        /* ===== FOOTER ===== */
        footer { background: var(--noir); padding: 5rem 5% 2.5rem; margin-top: 2rem; position: relative; overflow: hidden; }
        footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(217,143,239,0.4), transparent); }
        .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
        .footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.87rem; line-height: 1.7; margin-top: 1.2rem; max-width: 280px; }
        .footer-social { display: flex; gap: 0.7rem; margin-top: 1.8rem; }
        .footer-social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.5); transition: all 0.3s; border: 1px solid rgba(255,255,255,0.06); }
        .footer-social-btn:hover { background: var(--violet-dark); color: var(--blanc); transform: translateY(-3px); border-color: var(--violet-dark); box-shadow: 0 6px 20px rgba(185,102,212,0.3); }
        .footer-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
        .footer-col h4 { color: var(--blanc); font-family: 'Playfair Display', serif; margin-bottom: 1.4rem; font-size: 0.95rem; font-style: italic; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
        .footer-col ul li, .footer-col ul a { color: rgba(255,255,255,0.4); font-size: 0.87rem; cursor: pointer; transition: color 0.3s; text-decoration: none; }
        .footer-col ul a:hover { color: var(--violet-light); }
        .footer-col ul li:hover { color: rgba(255,255,255,0.7); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
        .footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.82rem; }
        .footer-tagline { color: rgba(217,143,239,0.5) !important; font-style: italic; }

        /* ===== OFFERS SECTION ===== */
        .offers-section { padding: 5rem; }
        @media (max-width: 768px) {
            .offers-section { padding: 2.5rem 1.2rem; margin: 0 1rem !important; border-radius: 20px !important; }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .hero { grid-template-columns: 1fr; text-align: center; }
            .hero-visual { display: none; }
            .hero-reassurance { margin-left: auto; margin-right: auto; }
            .hero p, .hero-buttons, .hero-stats { max-width: 100%; justify-content: center; }
            .footer-content { grid-template-columns: 1fr 1fr; }
            .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
            .service-block.reverse { direction: ltr; }
            .about-hero { grid-template-columns: 1fr; }
            .sur-mesure-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .nav-center { display: none; }
            .nav-social { display: none; }
            .burger { display: flex; }
            nav { width: calc(100% - 24px); padding: 0 1.1rem 0 1.2rem; height: 60px; top: 12px; }
            .page { padding-top: 88px; }
            .nav-right { gap: 0.9rem; }
            .nav-cta { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
            .mobile-menu { top: 84px; left: 12px; right: 12px; }
        }
        @media (max-width: 420px) {
            .nav-logo { font-size: 1.05rem; }
            .nav-logo img { width: 24px; height: 24px; }
            .nav-cta-full { display: none; }
            .nav-cta-short { display: inline; }
            .nav-cta { padding: 0.55rem 0.75rem; }
            .hero { padding: 2.5rem 5% 3rem; min-height: auto; }
            .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 1.2rem; }
            .hero p { font-size: 0.97rem; margin-bottom: 2rem; }
            .hero-badge { margin-bottom: 1.2rem; }
            .hero-buttons { flex-direction: column; }
            .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; text-align: center; }
            .hero-stats { gap: 1.8rem; margin-top: 2.5rem; padding-top: 1.8rem; }
            .stat h3 { font-size: 1.8rem; }
            .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
            .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
            .form-row { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .offers-grid { grid-template-columns: 1fr; }
            .results-bar { padding: 1.8rem; gap: 1.5rem; flex-direction: row; flex-wrap: wrap; justify-content: center; }
            .result-stat { min-width: 120px; }
            .result-stat + .result-stat::before { display: none; }
            .section { padding: 4rem 5%; }
            .temoignages-section { padding: 4rem 5%; }
            .cta-box { padding: 3rem 1.5rem; }
        }

        /* ===== CALENDLY CTA ===== */
        .calendly-cta {
            background: linear-gradient(135deg, rgba(217,143,239,0.08), rgba(217,143,239,0.03));
            border: 1.5px solid rgba(217,143,239,0.3); border-radius: 20px;
            padding: 2rem 2.5rem; margin-bottom: 2.5rem; text-align: center;
        }
        .calendly-cta h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
        .calendly-cta p { color: var(--gris); font-size: 0.9rem; margin-bottom: 1.2rem; line-height: 1.6; }
        .btn-calendly {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: var(--violet-dark); color: var(--blanc);
            padding: 0.85rem 1.8rem; border-radius: 50px; border: none;
            font-size: 0.92rem; font-weight: 600; cursor: pointer;
            text-decoration: none; transition: all 0.3s; font-family: 'DM Sans', sans-serif;
            box-shadow: 0 4px 20px rgba(185,102,212,0.3);
        }
        .btn-calendly:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(185,102,212,0.45); }
        .service-calendly-link {
            display: inline-flex; align-items: center; gap: 0.4rem;
            color: var(--violet-dark); font-size: 0.88rem; font-weight: 600;
            text-decoration: none; margin-top: 0.8rem; transition: gap 0.2s;
        }
        .service-calendly-link:hover { gap: 0.7rem; }

        /* ===== QUENTIN AVATAR ===== */
        .quentin-avatar {
            width: 90px; height: 90px; border-radius: 50%;
            background: linear-gradient(135deg, var(--violet-dark), var(--violet));
            display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
            color: var(--blanc); margin: 0 auto 1.2rem; flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(185,102,212,0.3);
        }
        .quentin-block {
            background: var(--blanc); border-radius: 22px; padding: 2.5rem;
            border: 1px solid rgba(26,26,26,0.06); text-align: center; margin: 0 5% 2rem;
        }
        .quentin-block blockquote {
            font-family: 'Playfair Display', serif; font-style: italic;
            font-size: 1.05rem; color: var(--noir-soft); line-height: 1.8;
            max-width: 600px; margin: 0 auto 1rem; position: relative;
        }
        .quentin-block blockquote::before { content: '"'; color: var(--violet-dark); font-size: 3rem; line-height: 0; vertical-align: -0.8rem; margin-right: 0.2rem; }
        .quentin-block blockquote::after { content: '"'; color: var(--violet-dark); font-size: 3rem; line-height: 0; vertical-align: -0.8rem; margin-left: 0.2rem; }
        .quentin-name { font-weight: 700; font-size: 1rem; }
        .quentin-role { color: var(--gris-light); font-size: 0.85rem; }

        /* ===== MENTIONS LÉGALES ===== */
        .legal-section { max-width: 800px; margin: 0 auto; padding: 3rem 5% 5rem; }
        .legal-section h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; color: var(--noir); }
        .legal-section p, .legal-section li { color: var(--gris); line-height: 1.8; font-size: 0.95rem; margin-bottom: 0.5rem; }
        .legal-section ul { padding-left: 1.5rem; margin-bottom: 1rem; }
        .legal-section a { color: var(--violet-dark); text-decoration: none; }
        .legal-section a:hover { text-decoration: underline; }

        /* ===== BLOG ===== */
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; padding: 2rem 5% 4rem; }
        .blog-card { display: block; text-decoration: none; color: inherit; background: var(--blanc); border-radius: 22px; overflow: hidden; border: 1px solid rgba(26,26,26,0.06); transition: all 0.35s; cursor: pointer; }
        .blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .blog-img { height: 180px; overflow: hidden; }
        .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .blog-card:hover .blog-img img { transform: scale(1.05); }
        .blog-info { padding: 1.8rem; }
        .blog-tag { display: inline-block; background: rgba(217,143,239,0.12); color: var(--violet-dark); padding: 0.2rem 0.8rem; border-radius: 50px; font-size: 0.73rem; font-weight: 700; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
        .blog-info h3 { font-size: 1.1rem; margin-bottom: 0.6rem; line-height: 1.4; }
        .blog-info p { color: var(--gris); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1rem; }
        .blog-meta { font-size: 0.78rem; color: var(--gris-light); }
        .blog-article { max-width: 720px; margin: 0 auto; padding: 2rem 5% 5rem; display: none; }
        .blog-article.active { display: block; }
        .blog-article h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1rem; line-height: 1.3; }
        .blog-article .article-meta { color: var(--gris-light); font-size: 0.85rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(26,26,26,0.08); }
        .blog-article h2 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--noir); }
        .blog-article p { color: var(--gris); line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.97rem; }
        .blog-article ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
        .blog-article li { color: var(--gris); line-height: 1.8; font-size: 0.97rem; margin-bottom: 0.3rem; }
        .back-blog { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--violet-dark); font-weight: 600; font-size: 0.9rem; cursor: pointer; margin-bottom: 2rem; background: none; border: none; font-family: 'DM Sans', sans-serif; transition: gap 0.2s; }
        .back-blog:hover { gap: 0.8rem; }
        #blog-list { padding: 0 0 2rem; }

/* ===== MODAL RESERVATION ===== */
/* ===== MODAL RÉSERVATION ===== */
.booking-overlay {
  position: fixed; inset: 0; z-index: 9995;
  background: rgba(26,26,26,0.65); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.booking-overlay.open { opacity: 1; pointer-events: all; }
.booking-modal {
  background: var(--creme); border-radius: 28px;
  width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 0 0 1px rgba(217,143,239,0.15);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
  scrollbar-width: thin; scrollbar-color: rgba(185,102,212,0.3) transparent;
}
.booking-overlay.open .booking-modal { transform: none; }
.booking-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.8rem; gap: 1rem; }
.booking-close {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(26,26,26,0.12); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: var(--noir);
}
.booking-close:hover { background: rgba(217,143,239,0.12); border-color: var(--violet-dark); color: var(--violet-dark); }
/* Progress */
.booking-progress { display: flex; align-items: center; margin-bottom: 2rem; }
.bp-step { display: flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; font-weight: 600; color: rgba(26,26,26,0.28); transition: color 0.3s; }
.bp-step > span:first-child {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(26,26,26,0.08); color: rgba(26,26,26,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.73rem; font-weight: 700; transition: all 0.3s; flex-shrink: 0;
}
.bp-step.active { color: var(--violet-dark); }
.bp-step.active > span:first-child { background: var(--violet-dark); color: white; }
.bp-step.done { color: #10b981; }
.bp-step.done > span:first-child { background: #10b981; color: white; }
.bp-line { flex: 1; height: 2px; background: rgba(26,26,26,0.08); margin: 0 0.5rem; border-radius: 1px; transition: background 0.3s; }
.bp-line.done { background: var(--violet-dark); }
.bp-label { display: none; }
@media (min-width: 400px) { .bp-label { display: inline; } }
/* Calendar */
.booking-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.bc-month-label { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; text-transform: capitalize; }
.bc-nav-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(26,26,26,0.12); background: var(--blanc);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--noir); transition: all 0.2s;
}
.bc-nav-btn:hover:not(:disabled) { border-color: var(--violet-dark); color: var(--violet-dark); }
.bc-nav-btn:disabled { opacity: 0.25; cursor: default; }
.bc-day-names { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 0.5rem; }
.bc-day-names span { font-size: 0.7rem; font-weight: 700; color: var(--gris-light); text-transform: uppercase; letter-spacing: 0.04em; padding: 0.4rem 0; }
.bc-day-names .bc-we { color: rgba(26,26,26,0.18); }
.bc-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.bc-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.18s; color: var(--noir);
  border: 1.5px solid transparent;
}
.bc-cell:hover { background: rgba(217,143,239,0.15); border-color: rgba(217,143,239,0.5); }
.bc-cell.today { border-color: var(--violet); color: var(--violet-dark); font-weight: 700; }
.bc-cell.selected { background: var(--violet-dark) !important; color: white !important; border-color: var(--violet-dark) !important; }
.bc-cell.past, .bc-cell.weekend { color: rgba(26,26,26,0.18); cursor: default; pointer-events: none; background: transparent; }
.bc-cell.holiday { color: rgba(26,26,26,0.18); cursor: default; pointer-events: none; background: transparent; position: relative; }
.bc-cell.holiday::after { content: '•'; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); font-size: 8px; color: #D98FEF; opacity: 0.5; }
.bc-cell.empty { pointer-events: none; border: none; }
.booking-note { text-align: center; font-size: 0.77rem; color: var(--gris-light); margin-top: 1rem; }
/* Slots */
.bs-selected-date {
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600;
  text-align: center; color: var(--violet-dark); text-transform: capitalize;
  margin-bottom: 1.3rem;
  background: rgba(217,143,239,0.1); border-radius: 12px; padding: 0.7rem;
}
.bs-slots-label { font-size: 0.75rem; font-weight: 700; color: var(--gris-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.bs-slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.bs-slot {
  padding: 0.55rem 0.2rem; border-radius: 10px;
  border: 1.5px solid rgba(26,26,26,0.12); background: var(--blanc);
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  text-align: center; transition: all 0.18s; color: var(--noir);
  font-family: 'DM Sans', sans-serif;
}
.bs-slot:hover { border-color: var(--violet-dark); color: var(--violet-dark); background: rgba(217,143,239,0.08); }
.bs-slot.selected { background: var(--violet-dark); color: white; border-color: var(--violet-dark); }
.bs-slot.taken { background: rgba(26,26,26,0.04); color: var(--gris-light); border-color: rgba(26,26,26,0.08); cursor: not-allowed; text-decoration: line-through; }
.bc-back-btn {
  background: none; border: none; color: var(--gris); font-size: 0.84rem;
  cursor: pointer; padding: 0; margin-top: 1.2rem; display: block;
  font-family: 'DM Sans', sans-serif; transition: color 0.2s;
}
.bc-back-btn:hover { color: var(--violet-dark); }
/* Recap */
.bs-recap {
  background: rgba(217,143,239,0.1); border: 1px solid rgba(217,143,239,0.3);
  border-radius: 12px; padding: 0.9rem 1.2rem; margin-bottom: 1.5rem;
  font-weight: 600; font-size: 0.9rem; color: var(--violet-dark);
}
/* Success */
.booking-success { text-align: center; padding: 0.5rem 0 1rem; }
.bs-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: white; margin: 0 auto 1.4rem;
  box-shadow: 0 12px 35px rgba(185,102,212,0.45);
}
/* Form inside modal uses existing .cfg styles */
.booking-modal .cfg label { color: var(--gris); }
.booking-modal .cfg input,
.booking-modal .cfg select,
.booking-modal .cfg textarea {
  background: var(--blanc); color: var(--noir);
  border: 1.5px solid rgba(26,26,26,0.12);
}
.booking-modal .cfg input::placeholder { color: rgba(107,107,107,0.5); }
@media (max-width: 540px) {
  .booking-modal { padding: 1.8rem 1.4rem; border-radius: 22px; }
  .bs-slots-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== SCROLL PROGRESS / TRANSITIONS ===== */
/* ---- SCROLL PROGRESS ---- */
#scrollProgressBar {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--violet-dark), var(--violet), var(--gold));
    z-index: 9999; transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(185,102,212,0.6);
}

/* ---- CUSTOM CURSOR REMOVED ---- */

/* ---- PAGE TRANSITION OVERLAY ---- */
#pageOverlay {
    position: fixed; inset: 0; z-index: 9990;
    background: var(--creme);
    opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease;
}
#pageOverlay.active { opacity: 1; pointer-events: all; }

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(.16,1,.3,1),
                transform 0.65s cubic-bezier(.16,1,.3,1);
}
.reveal.reveal-left { transform: translateX(-30px); }
.reveal.reveal-right { transform: translateX(30px); }
.reveal.visible { opacity: 1 !important; transform: none !important; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ---- GLASSMORPHISM CARDS ---- */
.card, .offer-card, .testi-card, .value-card, .portfolio-card, .blog-card {
    transition: transform 0.35s cubic-bezier(.16,1,.3,1),
                box-shadow 0.35s ease, backdrop-filter 0.35s;
    will-change: transform;
}
.offer-card:hover, .portfolio-card:hover {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
}
.offer-card.featured:hover { background: #1e1e1e; }

/* ---- MAGNETIC BUTTON WRAPPER ---- */
.magnetic-wrap { display: inline-block; }

/* ---- HERO PARTICLES CANVAS ---- */
#heroCanvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.55;
}
.hero { position: relative; }
.hero-content, .hero-visual { position: relative; z-index: 1; }

/* ---- FLOATING PHONE CTA ---- */
.float-cta {
    position: fixed; bottom: 28px; right: 28px; z-index: 888;
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-cta-btn {
    display: flex; align-items: center; gap: 10px;
    background: var(--violet-dark); color: var(--blanc);
    padding: 0.75rem 1.25rem; border-radius: 50px;
    text-decoration: none; font-size: 0.9rem; font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 8px 30px rgba(185,102,212,0.45);
    transition: all 0.3s; white-space: nowrap;
    border: none; cursor: pointer;
    animation: float-btn-in 0.6s 1s cubic-bezier(.16,1,.3,1) both;
}
.float-cta-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(185,102,212,0.6); }
.float-cta-icon { font-size: 1.05rem; animation: float-ring 2s ease-in-out infinite; }
@keyframes float-btn-in { from { opacity:0; transform: translateY(20px) scale(0.9); } to { opacity:1; transform: none; } }
@keyframes float-ring { 0%,100%{transform:rotate(0deg)} 20%{transform:rotate(-15deg)} 40%{transform:rotate(15deg)} 60%{transform:rotate(-8deg)} 80%{transform:rotate(8deg)} }
@media (max-width:768px) { .float-cta-btn .float-label { display: none; } .float-cta-btn { padding: 0.85rem 1rem; } }

/* ---- TRUST MARQUEE ---- */
.trust-strip {
    background: var(--noir); overflow: hidden; padding: 0;
    border-top: 1px solid rgba(217,143,239,0.12);
    border-bottom: 1px solid rgba(217,143,239,0.12);
}
.trust-strip-track {
    display: flex; gap: 0;
    animation: marquee-scroll 28s linear infinite;
    width: max-content;
}
.trust-strip-track:hover { animation-play-state: paused; }
.trust-item {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2.2rem; color: rgba(255,255,255,0.6);
    font-size: 0.83rem; font-weight: 600; white-space: nowrap;
    letter-spacing: 0.02em; font-family: 'DM Sans', sans-serif;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item .ti-star { color: var(--violet-light); }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- RESULTS BAR ---- */
.results-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    margin: 0 3%; border-radius: 22px; padding: 2.8rem 4rem;
    display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
    position: relative; overflow: hidden;
    border: 1px solid rgba(217,143,239,0.15);
}
.results-bar::before {
    content:''; position:absolute; top:-60px; left:50%; transform:translateX(-50%);
    width:300px; height:200px;
    background: radial-gradient(circle, rgba(217,143,239,0.12) 0%, transparent 70%);
    pointer-events:none;
}
.result-stat { text-align: center; position: relative; }
.result-stat + .result-stat::before {
    content:''; position:absolute; left:-2rem; top:50%; transform:translateY(-50%);
    height:40px; width:1px; background: rgba(255,255,255,0.1);
}
.result-stat .rs-num {
    font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight:700;
    color: var(--violet-light); line-height:1; margin-bottom:0.4rem;
    text-shadow: 0 0 30px rgba(217,143,239,0.4);
}
.result-stat .rs-label {
    font-size: 0.8rem; color: rgba(255,255,255,0.45); text-transform:uppercase;
    letter-spacing:0.06em; font-weight:600;
}
@media(max-width:768px) { .results-bar { padding: 2rem; gap: 2rem; margin: 0 4%; } }

/* ---- PORTFOLIO HOVER OVERLAY ---- */
.portfolio-img { position: relative; overflow: hidden; }
.portfolio-overlay {
    position: absolute; inset:0;
    background: rgba(26,26,26,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-btn {
    background: var(--blanc); color: var(--noir);
    padding: 0.6rem 1.4rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700; font-family: 'DM Sans', sans-serif;
    transform: translateY(8px); transition: transform 0.3s ease;
    cursor: default;
}
.portfolio-card:hover .portfolio-overlay-btn { transform: translateY(0); }

/* ---- TILT SHINE ---- */
.tilt-card { transform-style: preserve-3d; }
.tilt-shine {
    position: absolute; inset: 0; border-radius: inherit;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.tilt-card:hover .tilt-shine { opacity: 1; }

/* ---- STAT COUNTER GLOW ---- */
.stat h3 {
    text-shadow: 0 0 20px rgba(185,102,212,0.3);
    transition: text-shadow 0.3s;
}
.stat:hover h3 { text-shadow: 0 0 30px rgba(185,102,212,0.6); }

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
    .reveal, #cursorDot, #cursorRing, #heroCanvas,
    .tilt-card, #scrollProgressBar { display: none !important; }
    .card, .offer-card, .testi-card, .value-card,
    .portfolio-card, .blog-card { transition: none !important; }
}

/* ---- HIDE CURSOR ON TOUCH ---- */
@media (hover: none) {
    #cursorDot, #cursorRing { display: none !important; }
}

/* ===== RIPPLE / LOCATION TAG ===== */
@keyframes ripple-anim {
    to { transform: scale(1); opacity: 0; }
}

/* ===== LOCATION TAG ===== */
@keyframes lt-ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
.location-tag {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 16px 28px; border-radius: 100px;
    border: 1.5px solid rgba(26,26,26,0.14);
    background: rgba(247,244,239,0.9);
    cursor: default; user-select: none;
    transition: border-color 0.5s ease, background 0.5s ease,
                box-shadow 0.5s ease;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.location-tag:hover {
    border-color: rgba(26,26,26,0.22);
    background: rgba(247,244,239,0.9);
    box-shadow: 0 0 20px rgba(0,0,0,0.04);
}
/* dark version (for dark footer/bg) */
.location-tag.dark {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
}
.location-tag.dark:hover {
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.09);
}
.location-tag.dark .lt-label,
.location-tag.dark .lt-time { color: rgba(255,255,255,0.85); }
.location-tag.dark .lt-arrow { color: rgba(255,255,255,0.45); }

/* Pulse dot */
.lt-dot-wrap { position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lt-dot-ping {
    position: absolute; width: 11px; height: 11px; border-radius: 50%;
    background: #10b981; opacity: 0.75;
    animation: lt-ping 1.4s cubic-bezier(0,0,0.2,1) infinite;
}
.lt-dot-solid { width: 11px; height: 11px; border-radius: 50%; background: #10b981; flex-shrink: 0; }

/* Text swap area */
.lt-text { position: relative; overflow: hidden; height: 20px; min-width: 120px; }
.lt-label, .lt-time {
    position: absolute; left: 0; top: 0;
    font-size: 1.05rem; font-weight: 600; color: var(--noir);
    white-space: nowrap; font-family: 'DM Sans', sans-serif;
    transition: transform 0.5s cubic-bezier(.16,1,.3,1), opacity 0.5s ease;
    line-height: 26px;
}
.lt-text { position: relative; overflow: hidden; height: 26px; min-width: 180px; }
.lt-label  { transform: translateY(0);     opacity: 1; }
.lt-time   { transform: translateY(100%);  opacity: 0; }
.location-tag:hover .lt-label { transform: translateY(-100%); opacity: 0; }
.location-tag:hover .lt-time  { transform: translateY(0);     opacity: 1; }

/* Arrow */
.lt-arrow {
    flex-shrink: 0; width: 15px; height: 15px; color: rgba(107,107,107,0.5);
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s;
    opacity: 0.5;
}
.location-tag:hover .lt-arrow {
    transform: translateX(2px) rotate(-45deg);
    opacity: 1; color: var(--noir);
}
