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

        :root {
            --color-dark: #1a1a1a;
            --color-light: #fafafa;
            --color-accent: #c9a961;
            --color-accent-dark: #a88a4d;
            --color-muted: #5a5a5a;
            --color-success: #27ae60;
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Nunito Sans', sans-serif;
            --transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* ACCESSIBILITÉ : focus visible clavier */
        *:focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 3px;
            border-radius: 3px;
        }

        /* TOAST NOTIFICATION */
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 9999;
            background: var(--color-dark);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
            max-width: 380px;
            font-size: 0.95rem;
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        .toast-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .toast-close {
            background: none;
            border: none;
            color: rgba(255,255,255,0.6);
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: auto;
            padding: 0 0.2rem;
            line-height: 1;
        }

        .toast-close:hover { color: white; }

        /* BURGER MOBILE */
        .burger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .burger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-dark);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .burger.open span:nth-child(2) { opacity: 0; }
        .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--color-light);
            z-index: 1000;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            color: var(--color-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover { color: var(--color-accent); }

        /* RGPD BANNER */
        .rgpd-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9000;
            background: var(--color-dark);
            color: white;
            padding: 1.2rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.85rem;
            box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
            transform: translateY(0);
            transition: transform 0.4s ease;
        }

        .rgpd-banner.hidden { transform: translateY(110%); }

        .rgpd-banner p { max-width: 700px; color: rgba(255,255,255,0.85); line-height: 1.6; }
        .rgpd-banner a { color: var(--color-accent); }

        .rgpd-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }

        .rgpd-btn {
            padding: 0.6rem 1.3rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .rgpd-btn:hover { transform: translateY(-2px); }

        .rgpd-btn-accept { background: var(--color-accent); color: var(--color-dark); }
        .rgpd-btn-accept:hover { background: #d4b570; }
        .rgpd-btn-refuse { background: rgba(255,255,255,0.15); color: white; }
        .rgpd-btn-refuse:hover { background: rgba(255,255,255,0.25); }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--color-light);
            color: var(--color-dark);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* NAVIGATION */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(250, 250, 250, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo-text {
            font-family: -apple-system, 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
            font-weight: 300;
            font-size: 17px;
            letter-spacing: 6px;
            color: var(--color-dark);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-dark);
            font-size: 0.95rem;
            font-weight: 400;
            position: relative;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: var(--transition);
        }

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

        .nav-cta {
            border: 1px solid #7a6120 !important;
            color: #7a6120 !important;
            padding: 6px 16px !important;
            border-radius: 4px !important;
            transition: all 0.2s !important;
        }
        .nav-cta:hover {
            background: var(--color-accent) !important;
            border-color: var(--color-accent) !important;
            color: var(--color-dark) !important;
        }
        .nav-cta::after { display: none !important; }
        .nav-links a:hover::after {
            width: 100%;
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 7rem 6% 5rem;
            background: #fafafa;
            position: relative;
            overflow: hidden;
            gap: 5rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 25%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 560px;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .hero-label {
            font-size: 0.78rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--color-accent);
            font-weight: 700;
            margin-bottom: 1.8rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .hero-label::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 1.5px;
            background: var(--color-accent);
            flex-shrink: 0;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 600;
            line-height: 1.05;
            margin-bottom: 2rem;
            color: var(--color-dark);
        }

        .hero-title span {
            color: var(--color-accent);
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            line-height: 1.85;
            color: var(--color-muted);
            margin-bottom: 2.5rem;
            font-weight: 300;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1.1rem 2.5rem;
            background: var(--color-dark);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            transition: var(--transition);
            box-shadow: 0 8px 24px rgba(26,26,26,0.2);
        }

        .cta-button::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            background: #2d2d2d;
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(26,26,26,0.28);
        }

        .cta-button:hover::after {
            transform: translateX(4px);
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-left: 1.2rem;
            color: var(--color-accent);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1.5px solid rgba(201,169,97,0.4);
            padding-bottom: 2px;
            transition: border-color 0.2s ease, color 0.2s ease;
        }

        .cta-secondary:hover {
            border-color: var(--color-accent);
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: var(--color-muted);
            font-weight: 500;
        }

        .hero-trust-check {
            color: var(--color-accent);
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* HERO VISUAL */
        .hero-visual {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .browser-frame {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.07);
            transform: perspective(1200px) rotateY(-5deg) rotateX(1deg);
            transition: transform 0.7s cubic-bezier(.23,1,.32,1);
        }

        .hero-visual:hover .browser-frame {
            transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
        }

        .browser-bar {
            height: 36px;
            background: #252525;
            display: flex;
            align-items: center;
            padding: 0 1rem;
            gap: 0.45rem;
            flex-shrink: 0;
        }

        .b-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .b-dot.r { background: #ff5f57; }
        .b-dot.y { background: #febc2e; }
        .b-dot.g { background: #28c840; }

        .browser-url {
            flex: 1;
            background: rgba(255,255,255,0.07);
            border-radius: 5px;
            height: 20px;
            display: flex;
            align-items: center;
            padding: 0 0.7rem;
            font-size: 0.62rem;
            color: rgba(255,255,255,0.35);
            font-family: 'Courier New', monospace;
            margin: 0 0.8rem;
            letter-spacing: 0.2px;
            overflow: hidden;
            white-space: nowrap;
        }

        .browser-content {
            background: #0d1117;
            height: 330px;
            overflow: hidden;
        }

        .mini-nav-bar {
            height: 42px;
            background: rgba(10,13,18,0.98);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            padding: 0 1.4rem;
            justify-content: space-between;
        }

        .mini-logo {
            height: 11px;
            width: 70px;
            background: #c9a961;
            border-radius: 2px;
        }

        .mini-nav-dots {
            display: flex;
            gap: 0.8rem;
        }

        .mini-nav-dot {
            height: 7px;
            width: 36px;
            background: rgba(255,255,255,0.12);
            border-radius: 2px;
        }

        .mini-hero-section {
            padding: 1.6rem 1.4rem 1.3rem;
            background: linear-gradient(155deg, #0d1117 0%, #131c28 100%);
            position: relative;
            overflow: hidden;
        }

        .mini-hero-section::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(201,169,97,0.1) 0%, transparent 70%);
        }

        .mini-tag {
            height: 6px;
            width: 55px;
            background: #c9a961;
            border-radius: 2px;
            margin-bottom: 0.7rem;
            opacity: 0.85;
        }

        .mini-h1-line {
            height: 18px;
            background: rgba(255,255,255,0.88);
            border-radius: 3px;
            margin-bottom: 0.45rem;
        }

        .mini-p-line {
            height: 6px;
            background: rgba(255,255,255,0.18);
            border-radius: 2px;
            margin-bottom: 0.35rem;
        }

        .mini-cta-block {
            height: 26px;
            width: 90px;
            background: #c9a961;
            border-radius: 4px;
            margin-top: 0.9rem;
        }

        .mini-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.45rem;
            padding: 1.1rem 1.4rem;
            background: #080c10;
        }

        .mini-card {
            border-radius: 5px;
            padding: 0.7rem 0.6rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
        }

        .mini-card-icon {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            background: rgba(201,169,97,0.25);
            margin-bottom: 0.4rem;
        }

        .mini-card-l {
            height: 5px;
            border-radius: 2px;
            background: rgba(255,255,255,0.14);
            margin-bottom: 0.25rem;
        }

        .mini-card-l.short {
            width: 60%;
            background: rgba(255,255,255,0.07);
        }

        /* Floating badges */
        .hero-badge {
            position: absolute;
            background: white;
            border-radius: 10px;
            padding: 0.55rem 0.9rem;
            box-shadow: 0 8px 28px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.76rem;
            font-weight: 700;
            color: var(--color-dark);
            white-space: nowrap;
            border: 1px solid rgba(0,0,0,0.05);
            animation: floatBadge 4s ease-in-out infinite;
            z-index: 2;
        }

        .hero-badge-1 { top: 6%; right: -6%; animation-delay: 0s; }
        .hero-badge-2 { bottom: 18%; left: -10%; animation-delay: 1.8s; }
        .hero-badge-3 { top: 52%; right: -8%; animation-delay: 0.9s; }

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

        .badge-icon {
            width: 26px;
            height: 26px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .badge-icon.gold { background: rgba(201,169,97,0.15); }
        .badge-icon.green { background: rgba(39,174,96,0.12); }
        .badge-icon.blue { background: rgba(52,152,219,0.12); }

        /* STATS STRIP */
        .stats-strip {
            background: var(--color-dark);
            padding: 2.8rem 6%;
        }

        .stats-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 3.5rem;
            flex: 1;
        }

        .stat-num {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--color-accent);
            line-height: 1;
            margin-bottom: 0.4rem;
        }

        .stat-lbl {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.65);
            text-transform: uppercase;
            letter-spacing: 1.8px;
            font-weight: 500;
            text-align: center;
        }

        .stat-sep {
            width: 1px;
            height: 44px;
            background: rgba(255,255,255,0.08);
            flex-shrink: 0;
        }

        @media(max-width: 1100px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 8rem 6% 4rem;
                gap: 3.5rem;
            }
            .hero-content { max-width: 100%; text-align: center; }
            .hero-label { justify-content: center; }
            .hero-trust { justify-content: center; }
            .browser-frame { max-width: 420px; transform: none !important; }
        }

        @media(max-width: 768px) {
            .hero-visual { display: none; }
            .hero-title { font-size: 3.2rem; }
            .stats-inner { flex-wrap: wrap; gap: 1.5rem; }
            .stat-item { padding: 0.8rem 1.5rem; min-width: 120px; }
            .stat-sep { display: none; }
        }

        /* SECTIONS COMMUNES */
        section {
            padding: 8rem 6%;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-label {
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--color-dark);
        }

        .section-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--color-muted);
            font-weight: 300;
        }

        /* PORTFOLIO */
        .portfolio {
            background: #fff;
        }

        .portfolio-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 1.5rem;
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .portfolio-item:first-child {
            grid-column: span 2;
            aspect-ratio: 16/9;
        }

        /* Quinconce — petits items s'étirent à la hauteur de la ligne */
        .portfolio-item:nth-child(2),
        .portfolio-item:nth-child(3),
        .portfolio-item:nth-child(6) {
            aspect-ratio: unset;
            align-self: stretch;
        }

        /* Artisan Local — vendeur en évidence */
        .portfolio-item:nth-child(6) .portfolio-image {
            object-position: center 20%;
        }

        /* Grands items (span 2) — lignes 2 et 3 */
        .portfolio-item:nth-child(4),
        .portfolio-item:nth-child(5) {
            grid-column: span 2;
            aspect-ratio: 16/9;
        }

        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transform: translateY(8px);
            opacity: 0;
            transition: var(--transition);
        }

        .portfolio-item:hover .portfolio-image {
            transform: scale(1.06);
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.8rem;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--color-accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(201,169,97,0.4);
            padding-bottom: 1px;
            width: fit-content;
            transition: border-color 0.2s;
        }

        .portfolio-link:hover {
            border-color: var(--color-accent);
        }

        .portfolio-category {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-accent);
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }

        .portfolio-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-info {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* SERVICES */
        .services {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        }

        .services-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .service-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 12px;
            border: 1.5px solid #e8e8e8;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            border-color: rgba(201,169,97,0.25);
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(0,0,0,0.07);
        }

        .service-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-accent);
            opacity: 0.15;
            margin-bottom: 1rem;
            line-height: 1;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--color-dark);
        }

        .service-description {
            font-size: 1rem;
            color: var(--color-muted);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .service-price {
            font-weight: 700;
            color: var(--color-dark);
            font-size: 1.5rem;
        }

        /* TARIFS */
        .tarifs {
            background: var(--color-dark);
        }

        .tarifs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 960px;
            margin: 0 auto;
        }

        .tarif-card {
            background: white;
            border: 2px solid #e8e8e8;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .tarif-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .tarif-card.popular {
            border-color: var(--color-accent);
            transform: scale(1.04);
        }

        .tarif-card.popular:hover {
            transform: scale(1.04) translateY(-6px);
        }

        .tarif-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-accent);
            color: var(--color-dark);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.3rem 1.2rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .tarif-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .tarif-pages {
            font-size: 0.85rem;
            color: var(--color-muted);
            margin-bottom: 1.5rem;
        }

        .tarif-price {
            font-family: var(--font-display);
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--color-dark);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .tarif-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.5rem; }

        .tarif-delay {
            font-size: 0.8rem;
            color: var(--color-muted);
            margin-bottom: 2rem;
        }

        .tarif-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .tarif-features li {
            font-size: 0.88rem;
            color: var(--color-muted);
            padding: 0.45rem 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .tarif-features li::before {
            content: '✓';
            color: var(--color-accent);
            font-weight: 700;
            flex-shrink: 0;
        }

        .tarif-cta {
            display: block;
            width: 100%;
            padding: 0.9rem;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 2px solid var(--color-dark);
            background: transparent;
            color: var(--color-dark);
        }

        .tarif-card.popular .tarif-cta {
            background: var(--color-accent);
            border-color: var(--color-accent);
            color: var(--color-dark);
        }

        .tarif-cta:hover {
            background: var(--color-dark);
            color: white;
        }

        .tarif-card.popular .tarif-cta:hover {
            background: var(--color-accent-dark);
            border-color: var(--color-accent-dark);
        }

        .tarifs-note {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: var(--color-muted);
        }

        /* WIDGET PRIX FORMULAIRE */
        .ob-price-widget {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            color: white;
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            pointer-events: none;
        }

        .ob-price-widget.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .ob-price-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ob-price-amount {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-accent);
            transition: all 0.3s ease;
        }

        .ob-price-detail {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
            margin-top: 0.15rem;
        }

        .ob-price-bump {
            animation: priceBump 0.3s ease;
        }

        @keyframes priceBump {
            0%   { transform: scale(1); }
            50%  { transform: scale(1.2); color: white; }
            100% { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .tarifs-grid { grid-template-columns: 1fr; }
            .tarif-card.popular { transform: none; }
            .tarif-card.popular:hover { transform: translateY(-6px); }
        }

        /* PROCESS */
        /* PROCESS */
        .process {
            background: #fff;
        }

        .process-timeline {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--color-accent), rgba(201, 169, 97, 0.2));
            transform: translateX(-50%);
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 5rem;
            position: relative;
        }

        .process-step:nth-child(even) .process-content {
            order: 2;
        }

        .process-step:nth-child(even) .process-visual {
            order: 1;
        }

        .process-number {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--color-accent);
            color: var(--color-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 10px 40px rgba(201, 169, 97, 0.3);
        }

        .process-content {
            padding: 2rem;
        }

        .process-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }

        .process-description {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--color-muted);
            margin-bottom: 1.5rem;
        }

        .process-details {
            list-style: none;
            padding: 0;
        }

        .process-details li {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            color: var(--color-dark);
        }

        .process-details li::before {
            content: '→';
            color: var(--color-accent);
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .process-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .process-icon {
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            animation: morphing 8s ease-in-out infinite;
            box-shadow: 0 20px 60px rgba(201, 169, 97, 0.2);
        }

        @keyframes morphing {
            0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
            50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
            75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
        }

        /* TEAM */
        .team {
            background: var(--color-dark);
            color: var(--color-light);
            position: relative;
            overflow: hidden;
        }

        .team::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .team .section-label {
            color: var(--color-accent);
        }

        .team .section-title {
            color: var(--color-light);
        }

        .team .section-description {
            color: rgba(255, 255, 255, 0.7);
        }

        .team-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .team-member {
            text-align: center;
        }

        .team-avatar {
            width: 180px;
            height: 180px;
            margin: 0 auto 2rem;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .team-avatar:hover {
            transform: translateY(-10px);
        }

        .team-avatar-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--color-dark);
            box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
        }

        .team-role-badge {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-accent);
            color: var(--color-dark);
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
        }

        .team-name {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--color-light);
            margin-bottom: 0.5rem;
        }

        .team-title {
            font-size: 1rem;
            color: var(--color-accent);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .team-bio {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 1.5rem;
        }

        .team-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .team-skill {
            background: rgba(201, 169, 97, 0.1);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-size: 0.85rem;
            border: 1px solid rgba(201, 169, 97, 0.2);
            transition: var(--transition);
        }

        .team-skill:hover {
            background: rgba(201, 169, 97, 0.2);
            border-color: var(--color-accent);
        }

        /* CONTACT */

        /* FOOTER */
        footer {
            background: #0a0a0a;
            color: rgba(255,255,255,0.6);
            padding: 3rem 6%;
            text-align: center;
        }

        footer a {
            color: var(--color-accent);
            text-decoration: none;
        }

        /* ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

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

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .portfolio-item:first-child {
                grid-column: span 1;
                aspect-ratio: 4/3;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-step {
                grid-template-columns: 1fr;
                margin-bottom: 3rem;
                padding-left: 80px;
            }

            .process-timeline::before {
                left: 22px;
            }

            .process-number {
                left: 0;
                top: 1.5rem;
                transform: none;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .process-visual {
                display: none;
            }

            .process-content {
                padding: 0;
            }

            .process-step:nth-child(even) .process-content {
                order: 0;
            }

            .process-title {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1.5rem 5%;
            }

            .nav-links {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero-title {
                font-size: 3rem;
            }

            section {
                padding: 5rem 5%;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            .portfolio-item:first-child {
                grid-column: span 1;
                aspect-ratio: 4/3;
            }

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

            .process-step {
                padding-left: 70px;
                margin-bottom: 2.5rem;
            }

            .process-number {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }

            .process-timeline::before {
                left: 20px;
            }

            .process-title {
                font-size: 1.25rem;
                margin-bottom: 0.6rem;
            }

            .process-description {
                font-size: 0.95rem;
            }

            .process-details li {
                font-size: 0.9rem;
            }

        }

        /* ── ONBOARDING FORM ─────────────────────────── */
        .onboarding {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        }

        .ob-wrapper {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

        .ob-progress {
            height: 4px;
            background: #e0e0e0;
            border-radius: 2px;
            margin-bottom: 0.8rem;
        }

        .ob-progress-bar {
            height: 100%;
            background: var(--color-accent);
            border-radius: 2px;
            transition: width 0.4s ease;
            width: 20%;
        }

        .ob-steps-label {
            text-align: right;
            font-size: 0.85rem;
            color: var(--color-muted);
            margin-bottom: 2.5rem;
        }

        .ob-step { display: none; }
        .ob-step.active { display: block; }

        .ob-step-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-dark);
        }

        .ob-step-sub {
            color: var(--color-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .ob-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .ob-field { display: flex; flex-direction: column; gap: 0.5rem; }
        .ob-field.ob-full { grid-column: 1 / -1; }

        .ob-field label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-dark);
        }

        .ob-field input,
        .ob-field textarea {
            padding: 0.9rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s ease;
            resize: vertical;
        }

        .ob-field input:focus,
        .ob-field textarea:focus {
            outline: none;
            border-color: var(--color-accent);
        }

        .ob-field input.error,
        .ob-field textarea.error {
            border-color: #e74c3c;
        }

        /* Styles */
        .ob-styles {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .ob-style-card input { display: none; }

        .ob-style-inner {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 1.5rem 1rem;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.3s ease, background-color 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .ob-style-card input:checked + .ob-style-inner {
            border-color: var(--color-accent);
            background: rgba(201,169,97,0.08);
        }

        .ob-style-icon { font-size: 1.5rem; }
        .ob-style-name { font-size: 0.9rem; font-weight: 600; }

        /* ── Colour UI (palette list + live preview) ── */
        .ob-color-ui {
            display: grid;
            grid-template-columns: 1fr 200px;
            gap: 1.25rem;
            margin-top: 1rem;
            align-items: start;
        }

        /* Palette list */
        .ob-pal-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }

        .ob-pal-row {
            cursor: pointer;
            border: 2px solid #e8e8e8;
            border-radius: 10px;
            transition: border-color 0.2s, background 0.2s;
        }
        .ob-pal-row:hover { border-color: var(--color-accent); background: rgba(201,169,97,0.04); }
        .ob-pal-row:has(input:checked) { border-color: var(--color-accent); background: rgba(201,169,97,0.08); }
        .ob-pal-row input { display: none; }

        .ob-pal-row-inner {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.55rem 0.75rem;
        }

        .ob-pal-swatches {
            display: flex;
            gap: 3px;
            flex-shrink: 0;
        }
        .ob-pal-swatches span {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            display: block;
        }

        .ob-pal-row-label {
            flex: 1;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-dark);
        }

        .ob-pal-check {
            font-size: 0.75rem;
            color: var(--color-accent);
            opacity: 0;
            transition: opacity 0.15s;
        }
        .ob-pal-row:has(input:checked) .ob-pal-check { opacity: 1; }

        /* Auto row (full-width) */
        .ob-pal-auto-row { grid-column: 1 / -1; }
        .ob-pal-auto-row .ob-pal-row-inner { padding: 0.65rem 0.9rem; }
        .ob-pal-ai-icon { font-size: 1.2rem; flex-shrink: 0; }
        .ob-pal-row-texts { display: flex; flex-direction: column; flex: 1; }
        .ob-pal-row-title { font-size: 0.85rem; font-weight: 700; color: var(--color-dark); }
        .ob-pal-row-sub { font-size: 0.72rem; color: var(--color-muted); margin-top: 1px; }

        /* Custom row */
        .ob-pal-custom-row { grid-column: 1 / -1; }

        /* Custom picker panel */
        .ob-custom-picker {
            display: none;
            margin-top: 0.75rem;
            padding: 1rem 1.2rem;
            background: #f9f9f9;
            border-radius: 10px;
            border: 1.5px solid #e8e8e8;
        }
        .ob-custom-picker.visible { display: block; }

        .ob-picker-row {
            display: flex;
            gap: 1rem;
        }
        .ob-picker-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .ob-picker-col label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .ob-color-swatch {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            cursor: pointer;
            border: 2px solid rgba(255,255,255,0.2);
            transition: border-color 0.2s;
        }
        .ob-color-swatch:hover { border-color: rgba(255,255,255,0.5); }
        .ob-color-swatch input[type="color"] {
            width: 28px;
            height: 28px;
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 0;
            border-radius: 4px;
        }
        .ob-color-swatch span {
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            font-family: monospace;
        }

        /* Mini live preview */
        .ob-mini-preview {
            border-radius: 10px;
            overflow: hidden;
            border: 1.5px solid #e8e8e8;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            font-size: 0;
            position: sticky;
            top: 1rem;
        }
        .ob-mp-header {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 0.6rem;
            transition: background 0.3s;
        }
        .ob-mp-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
            transition: background 0.3s;
        }
        .ob-mp-brand {
            font-size: 0.6rem;
            font-weight: 700;
            color: rgba(255,255,255,0.85);
            flex: 1;
        }
        .ob-mp-navlinks {
            display: flex;
            gap: 4px;
            align-items: center;
        }
        .ob-mp-navlinks span {
            display: block;
            width: 14px;
            height: 2px;
            border-radius: 1px;
            background: rgba(255,255,255,0.4);
        }
        .ob-mp-btn {
            font-size: 0.55rem;
            font-weight: 700;
            padding: 3px 7px;
            border-radius: 4px;
            cursor: default;
            transition: background 0.3s, color 0.3s;
        }
        .ob-mp-hero {
            padding: 1rem 0.75rem 0.8rem;
            transition: background 0.3s;
        }
        .ob-mp-title {
            font-size: 0.75rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.25rem;
            transition: color 0.3s;
        }
        .ob-mp-sub {
            font-size: 0.55rem;
            opacity: 0.6;
            line-height: 1.4;
            margin-bottom: 0.6rem;
            transition: color 0.3s;
        }
        .ob-mp-cta {
            display: inline-block;
            font-size: 0.55rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            cursor: default;
            transition: background 0.3s, color 0.3s;
        }
        .ob-mp-cards {
            display: flex;
            gap: 0.35rem;
            padding: 0.5rem 0.6rem;
            transition: background 0.3s;
        }
        .ob-mp-card {
            flex: 1;
            border-radius: 6px;
            padding: 0.4rem;
            border: 1px solid rgba(0,0,0,0.06);
            transition: background 0.3s;
        }
        .ob-mp-card-bar {
            height: 30px;
            border-radius: 3px;
            margin-bottom: 0.3rem;
            transition: background 0.3s;
        }
        .ob-mp-card-line {
            height: 4px;
            border-radius: 2px;
            background: rgba(0,0,0,0.1);
            margin-bottom: 3px;
        }
        .ob-mp-card-line.short { width: 60%; }
        .ob-mp-label {
            text-align: center;
            font-size: 0.58rem;
            color: var(--color-muted);
            padding: 0.3rem;
            border-top: 1px solid #f0f0f0;
        }

        /* Pages */
        .ob-pages {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .ob-page-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            transition: border-color 0.3s ease, background-color 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .ob-page-item input { accent-color: var(--color-accent); }

        .ob-page-item:has(input:checked) {
            border-color: var(--color-accent);
            background: rgba(201,169,97,0.08);
        }

        .ob-page-fixed { opacity: 0.6; cursor: default; }

        /* Recap */
        .ob-recap {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-size: 0.9rem;
            line-height: 2;
            color: var(--color-dark);
        }

        /* Loading */
        .ob-loading {
            text-align: center;
            padding: 3rem 0;
        }

        .ob-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid #e0e0e0;
            border-top-color: var(--color-accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 1.5rem;
        }

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

        .ob-loading p { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
        .ob-loading-sub { font-size: 0.85rem; color: var(--color-muted); }

        /* Success */
        .ob-success {
            text-align: center;
            padding: 3rem 0;
        }

        .ob-success-icon {
            font-size: 3rem;
            color: var(--color-accent);
            margin-bottom: 1.5rem;
        }

        .ob-success h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .ob-success p { color: var(--color-muted); margin-bottom: 0.5rem; }


        .ob-cgv-accept {
            margin-top: 1.2rem;
            padding: 1rem 1.2rem;
            background: rgba(201,169,97,0.08);
            border: 1px solid rgba(201,169,97,0.25);
            border-radius: 8px;
        }
        .ob-cgv-accept label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
            font-size: 0.88rem;
            color: var(--color-text);
            line-height: 1.5;
        }
        .ob-cgv-accept input[type="checkbox"] {
            width: 18px;
            height: 18px;
            min-width: 18px;
            accent-color: var(--color-accent);
            cursor: pointer;
            margin-top: 2px;
        }
        .ob-cgv-accept a { color: var(--color-accent); text-decoration: underline; }
        .ob-cgv-accept.error { border-color: #e74c3c; background: rgba(231,76,60,0.07); }
        .ob-account-box {
            background: #f9f9f9;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: left;
        }

        .ob-account-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-dark);
        }

        .ob-account-sub {
            font-size: 0.9rem;
            color: var(--color-muted);
            margin-bottom: 1.5rem;
        }

        /* Navigation */
        .ob-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid #f0f0f0;
        }

        .ob-btn-prev {
            background: none;
            border: 2px solid #e0e0e0;
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            color: var(--color-muted);
            transition: border-color 0.3s ease, color 0.3s ease;
        }

        .ob-btn-prev:hover { border-color: var(--color-accent); color: var(--color-dark); }

        .ob-btn-next,
        .ob-btn-submit {
            background: var(--color-accent);
            border: none;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            color: var(--color-dark);
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-left: auto;
        }

        .ob-btn-next:hover,
        .ob-btn-submit:hover {
            background: var(--color-accent-dark);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .ob-wrapper { padding: 2rem 1.5rem; }
            .ob-grid { grid-template-columns: 1fr; }
            .ob-styles { grid-template-columns: repeat(2, 1fr); }
            .ob-pages { grid-template-columns: repeat(2, 1fr); }
            .ob-color-ui { grid-template-columns: 1fr; }
            .ob-mini-preview { display: none; }
            .ob-pal-list { grid-template-columns: 1fr; }
        }

    
        /* ── Tarifs dark theme ─────────────────────────────────────── */
        .tarifs .section-title       { color: var(--color-light); }
        .tarifs .section-description { color: rgba(250,250,250,0.60); }
        .tarifs .section-label       { color: var(--color-accent); }
        .tarifs-note                 { color: rgba(250,250,250,0.65) !important; }

        .tarif-card {
            background: #1e1e1e;
            border-color: rgba(201,169,97,0.18);
        }
        .tarif-card:hover {
            border-color: rgba(201,169,97,0.55);
        }
        .tarif-card.popular {
            background: #222222;
            border-color: var(--color-accent) !important;
        }
        .tarif-name  { color: var(--color-light); }
        .tarif-pages { color: rgba(250,250,250,0.65); }
        .tarif-price { color: var(--color-accent); }
        .tarif-delay { color: rgba(250,250,250,0.65); }
        .tarif-features li { color: rgba(250,250,250,0.75); }
        .tarif-features li::before { color: var(--color-accent); }
