/* ============================================================
   MonMVP - monmvp.fr
   Thème : sombre premium · accent violet électrique / cyan
   ============================================================ */

:root {
  --bg: #0a0a11;
  --bg-2: #0e0e17;
  --surface: #13131f;
  --surface-2: #181828;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eeeef6;
  --muted: #a7a7bd;
  --faint: #7c7c94;
  --accent: #7c5cff;
  --accent-2: #38e0cf;
  --accent-soft: rgba(124, 92, 255, 0.14);
  --cta: #6a4df6;
  --cta-hover: #7d63ff;
  --success: #4ade80;
  --warning: #fbbf24;
  --grad: linear-gradient(100deg, #9d7bff 0%, #7c5cff 45%, #38e0cf 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 60px rgba(124, 92, 255, 0.25);
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1140px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

::selection { background: rgba(124, 92, 255, 0.4); }

img, svg { display: block; max-width: 100%; }

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.3rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.18rem; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.section { padding: 96px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.06rem; }

/* ---------- Skip link (accessibilité) ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--cta); color: #fff;
  padding: 12px 20px; border-radius: 0 0 12px 0;
  font-weight: 600; z-index: 200;
}
.skip-link:focus { left: 0; text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 10, 17, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(10, 10, 17, 0.88); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 68px; position: relative;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 9px;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: #0a0a11; font-weight: 800;
  box-shadow: 0 0 24px rgba(124, 92, 255, 0.45);
}
.logo em { font-style: normal; }
.logo .grad-text { font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { white-space: nowrap; }
.nav-links a { color: var(--muted); font-size: 0.94rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 8px 30px rgba(106, 77, 246, 0.35);
}
.btn-primary:hover { background: var(--cta-hover); box-shadow: 0 12px 40px rgba(106, 77, 246, 0.5); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-soft); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 17px 36px; font-size: 1.08rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 70% 8%, rgba(124, 92, 255, 0.17), transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 30%, rgba(56, 224, 207, 0.08), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--accent-2);
  background: rgba(56, 224, 207, 0.09);
  border: 1px solid rgba(56, 224, 207, 0.25);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 26px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-copy h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.14rem; color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--muted); }
.hero-trust svg { flex: none; }

/* Mockup navigateur + téléphone */
.mockup-zone { position: relative; }
.browser {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), var(--shadow-glow);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.browser-url {
  flex: 1; margin-left: 8px;
  background: var(--bg);
  border-radius: 7px;
  font-size: 0.74rem;
  color: var(--faint);
  padding: 5px 12px;
  display: flex; align-items: center; gap: 6px;
}
.browser-body { display: grid; grid-template-columns: 130px 1fr; min-height: 300px; }
.mock-side { background: var(--bg-2); border-right: 1px solid var(--border); padding: 16px 12px; display: flex; flex-direction: column; gap: 10px; }
.mock-side .mline { height: 9px; border-radius: 4px; background: rgba(255,255,255,0.09); }
.mock-side .mline.active { background: var(--accent-soft); border: 1px solid rgba(124,92,255,0.35); height: 22px; }
.mock-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.mock-card .num { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.mock-card .lbl { height: 7px; width: 70%; background: rgba(255,255,255,0.1); border-radius: 4px; margin-top: 8px; }
.mock-chart { flex: 1; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; align-items: flex-end; gap: 8px; min-height: 120px; }
.bar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, rgba(124,92,255,0.85), rgba(124,92,255,0.25)); animation: grow 1.4s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
.bar:nth-child(2n) { background: linear-gradient(180deg, rgba(56,224,207,0.8), rgba(56,224,207,0.2)); }
@keyframes grow { from { height: 8% !important; } }
.badge-72 {
  position: absolute; top: -20px; right: -14px;
  background: var(--grad);
  color: #0a0a11;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(124, 92, 255, 0.5);
  transform: rotate(4deg);
  text-align: center;
  line-height: 1.25;
  z-index: 2;
}
.badge-72 small { display: block; font-size: 0.68rem; font-weight: 600; }

/* ---------- Ticker ---------- */
.ticker {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding: 16px 0;
  margin-top: 40px;
}
.ticker-track { display: flex; gap: 48px; width: max-content; animation: scroll 30s linear infinite; }
@keyframes scroll { to { transform: translateX(-50%); } }
.ticker-track span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 48px;
  white-space: nowrap;
}
.ticker-track span::after { content: "✦"; color: var(--accent); }

/* ---------- Comparaison ---------- */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; }
.table-scroll table { margin: 0; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.96rem;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  font-family: var(--font-head);
  font-size: 0.92rem;
  background: var(--surface-2);
  color: var(--muted);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td { color: var(--muted); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.col-us { background: rgba(124, 92, 255, 0.08); color: var(--text) !important; font-weight: 600; }
thead .col-us { color: var(--accent-2) !important; font-weight: 700; font-size: 1rem; }
.x { color: #f87171; } .v { color: var(--success); }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(124, 92, 255, 0.4); box-shadow: 0 16px 50px rgba(0,0,0,0.4); }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(124, 92, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-2);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
  background: rgba(56, 224, 207, 0.08);
  border: 1px solid rgba(56, 224, 207, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }
.step .step-time {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--warning);
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.22);
  padding: 3px 11px;
  border-radius: 999px;
}

/* ---------- Pricing ---------- */
.pricing-wrap { display: grid; grid-template-columns: 1fr 0.85fr; gap: 24px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.price-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-amount { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; }
.price-amount .euro { font-family: var(--font-head); font-size: 4.6rem; font-weight: 800; letter-spacing: -0.04em; }
.price-amount .ttc { color: var(--muted); font-size: 1rem; }
.price-note { color: var(--faint); font-size: 0.9rem; margin-bottom: 28px; }
.check-list { list-style: none; display: grid; gap: 13px; margin-bottom: 34px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--text); }
.check-list li svg { flex: none; margin-top: 4px; }
.check-list li span em { font-style: normal; color: var(--muted); font-size: 0.88rem; display: block; }
.price-side { display: flex; flex-direction: column; gap: 20px; }
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  flex: 1;
}
.mini-card h3, .mini-card .mc-title { font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 1.02rem; }
.mini-card p, .mini-card li { color: var(--muted); font-size: 0.92rem; }
.mini-card ul { list-style: none; display: grid; gap: 8px; }
.mini-card ul li { display: flex; gap: 9px; }
.mini-card ul li::before { content: "→"; color: var(--accent); flex: none; }
.guarantee {
  border-color: rgba(74, 222, 128, 0.3);
  background: linear-gradient(160deg, rgba(74, 222, 128, 0.06), var(--surface) 55%);
}
.guarantee h3 { color: var(--success); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: rgba(124, 92, 255, 0.4); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 0.97rem; }
.faq .faq-body a { color: var(--accent-2); }

/* ---------- Formulaire ---------- */
.order-zone {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(124, 92, 255, 0.12), transparent 65%),
    var(--bg-2);
  border-block: 1px solid var(--border);
}
.order-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.order-form {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.field label small { color: var(--faint); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.18);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a7a7bd' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form-note { font-size: 0.8rem; color: var(--faint); margin-top: 14px; }
.order-points { list-style: none; display: grid; gap: 18px; margin-top: 30px; }
.order-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); }
.order-points li strong { color: var(--text); display: block; font-family: var(--font-head); font-size: 1rem; }
.order-points svg { flex: none; margin-top: 3px; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; padding: 110px 0; position: relative; overflow: hidden; }
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(124, 92, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.final-cta h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.final-cta p { color: var(--muted); font-size: 1.1rem; margin-bottom: 34px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  background: var(--bg-2);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid p { color: var(--faint); font-size: 0.92rem; margin-top: 14px; max-width: 320px; }
footer .footer-h { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 16px; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a { color: var(--muted); font-size: 0.94rem; }
footer ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--faint); font-size: 0.85rem;
}

/* ---------- Pages guides (articles) ---------- */
.article { max-width: 780px; margin: 0 auto; padding: 150px 24px 80px; }
.article .breadcrumb { font-size: 0.85rem; color: var(--faint); margin-bottom: 24px; }
.article .breadcrumb a { color: var(--muted); }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 20px; }
.article .lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 40px; }
.article h2 { margin: 52px 0 18px; font-size: 1.65rem; }
.article h3 { margin: 34px 0 12px; font-size: 1.2rem; }
.article p { color: #c9c9da; margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 18px 24px; color: #c9c9da; }
.article li { margin-bottom: 8px; }
.article table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.95rem; }
.article th, .article td { border: 1px solid var(--border); padding: 12px 14px; text-align: left; }
.article th { background: var(--surface-2); font-family: var(--font-head); }
.article td { color: var(--muted); }
.article .highlight-row td { background: rgba(124, 92, 255, 0.1); color: var(--text); font-weight: 600; }
.article-cta {
  background: var(--surface);
  border: 1px solid rgba(124, 92, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 34px;
  margin: 48px 0;
  text-align: center;
}
.article-cta h3 { font-size: 1.4rem; margin-bottom: 10px; }
.article-cta p { margin-bottom: 22px; }
.article .meta { font-size: 0.85rem; color: var(--faint); margin-bottom: 36px; }

/* ---------- Bloc "En bref" (extraction IA / GEO) ---------- */
.factbox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  margin: 0 auto;
  max-width: var(--max);
}
.factbox h2 { font-size: 1.25rem; margin-bottom: 18px; }
.factbox dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 28px; margin: 0; }
.factbox dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--faint); margin-bottom: 4px; }
.factbox dd { margin: 0; color: var(--text); font-size: 0.96rem; font-weight: 500; }
@media (max-width: 980px) { .factbox dl { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .factbox dl { grid-template-columns: 1fr; } }

/* ---------- Carrousel témoignages (section désactivée jusqu'aux vrais avis) ---------- */
.temoignages-scroll { overflow: hidden; display: grid; gap: 18px; }
.temoin-track { display: flex; gap: 18px; width: max-content; animation: scroll 55s linear infinite; }
.temoin-track.reverse { animation-direction: reverse; animation-duration: 65s; }
.temoin-track:hover { animation-play-state: paused; }
.temoin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  width: 340px;
  flex: none;
  white-space: normal;
}
.temoin-card.large { width: 460px; }
.temoin-card.small { width: 260px; }
.temoin-card p { font-size: 0.93rem; color: var(--text); line-height: 1.55; }
.temoin-card .temoin-nom { margin-top: 14px; color: var(--faint); font-size: 0.85rem; font-weight: 500; }
@media (max-width: 640px) {
  .temoin-card { width: 280px; }
  .temoin-card.large { width: 320px; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .mockup-zone { max-width: 560px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-wrap { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Les enfants de grilles et de flex ont le droit de rétrécir (anti-débordement) */
.pricing-wrap > *, .order-grid > *, .grid-2 > *, .grid-3 > *, .steps > *, .footer-grid > *, .hero-inner > *, .factbox dl > * { min-width: 0; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .hero { padding: 130px 0 56px; }
  .steps, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .browser-body { grid-template-columns: 90px 1fr; }
  .compare-table { min-width: 640px; }
  .table-scroll table { min-width: 560px; }
  .price-card { padding: 30px 24px; }
  .order-form { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .badge-72 { right: 4px; top: -16px; }
  .btn { white-space: normal; }
  .btn-lg { width: 100%; padding: 16px 20px; font-size: 1.02rem; }
  .price-amount .euro { font-size: 3.6rem; }
}

/* ── menu repliable ───────────────────────────────────────── */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { display: none; }
.nav-links li.nav-cta { display: none; }
@media (max-width: 1024px) {
  .nav-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; margin-left: auto; margin-right: 4px;
    border: 1px solid var(--border); border-radius: 11px;
    background: var(--surface); cursor: pointer; flex-shrink: 0;
  }
  .nav-burger span, .nav-burger span::before, .nav-burger span::after {
    display: block; width: 17px; height: 2px; border-radius: 2px;
    background: var(--text); transition: transform 0.22s, opacity 0.18s;
  }
  .nav-burger span { position: relative; }
  .nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; }
  .nav-burger span::before { top: -6px; }
  .nav-burger span::after { top: 6px; }
  .nav-toggle:checked ~ .nav-burger span { background: transparent; }
  .nav-toggle:checked ~ .nav-burger span::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span::after { transform: translateY(-6px) rotate(-45deg); }
  .nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--accent); outline-offset: 2px; }

  .nav-inner > nav {
    position: absolute; top: calc(100% + 1px); left: -22px; right: -22px;
    background: rgba(12, 12, 22, 0.98);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height 0.28s ease;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  }
  .nav-toggle:checked ~ nav { max-height: 460px; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; padding: 4px 22px 14px; }
  .nav-links li + li { border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
  .nav-inner > .btn { display: none; }
  .nav-links li.nav-cta { display: list-item; border-top: 0; padding-top: 14px; }
  .nav-links li.nav-cta a { background: var(--cta); color: #fff; text-align: center; border-radius: 12px; padding: 13px 18px; font-weight: 600; }
  .nav-links li.nav-cta a:hover { background: var(--cta-hover); color: #fff; }
}
@media (max-width: 460px) {
  .nav-inner > nav { left: -18px; right: -18px; }
}
