/* ==========================================================
   Balise (Zoom In Media) — Landing Page SEO Local
   Design system : thème clair par défaut, sections sombres
   ponctuelles pour le rythme. Signature "rayon" (balise/portée).
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* ---- Thème CLAIR (par défaut) ---- */
  --bg:#F4F6F9;
  --surface:#FFFFFF;
  --surface-2:#EBEFF5;
  --surface-3:#DFE5EE;
  --border:rgba(16,25,43,0.10);
  --border-strong:rgba(16,25,43,0.20);
  --text:#101928;
  --text-muted:#4E5C77;
  --text-faint:#8B97AC;
  --accent:#C9780A;
  --teal:#0E9C7E;
  --alert:#C94430;
  --teal-dim:rgba(14,156,126,0.10);
  --alert-dim:rgba(201,68,48,0.08);

  /* ---- Constantes de marque (ne changent pas entre les sections) ---- */
  --accent-bright:#FFB020;
  --accent-hover:#FFC456;
  --accent-ink:#241705;
  --teal-solid:#14B892;

  /* Navbar (suit le thème global, pas les sections) */
  --nav-bg:rgba(255,255,255,0.78);
  --nav-bg-scrolled:rgba(255,255,255,0.94);
  --nav-border:rgba(16,25,43,0.08);

  /* Typo */
  --font-display:'Instrument Serif', Georgia, serif;
  --font-body:'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --max-w: 1180px;
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:26px;
  --radius-pill:999px;

  --shadow-card: 0 20px 50px -24px rgba(16,25,43,0.18);
  --shadow-glow: 0 0 0 1px rgba(255,176,32,0.35), 0 14px 36px -12px rgba(255,176,32,0.30);
}

/* ---- Thème SOMBRE — appliqué localement aux sections .section--dark et .hero ---- */
.section--dark, .hero{
  --bg:#0B1220;
  --surface:#121B2E;
  --surface-2:#182541;
  --surface-3:#1D2C4D;
  --border:rgba(140,160,190,0.14);
  --border-strong:rgba(140,160,190,0.28);
  --text:#F3F5F8;
  --text-muted:#8CA0BE;
  --text-faint:#5A6C8A;
  --accent:#FFB020;
  --teal:#2DD4A7;
  --alert:#FF6B57;
  --teal-dim:rgba(45,212,167,0.14);
  --alert-dim:rgba(255,107,87,0.14);
  background:var(--bg);
  color:var(--text);
}

/* ---- Bouton clair/sombre global — bascule TOUTE la page ---- */
html[data-theme="dark"] body{
  --bg:#0B1220;
  --surface:#121B2E;
  --surface-2:#182541;
  --surface-3:#1D2C4D;
  --border:rgba(140,160,190,0.14);
  --border-strong:rgba(140,160,190,0.28);
  --text:#F3F5F8;
  --text-muted:#8CA0BE;
  --text-faint:#5A6C8A;
  --accent:#FFB020;
  --teal:#2DD4A7;
  --alert:#FF6B57;
  --teal-dim:rgba(45,212,167,0.14);
  --alert-dim:rgba(255,107,87,0.14);
  --nav-bg:rgba(11,18,32,0.78);
  --nav-bg-scrolled:rgba(11,18,32,0.94);
  --nav-border:rgba(140,160,190,0.16);
  background:var(--bg);
  color:var(--text);
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  transition:background .2s ease, color .2s ease;
}
body::before{
  content:'';
  position:fixed; inset:0;
  background:
    radial-gradient(55% 40% at 16% -6%, rgba(255,176,32,0.07), transparent 60%),
    radial-gradient(45% 35% at 100% 0%, rgba(14,156,126,0.05), transparent 60%);
  pointer-events:none;
  z-index:0;
}

img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:inherit; color:inherit; }

:focus-visible{ outline:2px solid var(--accent-bright); outline-offset:3px; border-radius:4px; }

h1,h2,h3,h4{ font-family:var(--font-display); font-weight:400; line-height:1.08; letter-spacing:-0.01em; }
.mono{ font-family:var(--font-mono); }

.section{ position:relative; padding:104px 0; z-index:1; background:var(--bg); color:var(--text); }
.section--tight{ padding:72px 0; }
.section__inner{ max-width:var(--max-w); margin:0 auto; padding:0 28px; }
.section__inner--narrow{ max-width:860px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--accent); margin-bottom:18px;
}
.eyebrow::before{ content:''; width:7px; height:7px; border-radius:50%; background:var(--accent-bright); box-shadow:0 0 0 4px rgba(255,176,32,0.18); }

.sec-title{ font-size:clamp(28px,4vw,42px); margin-bottom:16px; max-width:760px; color:var(--text); }
.sec-sub{ color:var(--text-muted); font-size:17px; max-width:640px; margin-bottom:44px; }
.accent{ color:var(--accent); font-style:italic; }
.teal-text{ color:var(--teal); }

/* ---------- Boutons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px; border-radius:var(--radius-pill);
  font-family:var(--font-body); font-weight:600; font-size:15px;
  border:1px solid transparent; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn:active{ transform:scale(0.97); }
.btn--primary{ background:var(--accent-bright); color:var(--accent-ink); box-shadow:var(--shadow-glow); }
.btn--primary:hover{ background:var(--accent-hover); transform:translateY(-2px); }
.btn--ghost{ background:transparent; border-color:var(--border-strong); color:var(--text); }
.btn--ghost:hover{ border-color:var(--accent-bright); color:var(--accent); }
.btn--block{ width:100%; }
.btn--sm{ padding:10px 18px; font-size:13.5px; }

/* ---------- Navbar (chrome fixe, suit le thème global) ---------- */
.navbar{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:16px 0;
  background:var(--nav-bg);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--nav-border);
  transition:background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.navbar.is-scrolled{ background:var(--nav-bg-scrolled); padding:12px 0; box-shadow:0 8px 30px -18px rgba(16,25,43,0.25); }
.navbar__inner{ max-width:var(--max-w); margin:0 auto; padding:0 28px; display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:17px; color:var(--text); }
.brand__mark{ width:30px; height:30px; border-radius:9px; background:var(--accent-bright); position:relative; flex-shrink:0; }
.brand__mark::after{ content:''; position:absolute; inset:9px; border-radius:50%; background:var(--accent-ink); }
.brand__tag{ font-family:var(--font-mono); font-size:11px; color:var(--text-faint); letter-spacing:0.06em; }
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{ font-size:14.5px; color:var(--text-muted); transition:color .18s ease; }
.nav-links a:hover{ color:var(--text); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:none; color:var(--text); font-size:18px; }
.theme-toggle{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--border-strong);
  background:var(--surface); color:var(--text); display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0; transition:border-color .18s ease, transform .18s ease;
}
.theme-toggle:hover{ border-color:var(--accent-bright); transform:rotate(-12deg); }
.theme-toggle .icon-dark{ display:none; }
html[data-theme="dark"] .theme-toggle .icon-light{ display:none; }
html[data-theme="dark"] .theme-toggle .icon-dark{ display:block; }

/* ---------- Hero (toujours sombre — voir override .hero plus haut) ---------- */
.hero{ position:relative; padding:172px 0 120px; overflow:hidden; }
.hero__inner{ max-width:var(--max-w); margin:0 auto; padding:0 28px; position:relative; z-index:2; }
.hero__content{ max-width:700px; }
.hero h1{ font-size:clamp(38px,5.6vw,64px); margin-bottom:26px; color:var(--text); }
.hero h1 em{ font-style:italic; color:var(--accent); }
.hero__sub{ font-size:18.5px; color:var(--text-muted); max-width:560px; margin-bottom:38px; }
.hero__actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-bottom:22px; }
.hero__note{ font-family:var(--font-mono); font-size:12.5px; color:var(--text-faint); }

.beacon{
  position:absolute; top:50%; right:-4%; transform:translateY(-50%);
  width:640px; height:640px; pointer-events:none; z-index:1;
}
.beacon__ring{
  position:absolute; top:50%; left:50%; border-radius:50%;
  border:1px solid rgba(255,176,32,0.28);
  transform:translate(-50%,-50%);
  animation:beacon-pulse 4.5s ease-out infinite;
}
.beacon__ring:nth-child(1){ width:120px; height:120px; animation-delay:0s; }
.beacon__ring:nth-child(2){ width:260px; height:260px; animation-delay:1.1s; }
.beacon__ring:nth-child(3){ width:420px; height:420px; animation-delay:2.2s; }
.beacon__ring:nth-child(4){ width:600px; height:600px; animation-delay:3.3s; }
.beacon__pin{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:16px; height:16px; border-radius:50%; background:var(--accent-bright);
  box-shadow:0 0 0 6px rgba(255,176,32,0.22), 0 0 40px 6px rgba(255,176,32,0.35);
}
@keyframes beacon-pulse{
  0%{ opacity:0.9; transform:translate(-50%,-50%) scale(0.72); }
  70%{ opacity:0; }
  100%{ opacity:0; transform:translate(-50%,-50%) scale(1); }
}
@media (max-width:900px){ .beacon{ opacity:0.35; right:-30%; } }

.hero__gbp-card{ position:absolute; top:52%; right:9%; transform:translateY(-50%); z-index:3; transition-delay:.3s; }
@media (max-width:1080px){ .hero__gbp-card{ display:none; } }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------- Stat blocks (section 2) ---------- */
.stats-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; margin-top:8px; }
.stat-card{ background:var(--surface); padding:34px 26px; text-align:left; }
.stat-card__num{ font-family:var(--font-mono); font-size:clamp(26px,3vw,34px); color:var(--accent); font-weight:600; margin-bottom:10px; display:block; }
.stat-card__label{ color:var(--text-muted); font-size:14.5px; }
@media (max-width:760px){ .stats-grid{ grid-template-columns:1fr; } }

/* ---------- Liste de signes (section 3, sombre) ---------- */
.signs{ display:grid; gap:14px; margin-top:36px; }
.sign{ display:flex; gap:18px; align-items:flex-start; padding:20px 22px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); }
.sign__num{ font-family:var(--font-mono); color:var(--alert); font-size:13px; flex-shrink:0; padding-top:3px; }
.sign strong{ color:var(--text); }
.sign p{ color:var(--text-muted); font-size:15px; margin-top:4px; }

/* ---------- Piliers (section 4) ---------- */
.pillars{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:16px; }
.pillar{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; display:flex; flex-direction:column; box-shadow:var(--shadow-card); }
.pillar--wide{ grid-column:1 / -1; }
.pillar__index{ font-family:var(--font-mono); font-size:12.5px; color:var(--accent); margin-bottom:14px; letter-spacing:0.08em; }
.pillar h3{ font-size:22px; margin-bottom:10px; font-family:var(--font-body); font-weight:600; color:var(--text); }
.pillar__lead{ color:var(--text-muted); font-size:14.5px; margin-bottom:18px; }
.pillar ul{ display:grid; gap:10px; margin-top:auto; }
.pillar li{ display:flex; gap:10px; font-size:14.5px; color:var(--text); align-items:flex-start; }
.pillar li::before{ content:'✓'; color:var(--teal); flex-shrink:0; font-weight:600; }
.pillar--accent{ border-color:rgba(255,176,32,0.35); background:linear-gradient(160deg, rgba(255,176,32,0.07), var(--surface) 55%); }
@media (max-width:820px){ .pillars{ grid-template-columns:1fr; } }

/* ---------- Étapes (section 5, sombre) ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:var(--border); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; margin-top:16px; }
.step{ background:var(--surface); padding:30px 24px; position:relative; }
.step__num{ font-family:var(--font-mono); font-size:32px; color:var(--accent); opacity:0.55; margin-bottom:16px; }
.step h4{ font-size:17px; font-family:var(--font-body); font-weight:600; margin-bottom:8px; color:var(--text); }
.step p{ font-size:14px; color:var(--text-muted); }
@media (max-width:900px){ .steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }

/* ---------- Simulateur (section 6) ---------- */
.simulator{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:40px; display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; box-shadow:var(--shadow-card); }
.sim-form{ display:grid; gap:20px; }
.sim-field label{ display:block; font-size:13px; color:var(--text-muted); margin-bottom:8px; font-family:var(--font-mono); letter-spacing:0.03em; }
.sim-field select, .sim-field input[type=text]{
  width:100%; padding:13px 16px; background:var(--surface-2); border:1px solid var(--border-strong);
  border-radius:var(--radius-sm); color:var(--text); font-size:14.5px;
}
.sim-choice{ display:flex; gap:8px; flex-wrap:wrap; }
.sim-choice button{
  padding:9px 15px; border-radius:var(--radius-pill); border:1px solid var(--border-strong);
  background:transparent; color:var(--text-muted); font-size:13.5px; transition:all .16s ease;
}
.sim-choice button.is-active{ background:var(--accent-bright); border-color:var(--accent-bright); color:var(--accent-ink); font-weight:600; }

.sim-result{ text-align:center; }
.gauge{ position:relative; width:180px; height:180px; margin:0 auto 22px; }
.gauge svg{ transform:rotate(-90deg); }
.gauge__track{ fill:none; stroke:var(--surface-2); stroke-width:10; }
.gauge__value{ fill:none; stroke:var(--accent-bright); stroke-width:10; stroke-linecap:round; transition:stroke-dashoffset .8s cubic-bezier(.4,0,.2,1); }
.gauge__label{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.gauge__num{ font-family:var(--font-mono); font-size:30px; color:var(--accent); font-weight:600; }
.gauge__cap{ font-size:11px; color:var(--text-faint); text-transform:uppercase; letter-spacing:0.08em; }
.sim-result__text{ color:var(--text-muted); font-size:14.5px; margin-bottom:22px; min-height:66px; }
@media (max-width:820px){ .simulator{ grid-template-columns:1fr; padding:28px; } }

/* ---------- Notre approche (section 7, sombre) ---------- */
.approach-list{ display:grid; gap:16px; margin:28px 0 40px; }
.approach-item{ display:flex; gap:16px; padding:20px 22px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); }
.approach-item__icon{ width:34px; height:34px; border-radius:50%; background:var(--teal-dim); color:var(--teal); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:15px; }
.commitment-box{ background:linear-gradient(160deg, rgba(255,176,32,0.10), var(--surface-2)); border:1px solid rgba(255,176,32,0.35); border-radius:var(--radius-lg); padding:34px; }
.commitment-box h3{ font-family:var(--font-body); font-weight:600; font-size:18px; color:var(--accent); margin-bottom:14px; }
.commitment-box p{ color:var(--text-muted); font-size:15px; margin-bottom:14px; }
.commitment-box p:last-child{ margin-bottom:0; color:var(--text); }

/* ---------- Radius profiles (section 8) ---------- */
.radius-profiles{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:36px; }
.radius-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow-card); }
.radius-card__viz{ width:100%; height:110px; margin-bottom:20px; display:flex; align-items:center; justify-content:center; }
.radius-card h4{ font-family:var(--font-body); font-weight:600; font-size:16px; margin-bottom:10px; color:var(--text); }
.radius-card p{ font-size:14px; color:var(--text-muted); }
.radius-card--mid{ border-color:rgba(255,176,32,0.35); }
@media (max-width:900px){ .radius-profiles{ grid-template-columns:1fr; } }

/* ---------- Secteurs (section 9, sombre) ---------- */
.sector-grid{ display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.sector-tag{ padding:11px 20px; border:1px solid var(--border-strong); border-radius:var(--radius-pill); font-size:14px; color:var(--text-muted); }

/* ---------- Tarifs (section 10) ---------- */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.price-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; display:flex; flex-direction:column; box-shadow:var(--shadow-card); }
.price-card--highlight{ border-color:var(--accent-bright); box-shadow:var(--shadow-glow); position:relative; }
.price-card--highlight::before{ content:'Le plus choisi'; position:absolute; top:-13px; left:28px; background:var(--accent-bright); color:var(--accent-ink); font-size:11.5px; font-weight:600; padding:5px 12px; border-radius:var(--radius-pill); }
.price-card h4{ font-family:var(--font-body); font-weight:600; font-size:18px; margin-bottom:6px; color:var(--text); }
.price-card__sub{ color:var(--text-muted); font-size:13.5px; margin-bottom:20px; }
.price-card__amount{ font-family:var(--font-mono); font-size:32px; color:var(--accent); margin-bottom:4px; }
.price-card__period{ color:var(--text-faint); font-size:12.5px; margin-bottom:24px; }
.price-card ul{ display:grid; gap:10px; margin-bottom:26px; flex:1; }
.price-card li{ font-size:13.5px; color:var(--text); display:flex; gap:8px; }
.price-card li::before{ content:'✓'; color:var(--teal); flex-shrink:0; }
.ads-note{ margin-top:24px; padding:18px 22px; background:var(--surface); border:1px dashed var(--border-strong); border-radius:var(--radius-md); font-size:13.5px; color:var(--text-muted); }
@media (max-width:900px){ .pricing-grid{ grid-template-columns:1fr; } }

/* ---------- FAQ (section 11, sombre) ---------- */
.faq-filters{ display:flex; gap:10px; margin-bottom:30px; flex-wrap:wrap; }
.faq-filter{ padding:9px 18px; border-radius:var(--radius-pill); border:1px solid var(--border-strong); background:transparent; color:var(--text-muted); font-size:13.5px; transition:all .16s ease; }
.faq-filter.is-active{ background:var(--accent-bright); border-color:var(--accent-bright); color:var(--accent-ink); font-weight:600; }
.faq-list{ display:grid; gap:12px; }
.faq-item{ border:1px solid var(--border); border-radius:var(--radius-md); background:var(--surface); overflow:hidden; }
.faq-q{ width:100%; text-align:left; padding:20px 22px; background:none; border:none; color:var(--text); font-size:15.5px; font-weight:500; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-q__plus{ font-family:var(--font-mono); color:var(--accent); font-size:18px; transition:transform .25s ease; flex-shrink:0; }
.faq-item.is-open .faq-q__plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a__inner{ padding:0 22px 20px; color:var(--text-muted); font-size:14.5px; line-height:1.65; }

/* ---------- Preuve sociale (section 12) ---------- */
.testimonial-slot{ border:1px dashed var(--border-strong); border-radius:var(--radius-lg); padding:46px; text-align:center; color:var(--text-faint); font-size:14.5px; }

/* ---------- CTA final + formulaire (section 13, sombre) ---------- */
.cta-final{ background:linear-gradient(160deg, var(--surface-2), var(--surface)); border-radius:var(--radius-lg); border:1px solid var(--border); overflow:hidden; display:grid; grid-template-columns:1fr 1fr; }
.cta-final__copy{ padding:56px; display:flex; flex-direction:column; justify-content:center; }
.cta-final__copy h2{ font-size:clamp(26px,3.4vw,36px); margin-bottom:16px; color:var(--text); }
.cta-final__copy p{ color:var(--text-muted); font-size:15.5px; }
.cta-final__form{ padding:56px; background:var(--surface); border-left:1px solid var(--border); }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:12.5px; font-family:var(--font-mono); color:var(--text-muted); margin-bottom:7px; letter-spacing:0.03em; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; background:var(--surface-2); border:1px solid var(--border-strong);
  border-radius:var(--radius-sm); color:var(--text); font-size:14.5px;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--accent-bright); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field-error{ color:var(--alert); font-size:12.5px; margin-top:6px; display:none; }
.field-error.is-visible{ display:block; }
.honeypot{ position:absolute; left:-9999px; opacity:0; }
.form-note{ font-family:var(--font-mono); font-size:11.5px; color:var(--text-faint); margin-top:14px; text-align:center; }
.form-success{ display:none; text-align:center; padding:30px 0; }
.form-success.is-visible{ display:block; }
.form-success__icon{ width:52px; height:52px; border-radius:50%; background:var(--teal-dim); color:var(--teal); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:24px; }
@media (max-width:900px){ .cta-final{ grid-template-columns:1fr; } .cta-final__form{ border-left:none; border-top:1px solid var(--border); } .cta-final__copy, .cta-final__form{ padding:36px 26px; } }

/* ---------- À propos (section 14) ---------- */
.about-box{ display:flex; gap:28px; align-items:flex-start; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow-card); }
.about-box__mark{ width:52px; height:52px; border-radius:14px; background:var(--accent-bright); flex-shrink:0; }

/* ---------- Footer ---------- */
.footer{ padding:44px 0; border-top:1px solid var(--border); background:var(--bg); }
.footer__inner{ max-width:var(--max-w); margin:0 auto; padding:0 28px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.footer p{ color:var(--text-faint); font-size:13px; }

/* ---------- WhatsApp flottant (constante, indépendante du thème) ---------- */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:90;
  width:56px; height:56px; border-radius:50%; background:var(--teal-solid);
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:0 10px 30px -6px rgba(20,184,146,0.5);
  transition:transform .18s ease;
}
.wa-float:hover{ transform:scale(1.08); }

/* ---------- Bande ambre (rupture visuelle dark/white) ---------- */
.amber-band{
  background:var(--accent-bright); color:var(--accent-ink);
  padding:46px 0;
}
.amber-band__inner{
  max-width:var(--max-w); margin:0 auto; padding:0 28px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.amber-band h3{ font-family:var(--font-display); font-size:clamp(22px,2.6vw,30px); max-width:640px; color:var(--accent-ink); }
.amber-band .btn--dark{ background:var(--accent-ink); color:#FFE7B8; }
.amber-band .btn--dark:hover{ background:#3A2408; transform:translateY(-2px); }

/* ---------- Mockup fiche Google Business (hero + preuve) ---------- */
.gbp-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:22px; width:280px; box-shadow:0 30px 60px -20px rgba(0,0,0,0.45);
}
.gbp-card__top{ display:flex; gap:12px; margin-bottom:14px; }
.gbp-card__avatar{ width:44px; height:44px; border-radius:12px; background:linear-gradient(135deg,var(--accent-bright),#FF8A3D); flex-shrink:0; }
.gbp-card__name{ font-family:var(--font-body); font-weight:600; font-size:14.5px; color:var(--text); margin-bottom:3px; }
.gbp-card__stars{ font-size:12px; color:var(--accent-bright); letter-spacing:1px; }
.gbp-card__stars span{ color:var(--text-faint); font-family:var(--font-mono); letter-spacing:0; margin-left:4px; }
.gbp-card__cat{ font-size:11.5px; color:var(--text-faint); margin-top:2px; }
.gbp-card__badges{ display:flex; gap:8px; margin-bottom:14px; }
.gbp-badge{ font-size:11px; font-family:var(--font-mono); padding:4px 10px; border-radius:var(--radius-pill); background:var(--teal-dim); color:var(--teal); }
.gbp-badge--ghost{ background:var(--surface-2); color:var(--text-muted); }
.gbp-card__actions{ display:flex; justify-content:space-between; border-top:1px solid var(--border); padding-top:12px; font-size:11px; color:var(--text-muted); font-family:var(--font-mono); }
.gbp-card--floating{ position:absolute; }

/* ---------- Mini local pack (section constat) ---------- */
.localpack{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:8px; margin-top:20px; max-width:420px; box-shadow:var(--shadow-card); }
.localpack__row{ display:flex; align-items:center; gap:12px; padding:13px 16px; border-radius:var(--radius-md); font-size:13.5px; color:var(--text-muted); }
.localpack__rank{ font-family:var(--font-mono); font-size:12px; width:20px; color:var(--text-faint); }
.localpack__name{ flex:1; color:var(--text); font-weight:500; }
.localpack__meta{ font-size:11.5px; color:var(--text-faint); font-family:var(--font-mono); }
.localpack__row.is-you{ background:var(--teal-dim); }
.localpack__row.is-you .localpack__rank{ color:var(--teal); }
.localpack__row.is-you .localpack__name::after{ content:'— vous'; color:var(--teal); font-size:11px; margin-left:6px; }

/* ---------- Icônes écosystème Google (section services) ---------- */
.google-icons{ display:flex; gap:16px; flex-wrap:wrap; margin:32px 0 8px; }
.google-icon{ display:flex; align-items:center; gap:12px; padding:14px 20px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-pill); }
.google-icon__dots{ display:grid; grid-template-columns:1fr 1fr; gap:3px; width:14px; height:14px; flex-shrink:0; }
.google-icon__dots span{ border-radius:50%; }
.google-icon__dots span:nth-child(1){ background:var(--accent-bright); }
.google-icon__dots span:nth-child(2){ background:var(--teal); }
.google-icon__dots span:nth-child(3){ background:var(--alert); }
.google-icon__dots span:nth-child(4){ background:var(--text-faint); }
.google-icon span.label{ font-size:13.5px; color:var(--text); font-weight:500; }

/* ---------- Graphique de progression animé (trajectoire type) ---------- */
.climb{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:40px 36px 28px; box-shadow:var(--shadow-card); margin-top:16px; }
.climb__chart{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; height:180px; margin-bottom:10px; }
.climb__col{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; }
.climb__pos{ font-family:var(--font-mono); font-size:12px; color:var(--text-faint); margin-bottom:8px; opacity:0; transition:opacity .4s ease; }
.climb__bar{ width:100%; max-width:38px; border-radius:8px 8px 3px 3px; background:var(--surface-3); height:6%; transition:height 1s cubic-bezier(.22,1,.36,1); }
.climb__col:last-child .climb__bar{ background:var(--accent-bright); }
.climb.is-visible .climb__pos{ opacity:1; }
.climb.is-visible .climb__col:nth-child(1) .climb__bar{ height:10%; }
.climb.is-visible .climb__col:nth-child(2) .climb__bar{ height:22%; }
.climb.is-visible .climb__col:nth-child(3) .climb__bar{ height:38%; }
.climb.is-visible .climb__col:nth-child(4) .climb__bar{ height:56%; }
.climb.is-visible .climb__col:nth-child(5) .climb__bar{ height:78%; }
.climb.is-visible .climb__col:nth-child(6) .climb__bar{ height:100%; }
.climb__month{ font-family:var(--font-mono); font-size:11px; color:var(--text-faint); margin-top:10px; }
.climb__caption{ text-align:center; font-size:12.5px; color:var(--text-faint); border-top:1px solid var(--border); padding-top:16px; margin-top:6px; }

/* ---------- Calculateur interactif (tarifs) ---------- */
.calc-widget{ background:var(--surface-2); border:1px solid var(--border-strong); border-radius:var(--radius-lg); padding:32px; margin-top:40px; }
.calc-widget__title{ font-family:var(--font-body); font-weight:600; font-size:16px; color:var(--text); margin-bottom:18px; }
.calc-plans{ display:flex; gap:10px; margin-bottom:20px; flex-wrap:wrap; }
.calc-plan{ flex:1; min-width:140px; padding:14px 16px; border-radius:var(--radius-md); border:1px solid var(--border-strong); background:var(--surface); color:var(--text-muted); text-align:left; font-size:13.5px; }
.calc-plan strong{ display:block; color:var(--text); font-size:14.5px; margin-bottom:2px; }
.calc-plan.is-active{ border-color:var(--accent-bright); background:linear-gradient(160deg, rgba(255,176,32,0.12), var(--surface)); color:var(--text); }
.calc-row{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; border-bottom:1px solid var(--border); }
.calc-row:last-of-type{ border-bottom:none; }
.calc-row label{ font-size:14.5px; display:flex; align-items:center; gap:12px; color:var(--text); }
.calc-total{ display:flex; align-items:baseline; justify-content:space-between; margin-top:16px; padding-top:20px; border-top:1px solid var(--border-strong); }
.calc-total__num{ font-family:var(--font-mono); font-size:28px; color:var(--accent); }
.switch{ position:relative; width:42px; height:24px; background:var(--surface-3); border-radius:var(--radius-pill); border:1px solid var(--border-strong); flex-shrink:0; }
.switch::after{ content:''; position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%; background:var(--text-muted); transition:transform .18s ease, background .18s ease; }
.switch.is-on{ background:rgba(255,176,32,0.22); border-color:var(--accent-bright); }
.switch.is-on::after{ transform:translateX(18px); background:var(--accent-bright); }

/* ---------- Responsive nouveaux composants ---------- */
@media (max-width:640px){
  .gbp-card{ width:230px; padding:16px; }
  .climb__chart{ height:130px; gap:8px; }
  .amber-band__inner{ flex-direction:column; align-items:flex-start; }
}

/* ---------- Responsive nav ---------- */
@media (max-width:860px){
  .nav-links{ display:none; }
  .nav-links.is-open{
    display:flex; flex-direction:column; gap:0;
    position:absolute; top:100%; left:0; right:0;
    background:var(--nav-bg-scrolled); backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border); padding:8px 28px 20px;
  }
  .nav-links.is-open a{ padding:12px 0; border-bottom:1px solid var(--border); color:var(--text); }
  .nav-toggle{ display:flex; align-items:center; justify-content:center; }
}

/* ---------- Utilitaires ---------- */
.hidden{ display:none !important; }
.text-center{ text-align:center; }
