/* ============================================================
   NETING — Agence Web & IA · Thème "Deep Signal" v2
   Sombre + clair · gradient violet→cyan · accent lime IA
   ============================================================ */

:root {
    --bg: #05070f;
    --bg-2: #0a0e1c;
    --panel: rgba(255, 255, 255, 0.035);
    --panel-2: rgba(255, 255, 255, 0.06);
    --panel-solid: #0d1222;
    --line: rgba(255, 255, 255, 0.09);
    --line-soft: rgba(255, 255, 255, 0.055);
    --text: #eef1fb;
    --muted: #9aa3bd;
    --muted-2: #6b7490;
    --violet: #7c5cff;
    --violet-soft: #a897ff;
    --cyan: #2ad4ff;
    --cyan-soft: #7fdfff;
    --lime: #b6ff3d;
    --lime-soft: #cdff7a;
    --pink: #ff5c8a;
    --grad: linear-gradient(92deg, #7c5cff 0%, #2ad4ff 100%);
    --grad-hot: linear-gradient(92deg, #7c5cff 0%, #2ad4ff 55%, #b6ff3d 115%);
    --radius: 18px;
    --radius-lg: 26px;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-glow: 0 0 80px rgba(124, 92, 255, 0.22);
    --shadow-card: 0 24px 50px rgba(0, 0, 0, 0.45);
    --header-bg: rgba(5, 7, 15, 0.78);
    --menu-bg: rgba(6, 9, 19, 0.97);
    --scene-grid: rgba(255, 255, 255, 0.028);
    --scene-orb1: rgba(124, 92, 255, 0.16);
    --scene-orb2: rgba(42, 212, 255, 0.10);
    --scene-orb3: rgba(124, 92, 255, 0.08);
    --chip-bg: rgba(255, 255, 255, 0.03);
    --footer-bg: rgba(0, 0, 0, 0.25);
    --maxw: 1180px;
}

[data-theme="light"] {
    --bg: #f4f6fd;
    --bg-2: #ffffff;
    --panel: rgba(255, 255, 255, 0.75);
    --panel-2: #ffffff;
    --panel-solid: #ffffff;
    --line: rgba(18, 24, 55, 0.14);
    --line-soft: rgba(18, 24, 55, 0.09);
    --text: #10142a;
    --muted: #4d5670;
    --muted-2: #7a8299;
    --violet-soft: #6a4de0;
    --cyan: #0798c4;
    --cyan-soft: #0b7ea3;
    --lime: #5a9e00;
    --lime-soft: #4c8700;
    --shadow-glow: 0 0 80px rgba(124, 92, 255, 0.14);
    --shadow-card: 0 20px 44px rgba(28, 34, 70, 0.14);
    --header-bg: rgba(248, 249, 255, 0.82);
    --menu-bg: rgba(255, 255, 255, 0.98);
    --scene-grid: rgba(24, 32, 75, 0.05);
    --scene-orb1: rgba(124, 92, 255, 0.12);
    --scene-orb2: rgba(42, 212, 255, 0.10);
    --scene-orb3: rgba(124, 92, 255, 0.06);
    --chip-bg: rgba(255, 255, 255, 0.9);
    --footer-bg: rgba(18, 24, 55, 0.03);
}

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

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

::selection { background: rgba(124, 92, 255, 0.45); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Fond global : grille + orbes ---------- */
.bg-scene {
    position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background:
        radial-gradient(900px 600px at 85% -10%, var(--scene-orb1), transparent 60%),
        radial-gradient(800px 600px at -10% 25%, var(--scene-orb2), transparent 55%),
        radial-gradient(700px 500px at 60% 110%, var(--scene-orb3), transparent 60%),
        var(--bg);
    transition: background 0.3s;
}
.bg-scene::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--scene-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--scene-grid) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
}

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
h1 { font-size: clamp(36px, 5.6vw, 62px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 20px; }

.grad-text {
    background: var(--grad-hot);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
[data-theme="light"] .grad-text {
    background: linear-gradient(92deg, #6a3ff5 0%, #0798c4 70%, #4c8700 115%);
    -webkit-background-clip: text; background-clip: text;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--cyan);
    padding: 7px 14px; border-radius: 999px;
    border: 1px solid rgba(42, 212, 255, 0.25);
    background: rgba(42, 212, 255, 0.07);
}
.eyebrow.lime { color: var(--lime); border-color: rgba(134, 200, 30, 0.35); background: rgba(182, 255, 61, 0.08); }
.eyebrow.violet { color: var(--violet-soft); border-color: rgba(124, 92, 255, 0.35); background: rgba(124, 92, 255, 0.10); }
.eyebrow.pink { color: var(--pink); border-color: rgba(255, 92, 138, 0.3); background: rgba(255, 92, 138, 0.07); }
[data-theme="light"] .eyebrow { background: rgba(7, 152, 196, 0.08); }
[data-theme="light"] .eyebrow.pink { color: #d63d6d; }

.section { padding: 96px 0; position: relative; }
.section-head { max-width: 780px; margin-bottom: 54px; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 26px; border-radius: 14px;
    font-weight: 600; font-size: 15.5px; font-family: var(--font-display);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s;
    white-space: nowrap;
}
.btn svg { flex: none; }
.btn-primary {
    background: var(--grad); color: #fff;
    box-shadow: 0 8px 28px rgba(124, 92, 255, 0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(124, 92, 255, 0.5); }
.btn-ghost {
    border: 1px solid var(--line); background: var(--panel); color: var(--text);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(124, 92, 255, 0.55); background: var(--panel-2); transform: translateY(-2px); }
.btn-lime { background: #b6ff3d; color: #0c1403; box-shadow: 0 8px 28px rgba(182, 255, 61, 0.25); }
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(182, 255, 61, 0.35); }
[data-theme="light"] .btn-lime { background: #67b500; color: #fff; box-shadow: 0 8px 24px rgba(103, 181, 0, 0.35); }

/* ---------- Header ---------- */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 14px; }

.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); }
.brand .logo {
    width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none;
    background: var(--grad); box-shadow: 0 4px 18px rgba(124, 92, 255, 0.45);
}
.brand .logo svg { width: 22px; height: 22px; }
.brand b { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.brand small { display: block; font-size: 10.5px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; margin-top: -3px; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 18px; font-size: 14px; }

/* Toggle thème + sélecteur langue */
.icon-btn {
    width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
    border: 1px solid var(--line); background: var(--panel); color: var(--muted);
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.icon-btn:hover { color: var(--text); border-color: rgba(124, 92, 255, 0.5); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }
.theme-btn .sun { display: none; }
[data-theme="light"] .theme-btn .sun { display: block; }
[data-theme="light"] .theme-btn .moon { display: none; }

.lang-dd { position: relative; }
.lang-btn {
    height: 40px; padding: 0 12px; border-radius: 12px; display: inline-flex; align-items: center; gap: 7px;
    border: 1px solid var(--line); background: var(--panel); color: var(--muted);
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    transition: color 0.2s, border-color 0.2s;
}
.lang-btn:hover { color: var(--text); border-color: rgba(124, 92, 255, 0.5); }
.lang-btn svg { width: 14px; height: 14px; }
.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 176px;
    background: var(--menu-bg); border: 1px solid var(--line); border-radius: 14px;
    padding: 6px; display: none; z-index: 120;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}
.lang-dd.open .lang-menu { display: block; }
.lang-menu a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 9px 12px; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--muted);
}
.lang-menu a:hover { background: rgba(124, 92, 255, 0.12); color: var(--text); }
.lang-menu a.active { color: var(--text); background: rgba(124, 92, 255, 0.16); }
.lang-menu a .code { font-size: 11px; color: var(--muted-2); letter-spacing: 0.08em; }

.burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); place-items: center; }
.burger svg { width: 20px; height: 20px; }

.mobile-menu {
    display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
    background: var(--menu-bg); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line); padding: 18px 24px 26px;
    max-height: calc(100vh - 76px); overflow: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 6px; font-size: 16px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 16px; width: 100%; }
.mobile-menu .mm-langs { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.mobile-menu .mm-langs a {
    border: 1px solid var(--line); border-radius: 10px; padding: 8px 14px; font-size: 13px;
    border-bottom: 1px solid var(--line); flex: none;
}
.mobile-menu .mm-langs a.active { border-color: var(--violet); color: var(--violet-soft); }

/* ---------- Hero ---------- */
.hero { padding: 160px 0 80px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 22px 0 20px; }
.hero-sub { color: var(--muted); font-size: 18px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.hero-points .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); flex: none; }

/* Carte démo IA du hero */
.hero-visual { position: relative; }
.ai-card {
    position: relative; border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(160deg, var(--panel-2), var(--panel));
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-glow), var(--shadow-card);
    overflow: hidden;
}
.ai-card-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px; border-bottom: 1px solid var(--line-soft);
    font-size: 12.5px; color: var(--muted);
}
.ai-card-bar .dots { display: flex; gap: 6px; margin-right: 6px; }
.ai-card-bar .dots i { width: 10px; height: 10px; border-radius: 50%; }
.ai-card-bar .dots i:first-child { background: #ff5f57; }
.ai-card-bar .dots i:nth-child(2) { background: #febc2e; }
.ai-card-bar .dots i:last-child { background: #28c840; }
.ai-card-body { padding: 22px; display: grid; gap: 14px; }
.chat-q, .chat-a { border-radius: 14px; padding: 14px 16px; font-size: 14px; line-height: 1.55; }
.chat-q {
    background: rgba(124, 92, 255, 0.14); border: 1px solid rgba(124, 92, 255, 0.3);
    justify-self: end; max-width: 88%;
}
.chat-a { background: var(--panel); border: 1px solid var(--line-soft); max-width: 94%; }
.chat-a b { color: var(--lime); }
.chat-a .src {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px; padding: 5px 11px; border-radius: 999px;
    background: rgba(182, 255, 61, 0.09); border: 1px solid rgba(134, 200, 30, 0.35);
    font-size: 12px; color: var(--lime); font-weight: 600;
}
.chat-label { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.1em; }
.chat-label .ai-dot { width: 18px; height: 18px; border-radius: 6px; background: var(--grad); display: grid; place-items: center; }
.chat-label .ai-dot svg { width: 11px; height: 11px; }

.float-chip {
    position: absolute; display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 16px; border-radius: 14px;
    background: var(--panel-solid); border: 1px solid var(--line);
    font-size: 13px; font-weight: 600;
    box-shadow: var(--shadow-card);
    animation: floaty 5s ease-in-out infinite;
    z-index: 2;
}
.float-chip svg { width: 17px; height: 17px; flex: none; }
.chip-seo { top: -22px; left: -18px; animation-delay: 0.8s; }
.chip-geo { bottom: -20px; right: -10px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Stats hero */
.hero-stats { margin-top: 74px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
    padding: 24px 22px; border-radius: var(--radius);
    border: 1px solid var(--line-soft); background: var(--panel);
    backdrop-filter: blur(8px);
}
.stat b { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); display: block; letter-spacing: -0.02em; }
.stat b .plus { color: var(--lime); }
.stat > span { color: var(--muted); font-size: 13.5px; display: block; margin-top: 2px; }
.stat b span { font-size: inherit; }

/* ---------- Marquee clients ---------- */
.marquee-wrap { padding: 34px 0 10px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--panel); overflow: hidden; }
.marquee-title { text-align: center; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.marquee { display: flex; overflow: hidden; user-select: none; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 64px; padding: 8px 32px; flex: none; animation: scroll 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-100%); } }
.mq-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--muted); white-space: nowrap; transition: color 0.2s; }
.mq-item:hover { color: var(--text); }
.mq-item i { width: 9px; height: 9px; border-radius: 3px; background: var(--grad); display: inline-block; flex: none; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
    position: relative; padding: 30px 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft); background: var(--panel);
    transition: transform 0.25s ease, border-color 0.25s, background 0.25s, box-shadow 0.25s;
    overflow: hidden; display: flex; flex-direction: column;
}
.svc::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
    background: var(--grad-hot); opacity: 0; transition: opacity 0.25s;
}
.svc:hover { transform: translateY(-5px); border-color: rgba(124, 92, 255, 0.4); background: var(--panel-2); box-shadow: var(--shadow-card); }
.svc:hover::before { opacity: 1; }
.svc-icon {
    width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
    background: linear-gradient(145deg, rgba(124, 92, 255, 0.2), rgba(42, 212, 255, 0.12));
    border: 1px solid rgba(124, 92, 255, 0.3);
    margin-bottom: 20px;
}
.svc-icon svg { width: 25px; height: 25px; }
.svc h3 { margin-bottom: 10px; font-size: 19px; }
.svc p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.svc ul { display: grid; gap: 8px; margin-bottom: 18px; }
.svc li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.svc li svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--lime); }
.svc-more {
    margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
    font-size: 14px; font-weight: 600; font-family: var(--font-display); color: var(--cyan);
}
.svc-more svg { width: 15px; height: 15px; transition: transform 0.2s; }
.svc:hover .svc-more svg { transform: translateX(3px); }

/* ---------- Section GEO / IA ---------- */
.geo-section { background: linear-gradient(180deg, transparent, rgba(124, 92, 255, 0.05) 30%, rgba(42, 212, 255, 0.04) 70%, transparent); }
.geo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.geo-list { display: grid; gap: 16px; margin-top: 28px; }
.geo-item {
    display: flex; gap: 16px; padding: 18px 20px; border-radius: var(--radius);
    border: 1px solid var(--line-soft); background: var(--panel);
    transition: border-color 0.2s, background 0.2s;
}
.geo-item:hover { border-color: rgba(42, 212, 255, 0.4); background: var(--panel-2); }
.geo-item .n {
    width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center;
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    background: rgba(42, 212, 255, 0.1); border: 1px solid rgba(42, 212, 255, 0.3); color: var(--cyan);
}
.geo-item h4 { font-size: 15.5px; margin-bottom: 3px; }
.geo-item p { font-size: 13.5px; color: var(--muted); }

.engines { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.engine {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
    border: 1px solid var(--line); background: var(--chip-bg); font-size: 13.5px; font-weight: 600;
}
.engine i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

/* Panneau comparaison SEO vs GEO */
.compare {
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    background: var(--panel-solid);
    overflow: hidden; box-shadow: var(--shadow-card);
}
.compare-head { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line-soft); }
.compare-head > div { padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.compare-head > div + div { border-left: 1px solid var(--line-soft); }
.compare-head .tag-mini { font-size: 10.5px; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.08em; }
.tag-seo { background: rgba(42, 212, 255, 0.12); color: var(--cyan); border: 1px solid rgba(42, 212, 255, 0.3); }
.tag-geo { background: rgba(182, 255, 61, 0.1); color: var(--lime); border: 1px solid rgba(134, 200, 30, 0.35); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line-soft); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 15px 22px; font-size: 13.5px; color: var(--muted); }
.compare-row > div + div { border-left: 1px solid var(--line-soft); }
.compare-row b { color: var(--text); display: block; font-size: 13px; margin-bottom: 2px; }

/* ---------- Programme Boost IA ---------- */
.osez {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    border: 1px solid rgba(134, 200, 30, 0.3);
    background:
        radial-gradient(700px 400px at 90% -20%, rgba(182, 255, 61, 0.1), transparent 60%),
        radial-gradient(600px 400px at 0% 120%, rgba(124, 92, 255, 0.14), transparent 60%),
        var(--bg-2);
    padding: 56px;
}
.osez-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.osez h2 { margin: 16px 0 14px; }
.osez p.lead { color: var(--muted); font-size: 16.5px; }
.osez-points { margin-top: 26px; display: grid; gap: 13px; }
.osez-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.osez-points li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--lime); }
.osez-points li span { color: var(--muted); }
.osez-points li b { color: var(--text); }
.osez-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.osez-panel {
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    background: var(--panel); backdrop-filter: blur(10px); padding: 30px;
}
.osez-panel h4 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.osez-stat { display: flex; align-items: baseline; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.osez-stat:last-child { border-bottom: 0; }
.osez-stat b { font-family: var(--font-display); font-size: 28px; color: var(--lime); min-width: 96px; letter-spacing: -0.02em; }
.osez-stat span { color: var(--muted); font-size: 13.5px; line-height: 1.45; }

/* ---------- Case study Zazapp ---------- */
.case {
    border-radius: var(--radius-lg); border: 1px solid rgba(124, 92, 255, 0.3);
    background:
        radial-gradient(700px 420px at -10% -30%, rgba(124, 92, 255, 0.16), transparent 60%),
        radial-gradient(600px 400px at 110% 130%, rgba(42, 212, 255, 0.12), transparent 60%),
        var(--bg-2);
    padding: 56px; overflow: hidden; position: relative;
}
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.case h2 { margin: 16px 0 14px; font-size: clamp(26px, 3.4vw, 38px); }
.case p.lead { color: var(--muted); font-size: 16px; }
.case-flow { display: grid; gap: 0; margin-top: 28px; }
.case-step { display: flex; gap: 16px; position: relative; padding-bottom: 22px; }
.case-step:last-child { padding-bottom: 0; }
.case-step::before {
    content: ""; position: absolute; left: 21px; top: 46px; bottom: 2px; width: 2px;
    background: linear-gradient(180deg, rgba(124, 92, 255, 0.5), rgba(42, 212, 255, 0.2));
}
.case-step:last-child::before { display: none; }
.case-step .ic {
    width: 44px; height: 44px; flex: none; border-radius: 13px; display: grid; place-items: center;
    background: rgba(124, 92, 255, 0.13); border: 1px solid rgba(124, 92, 255, 0.35);
    position: relative; z-index: 1;
}
.case-step .ic svg { width: 20px; height: 20px; }
.case-step h4 { font-size: 15.5px; margin-bottom: 3px; }
.case-step p { font-size: 13.5px; color: var(--muted); }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.case-metric {
    text-align: center; padding: 18px 10px; border-radius: var(--radius);
    background: var(--panel); border: 1px solid var(--line-soft);
}
.case-metric b { display: block; font-family: var(--font-display); font-size: 26px; color: var(--cyan); letter-spacing: -0.02em; }
.case-metric span { font-size: 12px; color: var(--muted); }
.case-shot { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.case-shot img { width: 100%; }

/* ---------- Réalisations ---------- */
.works-cat { display: flex; align-items: center; gap: 14px; margin: 44px 0 22px; }
.works-cat:first-of-type { margin-top: 0; }
.works-cat .ic {
    width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex: none;
    background: linear-gradient(145deg, rgba(124, 92, 255, 0.2), rgba(42, 212, 255, 0.12));
    border: 1px solid rgba(124, 92, 255, 0.3);
}
.works-cat .ic svg { width: 21px; height: 21px; }
.works-cat h3 { font-size: 22px; }
.works-cat p { color: var(--muted-2); font-size: 13.5px; margin-top: 1px; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work {
    border-radius: var(--radius-lg); border: 1px solid var(--line-soft);
    background: var(--panel); overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
}
.work:hover { transform: translateY(-6px); border-color: rgba(124, 92, 255, 0.45); box-shadow: var(--shadow-card); }
.work-cover { position: relative; aspect-ratio: 16 / 9.4; overflow: hidden; background: var(--panel-2); }
.work-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.work:hover .work-cover img { transform: scale(1.05); }
.work-cover::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(4, 6, 14, 0.62));
}
.work-cover .dom {
    position: absolute; bottom: 12px; left: 16px; z-index: 2;
    font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.94);
    display: inline-flex; align-items: center; gap: 6px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.work-cover .dom svg { width: 12px; height: 12px; }
.work-cover .badge {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 999px; color: #fff;
    background: rgba(10, 12, 26, 0.62); border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}
.work-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-body h3 { font-size: 18px; display: flex; align-items: center; gap: 8px; }
.work-body h3 .ext { color: var(--muted-2); transition: color 0.2s, transform 0.2s; }
.work:hover h3 .ext { color: var(--cyan); transform: translate(2px, -2px); }
.work-body p { color: var(--muted); font-size: 14px; flex: 1; }
.work-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.work-tags span {
    font-size: 11.5px; font-weight: 600; padding: 4px 11px; border-radius: 999px;
    background: rgba(124, 92, 255, 0.1); border: 1px solid rgba(124, 92, 255, 0.25); color: var(--violet-soft);
}
.work-tags span.t-alt { background: rgba(42, 212, 255, 0.08); border-color: rgba(42, 212, 255, 0.25); color: var(--cyan-soft); }
.work-tags span.t-lime { background: rgba(182, 255, 61, 0.08); border-color: rgba(134, 200, 30, 0.3); color: var(--lime-soft); }

/* ---------- Technologies ---------- */
.tech-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-cat { border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: var(--panel); padding: 26px; }
.tech-cat h3 { font-size: 15px; display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.tech-cat h3 svg { width: 19px; height: 19px; color: var(--cyan); }
.tech-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 14px; border-radius: 11px; font-size: 13.5px; font-weight: 500;
    border: 1px solid var(--line); background: var(--chip-bg);
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.chip:hover { border-color: rgba(124, 92, 255, 0.5); transform: translateY(-2px); background: var(--panel-2); }
.chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); display: inline-block; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.p-step {
    position: relative; padding: 28px 26px; border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft); background: var(--panel);
    transition: border-color 0.25s, transform 0.25s;
}
.p-step:hover { border-color: rgba(42, 212, 255, 0.4); transform: translateY(-4px); }
.p-step .num {
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
    background: var(--grad); color: #fff; margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(124, 92, 255, 0.35);
}
.p-step h3 { font-size: 17px; margin-bottom: 8px; }
.p-step p { color: var(--muted); font-size: 14px; }

/* ---------- Expertise ---------- */
.exp-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.exp-badge {
    display: inline-grid; place-items: center; text-align: center;
    width: 200px; height: 200px; border-radius: 32px; position: relative;
    background: linear-gradient(160deg, rgba(124, 92, 255, 0.2), rgba(42, 212, 255, 0.08));
    border: 1px solid rgba(124, 92, 255, 0.4);
    box-shadow: var(--shadow-glow);
}
.exp-badge b { font-family: var(--font-display); font-size: 64px; line-height: 1; letter-spacing: -0.03em; }
.exp-badge span { color: var(--muted); font-size: 13px; margin-top: 6px; max-width: 140px; }
.exp-pillars { display: grid; gap: 16px; }
.pillar {
    display: flex; gap: 18px; padding: 22px 24px; border-radius: var(--radius);
    border: 1px solid var(--line-soft); background: var(--panel);
    transition: border-color 0.2s, background 0.2s;
}
.pillar:hover { border-color: rgba(124, 92, 255, 0.4); background: var(--panel-2); }
.pillar-icon {
    width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center;
    background: rgba(124, 92, 255, 0.12); border: 1px solid rgba(124, 92, 255, 0.3);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 16.5px; margin-bottom: 5px; }
.pillar p { color: var(--muted); font-size: 14px; }

/* ---------- Pages services ---------- */
.svc-hero { padding: 150px 0 64px; }
.svc-hero .crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); margin-bottom: 22px; }
.svc-hero .crumbs a:hover { color: var(--text); }
.svc-hero .crumbs svg { width: 12px; height: 12px; }
.svc-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
.svc-hero h1 { font-size: clamp(32px, 4.6vw, 52px); margin: 20px 0 18px; }
.svc-hero .sub { color: var(--muted); font-size: 17.5px; max-width: 600px; }

/* Bandeau audit marché */
.market {
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    background: var(--panel-solid); box-shadow: var(--shadow-card);
    padding: 28px;
}
.market h4 { font-size: 13px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; display: flex; align-items: center; gap: 9px; }
.market h4 svg { width: 16px; height: 16px; color: var(--cyan); }
.market-row { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.market-row:last-of-type { border-bottom: 0; }
.market-row .lbl { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 7px; }
.market-row .lbl b { color: var(--text); font-weight: 600; }
.market-row .lbl span { color: var(--muted-2); }
.market-bar { height: 8px; border-radius: 999px; background: var(--panel-2); border: 1px solid var(--line-soft); overflow: hidden; }
.market-bar i { display: block; height: 100%; border-radius: 999px; }
.market-bar .b-mkt { background: linear-gradient(90deg, #6b7490, #9aa3bd); }
.market-bar .b-net { background: var(--grad-hot); }
.market-note { margin-top: 14px; font-size: 12px; color: var(--muted-2); }

/* Grille de forfaits */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
    position: relative; display: flex; flex-direction: column;
    border-radius: var(--radius-lg); border: 1px solid var(--line-soft);
    background: var(--panel); padding: 32px 28px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(124, 92, 255, 0.45); box-shadow: var(--shadow-card); }
.price-card.featured {
    border-color: rgba(124, 92, 255, 0.55);
    background:
        radial-gradient(400px 260px at 50% -20%, rgba(124, 92, 255, 0.18), transparent 70%),
        var(--panel-solid);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}
.price-card .flag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px; background: var(--grad); color: #fff;
    box-shadow: 0 6px 18px rgba(124, 92, 255, 0.4); white-space: nowrap;
}
.price-card h3 { font-size: 19px; }
.price-card .for { color: var(--muted-2); font-size: 13px; margin-top: 4px; min-height: 38px; }
.price-card .amount { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 7px; }
.price-card .amount b { font-family: var(--font-display); font-size: 42px; letter-spacing: -0.03em; }
.price-card .amount span { color: var(--muted-2); font-size: 13.5px; }
.price-card .vs { font-size: 12.5px; color: var(--lime-soft); margin-bottom: 18px; display: flex; align-items: center; gap: 6px; }
.price-card .vs svg { width: 13px; height: 13px; flex: none; }
.price-card ul { display: grid; gap: 9px; margin: 6px 0 26px; }
.price-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.price-card li svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--lime); }
.price-card li.off { opacity: 0.45; }
.price-card li.off svg { color: var(--muted-2); }
.price-card .btn { margin-top: auto; width: 100%; }
.pricing-note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 22px; }

/* Checklist de fonctionnalités (pages services) */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.check-item {
    display: flex; gap: 14px; padding: 20px; border-radius: var(--radius);
    border: 1px solid var(--line-soft); background: var(--panel);
    transition: border-color 0.2s, transform 0.2s;
}
.check-item:hover { border-color: rgba(124, 92, 255, 0.4); transform: translateY(-3px); }
.check-item .ic {
    width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
    background: rgba(124, 92, 255, 0.12); border: 1px solid rgba(124, 92, 255, 0.3);
}
.check-item .ic svg { width: 20px; height: 20px; }
.check-item h4 { font-size: 15px; margin-bottom: 4px; }
.check-item p { font-size: 13px; color: var(--muted); }

/* Deux options (PWA vs native, etc.) */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.duo-card {
    border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: var(--panel);
    padding: 30px;
}
.duo-card .tag-mini { font-size: 10.5px; padding: 4px 11px; border-radius: 999px; letter-spacing: 0.08em; font-weight: 700; text-transform: uppercase; }
.duo-card h3 { font-size: 20px; margin: 14px 0 8px; }
.duo-card > p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.duo-card ul { display: grid; gap: 8px; }
.duo-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.duo-card li svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--lime); }

/* ---------- Meta Ads ---------- */
.meta-section { background: linear-gradient(180deg, transparent, rgba(255, 92, 138, 0.045) 50%, transparent); }
.meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.meta-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.meta-feat {
    padding: 20px; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--panel);
    transition: border-color 0.2s, transform 0.2s;
}
.meta-feat:hover { border-color: rgba(255, 92, 138, 0.4); transform: translateY(-3px); }
.meta-feat svg { width: 22px; height: 22px; color: var(--pink); margin-bottom: 12px; }
.meta-feat h4 { font-size: 15px; margin-bottom: 5px; }
.meta-feat p { font-size: 13px; color: var(--muted); }

.phone {
    width: min(320px, 100%); margin: 0 auto; border-radius: 38px;
    border: 1px solid var(--line); background: var(--bg-2);
    box-shadow: var(--shadow-card), 0 0 60px rgba(255, 92, 138, 0.12);
    padding: 14px; position: relative;
}
.phone-notch { width: 110px; height: 22px; border-radius: 12px; background: #000; margin: 2px auto 12px; }
.phone-screen { border-radius: 26px; overflow: hidden; border: 1px solid var(--line-soft); }
.ad-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--panel); }
.ad-head .av { width: 34px; height: 34px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; font-size: 13px; font-family: var(--font-display); color: #fff; }
.ad-head b { font-size: 13px; display: block; }
.ad-head span { font-size: 11px; color: var(--muted-2); }
.ad-img { aspect-ratio: 1.25; background: linear-gradient(135deg, #7c5cff 0%, #ff5c8a 60%, #ffb45c 110%); display: grid; place-items: center; position: relative; }
.ad-img .ad-txt { text-align: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 20px; text-shadow: 0 3px 16px rgba(0, 0, 0, 0.3); padding: 0 20px; }
.ad-img .ad-txt small { display: block; font-size: 12px; font-weight: 500; opacity: 0.9; margin-top: 6px; font-family: var(--font-body); }
.ad-cta { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--panel); font-size: 12.5px; gap: 8px; }
.ad-cta b { color: var(--text); }
.ad-cta .mini-btn { padding: 7px 14px; border-radius: 9px; background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; white-space: nowrap; }
.ad-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.ad-metric { text-align: center; padding: 11px 6px; border-radius: 13px; background: var(--panel); border: 1px solid var(--line-soft); }
.ad-metric b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--pink); }
.ad-metric span { font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.04em; }

/* WhatsApp mock */
.wa-screen { border-radius: 26px; overflow: hidden; border: 1px solid var(--line-soft); background: #0b141a; }
[data-theme="light"] .wa-screen { background: #e5ddd5; }
.wa-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: #128c7e; color: #fff; }
.wa-head .av { width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); display: grid; place-items: center; font-weight: 700; font-size: 12px; }
.wa-head b { font-size: 13px; display: block; line-height: 1.2; }
.wa-head span { font-size: 10.5px; opacity: 0.85; }
.wa-body { padding: 14px; display: grid; gap: 9px; min-height: 240px; }
.wa-msg { max-width: 82%; padding: 9px 12px; border-radius: 12px; font-size: 12.5px; line-height: 1.45; color: #111; position: relative; }
.wa-in { background: #ffffff; justify-self: start; border-top-left-radius: 3px; }
.wa-out { background: #d9fdd3; justify-self: end; border-top-right-radius: 3px; }
.wa-msg .t { display: block; text-align: right; font-size: 9.5px; color: rgba(0, 0, 0, 0.4); margin-top: 3px; }
.wa-msg .bot { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: #128c7e; margin-bottom: 3px; }
.wa-product { display: flex; gap: 9px; background: rgba(0, 0, 0, 0.05); border-radius: 9px; padding: 7px; margin-bottom: 6px; align-items: center; }
.wa-product .ph-img { width: 40px; height: 40px; border-radius: 8px; background: linear-gradient(135deg, #7c5cff, #ff5c8a); flex: none; }
.wa-product b { font-size: 11.5px; display: block; }
.wa-product span { font-size: 10.5px; color: rgba(0, 0, 0, 0.55); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 13px; }
.faq { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); overflow: hidden; transition: border-color 0.2s; }
.faq[open] { border-color: rgba(124, 92, 255, 0.4); background: var(--panel-2); }
.faq summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 19px 22px; cursor: pointer; list-style: none;
    font-family: var(--font-display); font-weight: 600; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
    width: 28px; height: 28px; flex: none; border-radius: 9px; display: grid; place-items: center;
    border: 1px solid var(--line); color: var(--cyan); transition: transform 0.25s, background 0.25s;
}
.faq[open] summary .pm { transform: rotate(45deg); background: rgba(124, 92, 255, 0.15); }
.faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }
.faq-body a { color: var(--cyan); }

/* ---------- Contact / CTA final ---------- */
.contact-wrap {
    border-radius: var(--radius-lg); position: relative; overflow: hidden;
    border: 1px solid rgba(124, 92, 255, 0.35);
    background:
        radial-gradient(800px 400px at 50% -30%, rgba(124, 92, 255, 0.22), transparent 65%),
        radial-gradient(600px 300px at 90% 120%, rgba(42, 212, 255, 0.12), transparent 60%),
        var(--bg-2);
    padding: 72px 40px; text-align: center;
}
.contact-wrap h2 { max-width: 720px; margin: 18px auto 16px; }
.contact-wrap p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 16.5px; }
.contact-actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.contact-meta { display: flex; gap: 26px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.contact-meta span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13.5px; }
.contact-meta svg { width: 15px; height: 15px; color: var(--lime); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 56px 0 34px; margin-top: 96px; background: var(--footer-bg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand small { margin-top: 0; }
.footer-about { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 300px; }
.footer h4 { font-size: 13px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; font-family: var(--font-display); }
.footer-col a { display: block; padding: 5.5px 0; color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    border-top: 1px solid var(--line-soft); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    color: var(--muted-2); font-size: 13px;
}
.footer-bottom .made { display: inline-flex; align-items: center; gap: 7px; }
.footer-bottom .made i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); display: inline-block; box-shadow: 0 0 8px var(--lime); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; } .reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; } .reveal-d6 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
    .float-chip { animation: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid, .works-grid, .tech-cats, .process, .check-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid, .geo-grid, .osez-grid, .exp-grid, .meta-grid, .case-grid, .svc-hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-visual { max-width: 560px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .osez, .case { padding: 40px 30px; }
    .price-card.featured { transform: none; }
}
@media (max-width: 900px) {
    .nav-links, .nav-cta .lang-dd, .nav-cta .btn-primary { display: none; }
    .burger { display: grid; }
}
@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .hero { padding: 128px 0 60px; }
    .svc-hero { padding: 120px 0 48px; }
    .services-grid, .works-grid, .tech-cats, .process, .meta-feats, .check-grid, .pricing-grid, .duo { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .compare-head > div, .compare-row > div { padding: 13px 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-wrap { padding: 54px 22px; }
    .float-chip { display: none; }
    .osez, .case { padding: 34px 22px; }
    .exp-badge { width: 170px; height: 170px; }
    .exp-badge b { font-size: 52px; }
    .case-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* ============================================================
   v3 — Thèmes par page, drapeaux, badges plateformes, mockups
   ============================================================ */

/* ---------- Drapeaux ---------- */
.flag { width: 19px; height: 14px; border-radius: 3px; display: inline-block; overflow: hidden; flex: none; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15); }
.flag svg { display: block; width: 100%; height: 100%; }

/* ---------- Thèmes de page ---------- */
.theme-apps {
    --grad: linear-gradient(92deg, #0284f5 0%, #22d3ee 100%);
    --grad-hot: linear-gradient(92deg, #0284f5 0%, #22d3ee 60%, #7df3ff 115%);
    --scene-orb1: rgba(2, 132, 245, 0.17);
    --scene-orb2: rgba(34, 211, 238, 0.12);
    --violet-soft: #6db6ff;
}
.theme-apps .btn-primary { box-shadow: 0 8px 28px rgba(2, 132, 245, 0.4); }
.theme-apps .btn-primary:hover { box-shadow: 0 14px 38px rgba(2, 132, 245, 0.5); }
.theme-seo {
    --grad: linear-gradient(92deg, #10b981 0%, #84cc16 100%);
    --grad-hot: linear-gradient(92deg, #10b981 0%, #84cc16 60%, #d9f99d 115%);
    --scene-orb1: rgba(16, 185, 129, 0.16);
    --scene-orb2: rgba(132, 204, 22, 0.1);
    --violet-soft: #5eead4;
}
.theme-seo .btn-primary { box-shadow: 0 8px 28px rgba(16, 185, 129, 0.4); }
.theme-seo .btn-primary:hover { box-shadow: 0 14px 38px rgba(16, 185, 129, 0.5); }
.theme-ads {
    --grad: linear-gradient(92deg, #f43f7b 0%, #fb923c 100%);
    --grad-hot: linear-gradient(92deg, #a855f7 0%, #f43f7b 55%, #fb923c 115%);
    --scene-orb1: rgba(244, 63, 123, 0.15);
    --scene-orb2: rgba(251, 146, 60, 0.1);
    --violet-soft: #ff87ae;
}
.theme-ads .btn-primary { box-shadow: 0 8px 28px rgba(244, 63, 123, 0.38); }
.theme-ads .btn-primary:hover { box-shadow: 0 14px 38px rgba(244, 63, 123, 0.5); }
.theme-web {
    --grad: linear-gradient(92deg, #7c5cff 0%, #2ad4ff 100%);
}

/* ---------- Badges plateformes ---------- */
.plat-strip { margin-top: 34px; }
.plat-strip .plat-title { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.plats { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.plat {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 14px 8px 8px; border-radius: 13px;
    border: 1px solid var(--line-soft); background: var(--panel);
    transition: transform 0.2s, border-color 0.2s;
}
.plat:hover { transform: translateY(-2px); border-color: rgba(124, 92, 255, 0.4); }
.plat .ic {
    width: 34px; height: 34px; border-radius: 9px; background: #ffffff;
    display: grid; place-items: center; flex: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.plat .ic img { width: 20px; height: 20px; }
.plat span { font-size: 12.5px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.plats.center { justify-content: center; }

/* ---------- Bandeau marché en pleine largeur ---------- */
.market-section { padding: 0 0 72px; }
.market-section .market { max-width: 860px; margin: 0 auto; }

/* ---------- Mockup navigateur (page Sites web) ---------- */
.mock-browser {
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    background: var(--panel-solid); overflow: hidden;
    box-shadow: var(--shadow-glow), var(--shadow-card);
}
.mock-browser .bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); }
.mock-browser .bar .dots { display: flex; gap: 6px; }
.mock-browser .bar .dots i { width: 10px; height: 10px; border-radius: 50%; }
.mock-browser .bar .dots i:nth-child(1) { background: #ff5f57; } .mock-browser .bar .dots i:nth-child(2) { background: #febc2e; } .mock-browser .bar .dots i:nth-child(3) { background: #28c840; }
.mock-browser .bar .url { flex: 1; height: 26px; border-radius: 8px; background: var(--panel-2); border: 1px solid var(--line-soft); display: flex; align-items: center; padding: 0 12px; font-size: 11.5px; color: var(--muted-2); gap: 6px; }
.mock-browser .bar .url svg { width: 11px; height: 11px; color: #34e0a1; }
.mock-body { padding: 20px; display: grid; gap: 12px; }
.sk { border-radius: 10px; background: var(--panel-2); position: relative; overflow: hidden; }
.sk::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.09) 50%, transparent 70%); animation: shimmer 2.2s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.sk-hero { height: 110px; background: linear-gradient(135deg, rgba(124, 92, 255, 0.35), rgba(42, 212, 255, 0.25)); display: grid; place-items: center; }
.sk-hero b { font-family: var(--font-display); font-size: 15px; color: #fff; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
.sk-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sk-cols .sk { height: 64px; }
.sk-line { height: 12px; } .sk-line.w60 { width: 60%; } .sk-line.w80 { width: 80%; }
.mock-scores { display: flex; gap: 10px; padding: 0 20px 20px; }
.score-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; border: 1px solid rgba(52, 224, 161, 0.4); background: rgba(52, 224, 161, 0.1); color: #34e0a1; }
[data-theme="light"] .score-chip { color: #0c8a5f; }
.score-chip i { width: 8px; height: 8px; border-radius: 50%; background: #34e0a1; box-shadow: 0 0 8px #34e0a1; }

/* ---------- Mockup app (page Applications) ---------- */
.mock-app-wrap { position: relative; width: min(300px, 100%); margin: 0 auto; }
.mock-app-wrap .phone { width: 100%; }
.app-ui { padding: 16px; display: grid; gap: 12px; background: var(--panel); }
.app-ui .app-head { display: flex; align-items: center; justify-content: space-between; }
.app-ui .app-head b { font-size: 14px; font-family: var(--font-display); }
.app-ui .app-head .av { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); }
.app-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-tile { border-radius: 14px; padding: 14px 12px; border: 1px solid var(--line-soft); background: var(--panel-2); }
.app-tile b { display: block; font-family: var(--font-display); font-size: 19px; }
.app-tile span { font-size: 10.5px; color: var(--muted-2); }
.app-cta { border-radius: 13px; padding: 13px; text-align: center; background: var(--grad); color: #fff; font-weight: 700; font-size: 13.5px; font-family: var(--font-display); }
.notif {
    position: absolute; left: -34px; top: 44px; width: 220px;
    border-radius: 14px; padding: 11px 13px; display: flex; gap: 9px; align-items: flex-start;
    background: var(--panel-solid); border: 1px solid var(--line);
    box-shadow: var(--shadow-card); animation: floaty 5s ease-in-out infinite;
}
.notif .ic { width: 28px; height: 28px; border-radius: 8px; background: var(--grad); display: grid; place-items: center; flex: none; }
.notif .ic svg { width: 15px; height: 15px; }
.notif b { font-size: 11.5px; display: block; }
.notif span { font-size: 10.5px; color: var(--muted-2); }
.notif.n2 { left: auto; right: -30px; top: 190px; animation-delay: 1.2s; }
@media (max-width: 640px) { .notif { left: -6px; } .notif.n2 { right: -6px; } }

/* ---------- Mockup citation IA (page SEO/GEO) ---------- */
.rise { display: flex; align-items: flex-end; gap: 8px; height: 74px; padding: 0 4px; }
.rise i { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, #84cc16, #10b981); opacity: 0.85; animation: rise-in 1.6s ease both; transform-origin: bottom; }
.rise i:nth-child(1) { height: 22%; animation-delay: 0.1s; } .rise i:nth-child(2) { height: 34%; animation-delay: 0.25s; }
.rise i:nth-child(3) { height: 46%; animation-delay: 0.4s; } .rise i:nth-child(4) { height: 58%; animation-delay: 0.55s; }
.rise i:nth-child(5) { height: 72%; animation-delay: 0.7s; } .rise i:nth-child(6) { height: 88%; animation-delay: 0.85s; }
.rise i:nth-child(7) { height: 100%; animation-delay: 1s; }
@keyframes rise-in { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.cite-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; border: 1px solid var(--line-soft); background: var(--panel); font-size: 12.5px; }
.cite-row .ic { width: 26px; height: 26px; border-radius: 7px; background: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 2px 6px rgba(0,0,0,0.18); }
.cite-row .ic img { width: 16px; height: 16px; }
.cite-row b { color: var(--text); }
.cite-row .ok { margin-left: auto; color: #34e0a1; font-weight: 700; font-size: 11.5px; display: inline-flex; align-items: center; gap: 5px; }
.cite-row .ok svg { width: 13px; height: 13px; }
[data-theme="light"] .cite-row .ok { color: #0c8a5f; }

/* Pulsation douce des mockups hero */
.hero-mock { animation: mock-in 0.9s ease both; }
@keyframes mock-in { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ---------- Cibles (Pour qui ?) ---------- */
.targets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.target {
    border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: var(--panel);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}
.target:hover { transform: translateY(-5px); border-color: rgba(124, 92, 255, 0.45); box-shadow: var(--shadow-card); }
.target > img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.target-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.target-body h3 { font-size: 16.5px; }
.target-body > p { font-size: 13.5px; color: var(--muted); flex: 1; }
.target .gain { border-top: 1px dashed var(--line); padding-top: 12px; font-size: 13px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.target .gain svg { width: 16px; height: 16px; color: var(--lime); flex: none; margin-top: 2px; }
.target .gain b { color: var(--lime-soft); display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
@media (max-width: 1024px) { .targets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .targets-grid { grid-template-columns: 1fr; } }

/* ---------- Carte projet entièrement cliquable ---------- */
.work { position: relative; }
.work .card-link { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }

/* ---------- Formulaire projet multi-étapes ---------- */
.qform {
    max-width: 640px; margin: 34px auto 0; text-align: left;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    background: var(--panel-solid); padding: 26px 26px 28px;
    box-shadow: var(--shadow-card);
}
.qf-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qf-count { font-family: var(--font-display); font-size: 13px; color: var(--muted-2); white-space: nowrap; }
.qf-count b { color: var(--text); font-size: 15px; }
.qf-progress { flex: 1; height: 7px; border-radius: 999px; background: var(--panel-2); border: 1px solid var(--line-soft); overflow: hidden; }
.qf-progress i { display: block; height: 100%; border-radius: 999px; background: var(--grad-hot); transition: width 0.35s ease; }
.qf-back {
    display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
    color: var(--muted); padding: 6px 12px; border-radius: 9px; border: 1px solid var(--line);
    transition: color 0.2s, border-color 0.2s;
}
.qf-back:hover { color: var(--text); border-color: rgba(124, 92, 255, 0.5); }
.qf-step { display: none; animation: qf-in 0.35s ease; }
.qf-step.active { display: block; }
@keyframes qf-in { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.qf-step h3 { font-size: 19px; margin-bottom: 16px; }
.qf-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.qf-chip {
    display: flex; align-items: center; gap: 10px; text-align: left;
    padding: 13px 16px; border-radius: 13px; font-size: 14.5px; font-weight: 600;
    border: 1px solid var(--line); background: var(--panel); color: var(--text);
    transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.qf-chip span { font-size: 20px; flex: none; }
.qf-chip:hover { transform: translateY(-2px); border-color: rgba(124, 92, 255, 0.55); background: var(--panel-2); }
.qf-chip.sel { border-color: var(--violet); background: rgba(124, 92, 255, 0.16); }
.qform textarea, .qform input {
    width: 100%; border-radius: 13px; border: 1px solid var(--line); background: var(--panel);
    color: var(--text); font: inherit; font-size: 14.5px; padding: 13px 15px; outline: none;
    transition: border-color 0.2s;
}
.qform textarea:focus, .qform input:focus { border-color: var(--violet); }
.qform textarea { resize: vertical; margin-bottom: 12px; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.qf-send { width: 100%; }
.qf-note { margin-top: 12px; font-size: 12px; color: var(--muted-2); text-align: center; }
.qf-summary { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.qf-summary span {
    font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
    background: rgba(124, 92, 255, 0.12); border: 1px solid rgba(124, 92, 255, 0.3); color: var(--violet-soft);
    animation: qf-in 0.3s ease;
}
@media (max-width: 640px) {
    .qform { padding: 20px 16px 22px; }
    .qf-chips, .qf-row { grid-template-columns: 1fr; }
}
