/* ============================================================
   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; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); margin-bottom: 22px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--text); }
.crumbs svg { width: 12px; height: 12px; flex: none; }
.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 .pflag {
    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) {
    .more-dd { display: none; }
    .nav-submit { 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, .art-card .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); }
.qf-group-label {
    font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
    color: var(--muted-2); margin: 20px 0 9px;
}
.qf-group-label:first-of-type { margin-top: 2px; }
.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; }
}

/* ---------- Photos de fond des heros de pages services ---------- */
:root { --veil: rgba(5, 7, 15, 0.78); --veil-soft: rgba(5, 7, 15, 0.42); }
[data-theme="light"] { --veil: rgba(244, 246, 253, 0.86); --veil-soft: rgba(244, 246, 253, 0.55); }
.svc-hero { position: relative; }
.svc-hero-photo {
    position: absolute; inset: 0; z-index: -1;
    background-size: cover; background-position: center;
}
.svc-hero-photo::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(0deg, var(--bg) 2%, transparent 40%),
        linear-gradient(90deg, var(--bg) 18%, var(--veil) 55%, var(--veil-soft) 100%);
}
.photo-visual {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-glow), var(--shadow-card);
}
.photo-visual img { width: 100%; display: block; }
.photo-visual .mock-scores { position: absolute; left: 14px; bottom: 14px; padding: 0; }
.photo-visual .score-chip { background: rgba(8, 12, 24, 0.62); backdrop-filter: blur(6px); }

/* ---------- Mini-site rempli dans le mockup navigateur ---------- */
.ms-nav { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); }
.ms-logo { width: 22px; height: 22px; border-radius: 7px; background: var(--grad); flex: none; }
.ms-nav b { font-family: var(--font-display); font-size: 13px; }
.ms-links { display: flex; gap: 8px; margin-left: auto; }
.ms-links i { width: 26px; height: 6px; border-radius: 3px; background: var(--panel-2); border: 1px solid var(--line-soft); }
.ms-cta { font-size: 10.5px; font-weight: 700; color: #fff; background: var(--grad); border-radius: 999px; padding: 5px 11px; white-space: nowrap; }
.ms-hero { position: relative; height: 148px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.ms-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 9, 19, 0.05) 20%, rgba(6, 9, 19, 0.72)); }
.ms-hero-in { position: relative; padding: 14px 16px; color: #fff; }
.ms-hero-in b { font-family: var(--font-display); font-size: 17px; display: block; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }
.ms-hero-in > span { font-size: 11px; opacity: 0.92; }
.ms-hero-in .star { color: #ffd35c; letter-spacing: 1px; }
.ms-btns { display: flex; gap: 8px; margin-top: 9px; }
.ms-btns i { font-style: normal; font-size: 10.5px; font-weight: 700; padding: 6px 12px; border-radius: 9px; }
.ms-btns .b1 { background: var(--grad); color: #fff; }
.ms-btns .b2 { background: rgba(255, 255, 255, 0.16); color: #fff; border: 1px solid rgba(255, 255, 255, 0.35); backdrop-filter: blur(4px); }
.ms-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px 16px 6px; }
.ms-card { border-radius: 12px; border: 1px solid var(--line-soft); background: var(--panel); padding: 10px; text-align: center; }
.ms-card .emo { font-size: 22px; display: block; }
.ms-card .nm { display: block; height: 6px; border-radius: 3px; background: var(--panel-2); border: 1px solid var(--line-soft); margin: 8px 14px 6px; }
.ms-card .pr { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--cyan); }

/* ---------- Blog / Guides ---------- */
.art-cats { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 6px; }
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.art-card {
    position: relative; display: flex; flex-direction: column; gap: 9px;
    border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: var(--panel);
    padding: 24px 24px 22px; transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.art-card:hover { transform: translateY(-4px); border-color: rgba(124, 92, 255, 0.45); box-shadow: var(--shadow-card); }
.art-card h3 { font-size: 16.5px; line-height: 1.35; }
.art-card p { font-size: 13.5px; color: var(--muted); flex: 1; }
.art-cat {
    align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
    padding: 4px 11px; border-radius: 999px;
    background: rgba(124, 92, 255, 0.12); border: 1px solid rgba(124, 92, 255, 0.3); color: var(--violet-soft);
}
.art-meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted-2); flex-wrap: wrap; }
.article-wrap { padding-bottom: 30px; }
.article { max-width: 780px; margin: 0 auto; padding: 26px 0 10px; }
.article h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; margin-bottom: 16px; }
.tldr-box {
    margin: 26px 0 18px; padding: 20px 22px; border-radius: var(--radius);
    border: 1px solid rgba(182, 255, 61, 0.3); background: rgba(182, 255, 61, 0.06);
}
.tldr-box b { display: block; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); margin-bottom: 8px; }
.tldr-box p { font-size: 16px; color: var(--text); }
.keypoints { margin: 0 0 8px; padding: 18px 22px; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--panel); }
.keypoints b { display: block; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.keypoints ul { display: grid; gap: 8px; }
.keypoints li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.keypoints li svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--lime); }
.art-body { margin-top: 26px; font-size: 15.5px; color: var(--muted); }
.art-body h2 { font-size: 24px; margin: 34px 0 12px; color: var(--text); }
.art-body h3 { font-size: 18px; margin: 24px 0 10px; color: var(--text); }
.art-body p { margin-bottom: 14px; }
.art-body ul, .art-body ol { margin: 0 0 16px 20px; display: grid; gap: 6px; }
.art-body ul { list-style: disc; }
.art-body ol { list-style: decimal; }
.art-body a { color: var(--cyan); font-weight: 600; }
.art-body strong { color: var(--text); }
.art-body table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; font-size: 13.5px; }
.art-body th, .art-body td { padding: 10px 12px; border: 1px solid var(--line-soft); text-align: left; }
.art-body th { background: var(--panel); color: var(--text); font-family: var(--font-display); font-size: 12.5px; }
.art-body .art-table { overflow-x: auto; }
.art-faq-title { font-size: 24px; margin-top: 38px; }
.art-cta {
    margin: 34px 0 8px; padding: 24px 26px; border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 92, 255, 0.35); display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    background: radial-gradient(500px 200px at 10% 0%, rgba(124, 92, 255, 0.15), transparent 70%), var(--panel-solid);
}
.art-cta b { font-family: var(--font-display); font-size: 17px; display: block; margin-bottom: 4px; }
.art-cta p { font-size: 13.5px; color: var(--muted); }
.art-cta > div { flex: 1; min-width: 240px; }
@media (max-width: 1024px) { .art-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .art-grid { grid-template-columns: 1fr; } }

/* ---------- Animation de la démo IA du hero ---------- */
.ai-card-body { min-height: 252px; }
.chat-q.typing::after, .chat-a.typing::after {
    content: "|"; margin-left: 2px; color: var(--violet-soft); font-weight: 700;
    animation: caret-blink 0.8s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
.chat-label.thinking .ai-dot { animation: think-pulse 0.9s ease-in-out infinite; }
@keyframes think-pulse { 50% { transform: scale(1.25); opacity: 0.6; } }
.chat-a .src { transition: opacity 0.45s ease; }
@media (max-width: 640px) { .ai-card-body { min-height: 300px; } }

/* ---------- Neting Tool : audit gratuit ---------- */
.atool {
    max-width: 780px; margin: 0 auto; border-radius: var(--radius-lg);
    border: 1px solid var(--line); background: var(--panel-solid);
    padding: 30px; box-shadow: var(--shadow-glow), var(--shadow-card);
}
.at-step { display: none; animation: qf-in 0.35s ease; }
.at-step.active { display: block; }
.at-step h3 { font-size: 20px; margin-bottom: 8px; }
.at-sub { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.at-url-row {
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--line); border-radius: 16px; background: var(--panel);
    padding: 8px 8px 8px 16px;
}
.at-url-row svg { color: var(--muted-2); flex: none; }
.at-url-row input { flex: 1; border: 0; background: none; color: var(--text); font: inherit; font-size: 16px; outline: none; min-width: 0; }
.at-url-row .btn { flex: none; }
.atool .qf-row input, .atool .qf-row .btn { width: 100%; }
.atool .qf-row { margin-bottom: 12px; }
.at-scan { display: grid; gap: 12px; padding: 10px 4px; min-height: 230px; }
.at-scan-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--muted-2); opacity: 0.45; transition: opacity 0.3s, color 0.3s; }
.at-scan-item.on { opacity: 1; color: var(--text); }
.at-scan-item.done { opacity: 1; color: var(--muted); }
.at-scan-item .ic { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; }
.at-scan-item.on .ic { border-color: var(--cyan); border-top-color: transparent; animation: at-spin 0.8s linear infinite; }
.at-scan-item.done .ic { border-color: #34e0a1; animation: none; }
.at-scan-item.done .ic::after { content: "✓"; color: #34e0a1; font-size: 13px; font-weight: 800; }
@keyframes at-spin { to { transform: rotate(360deg); } }
.at-for { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.at-for b { color: var(--text); }
.at-scores { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 18px; align-items: stretch; margin-bottom: 22px; }
.at-gauge { position: relative; text-align: center; padding: 14px 8px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); }
.at-gauge svg { width: 120px; height: 120px; transform: rotate(-90deg); }
.at-gauge circle { fill: none; stroke-width: 11; stroke-linecap: round; }
.at-gauge circle.bg { stroke: var(--panel-2); }
.at-gauge circle.val { stroke: url(#atGrad); stroke: var(--cyan); stroke-dasharray: 326.7; stroke-dashoffset: 326.7; transition: stroke-dashoffset 1.4s cubic-bezier(.2,.7,.3,1); }
.at-gauge.good circle.val { stroke: #34e0a1; }
.at-gauge.mid circle.val { stroke: #ffb45c; }
.at-gauge.low circle.val { stroke: #ff5c8a; }
.at-gauge-num { position: absolute; top: 52px; left: 0; right: 0; }
.at-gauge-num b { font-family: var(--font-display); font-size: 30px; }
.at-gauge-num span { color: var(--muted-2); font-size: 12px; }
.at-gauge > p { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 6px; }
.at-verdict { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.at-verdict-label { font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.at-verdict b { font-family: var(--font-display); font-size: 21px; }
.at-verdict.v-yes b { color: #34e0a1; } .at-verdict.v-mid b { color: #ffb45c; } .at-verdict.v-no b { color: #ff5c8a; }
.at-verdict p { font-size: 13px; color: var(--muted); }
.at-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.at-h { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.at-h.ok { color: #34e0a1; } .at-h.ko { color: #ff5c8a; }
[data-theme="light"] .at-h.ok { color: #0c8a5f; }
.at-cols ul { display: grid; gap: 9px; }
.at-cols li { font-size: 13.5px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.at-cols li b { color: var(--text); font-weight: 600; }
.at-cols li .m { flex: none; font-weight: 800; margin-top: 1px; }
.at-cols li .m.ok { color: #34e0a1; } .at-cols li .m.ko { color: #ff5c8a; }
.at-cols li small { display: block; color: var(--muted-2); font-size: 12px; }
.at-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 18px; padding: 20px 22px; border-radius: var(--radius); border: 1px solid rgba(16, 185, 129, 0.35); background: radial-gradient(400px 180px at 8% 0%, rgba(16, 185, 129, 0.12), transparent 70%), var(--panel); }
.at-cta > div:first-child { flex: 1; min-width: 240px; }
.at-cta b { font-family: var(--font-display); font-size: 16.5px; display: block; margin-bottom: 4px; }
.at-cta p { font-size: 13px; color: var(--muted); }
.at-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 760px) {
    .atool { padding: 20px 16px; }
    .at-url-row { flex-wrap: wrap; padding: 12px; }
    .at-url-row input { width: 100%; flex: 1 1 100%; padding: 4px 0; }
    .at-url-row .btn { width: 100%; }
    .at-scores, .at-cols { grid-template-columns: 1fr; }
}

/* ============ Test SEO & GEO v2 ============ */
/* Footer collé en bas même sur pages courtes */
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* Champs du formulaire de l'outil : mêmes styles que le qform */
.atool .qf-row 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;
}
.atool .qf-row input:focus { border-color: var(--violet); }
.atool .qf-row input.err { border-color: #ff5c8a; }
.atool input:-webkit-autofill, .atool input:-webkit-autofill:hover, .atool input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text);
    -webkit-box-shadow: 0 0 0 60px var(--panel) inset;
    transition: background-color 9999s ease-in-out 0s;
}
.atool .qf-row .btn { width: 100%; justify-content: center; }

/* Barre de progression du scan */
.at-progress { margin-top: 16px; height: 6px; border-radius: 999px; background: var(--panel-2); overflow: hidden; }
.at-progress i { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--cyan)); }

/* 4 jauges + verdict pleine largeur */
.at-scores.four { grid-template-columns: repeat(4, 1fr); }
.at-verdict.wide { margin-bottom: 22px; }
@media (max-width: 760px) {
    .at-scores.four { grid-template-columns: repeat(2, 1fr); }
}

/* Bouton Test SEO & GEO dans la navigation */
.nav-links a.nav-test {
    padding: 8px 15px; border-radius: 999px; font-weight: 700;
    color: var(--lime); border: 1px solid rgba(134, 200, 30, 0.45); background: rgba(182, 255, 61, 0.08);
    transition: background 0.2s, transform 0.15s;
}
.nav-links a.nav-test:hover { background: rgba(182, 255, 61, 0.16); transform: translateY(-1px); color: var(--lime); }
.nav-links a.nav-test.active { background: rgba(182, 255, 61, 0.2); }
[data-theme="light"] .nav-links a.nav-test { background: rgba(90, 158, 0, 0.1); border-color: rgba(90, 158, 0, 0.4); }
.mobile-menu a.nav-test { color: var(--lime); font-weight: 700; }

/* Section explicative du test */
.tool-about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 34px; }
.tool-about-card {
    border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel);
    padding: 22px 20px;
}
.tool-about-card .tab-n { font-size: 26px; display: block; margin-bottom: 12px; }
.tool-about-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.tool-about-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.tool-about-txt { max-width: 760px; margin: 0 auto; }
.tool-about-txt h3 { font-size: 19px; margin: 26px 0 10px; }
.tool-about-txt p { color: var(--muted); font-size: 15px; line-height: 1.75; }
@media (max-width: 900px) { .tool-about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tool-about-grid { grid-template-columns: 1fr; } }

/* Tuile CTA vers le test (articles + page SEO & GEO) */
.test-tile {
    display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
    margin: 34px 0; padding: 24px 26px; border-radius: var(--radius-lg);
    border: 1px solid rgba(134, 200, 30, 0.4);
    background: radial-gradient(480px 200px at 10% 0%, rgba(182, 255, 61, 0.1), transparent 70%), var(--panel);
}
.test-tile-gauges { display: flex; gap: 8px; flex: none; }
.test-tile-gauges span {
    width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
    font-size: 10px; font-weight: 800; color: var(--text);
    background:
        radial-gradient(closest-side, var(--panel) 72%, transparent 73% 100%),
        conic-gradient(var(--g, #34e0a1) calc(var(--p, 80) * 1%), var(--panel-2) 0);
}
.test-tile-body { flex: 1; min-width: 230px; }
.test-tile-body .tt-kicker { font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--lime); font-weight: 800; display: block; margin-bottom: 5px; }
.test-tile-body b { font-family: var(--font-display); font-size: 19px; display: block; margin-bottom: 5px; }
.test-tile-body p { font-size: 13.5px; color: var(--muted); margin: 0; }
.test-tile > .btn { flex: none; }
@media (max-width: 560px) { .test-tile { padding: 20px 18px; } .test-tile > .btn { width: 100%; justify-content: center; } }

/* ============ Ready2GEO : AI Visibility ============ */
.r2g-vis {
    display: grid; grid-template-columns: 220px 1fr; gap: 22px; align-items: center;
    padding: 22px; border: 1px solid var(--line-soft); border-radius: var(--radius);
    background: radial-gradient(420px 200px at 0% 0%, rgba(124, 92, 255, 0.1), transparent 70%), var(--panel);
    margin-bottom: 10px;
}
.at-gauge.big { border: 0; background: none; padding: 0; }
.at-gauge.big svg { width: 150px; height: 150px; }
.at-gauge.big .at-gauge-num { top: 62px; }
.at-gauge.big .at-gauge-num b { font-size: 38px; }
.r2g-vis-side h3 { font-size: 19px; margin-bottom: 14px; }
.r2g-engines, .r2g-comps > div { display: grid; gap: 9px; }
.r2g-row { display: grid; grid-template-columns: minmax(120px, 200px) 1fr 34px; gap: 12px; align-items: center; }
.r2g-row .lab { font-size: 13px; font-weight: 600; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.r2g-row .lab small { color: #ffb45c; font-size: 11px; font-weight: 700; }
.r2g-row .track { height: 8px; border-radius: 999px; background: var(--panel-2); overflow: hidden; }
.r2g-row .track i { display: block; height: 100%; width: 0; border-radius: inherit; transition: width 1.2s cubic-bezier(.2,.7,.3,1); }
.r2g-row .track i.good { background: #34e0a1; }
.r2g-row .track i.mid { background: #ffb45c; }
.r2g-row .track i.low { background: #ff5c8a; }
.r2g-row .track i.mine { background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.r2g-row b { font-size: 13px; text-align: right; }
.r2g-row.me .lab { color: var(--text); }
.r2g-comps, .r2g-prio {
    margin: 22px 0; padding: 20px 22px; border: 1px solid var(--line-soft);
    border-radius: var(--radius); background: var(--panel);
}
.r2g-comps h4, .r2g-prio h4 { font-size: 16px; margin-bottom: 6px; }
.r2g-prio ol { margin: 14px 0 0; padding-left: 22px; display: grid; gap: 11px; }
.r2g-prio li { font-size: 14px; color: var(--muted); }
.r2g-prio li b { color: var(--text); display: block; }
.r2g-prio li small { font-size: 12.5px; color: var(--muted-2); }
@media (max-width: 700px) {
    .r2g-vis { grid-template-columns: 1fr; justify-items: center; }
    .r2g-vis-side { width: 100%; }
    .r2g-row { grid-template-columns: minmax(90px, 130px) 1fr 30px; }
}

/* ============ Rapport Ready2GEO : grille large 2 colonnes ============ */
.atool.results-on { max-width: 1160px; }
.at-step[data-step="results"].active {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start;
}
/* En grille, l'espacement vient du gap : on neutralise les marges des blocs */
.at-step[data-step="results"] > * { grid-column: 1 / -1; margin: 0; }
.at-step[data-step="results"] .r2g-vis,
.at-step[data-step="results"] .r2g-comps,
.at-step[data-step="results"] .r2g-prio,
.at-step[data-step="results"] .at-scores,
.at-step[data-step="results"] .at-verdict.wide,
.at-step[data-step="results"] .at-cta { margin: 0; }
/* Concurrents et priorités côte à côte quand les deux sont visibles */
.at-step[data-step="results"] #atCompsBox:not([hidden]) { grid-column: 1 / 2; height: 100%; }
.at-step[data-step="results"] #atCompsBox:not([hidden]) ~ #atPrioBox { grid-column: 2 / 3; }
@media (max-width: 900px) {
    .at-step[data-step="results"].active { grid-template-columns: 1fr; }
    .at-step[data-step="results"] #atCompsBox:not([hidden]),
    .at-step[data-step="results"] #atCompsBox:not([hidden]) ~ #atPrioBox { grid-column: 1 / -1; height: auto; }
}

/* ============ Ready2GEO v3 : pays en pilules, concurrents +, file, vignette ============ */
.at-tags { position: relative; }
.at-tags-field {
    display: flex; flex-wrap: wrap; align-items: center; gap: 7px; cursor: pointer;
    min-height: 47px; border-radius: 13px; border: 1px solid var(--line); background: var(--panel);
    padding: 8px 13px; transition: border-color 0.2s;
}
.at-tags-field:hover, .at-tags-field:focus { border-color: var(--violet); outline: none; }
.at-tags-field .ph { color: var(--muted-2); font-size: 14.5px; }
.at-tags-field > svg { margin-left: auto; color: var(--muted-2); flex: none; }
.at-tags-field .tag {
    display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
    padding: 4px 10px; border-radius: 999px; color: var(--violet-soft);
    background: rgba(124, 92, 255, 0.14); border: 1px solid rgba(124, 92, 255, 0.35);
    animation: qf-in 0.2s ease;
}
.at-tags-field .tag i { font-style: normal; cursor: pointer; font-size: 14px; line-height: 1; opacity: 0.7; }
.at-tags-field .tag i:hover { opacity: 1; }
.at-dd-menu {
    position: absolute; z-index: 30; top: calc(100% + 6px); left: 0; right: 0;
    max-height: 260px; overflow-y: auto; padding: 6px;
    border: 1px solid var(--line); border-radius: 14px; background: var(--panel-solid);
    box-shadow: var(--shadow-card); display: grid; gap: 2px;
}
.at-dd-menu button {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
    text-align: left; font: inherit; font-size: 14px; color: var(--text);
    background: none; border: 0; border-radius: 9px; padding: 9px 12px; cursor: pointer;
}
.at-dd-menu button:hover { background: var(--panel-2); }
.at-dd-menu button svg { opacity: 0; color: var(--violet); }
.at-dd-menu button.sel { color: var(--violet-soft); font-weight: 600; }
.at-dd-menu button.sel svg { opacity: 1; }

/* Concurrents ajoutés au + */
.at-comps { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.at-add {
    display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: 13.5px; font-weight: 700;
    color: var(--cyan); background: rgba(42, 212, 255, 0.08); border: 1px dashed rgba(42, 212, 255, 0.45);
    border-radius: 999px; padding: 8px 15px; cursor: pointer; transition: background 0.2s;
}
.at-add:hover { background: rgba(42, 212, 255, 0.16); }
.at-add:disabled { opacity: 0.4; cursor: not-allowed; }
.at-comp-rows:empty { display: none; }
.at-comp-rows { grid-template-columns: 1fr; gap: 8px; }
.atool .at-comp-rows 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; animation: qf-in 0.25s ease;
}
.atool .at-comp-rows input:focus { border-color: var(--violet); }

/* File d'attente simulée */
.at-queue {
    display: flex; align-items: center; gap: 11px; margin-bottom: 16px;
    padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line-soft);
    background: var(--panel); font-size: 14px; color: var(--muted); font-weight: 600;
}
.at-queue .ic {
    width: 18px; height: 18px; flex: none; border-radius: 50%;
    border: 2px solid var(--cyan); border-top-color: transparent; animation: at-spin 0.8s linear infinite;
}
.at-queue.done { border-color: rgba(52, 224, 161, 0.4); }
.at-queue.done .ic { border-color: #34e0a1; border-top-color: #34e0a1; animation: none; }

/* Vignette du site scanné */
.at-scan-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 22px; align-items: start; }
.at-shot {
    position: relative; overflow: hidden; border-radius: 12px; border: 1px solid var(--line);
    background: var(--panel-2); aspect-ratio: 4 / 3; display: grid; place-items: center;
}
.at-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.at-shot-load { font-size: 12.5px; color: var(--muted-2); padding: 0 14px; text-align: center; }
.at-shot-line {
    position: absolute; left: 0; right: 0; top: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    box-shadow: 0 0 14px var(--cyan); animation: at-shotline 2.6s ease-in-out infinite;
}
@keyframes at-shotline { 0% { top: 0; } 50% { top: calc(100% - 3px); } 100% { top: 0; } }
@media (max-width: 700px) { .at-scan-wrap { grid-template-columns: 1fr; } .at-shot { max-width: 300px; margin: 0 auto; } }

/* Vignette dans le rapport */
.at-res-head { display: flex; align-items: center; gap: 14px; }
.at-res-shot { flex: none; width: 86px; border-radius: 9px; overflow: hidden; border: 1px solid var(--line); }
.at-res-shot img { display: block; width: 100%; }

/* ============ Ready2GEO v4 : menu pays fermé par défaut, Monde/continents ============ */
.at-dd-menu[hidden] { display: none; }
.at-dd-search {
    width: 100%; border-radius: 9px; border: 1px solid var(--line); background: var(--panel);
    color: var(--text); font: inherit; font-size: 13.5px; padding: 9px 12px; outline: none;
    margin-bottom: 4px;
}
.at-dd-search:focus { border-color: var(--violet); }
.at-dd-menu button.world {
    font-weight: 700; color: var(--cyan);
    border: 1px dashed rgba(42, 212, 255, 0.4); background: rgba(42, 212, 255, 0.06);
}
.at-dd-menu button.grp {
    margin-top: 6px; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 800; color: var(--muted-2);
}
.at-dd-menu button.grp:hover, .at-dd-menu button.world:hover { color: var(--violet-soft); }
.at-dd-menu button.grp.sel, .at-dd-menu button.world.sel { color: var(--violet-soft); }
.at-dd-menu .ok-btn {
    position: sticky; bottom: 0; margin-top: 6px; width: 100%;
    font: inherit; font-size: 14px; font-weight: 800; color: #0b0e1d; cursor: pointer;
    background: linear-gradient(90deg, var(--violet), var(--cyan)); border: 0; border-radius: 10px; padding: 11px;
}

/* Header épuré : le CTA Ready2GEO est le seul bouton */
.nav-cta .btn-primary { white-space: nowrap; }
.footer .icon-btn.theme-btn { width: 34px; height: 34px; }

/* ============ Menu pays v5 : accordéons continents + hidden fiable ============ */
.at-dd-menu [hidden], .at-dd-menu[hidden] { display: none !important; }
.grp-block { display: grid; gap: 2px; }
.grp-head { display: flex; align-items: center; gap: 6px; }
.grp-head .grp-toggle {
    flex: 1; display: flex; align-items: center; gap: 8px; text-align: left;
    font: inherit; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800;
    color: var(--muted); background: var(--panel-2); border: 0; border-radius: 9px; padding: 10px 12px; cursor: pointer;
}
.grp-head .grp-toggle:hover { color: var(--text); }
.grp-head .grp-toggle .chev { transition: transform 0.2s; flex: none; }
.grp-head .grp-toggle.open .chev { transform: rotate(90deg); }
.grp-head .grp-sel {
    flex: none; width: 34px; height: 34px; display: grid; place-items: center; cursor: pointer;
    color: var(--muted-2); background: var(--panel-2); border: 1px solid var(--line); border-radius: 9px;
}
.grp-head .grp-sel:hover { color: var(--violet-soft); border-color: var(--violet); }
.grp-head .grp-sel.sel { color: #fff; background: var(--violet); border-color: var(--violet); }
.grp-head .grp-sel svg { opacity: 1; }
.grp-body { display: grid; gap: 2px; padding-left: 10px; }

/* ============ Vignette : image d'attente pendant la file ============ */
.at-shot-wait {
    position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; align-content: center; gap: 16px;
    background:
        radial-gradient(240px 160px at 50% 30%, rgba(124, 92, 255, 0.25), transparent 70%),
        linear-gradient(160deg, var(--panel-solid), var(--panel-2));
    text-align: center; padding: 18px;
}
.at-shot-wait b { font-size: 13px; color: var(--muted); font-weight: 700; max-width: 200px; }
.at-shot-wait .radar { position: relative; width: 64px; height: 64px; }
.at-shot-wait .radar i {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid var(--cyan); opacity: 0;
    animation: at-radar 2.4s ease-out infinite;
}
.at-shot-wait .radar i:nth-child(2) { animation-delay: 0.8s; }
.at-shot-wait .radar i:nth-child(3) { animation-delay: 1.6s; }
.at-shot-wait .radar::after {
    content: "⏳"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 24px;
    animation: at-flip 2.4s ease-in-out infinite;
}
@keyframes at-radar { 0% { transform: scale(0.35); opacity: 0.9; } 100% { transform: scale(1.25); opacity: 0; } }
@keyframes at-flip { 0%, 40% { transform: rotate(0); } 60%, 100% { transform: rotate(180deg); } }

/* ============ Comptes Ready2GEO : gate, avatar, dashboard ============ */
.at-gate { text-align: center; padding: 26px 12px; }
.at-gate h3 { font-size: 21px; margin-bottom: 8px; }
.at-gate .at-sub { max-width: 460px; margin: 0 auto 20px; }
.g-btn {
    background: #fff; color: #1a1f36; border: 1px solid #dadce0; font-weight: 700; gap: 10px;
}
.g-btn:hover { background: #f4f5fa; transform: translateY(-1px); }
.at-gate-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.nav-avatar {
    width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex: none;
    border: 2px solid var(--violet); display: grid; place-items: center;
    background: var(--panel-2); color: var(--text); font-weight: 800; font-size: 15px; text-decoration: none;
}
.nav-avatar img { width: 100%; height: 100%; object-fit: cover; }

.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 26px; }
.dash-id { display: flex; align-items: center; gap: 14px; }
.dash-id img { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--violet); }
.dash-id h1 { font-size: 24px; }
.dash-id p { color: var(--muted); font-size: 13px; }
.dash-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dash-pill {
    font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 999px;
    border: 1px solid var(--line); background: var(--panel); color: var(--muted);
}
.dash-pill.ok { color: #34e0a1; border-color: rgba(52, 224, 161, 0.4); }
.dash-flash {
    margin-bottom: 18px; padding: 12px 16px; border-radius: 12px; font-size: 13.5px; font-weight: 600;
    color: #34e0a1; border: 1px solid rgba(52, 224, 161, 0.4); background: rgba(52, 224, 161, 0.07);
}
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dash-card {
    border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--panel);
    padding: 24px;
}
.dash-card h2 { font-size: 18px; margin-bottom: 10px; }
.dash-table-wrap { overflow-x: auto; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.dash-table th { text-align: left; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); padding: 8px 10px; border-bottom: 1px solid var(--line); }
.dash-table td { padding: 10px; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
.dash-table td b { color: var(--text); }
.dash-score { font-weight: 800; }
.dash-score.s-good { color: #34e0a1; } .dash-score.s-mid { color: #ffb45c; } .dash-score.s-low { color: #ff5c8a; }
.dash-pdf { padding: 6px 14px; font-size: 12.5px; }
.dash-form input[type="text"], .dash-form input[type="tel"], .dash-form input[type="email"],
.dash-form input[type="url"], .dash-form input[type="number"], .dash-form input[type="search"],
.dash-form textarea, .dash-form select {
    width: 100%; border-radius: 13px; border: 1px solid var(--line); background: var(--panel-2);
    color: var(--text); font: inherit; font-size: 14px; padding: 12px 14px; outline: none;
}
.dash-form textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.dash-form select { appearance: none; cursor: pointer; }
.dash-form input:focus { border-color: var(--violet); }
.dash-color, .dash-file {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    border: 1px dashed var(--line); border-radius: 13px; padding: 10px 14px; font-size: 13px; color: var(--muted); cursor: pointer;
}
.dash-file input { max-width: 150px; font-size: 11px; }
.dash-color input { border: 0; background: none; width: 40px; height: 30px; cursor: pointer; }
.dash-logo-preview { max-height: 54px; max-width: 200px; margin-bottom: 14px; border-radius: 8px; background: #fff; padding: 6px; }
@media (max-width: 860px) { .dash-grid { grid-template-columns: 1fr; } }

/* ============ Ready2GEO : 5 jauges + technologies détectées + sécurité ============ */
.at-scores.five { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .at-scores.five { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .at-scores.five { grid-template-columns: repeat(2, 1fr); } }
.r2g-tech {
    margin: 22px 0; padding: 20px 22px; border: 1px solid var(--line-soft);
    border-radius: var(--radius); background: var(--panel);
}
.r2g-tech h4 { font-size: 16px; margin-bottom: 12px; }
.r2g-tech-group { display: flex; align-items: flex-start; gap: 14px; padding: 8px 0; border-top: 1px solid var(--line-soft); }
.r2g-tech-group:first-of-type { border-top: 0; }
.r2g-tech-cat { flex: none; width: 160px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); padding-top: 4px; }
.r2g-tech-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.r2g-tech-tag {
    font-size: 13px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
    color: var(--cyan); background: rgba(42, 212, 255, 0.1); border: 1px solid rgba(42, 212, 255, 0.3);
}
@media (max-width: 560px) { .r2g-tech-group { flex-direction: column; gap: 6px; } .r2g-tech-cat { width: auto; } }

/* ============ Connexion : lien header + auth card + Google dans le lead ============ */
.nav-login {
    display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600;
    color: var(--muted); text-decoration: none; padding: 8px 6px; transition: color 0.2s;
}
.nav-login:hover { color: var(--text); }
.at-lead-google { width: 100%; justify-content: center; margin-bottom: 4px; }
.auth-or { position: relative; text-align: center; margin: 16px 0; }
.auth-or::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.auth-or span { position: relative; background: var(--panel-solid); padding: 0 14px; color: var(--muted-2); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; }
.auth-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel-solid); padding: 30px; box-shadow: var(--shadow-card); }
.auth-tabs { display: flex; gap: 6px; margin-bottom: 20px; background: var(--panel-2); border-radius: 12px; padding: 4px; }
.auth-tabs button { flex: 1; font: inherit; font-size: 13.5px; font-weight: 700; padding: 10px; border: 0; border-radius: 9px; background: none; color: var(--muted); cursor: pointer; }
.auth-tabs button.active { background: var(--panel-solid); color: var(--text); box-shadow: var(--shadow-card); }
.auth-form { display: grid; gap: 10px; }
.auth-form label { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-top: 4px; }
.auth-form input { width: 100%; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); color: var(--text); font: inherit; font-size: 14.5px; padding: 12px 14px; outline: none; }
.auth-form input:focus { border-color: var(--violet); }
.auth-form .btn { margin-top: 8px; justify-content: center; }
.auth-ok { color: #34e0a1; background: rgba(52,224,161,0.08); border: 1px solid rgba(52,224,161,0.35); border-radius: 12px; padding: 12px 15px; font-size: 13.5px; font-weight: 600; margin-bottom: 16px; }
.auth-info { color: var(--cyan); background: rgba(42,212,255,0.08); border: 1px solid rgba(42,212,255,0.3); border-radius: 12px; padding: 12px 15px; font-size: 13.5px; margin-bottom: 16px; }
.auth-err { color: #ff5c8a; background: rgba(255,92,138,0.08); border: 1px solid rgba(255,92,138,0.35); border-radius: 12px; padding: 12px 15px; font-size: 13.5px; margin-bottom: 16px; }

/* ============ Ready2GEO : landing plateforme GEO ============ */
.r2g-logo svg { width: 100%; height: 100%; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.r2g-hero { position: relative; padding: 120px 0 70px; overflow: hidden; }
.r2g-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(680px 460px at 50% 0%, rgba(124,92,255,.20), transparent 62%), radial-gradient(560px 420px at 82% 30%, rgba(42,212,255,.14), transparent 60%); pointer-events: none; }
.r2g-hero-inner { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.r2g-hero h1 { font-size: clamp(34px, 6vw, 62px); line-height: 1.05; margin: 20px 0 18px; letter-spacing: -.02em; }
.r2g-hero-sub { color: var(--muted); font-size: 18px; max-width: 640px; margin: 0 auto 30px; line-height: 1.6; }
.r2g-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.r2g-hero-note { color: var(--muted-2); font-size: 13px; margin-top: 14px; text-align: center; }
.r2g-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line-soft); }
.r2g-stats div { text-align: center; }
.r2g-stats b { display: block; font-family: var(--font-display); font-size: 34px; background: linear-gradient(120deg, var(--violet), var(--cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.r2g-stats span { font-size: 13px; color: var(--muted); }

.r2g-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.r2g-step { position: relative; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--panel); padding: 30px 26px; }
.r2g-step-n { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #0b0e1d; background: linear-gradient(135deg, var(--violet), var(--cyan)); margin-bottom: 16px; }
.r2g-step h3 { font-size: 18px; margin-bottom: 8px; }
.r2g-step p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.r2g-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.r2g-feat { border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--panel); padding: 26px; transition: transform .18s, border-color .18s; }
.r2g-feat:hover { transform: translateY(-3px); border-color: rgba(124,92,255,.4); }
.r2g-feat-ic { font-size: 30px; display: block; margin-bottom: 14px; }
.r2g-feat h3 { font-size: 17px; margin-bottom: 8px; }
.r2g-feat p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.r2g-agencies { background: radial-gradient(600px 400px at 15% 20%, rgba(124,92,255,.1), transparent 60%), var(--panel-2); border-radius: var(--radius-lg); }
.r2g-ag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.r2g-ag-grid h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 14px 0 14px; }
.r2g-ag-sub { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 24px; }
.r2g-ag-points { display: grid; gap: 14px; }
.r2g-ag-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); }
.r2g-ag-points svg { color: #34e0a1; flex: none; margin-top: 2px; }

.r2g-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; margin: 0 auto; }
.r2g-price { position: relative; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--panel); padding: 34px 30px; }
.r2g-price.featured { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet), var(--shadow-glow); }
.r2g-price-badge { position: absolute; top: -12px; left: 30px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #0b0e1d; background: linear-gradient(120deg, var(--violet), var(--cyan)); padding: 5px 13px; border-radius: 999px; }
.r2g-price h3 { font-size: 20px; margin-bottom: 10px; }
.r2g-price-tag { margin-bottom: 20px; }
.r2g-price-tag b { font-family: var(--font-display); font-size: 38px; }
.r2g-price-tag span { color: var(--muted-2); font-size: 14px; }
.r2g-price ul { display: grid; gap: 11px; margin-bottom: 24px; }
.r2g-price li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.r2g-price li svg { color: var(--violet); flex: none; margin-top: 3px; }
.r2g-price .btn { width: 100%; justify-content: center; }

.r2g-final { text-align: center; padding: 80px 0; background: radial-gradient(600px 300px at 50% 100%, rgba(124,92,255,.16), transparent 65%); }
.r2g-final h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.r2g-final p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }

@media (max-width: 900px) { .r2g-steps, .r2g-feats { grid-template-columns: 1fr; } .r2g-ag-grid, .r2g-pricing { grid-template-columns: 1fr; } }

/* Badge "Powered by Ready2GEO" en mode embed */
.r2g-embed-badge { position: fixed; bottom: 12px; right: 12px; z-index: 50; font-size: 11px; font-weight: 600; color: var(--muted); background: var(--panel-solid); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; text-decoration: none; box-shadow: var(--shadow-card); }
.r2g-embed-badge b { color: var(--violet-soft); }

/* ============ Ready2GEO : abonnements, revente, module, suite ============ */
.r2g-hero-tool { max-width: 1160px; margin: 30px auto 8px; text-align: left; }
.r2g-payg { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; max-width: 720px; margin: 0 auto 24px; }
.r2g-payg-card { flex: 1 1 260px; min-width: 240px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); padding: 20px 22px; }
.r2g-payg-card > div:first-child { width: 100%; }
.r2g-payg-card b { display: block; font-size: 16px; }
.r2g-payg-card span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.r2g-payg-price { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin: 2px 0; }
.r2g-payg-price small { font-size: 12px; color: var(--muted-2); font-weight: 400; margin-left: 3px; }
.r2g-payg-card .btn { align-self: stretch; justify-content: center; padding: 11px 16px; font-size: 13.5px; margin-top: 4px; }

.r2g-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.r2g-plan { position: relative; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--panel); padding: 32px 28px; }
.r2g-plan.featured { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet), var(--shadow-glow); }
.r2g-plan h3 { font-size: 20px; margin-bottom: 8px; }
.r2g-plan-reports { font-weight: 700; color: var(--violet-soft); font-size: 14px; margin-bottom: 16px; }
.r2g-plan ul { display: grid; gap: 10px; margin-bottom: 22px; }
.r2g-plan li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.r2g-plan li svg { color: var(--violet); flex: none; margin-top: 3px; }
.r2g-plan .btn { width: 100%; justify-content: center; }

.r2g-resell { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding: 30px 34px; border-radius: var(--radius-lg); border: 1px solid rgba(52,224,161,.4); background: radial-gradient(500px 220px at 8% 0%, rgba(52,224,161,.12), transparent 70%), var(--panel); }
.r2g-resell-price { flex: none; text-align: center; }
.r2g-resell-price b { display: block; font-family: var(--font-display); font-size: 44px; color: #34e0a1; line-height: 1; }
.r2g-resell-price span { font-size: 12px; color: var(--muted); }
.r2g-resell > div:nth-child(2) { flex: 1; min-width: 260px; }
.r2g-resell h3 { font-size: 21px; margin-bottom: 6px; }
.r2g-resell p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.r2g-resell .btn { flex: none; }

.r2g-code-note { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.r2g-code { background: #0b0e1d; border: 1px solid var(--line); border-radius: 12px; padding: 18px; overflow-x: auto; }
.r2g-code code { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12.5px; color: #b6ff9c; white-space: pre; line-height: 1.7; }
.r2g-soon { opacity: .82; }
.r2g-soon::after { content: "🔜"; position: absolute; }

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

/* Page partenaires */
.r2g-partners-soon { text-align: center; max-width: 560px; margin: 0 auto; padding: 34px; border: 1px dashed var(--line); border-radius: var(--radius-lg); background: var(--panel); }
.r2g-partners-soon .r2g-feat-ic { font-size: 34px; }
.r2g-partners-soon p { color: var(--muted); font-size: 15px; margin-top: 10px; }

/* Dashboard : forfaits */
.dash-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 8px; }
.dash-plan { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel-2); padding: 16px; text-align: center; }
.dash-plan.featured { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet); }
.dash-plan h3 { font-size: 15px; margin-bottom: 6px; }
.dash-plan-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.dash-plan-price span { display: block; font-size: 11px; color: var(--muted-2); font-weight: 400; }
.dash-plan p { font-size: 12.5px; color: var(--muted); margin: 8px 0 12px; min-height: 34px; }
.dash-plan .btn { width: 100%; justify-content: center; font-size: 13px; padding: 9px; }
@media (max-width: 820px) { .dash-plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dash-plans { grid-template-columns: 1fr; } }
.r2g-plans.four { grid-template-columns: repeat(4, 1fr); }
.r2g-plan-cost { font-size: 12px; color: var(--muted-2); font-weight: 400; }
.r2g-plan-lead { font-size: 12px; color: var(--cyan); margin: 8px 0 14px; border-top: 1px dashed var(--line-soft); padding-top: 10px; }
@media (max-width: 1000px) { .r2g-plans.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .r2g-plans.four { grid-template-columns: 1fr; } }

/* Bloc accompagnement (lead HOT) sur les résultats */
.at-help { margin: 18px 0; padding: 20px 22px; border-radius: var(--radius); border: 1px solid rgba(124,92,255,.4); background: radial-gradient(400px 180px at 10% 0%, rgba(124,92,255,.12), transparent 70%), var(--panel); }
.at-help > b { font-family: var(--font-display); font-size: 16.5px; display: block; margin-bottom: 4px; }
.at-help > p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.at-help-choice { display: flex; gap: 10px; flex-wrap: wrap; }
.at-help-form { display: grid; gap: 10px; margin-top: 4px; }
.at-help-form input, .at-help-form select { width: 100%; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); color: var(--text); font: inherit; font-size: 14px; padding: 12px 14px; outline: none; }
.at-help-form input:focus, .at-help-form select:focus { border-color: var(--violet); }
.at-help-thanks { color: #34e0a1; font-weight: 600; font-size: 14.5px; }

/* Espace agence marketplace */
.dash-topups { display: flex; gap: 10px; flex-wrap: wrap; }
.dash-topups .btn { min-width: 80px; justify-content: center; }
.dash-inline { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.dash-inline input, .dash-inline select { border-radius: 10px; border: 1px solid var(--line); background: var(--panel-2); color: var(--text); font: inherit; font-size: 14px; padding: 8px 10px; }
.dash-form input[type="text"] { width: 100%; border-radius: 13px; border: 1px solid var(--line); background: var(--panel-2); color: var(--text); font: inherit; font-size: 14px; padding: 12px 14px; }
.dash-score.s-good { color: #34e0a1; } .dash-score.s-mid { color: #ffb45c; } .dash-score.s-low { color: #ff5c8a; }
.buy-btn { padding: 7px 12px; font-size: 12.5px; }

/* Bande agence discrète sur la homepage grand public */
.r2g-agency-banner { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; max-width: 980px; margin: 0 auto; padding: 24px 28px; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: radial-gradient(500px 200px at 8% 0%, rgba(124,92,255,.1), transparent 70%), var(--panel); text-decoration: none; transition: border-color .18s, transform .18s; }
.r2g-agency-banner:hover { border-color: rgba(124,92,255,.5); transform: translateY(-2px); }
.r2g-agency-banner b { display: block; font-family: var(--font-display); font-size: 19px; color: var(--text); margin: 6px 0 4px; }
.r2g-agency-banner p { color: var(--muted); font-size: 14px; margin: 0; max-width: 560px; }
.r2g-agency-banner .btn { flex: none; }

/* ============ Espace client : layout avec sidebar ============ */
.client-body { display: block; min-height: 100vh; background: var(--bg); }
.cl-shell { display: flex; min-height: 100vh; }
.cl-side { width: 250px; flex: none; background: var(--panel-solid); border-right: 1px solid var(--line); display: flex; flex-direction: column; padding: 22px 16px; position: sticky; top: 0; height: 100vh; }
.cl-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); margin-bottom: 26px; padding: 0 6px; }
.cl-brand .logo { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--violet), var(--cyan)); display: grid; place-items: center; }
.cl-brand .logo svg { width: 22px; height: 22px; }
.cl-brand b { font-family: var(--font-display); font-size: 16px; }
.cl-nav { display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; align-content: flex-start; }
.cl-nav a { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; padding: 10px 12px; border-radius: 10px; color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: background .15s, color .15s; }
.cl-nav a:hover { background: var(--panel-2); color: var(--text); }
.cl-nav a.active { background: rgba(124,92,255,.16); color: var(--text); font-weight: 600; }
.cl-sec { font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); font-weight: 800; margin: 16px 0 4px; padding: 0 12px; }
.cl-side-foot { border-top: 1px solid var(--line-soft); padding-top: 14px; margin-top: 10px; }
.cl-wallet { font-size: 11.5px; color: var(--muted-2); padding: 0 12px 10px; }
.cl-wallet b { font-family: var(--font-display); font-size: 18px; color: #34e0a1; }
.cl-logout { width: 100%; background: none; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); font: inherit; font-size: 13px; padding: 9px; cursor: pointer; }
.cl-logout:hover { color: #ff5c8a; border-color: rgba(255,92,138,.4); }
.cl-main { flex: 1; min-width: 0; }
.cl-top { display: flex; align-items: center; gap: 16px; padding: 18px 28px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); z-index: 20; }
.cl-top h1 { font-size: 20px; flex: 1; }
.cl-top-right { display: flex; align-items: center; gap: 12px; }
.cl-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--violet); }
.cl-avatar-txt { display: grid; place-items: center; background: var(--panel-2); color: var(--text); font-weight: 800; font-size: 14px; }
.cl-content { padding: 26px 28px 60px; max-width: 1200px; }
.cl-burger { display: none; background: none; border: 0; color: var(--text); font-size: 22px; cursor: pointer; }
@media (max-width: 900px) {
    .cl-side { position: fixed; left: -260px; z-index: 60; transition: left .25s; }
    .cl-side.open { left: 0; }
    .cl-burger { display: block; }
    .cl-content { padding: 20px 16px 50px; }
    .cl-top { padding: 14px 16px; }
}
.cl-choice { display: flex; gap: 14px; flex-wrap: wrap; }
.cl-choice label { flex: 1 1 200px; display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 13px; background: var(--panel-2); cursor: pointer; font-size: 14.5px; }
.cl-choice label:hover { border-color: var(--violet); }
.cl-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.cl-kpi { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); padding: 16px 18px; }
.cl-kpi span { display: block; font-size: 11.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: 6px; }
.cl-kpi b { font-family: var(--font-display); font-size: 22px; }
.cl-quick { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 900px) { .cl-kpis { grid-template-columns: 1fr 1fr; } }

/* ============ Checkout interne : animation de paiement ============ */
.pay-anim { position: relative; width: 190px; height: 190px; margin: 0 auto; display: grid; place-items: center; }
.pay-anim .pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--violet); opacity: 0; animation: pay-pulse 2.4s ease-out infinite; }
.pay-anim .pulse:nth-child(2) { animation-delay: .8s; }
.pay-anim .pulse:nth-child(3) { animation-delay: 1.6s; }
.pay-anim.done .pulse { border-color: #34e0a1; }
@keyframes pay-pulse { 0% { transform: scale(.45); opacity: .85; } 100% { transform: scale(1.15); opacity: 0; } }
.pay-core { position: relative; width: 86px; height: 86px; border-radius: 26px; display: grid; place-items: center; background: linear-gradient(135deg, var(--violet), var(--cyan)); box-shadow: 0 14px 40px rgba(124,92,255,.4); transition: background .5s, box-shadow .5s; }
.pay-anim.done .pay-core { background: linear-gradient(135deg, #34e0a1, #12a367); box-shadow: 0 14px 40px rgba(52,224,161,.42); }
.pay-ring { width: 190px; height: 190px; transform: rotate(-90deg); position: absolute; }
.pay-ring circle { fill: none; stroke-width: 6; stroke-linecap: round; }
.pay-ring .bg { stroke: var(--panel-2); }
.pay-ring .val { stroke: var(--violet); stroke-dasharray: largeur; transition: stroke-dashoffset .6s ease, stroke .5s; }
.pay-anim.done .pay-ring .val { stroke: #34e0a1; }
.pay-state { font-size: 15px; color: var(--muted); margin-top: 18px; }
.pay-pct { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.pay-anim.done + .pay-state, .pay-anim.done ~ .pay-state { color: #34e0a1; }
/* Checkout : récapitulatif */
.co-wrap { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 22px; align-items: start; }
.co-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel-solid); padding: 26px; }
.co-sum-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); padding: 8px 0; }
.co-sum-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 20px; font-weight: 700; border-top: 1px solid var(--line); padding-top: 12px; margin-top: 6px; }
.co-secure { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted-2); margin-top: 14px; }
@media (max-width: 820px) { .co-wrap { grid-template-columns: 1fr; } }
.ob-steps { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.ob-step { font-size: 12.5px; font-weight: 700; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted-2); }
.ob-step.done { color: #34e0a1; border-color: rgba(52,224,161,.4); }
.ob-step.active { color: #fff; background: linear-gradient(120deg, var(--violet), var(--cyan)); border-color: transparent; }
.cl-adv { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 10px; }
.cl-adv div { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel-2); padding: 14px 16px; }
.cl-adv b { display: block; font-size: 14.5px; margin-bottom: 4px; }
.cl-adv span { font-size: 13px; color: var(--muted); }
.cl-tool-wrap { max-width: 1100px; }
.cl-tool-wrap .atool { box-shadow: none; }
@media (max-width: 800px) { .cl-adv { grid-template-columns: 1fr; } }
/* Inscription agence multi-étapes */
.reg-step .qf-row { margin-bottom: 10px; }
.reg-step input[type="text"], .reg-step input[type="email"], .reg-step input[type="tel"], .reg-step input[type="password"], .reg-step select { width: 100%; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); color: var(--text); font: inherit; font-size: 14.5px; padding: 13px 15px; outline: none; }
.reg-step input:focus, .reg-step select:focus { border-color: var(--violet); }
.reg-step input.err { border-color: #ff5c8a; }
.reg-plans { display: grid; gap: 10px; margin-top: 12px; }
.reg-plan { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 13px; padding: 14px 16px; cursor: pointer; background: var(--panel); }
.reg-plan:has(input:checked) { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet); }
.reg-plan span { display: flex; flex-direction: column; gap: 2px; }
.reg-plan b { font-size: 15px; }
.reg-plan em { font-style: normal; font-family: var(--font-display); font-size: 17px; color: var(--violet-soft); }
.reg-plan small { font-size: 12.5px; color: var(--muted); }
.cart-item { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel-2); padding: 18px; margin-top: 14px; }
.cart-item b { display: block; font-size: 16px; margin-bottom: 5px; }
.cart-item span { display: block; font-size: 13px; color: var(--muted); }
.cart-price { font-family: var(--font-display); font-size: 24px; font-weight: 700; white-space: nowrap; text-align: right; }
.cart-price small { display: block; font-size: 11px; color: var(--muted-2); font-weight: 400; }

/* Select thème sombre (options lisibles) */
.cart-select { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; }
.cart-select span { font-size: 12.5px; color: var(--muted); font-weight: 600; }
select, .cart-select select, .dash-inline select, .auth-form select, .reg-step select {
    background: var(--panel-2); color: var(--text); border: 1px solid var(--line); border-radius: 12px;
    padding: 13px 15px; font: inherit; font-size: 14.5px; box-shadow: var(--shadow-card); outline: none;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa1bd' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px;
}
select:hover { border-color: rgba(124,92,255,.5); }
select:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,92,255,.18); }
/* options : fond sombre pour rester lisibles */
select option { background: #12162e; color: #eef1ff; padding: 10px; }
[data-theme="light"] select option { background: #fff; color: #10142a; }

/* ---- Rapport verrouillé : aperçu flouté + cadenas ---------------------- */
.r2g-locked { position: relative; overflow: hidden; }
.r2g-locked > *:not(.r2g-lockover) { filter: blur(7px); opacity: .55; pointer-events: none; user-select: none; }
.r2g-lockfake { display: flex; flex-direction: column; gap: 12px; padding: 6px 0 2px; }
.r2g-lockfake span {
    display: block; height: 13px; border-radius: 7px;
    background: linear-gradient(90deg, var(--line) 0%, var(--card-2, var(--line)) 55%, var(--line) 100%);
}
.r2g-lockover {
    position: absolute; inset: 0; z-index: 3;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; text-align: center; padding: 22px 18px;
    background: color-mix(in srgb, var(--bg) 62%, transparent);
    backdrop-filter: blur(2px);
}
.r2g-lockico {
    font-size: 22px; line-height: 1;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--accent) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
}
.r2g-lockover b { font-size: 16px; color: var(--text); }
.r2g-lockover p { margin: 0; max-width: 46ch; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.r2g-lockover .btn { margin-top: 4px; }
.r2g-lockover small { font-size: 11.5px; color: var(--muted); opacity: .85; }
.at-cols.r2g-locked { padding-bottom: 4px; }
@media (max-width: 640px) {
    .r2g-lockover { padding: 16px 12px; gap: 6px; }
    .r2g-lockover b { font-size: 14.5px; }
    .r2g-lockover p { font-size: 12.5px; }
}

/* ---- Annuaire des partenaires ------------------------------------------ */
.dir-search { display: flex; gap: 10px; max-width: 560px; margin-top: 22px; }
.dir-search input {
    flex: 1; padding: 13px 16px; border-radius: 12px;
    border: 1px solid var(--line); background: var(--card); color: var(--text); font-size: 15px;
}
.dir-search input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.dir-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.dir-card {
    display: flex; flex-direction: column; gap: 12px;
    border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: var(--card);
    transition: border-color .18s ease, transform .18s ease;
}
.dir-card:hover { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); transform: translateY(-2px); }
.dir-card-top { display: flex; align-items: center; gap: 12px; }
.dir-card h3 { margin: 0; font-size: 16.5px; }
.dir-loc { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); }
.dir-logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; flex: none; }
.dir-logo.lg { width: 68px; height: 68px; border-radius: 16px; }
.dir-logo-txt {
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; color: var(--accent);
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
}
.dir-logo-txt.lg { font-size: 22px; }
.dir-bio { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.dir-bio-full { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 62ch; }
.dir-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.dir-tag {
    font-size: 12px; padding: 4px 10px; border-radius: 999px;
    border: 1px solid var(--line); color: var(--muted); background: var(--bg);
}
.dir-cta { margin-top: auto; text-align: center; }
.dir-empty { text-align: center; padding: 44px 20px; border: 1px dashed var(--line); border-radius: 16px; }
.dir-empty p { color: var(--muted); margin: 0 0 16px; }
.dir-join { margin-top: 44px; padding: 30px; border-radius: 18px; border: 1px solid var(--line); background: var(--card); text-align: center; }
.dir-join h2 { margin: 0 0 8px; font-size: 20px; }
.dir-join p { margin: 0 auto 18px; max-width: 60ch; color: var(--muted); }
.dir-head { display: flex; align-items: center; gap: 18px; margin-top: 10px; }
.dir-head h1 { margin: 0; }
.dir-detail { display: grid; grid-template-columns: 1fr 380px; gap: 34px; align-items: start; }
.dir-detail h2 { margin-top: 0; }
.dir-detail h3 { margin: 26px 0 10px; font-size: 15px; }
.dir-site { margin-top: 24px; }
.dir-form-box { border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: var(--card); position: sticky; top: 96px; }
.dir-form-box h2 { font-size: 18px; margin-bottom: 6px; }
@media (max-width: 900px) {
    .dir-detail { grid-template-columns: 1fr; }
    .dir-form-box { position: static; }
    .dir-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---- Marketplace : péremption, pipeline, modale ------------------------- */
.lead-ttl { font-size: 12px; color: var(--muted); }
.lead-ttl.urgent { color: #e0603a; font-weight: 600; }
.lead-stage { font-size: 12px; padding: 3px 10px; border-radius: 999px; border: 1px solid var(--line); }
.lead-stage.st-new { color: var(--muted); }
.lead-stage.st-contacted { color: #2ad4ff; border-color: color-mix(in srgb, #2ad4ff 40%, var(--line)); }
.lead-stage.st-meeting { color: #7c5cff; border-color: color-mix(in srgb, #7c5cff 40%, var(--line)); }
.lead-stage.st-won { color: #22c55e; border-color: color-mix(in srgb, #22c55e 45%, var(--line)); }
.lead-stage.st-lost { color: #e0603a; border-color: color-mix(in srgb, #e0603a 40%, var(--line)); }
.crm-row td { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.crm-form { display: flex; flex-direction: column; gap: 12px; padding: 6px 0 10px; }
.crm-form textarea { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line); background: var(--card); color: var(--text); font-family: inherit; }
.crm-stages { display: flex; flex-wrap: wrap; gap: 8px; }
.crm-stage input { position: absolute; opacity: 0; pointer-events: none; }
.crm-stage span {
    display: inline-block; padding: 7px 14px; border-radius: 999px; cursor: pointer;
    border: 1px solid var(--line); font-size: 13px; color: var(--muted); transition: all .15s ease;
}
.crm-stage input:checked + span { border-color: var(--accent); color: var(--text); background: color-mix(in srgb, var(--accent) 16%, transparent); }
.crm-stage input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.r2g-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(6, 8, 20, .62); padding: 20px; }
.r2g-modal[hidden] { display: none; }
.r2g-modal-box { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 26px; max-width: 460px; width: 100%; }
.r2g-modal-box h3 { margin: 0 0 6px; }
.r2g-modal-box select, .r2g-modal-box textarea {
    padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line);
    background: var(--bg); color: var(--text); font-family: inherit;
}

/* ---- Audit approfondi : attente ---------------------------------------- */
.deep-wait { text-align: center; padding: 40px 24px; }
.deep-wait h2 { margin: 16px 0 6px; }
.deep-spin {
    width: 38px; height: 38px; margin: 0 auto; border-radius: 50%;
    border: 3px solid color-mix(in srgb, var(--accent) 22%, transparent);
    border-top-color: var(--accent); animation: deepspin 1s linear infinite;
}
@keyframes deepspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .deep-spin { animation-duration: 3s; } }

/* ---- Pages piliers GEO/SEO programmatique -------------------------------- */
.pillar-intro { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 14px 0 0; }
.pillar-stat {
    display: flex; align-items: baseline; gap: 10px; margin: 22px 0;
    padding: 16px 20px; border-radius: 14px; border: 1px solid var(--line);
    background: color-mix(in srgb, var(--accent) 7%, transparent);
}
.pillar-stat b { font-size: 28px; color: var(--accent); }
.pillar-stat span { font-size: 14px; color: var(--muted); }
.pillar-toc {
    margin: 24px 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--card);
}
.pillar-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 24px; }
.pillar-toc li { margin-bottom: 6px; font-size: 14px; break-inside: avoid; }
.pillar-toc a { color: var(--muted); text-decoration: none; }
.pillar-toc a:hover { color: var(--accent); }
.pillar-compare table { width: 100%; }
.pillar-compare th { background: color-mix(in srgb, var(--accent) 10%, transparent); }

/* Hub ressources */
.hub-cluster { margin-bottom: 40px; }
.hub-cluster h2 { font-size: 20px; margin-bottom: 16px; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.hub-card {
    display: flex; flex-direction: column; gap: 8px; padding: 18px;
    border: 1px solid var(--line); border-radius: 14px; background: var(--card);
    text-decoration: none; color: var(--text); transition: border-color .18s ease, transform .18s ease;
}
.hub-card:hover { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); transform: translateY(-2px); }
.hub-card b { font-size: 15px; }
.hub-card-soon { opacity: .55; cursor: default; }
.hub-card-soon:hover { transform: none; border-color: var(--line); }
.hub-soon { font-size: 12px; color: var(--muted); }
@media (max-width: 640px) { .pillar-toc ol { columns: 1; } }

/* ---- Header : liens secondaires en icônes compactes -------------------- */
.nav-icon-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 10px; color: var(--muted);
    transition: color .18s ease, background .18s ease;
}
.nav-icon-link svg { width: 19px; height: 19px; }
.nav-icon-link span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.nav-icon-link:hover, .nav-icon-link.active {
    color: var(--text); background: color-mix(in srgb, var(--accent) 12%, transparent);
}

/* ---- Menu "Ressources" du header (icônes + libellé, aligné à gauche) --- */
.more-menu { min-width: 220px; }
.more-menu a { justify-content: flex-start; white-space: nowrap; }
.more-menu .more-ic { width: 18px; height: 18px; flex: none; color: var(--muted); }
.more-menu a:hover .more-ic, .more-menu a.active .more-ic { color: var(--accent); }

/* ---- Header réorganisé : langue à gauche, compte + ressources à droite -- */
.nav-left { display: flex; align-items: center; gap: 14px; }
button.nav-avatar, button.acct-btn {
    border: 2px solid var(--violet); cursor: pointer; padding: 0; font-family: inherit;
}
.acct-logout { margin: 0; }
.acct-logout button {
    display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
    padding: 9px 12px; border: none; background: none; cursor: pointer; font-family: inherit;
    font-size: 13.5px; font-weight: 500; color: var(--muted); border-radius: 9px;
}
.acct-logout button:hover { background: rgba(124, 92, 255, 0.12); color: var(--text); }
.acct-logout button:hover .more-ic { color: var(--accent); }
@media (max-width: 900px) { .nav-left .lang-dd { display: none; } }

/* ---- Sélecteur de langue : bouton drapeau seul, sans code ni chevron --- */
.lang-btn-flag { width: 40px; height: 40px; padding: 0; justify-content: center; }

/* ---- Articles longs (blog + piliers GEO) : mise en page 2 colonnes ------ */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 44px; align-items: start; }
.article-main { min-width: 0; }
.article-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.side-card {
    border: 1px solid var(--line); border-radius: 16px; padding: 20px;
    background: var(--card, var(--panel)); display: flex; flex-direction: column; gap: 8px;
}
.side-card > b { font-family: var(--font-display); font-size: 15.5px; }
.side-cta { background: linear-gradient(160deg, color-mix(in srgb, var(--violet) 16%, var(--panel)), var(--panel)); }
.side-cta-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); }
.side-cta p, .side-agency p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.side-cta .btn, .side-agency .btn { margin-top: 6px; justify-content: center; }
.side-toc b { display: block; margin-bottom: 4px; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); }
.side-toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; counter-reset: toc; }
.side-toc li { counter-increment: toc; }
.side-toc a {
    display: flex; gap: 8px; font-size: 13.5px; line-height: 1.4; color: var(--muted);
    transition: color 0.18s ease;
}
.side-toc a::before { content: counter(toc); flex: none; color: var(--muted-2); font-weight: 700; font-size: 12px; }
.side-toc a:hover { color: var(--text); }
@media (max-width: 1024px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .side-card { flex: 1; min-width: 240px; }
}
@media (max-width: 640px) { .article-sidebar { flex-direction: column; } }

/* ---- Typographie longue lecture : lisibilité des titres et listes ------ */
.art-body h2 { line-height: 1.3; }
.art-body h3 { line-height: 1.35; }
.art-body p { line-height: 1.75; }
.art-body li { line-height: 1.6; }
/* Filet de sécurité si un futur gabarit rend du contenu hors .art-body */
.article h2:not(.art-faq-title) { font-size: clamp(22px, 3vw, 28px); line-height: 1.3; margin: 40px 0 14px; color: var(--text); }
.article h3 { font-size: 19px; line-height: 1.35; margin: 26px 0 10px; color: var(--text); }
.article p { line-height: 1.75; margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 18px 20px; display: grid; gap: 7px; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }

/* ---- Support RTL (arabe) --------------------------------------------- */
/* Portée pragmatique : sens de lecture et alignement du texte corrects
   partout (l'essentiel pour la lisibilité) ; certaines icônes directionnelles
   (chevrons, flèches "suivant") ne sont pas retournées pixel-perfect — amélioration possible plus tard. */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select { text-align: right; }
[dir="rtl"] .qf-note, [dir="rtl"] .at-sub, [dir="rtl"] .art-body p,
[dir="rtl"] .article p, [dir="rtl"] .pillar-intro { text-align: right !important; }
[dir="rtl"] .crumbs svg, [dir="rtl"] .svc-more svg, [dir="rtl"] .card-link ~ svg,
[dir="rtl"] .nav-icon-link svg, [dir="rtl"] .btn svg { transform: scaleX(-1); }
[dir="rtl"] .side-toc a::before { order: 2; }
[dir="rtl"] .faq summary .pm { margin-left: 0; margin-right: auto; }

/* ---- Annuaire partenaires : filtres --------------------------------- */
.dir-filters { display: flex; flex-wrap: wrap; align-items: end; gap: 14px; margin-top: 16px; }
.dir-filters label { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; color: var(--muted); }
.dir-filters select {
    min-width: 160px; padding: 10px 34px 10px 12px; border-radius: 11px; border: 1px solid var(--line);
    background: var(--panel-2); color: var(--text); font: inherit; font-size: 13.5px; cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa1bd' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center; background-size: 14px;
}
.dir-filters-reset {
    display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
    color: var(--muted); border: 1px solid var(--line); font-size: 14px;
}
.dir-filters-reset:hover { color: var(--text); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
[dir="rtl"] .dir-filters select { background-position: left 10px center; padding: 10px 12px 10px 34px; }
