/* ============================================================
   Expert Diogène — Design System
   Palette : Bleu confiance & Blanc
   ============================================================ */

:root {
  /* Couleurs */
  --blue-900: #062a4a;
  --blue-800: #0b3d66;
  --blue-700: #0d5494;
  --blue-600: #1565a8;
  --blue-500: #2e8bc0;
  --blue-300: #8ec5e6;
  --blue-100: #e8f1f9;
  --blue-50:  #f4f9fd;

  --ink:    #16263a;
  --slate:  #3f5366;
  --muted:  #6b7c8e;
  --line:   #e2e9f0;
  --white:  #ffffff;

  --green-500: #25b06b;
  --whatsapp:  #25d366;

  /* Typographie */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Mesures */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(11, 61, 102, .06);
  --shadow:    0 10px 30px rgba(11, 61, 102, .10);
  --shadow-lg: 0 24px 60px rgba(11, 61, 102, .16);
  --container: 1180px;
  --transition: .25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-500); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; font-weight: 700; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--blue-50); }
.section--blue {
  background: linear-gradient(160deg, var(--blue-800) 0%, var(--blue-700) 60%, var(--blue-600) 100%);
  color: #eaf3fb;
}
.section--blue h1, .section--blue h2, .section--blue h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  flex-shrink: 0;
}
.section--blue .eyebrow { color: #bfe0f4; }
.section--blue .eyebrow::before { background: #7fbbe2; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 16px; letter-spacing: -.01em; }
.section-head p { color: var(--slate); font-size: 1.08rem; }
.section--blue .section-head p { color: #cfe1f0; }

.lead { font-size: 1.15rem; color: var(--slate); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue-700); color: #fff; box-shadow: 0 8px 22px rgba(13,84,148,.30); }
.btn--primary:hover { background: var(--blue-800); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(13,84,148,.38); }
.btn--ghost { background: transparent; color: var(--blue-700); border-color: var(--blue-300); }
.btn--ghost:hover { background: var(--blue-100); color: var(--blue-800); border-color: var(--blue-500); }
.btn--white { background: #fff; color: var(--blue-800); }
.btn--white:hover { background: var(--blue-100); color: var(--blue-900); transform: translateY(-2px); }
.btn--wa { background: var(--whatsapp); color: #fff; }
.btn--wa:hover { background: #1eb858; color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-900); color: #cfe1f0; font-size: .88rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #eaf3fb; font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; opacity: .9; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--ink); letter-spacing: -.01em; }
.brand:hover { color: var(--ink); }
.brand__logo { width: 44px; height: 44px; flex-shrink: 0; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; color: var(--blue-600); letter-spacing: .14em; text-transform: uppercase; margin-top: -2px; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  font-family: var(--font-head); font-weight: 500; font-size: .97rem; color: var(--slate);
  padding: 10px 16px; border-radius: 100px;
}
.nav__menu a:hover { color: var(--blue-700); background: var(--blue-50); }
.nav__menu a.active { color: var(--blue-700); background: var(--blue-100); }
.nav__cta { margin-left: 10px; }
.nav__cta .btn--primary,
.nav__cta .btn--primary:hover,
.nav__cta .btn--primary:focus { color: #fff; background: var(--blue-700); }
.nav__cta .btn--primary:hover { background: var(--blue-800); }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: all var(--transition); }
.nav__toggle span + span { margin-top: 6px; }
.nav__toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--blue-50); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(46,139,192,.22), transparent 60%),
    radial-gradient(800px 420px at 0% 110%, rgba(13,84,148,.10), transparent 55%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 78px 0 82px; }
.hero h1 { font-size: clamp(2.05rem, 4.6vw, 3.35rem); letter-spacing: -.02em; margin-bottom: 20px; }
.hero h1 .accent { color: var(--blue-600); }
.hero p { font-size: 1.16rem; color: var(--slate); max-width: 540px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-weight: 500; color: var(--slate); font-size: .95rem; }
.hero__trust svg { width: 20px; height: 20px; color: var(--green-500); flex-shrink: 0; }

.hero__card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 30px; border: 1px solid var(--line);
}
.hero__card h3 { font-size: 1.18rem; margin-bottom: 6px; }
.hero__card > p { font-size: .95rem; color: var(--muted); margin-bottom: 22px; }
.hero__steps { display: grid; gap: 16px; }
.hero__step { display: flex; gap: 14px; align-items: flex-start; }
.hero__step .num {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-700);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.hero__step strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.hero__step span { font-size: .9rem; color: var(--muted); }

/* ---------- Hero photo ---------- */
.hero__photo { position: relative; }
.hero__photo img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}

/* ---------- Avant / Après slider ---------- */
.ba {
  --pos: 50%;
  position: relative; max-width: 980px; margin-inline: auto;
  aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); cursor: ew-resize; user-select: none;
  touch-action: none; background: var(--blue-100);
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__tag {
  position: absolute; top: 16px; font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: #fff;
  background: rgba(6, 42, 74, .72); padding: 6px 14px; border-radius: 100px; backdrop-filter: blur(4px);
}
.ba__tag--before { left: 16px; }
.ba__tag--after { right: 16px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px;
  background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(6,42,74,.15);
}
.ba__knob {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow); color: var(--blue-700);
}
.ba__knob svg { width: 26px; height: 26px; }

/* ---------- Page hero CTA ---------- */
.page-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--blue-600); line-height: 1; }
.section--blue .stat .n { color: #fff; }
.stat .l { color: var(--slate); font-size: .96rem; margin-top: 8px; }
.section--blue .stat .l { color: #cfe1f0; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: all var(--transition); height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  background: var(--blue-100); color: var(--blue-600); display: grid; place-items: center;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Feature list ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--blue-100); color: var(--blue-600); display: grid; place-items: center;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 5px; }
.feature p { color: var(--slate); font-size: .96rem; }

/* ---------- Split (image/text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__visual {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  min-height: 380px; position: relative;
}
.split__visual--a { background: linear-gradient(150deg, var(--blue-700), var(--blue-500)); }
.split__visual--b { background: linear-gradient(150deg, var(--blue-800), var(--blue-600)); }
.checklist { display: grid; gap: 14px; margin-top: 8px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate); }
.checklist svg { width: 22px; height: 22px; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }
.checklist strong { color: var(--ink); }

/* Visual decorative content */
.visual-badge {
  position: absolute; background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 16px 18px; display: flex; gap: 12px; align-items: center;
}
.visual-badge svg { width: 30px; height: 30px; color: var(--blue-600); }
.visual-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--ink); }
.visual-badge span { font-size: .82rem; color: var(--muted); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff;
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue-600);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .95rem; }

/* ---------- Zones ---------- */
.zones { display: flex; flex-wrap: wrap; gap: 12px; }
.zones li {
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 10px 20px; font-weight: 500; color: var(--slate); font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm);
}
.zones svg { width: 16px; height: 16px; color: var(--blue-500); }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column;
}
.quote__stars { color: #f5a623; margin-bottom: 14px; letter-spacing: 2px; }
.quote p { color: var(--slate); font-style: italic; margin-bottom: 18px; flex-grow: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote__who strong { display: block; font-family: var(--font-head); font-size: .98rem; }
.quote__who span { font-size: .85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: 24px; padding: 56px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 0%, rgba(255,255,255,.12), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.cta-band p { color: #d4e6f5; font-size: 1.1rem; max-width: 620px; margin: 0 auto 28px; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q:hover { color: var(--blue-700); }
.faq__q .chev { width: 22px; height: 22px; flex-shrink: 0; color: var(--blue-600); transition: transform var(--transition); }
.faq__item.open .faq__q .chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a-inner { padding: 0 26px 24px; color: var(--slate); }
.faq__item.open .faq__a { max-height: 460px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-info { display: grid; gap: 22px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 13px; background: var(--blue-100); color: var(--blue-600); display: grid; place-items: center; }
.contact-info__icon svg { width: 24px; height: 24px; }
.contact-info__item h3 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-info__item p, .contact-info__item a { color: var(--slate); font-size: 1rem; }
.contact-info__item a:hover { color: var(--blue-600); }

.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .92rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--blue-50); transition: all var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(46,139,192,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: #e7f7ee; border: 1px solid #b6e6c9; color: #1a7a45; padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 500; }
.form-success.show { display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(160deg, var(--blue-800), var(--blue-600)); color: #eaf3fb; padding: 70px 0 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 85% -20%, rgba(255,255,255,.12), transparent 60%); }
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero .breadcrumb { font-size: .9rem; color: #b9d6ec; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: #dcecf8; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: -.02em; margin-bottom: 16px; }
.page-hero p { color: #cfe1f0; font-size: 1.15rem; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; margin: 40px 0 16px; }
.prose h3 { font-size: 1.28rem; margin: 28px 0 12px; }
.prose p { color: var(--slate); margin-bottom: 16px; }
.prose ul { margin: 0 0 18px; display: grid; gap: 10px; }
.prose ul li { display: flex; gap: 11px; color: var(--slate); }
.prose ul li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); margin-top: 10px; flex-shrink: 0; }
.prose strong { color: var(--ink); }

/* ---------- Pills / values ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value { text-align: left; }
.value__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--blue-100); color: var(--blue-600); display: grid; place-items: center; margin-bottom: 16px; }
.value__icon svg { width: 28px; height: 28px; }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { color: var(--slate); font-size: .97rem; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: #aebfce; padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer__brand { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: 16px; }
.footer__brand .brand__logo { width: 42px; height: 42px; }
.footer p { font-size: .95rem; color: #93a8bb; margin-bottom: 18px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { color: #aebfce; font-size: .95rem; }
.footer ul a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; margin-bottom: 12px; color: #aebfce; }
.footer__contact svg { width: 18px; height: 18px; color: var(--blue-300); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { color: #fff; font-weight: 500; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #8298ab; }
.footer__bottom a { color: #aebfce; }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp);
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform var(--transition); animation: fab-pulse 2.4s infinite;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 32px; height: 32px; color: #fff; }
@keyframes fab-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid--3, .grid--4, .steps, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .split__visual { min-height: 300px; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 18px 22px 26px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease; z-index: 99;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__menu a { padding: 14px 16px; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: block; }
  .topbar__left { gap: 14px; font-size: .82rem; }
  .topbar__right { display: none; }
  .grid--3, .grid--4, .steps, .value-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .hero__trust { gap: 14px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
