/* ============================================================
   Helpify France — Landing page
   Brand system derived from the Instagram carousel
   ============================================================ */

:root {
  /* Core palette (sampled from brand assets) */
  --ink: #18222F;
  --ink-2: #1E2A3A;          /* raised dark panel */
  --ink-3: #233040;          /* hairline on dark */
  --blue: #2F6FED;           /* primary royal blue */
  --blue-bright: #4B86F5;    /* lighter accent / links */
  --blue-deep: #1E5AD6;      /* pressed */
  --paper: #FFFFFF;
  --paper-2: #F4F6F9;        /* light cards / alt sections */
  --paper-3: #ECEFF4;
  --line: #E4E8EE;           /* hairline on light */

  /* Text */
  --ink-text: #18222F;
  --ink-muted: #5C6776;      /* muted on light */
  --ink-faint: #97A1AF;      /* page numbers / faint */
  --on-dark: #F3F6FB;        /* primary on dark */
  --on-dark-muted: #97A3B5;  /* muted on dark */

  /* Type */
  --font: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Hanken Grotesk", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-card: 0 1px 2px rgba(24,34,47,.04), 0 12px 32px -18px rgba(24,34,47,.18);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--blue); color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ============================================================
   Logo lockup — helpify • | france
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  white-space: nowrap;
}
.logo-word {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.logo-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  margin-left: -3px;
  margin-bottom: -2px;
  align-self: flex-end;
}
.logo-div {
  width: 1px; height: 19px;
  background: currentColor;
  opacity: .28;
}
.logo-sub {
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .42em;
  padding-left: 3px;
  opacity: .68;
  text-transform: lowercase;
}
.logo.on-dark .logo-word { color: var(--on-dark); }
.logo.on-dark .logo-sub { color: var(--on-dark-muted); }

/* ============================================================
   Header / nav
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(24,34,47,0);
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(20,29,40,.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: rgba(255,255,255,.08);
}
.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--on-dark); }
.nav-links a.active { color: var(--on-dark); }
.nav-links a.active::after { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: .96rem;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease), border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255,255,255,.18);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.04); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #0F1722; transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.6px;
  background: var(--on-dark);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.6px;
  background: var(--on-dark); transition: transform .25s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section {
  position: relative;
  padding-block: clamp(72px, 11vw, 132px);
  scroll-margin-top: 74px;
}
.section.dark { background: var(--ink); color: var(--on-dark); }
.section.paper { background: var(--paper); }
.section.alt { background: var(--paper-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--blue);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 13px; height: 13px;
  background: var(--blue);
  flex: none;
}
.section.dark .eyebrow { color: var(--blue-bright); }

.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}
.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--ink-muted);
  max-width: 42ch;
  margin: 22px 0 0;
  text-wrap: pretty;
}
.section.dark .lede { color: var(--on-dark-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  padding-top: clamp(120px, 18vh, 180px);
  padding-bottom: clamp(80px, 12vw, 140px);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -22%; right: -8%;
  width: 60vw; max-width: 820px; aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(47,111,237,.30), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--on-dark-muted);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  margin-bottom: 34px;
  white-space: nowrap;
  max-width: 100%;
}
.hero-tagline .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 0 rgba(47,111,237,.6);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47,111,237,.55); }
  70% { box-shadow: 0 0 0 9px rgba(47,111,237,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,111,237,0); }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.6vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -.035em;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--blue-bright); }
.hero-sub {
  font-size: clamp(1.1rem, 1.9vw, 1.42rem);
  color: var(--on-dark-muted);
  max-width: 48ch;
  margin: 30px 0 0;
  line-height: 1.5;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.hero-tags .label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  opacity: .7;
}
.hero-tags .pills { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-tags .pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 1.02rem; color: var(--on-dark);
}
.hero-tags .pill::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-bright);
}

/* ============================================================
   PROBLÈME — quote cards
   ============================================================ */
.section-head { max-width: 64ch; }
.quote-grid {
  margin-top: clamp(46px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.qcard {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  padding: 38px 38px 38px 36px;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.qcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: #fff;
}
.qcard .mark {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: .5;
  color: var(--blue);
  opacity: .22;
  position: absolute;
  top: 28px; left: 34px;
}
.qcard p {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.42;
  color: var(--ink-text);
  text-wrap: pretty;
}

/* ============================================================
   COÛT — big stat + calculator
   ============================================================ */
.cost-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.stat-block { }
.bignum {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .82;
  color: var(--blue-bright);
}
.bignum .approx { font-size: clamp(4rem, 11vw, 8.5rem); opacity: .85; }
.bignum .val { font-size: clamp(6rem, 17vw, 13rem); }
.bignum .unit { font-size: clamp(6rem, 17vw, 13rem); }
.stat-desc {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  margin: 30px 0 0;
  max-width: 30ch;
  color: var(--on-dark);
  text-wrap: pretty;
}
.stat-desc em { color: var(--on-dark-muted); font-style: normal; }

/* Calculator */
.calc {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 8px;
  padding: clamp(26px, 3vw, 38px);
}
.calc-title {
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  color: var(--blue-bright);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 26px;
}
.calc-title::before { content:""; width:12px;height:12px;background:var(--blue);}
.field { margin-bottom: 24px; }
.field-top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.field-top label { font-size: .98rem; font-weight: 500; color: var(--on-dark); }
.field-top .fv {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem;
  color: var(--on-dark);
}
.field-top .fv span { color: var(--on-dark-muted); font-size: .9rem; font-weight: 500; margin-left: 3px;}
input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px; border-radius: 100px;
  background: var(--ink-3);
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
  transition: transform .15s var(--ease);
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); border: 3px solid #fff; cursor: pointer;
}
.calc-result {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-3);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.calc-result .rl { font-size: .96rem; color: var(--on-dark-muted); max-width: 22ch; }
.calc-result .rv {
  font-family: var(--display); font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--blue-bright);
  line-height: 1;
}
.calc-result .rv small { font-size: 1.1rem; color: var(--on-dark-muted); font-weight: 600; }

.warn-box {
  margin-top: clamp(46px, 6vw, 72px);
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-left: 3px solid var(--blue);
  padding: 30px 34px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.5;
}
.warn-box b { color: var(--on-dark); font-weight: 700; }
.warn-box span { color: var(--on-dark-muted); }

/* ============================================================
   MÉTHODE — numbered steps
   ============================================================ */
.steps {
  margin-top: clamp(46px, 6vw, 76px);
  display: grid;
  gap: 22px;
}
.step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-ic {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), background .3s;
}
.step:hover .step-ic { transform: translateY(-4px); background: var(--blue); }
.step-ic svg { width: 34px; height: 34px; }
.step-body { max-width: 60ch; }
.step-kicker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.step-num {
  font-family: var(--display); font-weight: 800;
  font-size: 1.1rem; color: var(--blue);
}
.step-h {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -.02em;
  margin: 0;
}
.step-body p {
  margin: 0;
  font-size: 1.16rem;
  color: var(--ink-muted);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ============================================================
   PÉRIMÈTRE — domain grid
   ============================================================ */
.domain-grid {
  margin-top: clamp(46px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.domain {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 26px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.domain:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #d4dae3;
}
.domain-ic {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: none;
  transition: transform .3s var(--ease);
}
.domain:hover .domain-ic { transform: scale(1.06) rotate(-3deg); }
.domain-ic svg { width: 26px; height: 26px; }
.domain h3 {
  margin: 0; font-size: 1.16rem; font-weight: 600;
  letter-spacing: -.01em;
}

/* ============================================================
   TRANSFORMATION — avant / après
   ============================================================ */
.ba {
  margin-top: clamp(46px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 84px 1fr;
  gap: 0;
  align-items: stretch;
}
.ba-card {
  padding: clamp(34px, 4vw, 50px);
  min-height: 320px;
  display: flex; flex-direction: column;
}
.ba-before { background: var(--paper-2); border: 1px solid var(--line); }
.ba-after { background: var(--ink); color: var(--on-dark); }
.ba-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -.02em;
  margin: 0 0 auto;
}
.ba-before .ba-label { color: var(--ink-faint); }
.ba-after .ba-label { color: var(--blue-bright); }
.ba-card p {
  margin: 36px 0 0;
  font-size: 1.24rem;
  line-height: 1.5;
  text-wrap: pretty;
}
.ba-before p { color: var(--ink-text); }
.ba-after p { color: var(--on-dark); }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
}
.ba-arrow div {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.ba-arrow svg { width: 24px; height: 24px; }

/* ============================================================
   POURQUOI — manifesto + points
   ============================================================ */
.why-head {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.0;
  letter-spacing: -.035em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.why-head .accent { color: var(--blue-bright); }
.why-list {
  margin-top: clamp(48px, 7vw, 84px);
  display: grid;
  gap: 0;
}
.why-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--ink-3);
}
.why-item:last-child { border-bottom: 1px solid var(--ink-3); }
.why-num {
  font-family: var(--display); font-weight: 800;
  font-size: 1rem; color: var(--blue-bright);
  padding-top: 6px;
}
.why-item p {
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--on-dark);
  text-wrap: pretty;
}
.why-item p b { color: var(--blue-bright); font-weight: 600; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact { background: var(--ink); color: var(--on-dark); }
.contact .wrap { position: relative; z-index: 2; }
.contact-glow {
  position: absolute; left: 50%; bottom: -30%;
  transform: translateX(-50%);
  width: 80vw; max-width: 900px; aspect-ratio: 2/1;
  background: radial-gradient(ellipse at center, rgba(47,111,237,.22), transparent 65%);
  pointer-events: none;
}
.contact h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.contact-sub {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--on-dark-muted);
  margin: 26px 0 0;
}
.contact-sub a { color: var(--blue-bright); text-decoration: none; }
.contact-sub a:hover { text-decoration: underline; }
.contact-actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px; }
.contact-rows {
  margin-top: clamp(56px, 8vw, 96px);
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-3);
}
.contact-rows .footer-social {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%); margin-top: 16px;
}
@media (max-width: 700px) {
  .contact-rows .footer-social { position: static; transform: none; margin-top: 0; }
}
.contact-row {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 1.18rem; font-weight: 500; color: var(--on-dark);
  transition: color .2s;
}
.contact-row:hover { color: var(--blue-bright); }
.contact-row .cic {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink-2); border: 1px solid var(--ink-3);
  color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.contact-row .cic svg { width: 20px; height: 20px; }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--on-dark-muted);
  border-top: 1px solid var(--ink-3);
  padding-block: 40px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer small { font-size: .9rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--ink-3); background: var(--ink-2);
  color: var(--on-dark-muted);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s, background .2s, transform .15s;
}
.footer-social a:hover { color: #fff; border-color: var(--blue); background: var(--blue); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links, .header .btn { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 900px) {
  body { font-size: 17px; }
  .cost-top { grid-template-columns: 1fr; gap: 48px; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .quote-grid { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .ba-arrow { padding: 8px 0; }
  .ba-arrow div { transform: rotate(90deg); }
  .step { grid-template-columns: 1fr; gap: 18px; }
  .hero-tags { flex-direction: column; align-items: flex-start; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(20,29,40,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -.02em;
  color: var(--on-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-3);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }
.mobile-close {
  position: absolute; top: 22px; right: var(--pad);
  width: 44px; height: 44px; background: transparent; border: none;
  color: var(--on-dark); font-size: 2rem; line-height: 1;
}

/* ============================================================
   CONTACT FORM (Style 1 — Essentiel)
   ============================================================ */
.contact-layout {
  margin-top: clamp(44px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-aside .clist { margin-top: 30px; display: grid; gap: 0; }
.contact-aside .citem {
  display: flex; align-items: center; gap: 13px;
  font-size: 1.05rem; font-weight: 500; color: var(--on-dark);
  padding: 15px 0; border-top: 1px solid var(--ink-3);
}
.contact-aside .citem:first-child { border-top: none; }
.contact-aside .citem .d { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright); flex: none; }

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(28px, 3.4vw, 42px);
  box-shadow: 0 40px 90px -44px rgba(0,0,0,.6);
}
.form-card .fc-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: -.025em;
  color: var(--ink-text); margin: 0 0 6px;
}
.form-card .fc-sub { color: var(--ink-muted); font-size: 1rem; margin: 0 0 26px; }

.hf-form { display: grid; gap: 17px; }
.hf-field { display: grid; gap: 7px; }
.hf-field label { font-size: .88rem; font-weight: 600; color: var(--ink-text); letter-spacing: -.01em; }
.hf-field label .req { color: var(--blue); }
.hf-input, .hf-textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink-text);
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 14px 16px; width: 100%;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.hf-input::placeholder, .hf-textarea::placeholder { color: var(--ink-faint); }
.hf-input:focus, .hf-textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(47,111,237,.1);
}
.hf-textarea { resize: vertical; min-height: 118px; line-height: 1.5; }
.hf-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 1.04rem;
  background: var(--blue); color: #fff; border: none; border-radius: 10px;
  padding: 16px 24px; cursor: pointer; transition: background .2s, transform .15s, opacity .2s;
}
.hf-submit:hover { background: var(--blue-deep); transform: translateY(-1px); }
.hf-submit:disabled { opacity: .65; cursor: progress; transform: none; }
.hf-submit svg { width: 17px; height: 17px; transition: transform .25s; }
.hf-submit:hover:not(:disabled) svg { transform: translateX(3px); }
.hf-fine { font-size: .82rem; color: var(--ink-muted); margin: 0; }
.hf-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.hf-error {
  display: none; font-size: .92rem; color: #c0392b; font-weight: 500;
  background: #fdecea; border: 1px solid #f5c6c0; border-radius: 8px; padding: 11px 14px;
}
.hf-error.show { display: block; }

.hf-status { display: none; }
.hf-form.sent .hf-body { display: none; }
.hf-form.sent .hf-status { display: block; }
.hf-status-card { text-align: center; padding: 18px 8px; }
.hf-status-card .ok {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(40,199,111,.12); color: #1c9d5a;
  display: flex; align-items: center; justify-content: center;
}
.hf-status-card .ok svg { width: 29px; height: 29px; }
.hf-status-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.45rem; margin: 0 0 8px; letter-spacing: -.02em; color: var(--ink-text); }
.hf-status-card p { color: var(--ink-muted); margin: 0; font-size: 1.02rem; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO — two column layout + chat mockup (inspired by site)
   ============================================================ */
.hero-layout {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-copy .hero-sub { max-width: 40ch; }
.hero-copy h1 { max-width: 14ch; font-size: clamp(2.4rem, 5vw, 4.3rem); }

/* Chat mockup */
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute; inset: 14px -14px -18px 26px;
  background: rgba(47,111,237,.16);
  border-radius: 18px;
  filter: blur(2px);
}
.chatcard {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 90px -36px rgba(0,0,0,.7);
  overflow: hidden;
}
.chat-head {
  display: flex; align-items: center; gap: 13px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}
.chat-ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 1rem;
  position: relative; flex: none; overflow: visible;
}
.chat-ava img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block;
}
.chat-ava .dot {
  position: absolute; right: -1px; bottom: -1px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #28c76f; border: 2.5px solid #fff;
}
.chat-head .ct { min-width: 0; flex: 1; }
.chat-head .ct strong { display: block; font-size: .98rem; color: var(--ink-text); letter-spacing: -.01em; white-space: nowrap; }
.chat-head .ct span { font-size: .8rem; color: var(--ink-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.chat-head .live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 600; color: var(--ink-muted);
  flex: none; align-self: flex-start; padding-top: 3px;
}
.chat-head .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #28c76f;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 15px 20px 4px; }
.chat-chip {
  font-size: .76rem; font-weight: 600; color: var(--blue);
  background: rgba(47,111,237,.08);
  border: 1px solid rgba(47,111,237,.16);
  padding: 6px 12px; border-radius: 100px;
}
.chat-body { padding: 10px 20px 16px; display: flex; flex-direction: column; gap: 11px; }
.bubble {
  max-width: 82%; padding: 12px 15px; border-radius: 15px;
  font-size: .95rem; line-height: 1.42;
}
.bubble.in {
  align-self: flex-start; background: var(--paper-2);
  color: var(--ink-text); border-bottom-left-radius: 5px;
}
.bubble.out {
  align-self: flex-end; background: var(--blue);
  color: #fff; border-bottom-right-radius: 5px;
}
.chat-badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; color: var(--ink-text);
  background: #fff; border: 1px solid var(--line);
  padding: 8px 13px; border-radius: 100px;
  box-shadow: var(--shadow-card); margin-top: 2px;
}
.chat-badge b { color: var(--blue); font-weight: 800; }
.chat-badge .clock { width: 15px; height: 15px; color: var(--blue); }
.chat-input {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 14px 13px 18px;
  border-top: 1px solid var(--line);
}
.chat-input .ph { flex: 1; color: var(--ink-faint); font-size: .92rem; }
.chat-input .send {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.chat-input .send svg { width: 17px; height: 17px; }
.typing { display: inline-flex; gap: 4px; padding: 4px 2px; }
.typing i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint);
  animation: typing 1.3s infinite;
}
.typing i:nth-child(2){ animation-delay:.18s } .typing i:nth-child(3){ animation-delay:.36s }
@keyframes typing { 0%,60%,100%{ transform: translateY(0); opacity:.4 } 30%{ transform: translateY(-4px); opacity:1 } }

/* Hero mini-feature cards */
.hero-features {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
}
.hfeat { display: flex; gap: 15px; align-items: flex-start; }
.hfeat-ic {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hfeat-ic svg { width: 22px; height: 22px; }
.hfeat h4 { margin: 2px 0 5px; font-size: 1.04rem; font-weight: 700; color: var(--on-dark); letter-spacing: -.01em; }
.hfeat p { margin: 0; font-size: .92rem; color: var(--on-dark-muted); line-height: 1.45; }

/* ============================================================
   STAT BAND — bold blue strip with count-up (site-inspired)
   ============================================================ */
.statband {
  background: var(--blue);
  color: #fff;
  padding-block: clamp(44px, 6vw, 70px);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat { position: relative; padding-left: 22px; }
.stat::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 2px; background: rgba(255,255,255,.28);
}
.stat-n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  line-height: 1; letter-spacing: -.035em;
}
.stat-l { margin-top: 10px; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.85); text-wrap: balance; }

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .hero-features { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 640px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
}

/* ============================================================
   PÉRIMÈTRE — vue liste + détail (master-detail)
   ============================================================ */
.perimetre-md { margin-top: clamp(40px, 5vw, 64px); }
.md {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ink-3);
  background: var(--ink);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.5);
}
.md-list { background: var(--ink-2); padding: 14px; display: grid; gap: 6px; align-content: start; }
.md-tab {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: none; border: none; border-radius: 11px;
  padding: 15px 16px; text-align: left; color: var(--on-dark-muted);
  cursor: pointer; transition: background .2s, color .2s;
}
.md-tab:hover { background: rgba(255,255,255,.04); color: var(--on-dark); }
.md-tab.active { background: var(--blue); color: #fff; }
.md-tab .mdi {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center; flex: none; color: inherit;
}
.md-tab.active .mdi { background: rgba(255,255,255,.18); }
.md-tab .mdi svg { width: 21px; height: 21px; }
.md-tab strong { font-family: var(--display); font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em; }
.md-detail { background: var(--ink); padding: clamp(28px, 3vw, 44px); min-height: 430px; }
.md-detail .dh { margin-bottom: 8px; }
.md-detail .dh .badge {
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-bright); white-space: nowrap;
}
.md-detail h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.025em;
  margin: 0 0 26px; color: var(--on-dark);
}
.md-panel { display: none; }
.md-panel.active { display: block; animation: mdfade .35s var(--ease); }
@keyframes mdfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.auto-list { display: grid; gap: 2px; }
.auto-row { display: flex; align-items: flex-start; gap: 13px; padding: 11px 2px; font-size: 1.04rem; line-height: 1.4; color: var(--on-dark); }
.auto-row .chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(47,111,237,.16); color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px;
}
.auto-row .chk svg { width: 13px; height: 13px; }

@media (max-width: 720px) {
  .md { grid-template-columns: 1fr; }
  .md-detail { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .md-panel.active { animation: none; }
}

/* ============================================================
   QUI SOMMES-NOUS
   ============================================================ */
.about-layout {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.about-head .about-values { margin-top: 30px; }
.about-text .about-lead { margin-top: 0; }
.about-text .about-lead.muted { margin-top: 20px; }
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--paper-2) 0 14px, var(--paper-3) 14px 28px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.about-photo .ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .82rem; letter-spacing: .02em;
  color: var(--ink-muted);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 100px;
}
.about-float {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: var(--ink); color: var(--on-dark);
  border-radius: 12px; padding: 16px 18px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.about-float .af-d { width: 9px; height: 9px; border-radius: 50%; background: var(--blue-bright); flex: none; }
.about-float strong { font-family: var(--display); font-weight: 700; font-size: 1.02rem; }
.about-body h2 { margin-top: 6px; }
.about-lead {
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.55; color: var(--ink-text);
  margin: 24px 0 0; max-width: 54ch; text-wrap: pretty;
}
.about-lead.muted { color: var(--ink-muted); font-size: 1.08rem; }
.about-sign {
  margin-top: 30px; display: flex; align-items: center; gap: 14px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.about-sign .av {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; flex: none;
}
.about-sign .who strong { display: block; font-size: 1.02rem; letter-spacing: -.01em; }
.about-sign .who span { font-size: .92rem; color: var(--ink-muted); }
.about-values {
  margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px;
}
.about-values .v {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .96rem; font-weight: 600; color: var(--ink-text);
  background: var(--paper); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 100px;
}
.about-values .v::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

.about-engage {
  margin-top: 28px; display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 12px;
}
.about-engage-bar { width: 4px; align-self: stretch; min-height: 26px; background: var(--blue); border-radius: 4px; flex: none; }
.about-engage-tx { font-size: 1.08rem; color: var(--ink-muted); line-height: 1.45; }
.about-engage-tx strong { color: var(--ink-text); font-weight: 700; }

@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   COÛT — jauge circulaire interactive
   ============================================================ */
.ci-panel {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.ci-gauge-wrap { position: relative; width: 300px; height: 300px; max-width: 100%; display: flex; align-items: center; justify-content: center; }
.ci-gauge { width: 300px; height: 300px; display: block; overflow: visible; }
.ci-arc-track { stroke: var(--ink-3); stroke-width: 16; fill: none; stroke-linecap: round; }
.ci-arc-fill {
  stroke: url(#ciGrad); stroke-width: 16; fill: none; stroke-linecap: round;
  filter: drop-shadow(0 0 9px rgba(47,111,237,.55));
  transition: stroke-dashoffset 1.05s cubic-bezier(.16,1,.3,1);
}
.ci-tick { stroke: var(--ink-3); stroke-width: 2; }
.ci-dot { fill: #fff; stroke: var(--blue-bright); stroke-width: 4; pointer-events: none; transition: opacity .3s; }
.ci-readout { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding-top: 6px; }
.ci-ro-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-muted); }
.ci-ro-value { font-family: var(--display); font-size: 54px; font-weight: 800; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; color: var(--on-dark); }
.ci-ro-value .u { font-size: 21px; font-weight: 600; color: var(--on-dark-muted); margin-left: 3px; }
.ci-ro-sub { font-size: 12.5px; color: var(--on-dark-muted); margin-top: 6px; text-align: center; max-width: 170px; line-height: 1.4; }

.ci-chip { width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 14px 16px; }
.ci-chip .k { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--on-dark-muted); }
.ci-chip .v { font-family: var(--display); font-size: 23px; font-weight: 800; letter-spacing: -.02em; margin-top: 5px; font-variant-numeric: tabular-nums; color: var(--on-dark); }
.ci-chip .v b { color: var(--blue-bright); font-weight: 800; }
.ci-chip .v .small { font-size: 13px; color: var(--on-dark-muted); font-weight: 500; }

.ci-controls { width: 100%; display: flex; flex-direction: column; gap: 20px; }
.ci-prompt { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-bright); }
.ci-ctrl { display: flex; flex-direction: column; gap: 11px; }
.ci-ctrl .row { display: flex; justify-content: space-between; align-items: baseline; }
.ci-ctrl .name { font-size: 14.5px; font-weight: 500; color: var(--on-dark); }
.ci-ctrl .cval { font-family: var(--display); font-size: 17px; font-weight: 800; color: var(--blue-bright); font-variant-numeric: tabular-nums; }
.ci-shell { position: relative; display: flex; align-items: center; }
.ci-fill { position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 6px; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); pointer-events: none; }
.ci-controls input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 99px;
  background: var(--ink-3); outline: none; cursor: pointer; position: relative; z-index: 1;
}
.ci-controls input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 5px solid var(--blue); box-shadow: 0 2px 10px rgba(47,111,237,.55);
  cursor: pointer; transition: transform .12s ease;
}
.ci-controls input[type=range]::-webkit-slider-thumb:active { transform: scale(1.12); }
.ci-controls input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 5px solid var(--blue);
  box-shadow: 0 2px 10px rgba(47,111,237,.55); cursor: pointer;
}
.ci-hint { font-size: 12px; color: var(--on-dark-muted); display: flex; align-items: center; gap: 7px; opacity: .85; }
.ci-hint .arrows { color: var(--blue-bright); animation: ciNudge 1.8s ease-in-out infinite; }
@keyframes ciNudge { 0%,100%{transform:translateX(0)} 50%{transform:translateX(4px)} }

@media (prefers-reduced-motion: reduce) {
  .ci-arc-fill { transition: none; } .ci-hint .arrows { animation: none; }
}
@media (max-width: 420px) {
  .ci-gauge-wrap, .ci-gauge { width: 260px; height: 260px; }
  .ci-ro-value { font-size: 48px; }
}
