/* =========================================================
   EURO STORM DÉBOSSELAGE — Landing page
   Mobile-first · Premium automotive
   ========================================================= */

/* ---------- 0. TOKENS ---------- */
:root {
  /* Brand palette (spec do brief) */
  --navy:        #1F2F4A;
  --navy-deep:   #162338;
  --navy-soft:   #2A3D5C;
  --navy-line:   rgba(255,255,255,.10);

  --green:       #A7DB5F;
  --green-hover: #B8E574;
  --green-soft:  rgba(167,219,95,.12);
  --green-line:  rgba(167,219,95,.28);

  --white:       #FFFFFF;
  --off:         #F6F8FB;
  --gray-50:     #F2F4F8;
  --gray-100:    #E6EAF1;
  --gray-200:    #D3D9E3;
  --gray-400:    #8A93A4;
  --gray-600:    #525C70;
  --ink:         #0E1726;

  /* Tipografia */
  --font: 'Inter', 'Poppins', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  /* Escala */
  --container: 1200px;
  --container-narrow: 820px;

  /* Raios */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Shadows */
  --sh-sm: 0 2px 6px rgba(14,23,38,.06);
  --sh-md: 0 8px 24px rgba(14,23,38,.10);
  --sh-lg: 0 18px 50px rgba(14,23,38,.18);
  --sh-cta: 0 10px 24px rgba(167,219,95,.28);

  /* Espaçamentos verticais */
  --sp-section: clamp(40px, 6vw, 96px);
}

/* ---------- 1. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Safety net against any accidental horizontal overflow on mobile.
     `clip` is preferred over `hidden` because it doesn't break position:sticky on .nav */
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; }
p { margin: 0 0 1em; }

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

/* ---------- 2. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  /* Fully fluid horizontal padding — scales smoothly across every viewport:
     320px → 16px | 360px → 18px | 390px iPhone 12/13 → 19.5px |
     440px iPhone 16 Pro Max → 22px | 600px → 30px | 640px+ → 32px (max) */
  padding: 0 clamp(14px, 5vw, 32px);
}
.container--narrow { max-width: var(--container-narrow); }

/* French long-word safety net — break softly inside paragraphs and cards
   so words like "débosselage", "professionnel", "réparation" never overflow. */
p, li, dd, summary, .faq__a, .card__body, .testimonial__body, .footer__tag {
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
/* Headings: only break as last resort (avoids ugly mid-word splits). */
h1, h2, h3, h4 { overflow-wrap: break-word; }

.section {
  padding: var(--sp-section) 0;
}
.section--light  { background: var(--off); color: var(--ink); }
.section--dark   { background: var(--navy); color: var(--white); }
.section--accent { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%); color: var(--white); }
.section--final  { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--white); text-align: center; }
.section--stats  { padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(40px, 6vw, 64px); }
.section--proof  { background: var(--white); }

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow--light { color: var(--green); }
.section--light .eyebrow { color: #6F8A2E; } /* legible green on light */

.section__title {
  /* Fluid from 24px (small phone) to 44px (desktop), no breakpoint jumps. */
  font-size: clamp(24px, 6vw, 44px);
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.18;
}
.section__title--light { color: var(--white); }
.section__title--xl { font-size: clamp(28px, 7vw, 56px); }

.prose {
  max-width: 760px;
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--gray-600);
}
.prose--light { color: rgba(255,255,255,.78); }
.prose--center { margin-left: auto; margin-right: auto; text-align: center; }

.hl {
  color: var(--green);
  white-space: nowrap;
}

/* ---------- 3. BUTTONS ---------- */
.btn {
  --pad-y: 14px;
  --pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: var(--pad-y) var(--pad-x);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  /* Allow long French labels to wrap on narrow screens instead of pushing the button past the viewport. */
  white-space: normal;
  text-wrap: balance;
  max-width: 100%;
  min-width: 0;
  text-align: center;
  user-select: none;
}
/* On wider screens, single-line buttons look cleaner. */
@media (min-width: 720px) {
  .btn { white-space: nowrap; }
}
.btn--lg {
  --pad-y: 17px;
  --pad-x: 26px;
  min-height: 56px;
  font-size: 16px;
}
/* Tighten padding + size on narrow viewports so labels don't kiss the edges.
   Range covers iPhone XS/12/13 (375-393px) and small Android (≥360px). */
@media (max-width: 430px) {
  .btn--lg { --pad-x: 16px; font-size: 15px; min-height: 52px; }
  .btn { --pad-x: 16px; font-size: 14.5px; }
}
.btn--block { width: 100%; }
.btn--inline { margin-top: 8px; }

.btn--cta {
  background: var(--green);
  color: #112016;
  box-shadow: var(--sh-cta);
}
.btn--cta:hover { background: var(--green-hover); transform: translateY(-1px); }
.btn--cta:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.30);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }

.section--light .btn--ghost {
  color: var(--ink);
  border-color: var(--gray-200);
}
.section--light .btn--ghost:hover { background: var(--gray-50); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.28);
}
.btn--whatsapp:hover { background: #1FBA5A; transform: translateY(-1px); }

/* ---------- 4. NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22,35,56,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--navy-line);
  color: var(--white);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
@media (min-width: 720px) {
  .nav__logo { height: 32px; max-width: 200px; }
}
@media (min-width: 1024px) {
  .nav__logo { height: 36px; max-width: 240px; }
}
.nav__links {
  display: none;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
}
.nav__links a:hover { color: var(--white); }

.nav__cta { display: none; }

.nav__burger {
  width: 40px; height: 40px;
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 8px;
}
.nav__burger:hover { background: rgba(255,255,255,.06); }
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .2s ease;
  border-radius: 2px;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu = full-height fixed drawer below nav */
.nav__mobile {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h, 60px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px 32px;
  background: var(--navy-deep);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 49;
  animation: slideDown .25s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav__mobile a {
  padding: 16px 4px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--navy-line);
}
.nav__mobile a:active { color: var(--green); }
.nav__mobile .btn {
  margin-top: 18px;
  border-bottom: none;
  padding-top: 17px;
  padding-bottom: 17px;
  color: #112016;
}

/* Explicitly hide when [hidden] attr is set — needed because
   .nav__mobile{display:flex} has equal specificity to [hidden]{display:none}
   and author stylesheet wins over UA defaults. */
.nav__mobile[hidden] { display: none !important; }

/* Lock body scroll when menu open + hide sticky CTA (z-index 60) that
   would otherwise float above the open menu (z-index 49). */
body.menu-open { overflow: hidden; }
body.menu-open .sticky-cta { display: none !important; }

/* When body has overflow:hidden, position:sticky on the nav stops working
   (the body is no longer a scroll container). Force the nav to fixed while
   the menu is open so the burger / X close button stays visible at the top. */
body.menu-open .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(60px, 12vw, 110px) 0 clamp(48px, 9vw, 90px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(167,219,95,.10), transparent 60%),
    radial-gradient(900px 600px at 0% 110%, rgba(31,47,74,.85), transparent 70%),
    linear-gradient(180deg, #0F1A2C 0%, #162338 60%, #1F2F4A 100%);
  z-index: -1;
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(110deg, transparent 0 22px, rgba(255,255,255,.025) 22px 23px),
    repeating-linear-gradient(20deg, transparent 0 36px, rgba(167,219,95,.04) 36px 37px);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container);
  position: relative;
}
.hero__title {
  /* Fully fluid headline. Scales smoothly across every device:
     360px → 28px | 390px iPhone 12/13 → 30.4px | 440px iPhone Pro Max → 34.3px |
     600px → 46.8px | 820px+ → 64px (max). */
  font-size: clamp(28px, 7.8vw, 64px);
  line-height: 1.12;
  margin: 6px 0 18px;
  letter-spacing: -.02em;
}
.hero__sub {
  max-width: 640px;
  /* Subtitle also fluid: 15px on tiny phones up to 19px on tablet. */
  font-size: clamp(15px, 2.2vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust--center { justify-content: center; margin-top: 22px; }

.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

/* ---------- 6. CARDS (3 piliers) ---------- */
.cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.cards--3 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  /* Fluid padding scales with viewport — feels right on tiny phones AND iPhone Pro Max. */
  padding: clamp(20px, 5vw, 32px) clamp(18px, 4.5vw, 28px);
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-100);
}
.card--dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
  color: var(--white);
}
.card__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 18px; margin-bottom: 8px; }
.card__text { color: var(--gray-600); font-size: 15px; line-height: 1.6; margin: 0; }
.card--dark .card__text { color: rgba(255,255,255,.72); }

/* ---------- 7. CHÈQUE CADEAU + CALCULADORA ---------- */
.cheque {
  display: grid;
  gap: 28px;
  margin-top: 22px;
}
.cheque__copy { color: rgba(255,255,255,.85); }

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0 18px;
}
.features li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  color: var(--white);
  font-size: 15px;
}
.features__icon { font-size: 18px; }

.callout {
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  color: var(--white);
  padding: 16px 18px;
  border-radius: var(--r-md);
  font-size: 15px;
  line-height: 1.55;
}
.callout strong { color: var(--green); }
.callout__lead { margin: 0 0 10px; font-size: 14px; }
.callout__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.callout__list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
.callout__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}
.callout__case {
  display: inline-block;
  font-weight: 700;
  color: var(--green);
}

/* Asterisk superscript */
.ast {
  color: var(--green);
  font-weight: 700;
  font-size: .65em;
  margin-left: 1px;
  vertical-align: super;
  line-height: 0;
}
.section--light .ast { color: #6F8A2E; }

/* Conditions block */
.conditions {
  margin-top: 22px;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: var(--r-md);
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.conditions__title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.conditions__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.conditions__list li {
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.conditions__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
}
.conditions__list strong { color: var(--white); }

/* Calculator card */
.calc {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-xl);
  /* Fluid padding scales smoothly across phone sizes. */
  padding: clamp(20px, 5vw, 30px) clamp(18px, 4.5vw, 28px);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-100);
}
.calc__title {
  font-size: 20px;
  margin-bottom: 16px;
}
.calc__form { display: flex; flex-direction: column; gap: 16px; }
.calc__field { display: flex; flex-direction: column; gap: 6px; }
.calc__label {
  font-size: 13px; font-weight: 600; color: var(--gray-600);
}
.calc__input-wrap { position: relative; }
.calc__input {
  width: 100%;
  height: 56px;
  padding: 0 44px 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  background: var(--gray-50);
  border: 2px solid var(--gray-100);
  border-radius: var(--r-md);
  transition: border-color .2s ease, background-color .2s ease;
}
.calc__input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--green);
}
.calc__suffix {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--gray-400);
}
.calc__help { font-size: 12px; color: var(--gray-400); margin: 0; }

.calc__result {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-md);
}
.calc__result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.calc__result-row + .calc__result-row {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.calc__result-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.calc__result-value { font-size: 18px; font-weight: 700; color: var(--white); }
.calc__result-value strong { color: var(--green); font-size: 24px; }
.calc__result-value--pay strong { color: var(--white); font-size: 26px; }
.calc__result-rule {
  margin: 6px 0 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.4;
}
.calc__result--alert .calc__result-rule {
  color: #F0BF6F;
}

.calc__legal {
  font-size: 11px;
  color: var(--gray-400);
  margin: 10px 0 0;
  line-height: 1.5;
}
.calc__legal-link {
  color: var(--gray-600);
  text-decoration: underline;
  margin-left: 4px;
}
.calc__legal-link:hover { color: var(--ink); }

.cheque__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ---------- 8. STEPS ---------- */
.steps {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  /* Fluid step card padding. */
  padding: clamp(18px, 4.5vw, 28px) clamp(16px, 4.5vw, 26px);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--sh-sm);
}
.step__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--green);
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 14px;
}
.step__title { font-size: 17px; margin-bottom: 6px; }
.step__text { color: var(--gray-600); font-size: 15px; margin: 0; }

/* ---------- 9. COMPARE ---------- */
.compare {
  margin-top: 30px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.compare__row > div {
  padding: 14px 16px;
  font-size: 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.78);
}
.compare__row > div + div {
  border-left: 1px solid rgba(255,255,255,.07);
}
.compare__row--head > div {
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
}
.compare__win {
  color: var(--white) !important;
  position: relative;
}
.compare__win::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: var(--green);
  font-weight: 800;
}
.compare__row:last-child > div { border-bottom: none; }

/* ---------- 10. STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat {
  display: flex; flex-direction: column;
  background: var(--white);
  padding: 22px 18px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--sh-sm);
  text-align: center;
}
.stat__value {
  font-size: clamp(26px, 4.6vw, 34px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.stat__label {
  font-size: 12.5px;
  color: var(--gray-600);
  margin-top: 4px;
  line-height: 1.4;
}

/* ---------- 11. PROOF ---------- */
.proof {
  margin: 28px 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-100);
}

/* Media wrapper — scanner lives here */
.proof__media {
  position: relative;
  overflow: hidden;
  line-height: 0;
  background: var(--navy-deep);
}

.proof__media img {
  width: 100%;
  display: block;
  animation: proof-kenburns 12s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

/* Glowing scanner line */
.proof__scanner {
  position: absolute;
  top: 0;
  left: -2%;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent      0%,
    rgba(167,219,95,.5) 15%,
    #ffffff          42%,
    var(--green)     50%,
    #ffffff          58%,
    rgba(167,219,95,.5) 85%,
    transparent      100%
  );
  box-shadow:
    0 0 6px  2px rgba(255,255,255,.9),
    0 0 14px 6px rgba(167,219,95,.7),
    0 0 28px 10px rgba(167,219,95,.35);
  animation: scanner-sweep 3.8s cubic-bezier(.45,0,.55,1) infinite;
  pointer-events: none;
  z-index: 3;
}

/* Wide soft glow that follows the scanner */
.proof__glow {
  position: absolute;
  top: 0;
  left: -10%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(167,219,95,.08) 50%,
    transparent
  );
  animation: glow-sweep 3.8s cubic-bezier(.45,0,.55,1) infinite;
  pointer-events: none;
  z-index: 2;
}

.proof figcaption {
  padding: 14px 18px;
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  text-align: center;
  line-height: 0;  /* reset from proof__media */
  line-height: 1.4;
}

/* ---------- ANIMATIONS ---------- */
@keyframes proof-kenburns {
  0%   { transform: scale(1)    translateX(0%); }
  30%  { transform: scale(1.04) translateX(-1%); }
  70%  { transform: scale(1.04) translateX(1%); }
  100% { transform: scale(1)    translateX(0%); }
}

@keyframes scanner-sweep {
  0%   { left: -2%;   opacity: 0; }
  4%   { left: -2%;   opacity: 1; }
  96%  { left: 102%;  opacity: 1; }
  100% { left: 102%;  opacity: 0; }
}

@keyframes glow-sweep {
  0%   { left: -20%;  opacity: 0; }
  4%   { left: -20%;  opacity: 1; }
  96%  { left: 90%;   opacity: 1; }
  100% { left: 90%;   opacity: 0; }
}

/* ---------- 12. RATING + AVIS ---------- */
.rating {
  display: flex; flex-direction: column; align-items: center;
  margin: 18px 0 32px;
}
.rating__stars {
  font-size: 24px;
  color: var(--green);
  letter-spacing: 4px;
}
.rating__text {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--gray-600);
}
.rating__text strong { color: var(--ink); }

.testimonials {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  /* Fluid padding: 18px on tiny phones up to 28px on tablet. */
  padding: clamp(18px, 4.5vw, 28px);
  box-shadow: var(--sh-sm);
  margin: 0;
}
.testimonial blockquote {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.testimonial figcaption {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
}

/* ---------- 13. FAQ ---------- */
.faq {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 50px 18px 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__item[open] { border-color: var(--green-line); }
.faq__a {
  padding: 0 18px 18px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---------- 14. FINAL CTA ---------- */
.final__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 30px auto 8px;
  max-width: 460px;
}
.final__ctas .btn { width: 100%; }

/* ---------- STEPS PILL (1 → 2) ---------- */
.steps-pill {
  margin: 26px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
  flex-wrap: wrap;
  justify-content: center;
}
.steps-pill__step { display: inline-flex; align-items: center; gap: 6px; }
.steps-pill__step--active { color: #fff; }
.steps-pill__dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 800;
}
.steps-pill__step--active .steps-pill__dot {
  background: var(--green);
  color: #112016;
}
.steps-pill__sep { opacity: .4; }

/* ---------- LOCATOR (multi-state) ---------- */

/* sr-only utility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.locator {
  margin: 30px 0 8px;
  position: relative;
}

.locator__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Fluid locator panel — generous on bigger phones, compact on small ones. */
  padding: clamp(22px, 5vw, 36px) clamp(16px, 4.5vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  animation: locator-fade-in .35s ease;
}
.locator__panel[hidden] { display: none; }

/* Manual state — full width grid, no card padding constraint */
.locator__panel[data-state="manual"] {
  padding: 22px 18px;
  background: transparent;
  border: 0;
  align-items: stretch;
  text-align: left;
}

.locator__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 14px;
}
.locator__icon--lg { width: 64px; height: 64px; border-radius: 18px; margin-bottom: 18px; }
.locator__icon svg { width: 30px; height: 30px; }
.locator__icon--alert {
  background: rgba(232,163,60,.12);
  color: #E8A33C;
}

.locator__title {
  margin: 0 0 8px;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.locator__sub {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  max-width: 400px;
}
.locator__heading {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
}

.locator__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  margin-bottom: 6px;
}

.locator__link {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
  text-underline-offset: 4px;
  padding: 8px 6px;
  cursor: pointer;
  margin-top: 6px;
  transition: color .15s;
}
.locator__link:hover { color: var(--green); }

/* Loading spinner */
.locator__spinner {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(167,219,95,.18);
  border-top-color: var(--green);
  animation: locator-spin .9s linear infinite;
  margin-bottom: 18px;
}
@keyframes locator-spin {
  to { transform: rotate(360deg); }
}

/* Postal form */
.locator__form {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.locator__input-wrap { position: relative; }
.locator__input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .14em;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.16);
  border-radius: var(--r-md);
  transition: border-color .2s, background-color .2s;
}
.locator__input::placeholder {
  color: rgba(255,255,255,.32);
  font-weight: 500;
  letter-spacing: .08em;
}
.locator__input:focus {
  outline: none;
  background: rgba(255,255,255,.10);
  border-color: var(--green);
}
.locator__error {
  margin: 0;
  font-size: 13px;
  color: #F09494;
  text-align: left;
  padding: 8px 12px;
  background: rgba(208,72,72,.10);
  border-radius: 8px;
}

/* Recommendation */
.locator__match {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(167,219,95,.12);
  border: 1px solid rgba(167,219,95,.32);
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
}
.locator__match-icon { font-size: 14px; }

.locator__reco {
  width: 100%;
  margin-bottom: 8px;
}
.locator__reco .location {
  text-align: left;
  border-color: rgba(167,219,95,.45);
  background: linear-gradient(180deg, rgba(167,219,95,.08), rgba(255,255,255,.02));
  position: relative;
}

/* Distance badge on recommendation */
.location__distance {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: var(--green);
  color: #112016;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .02em;
}

/* Manual / Recommendation : grid container reused */
.locations__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@keyframes locator-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.location {
  position: relative;
  padding: 22px 20px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.location:hover {
  transform: translateY(-3px);
  border-color: rgba(167,219,95,.45);
  background: linear-gradient(180deg, rgba(167,219,95,.06), rgba(255,255,255,.02));
  box-shadow:
    0 12px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(167,219,95,.18) inset;
}

.location__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.location__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 12px;
  flex-shrink: 0;
}
.location__icon svg { width: 24px; height: 24px; }
.location__head { flex: 1; min-width: 0; }
.location__brand {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.location__name {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.location__address {
  font-style: normal;
  color: rgba(255,255,255,.82);
  font-size: 14.5px;
  line-height: 1.55;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--green);
}

.location__map {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  padding: 4px 0;
  transition: color .15s, transform .15s;
}
.location__map:hover {
  color: var(--green-hover);
  transform: translateX(2px);
}
.location__map-arrow {
  transition: transform .15s;
  display: inline-block;
}
.location__map:hover .location__map-arrow {
  transform: translate(2px, -2px);
}

.location__cta {
  margin-top: 4px;
  font-size: 16px;
}

.location__assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
}

.locations__alt {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.locations__alt-label {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* ---------- MODAL ---------- */
.lmodal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.lmodal[hidden] { display: none; }

.lmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 23, 38, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: lmodal-fade .25s ease;
}

.lmodal__panel {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  background: var(--white);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: lmodal-slide-up .35s cubic-bezier(.2,.7,.3,1);
}

.lmodal__head {
  padding: 18px 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--off);
  position: relative;
}
.lmodal__head::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 999px;
}
.lmodal__head-text { flex: 1; min-width: 0; padding-top: 8px; }
.lmodal__eyebrow {
  margin: 0 0 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6F8A2E;
}
.lmodal__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.lmodal__addr {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.4;
}
.lmodal__close {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  color: var(--gray-600);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  margin-top: 8px;
}
.lmodal__close svg { width: 18px; height: 18px; }
.lmodal__close:hover {
  background: var(--gray-50);
  color: var(--ink);
  border-color: var(--gray-400);
}
.lmodal__close:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.lmodal__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  min-height: 480px;
}
.lmodal__body iframe {
  width: 100%;
  min-height: 600px;
  height: 70vh;
  border: 0;
  display: block;
}

/* Placeholder for missing embed */
.lmodal__placeholder {
  padding: 32px 22px;
  text-align: center;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
}
.lmodal__placeholder code {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  background: var(--gray-50);
  border-radius: 6px;
  font-size: 12px;
  color: var(--ink);
}

body.lmodal-open { overflow: hidden; }

@keyframes lmodal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lmodal-slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 15. FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding-top: 56px;
}
.footer__inner {
  display: grid;
  gap: 32px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer__logo {
  height: 32px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
@media (min-width: 720px) {
  .footer__logo { height: 38px; max-width: 240px; }
}
.footer__tag { font-size: 14px; color: rgba(255,255,255,.65); margin: 0; max-width: 320px; line-height: 1.5; }

.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__title {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--green); }

.footer__bottom {
  margin-top: 40px;
  padding: 18px 20px 110px; /* extra bottom for sticky CTA */
  border-top: 1px solid var(--navy-line);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ---------- 16. STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom, 12px));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
  color: #112016;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,0,0,.30), 0 0 0 4px rgba(167,219,95,.18);
  transition: transform .15s ease, background-color .2s ease;
}
.sticky-cta:hover { background: var(--green-hover); transform: translateY(-1px); }

/* ---------- 17. BREAKPOINTS ---------- */

/* Tablet */
@media (min-width: 720px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
  .hero__ctas .btn { flex: 0 1 auto; }

  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }

  .footer__inner {
    grid-template-columns: 1.4fr 2fr;
    align-items: start;
  }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }

  .final__ctas { flex-direction: row; max-width: none; justify-content: center; }
  .final__ctas .btn { width: auto; }

  .locations__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .location { padding: 26px 24px 22px; }
  .location__name { font-size: 22px; }

  .lmodal { align-items: center; padding: 24px; }
  .lmodal__panel { border-radius: 22px; }
  .lmodal__head::before { display: none; }
  .lmodal__head-text { padding-top: 0; }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__mobile { display: none !important; }

  .hero { padding-top: clamp(80px, 9vw, 130px); padding-bottom: clamp(80px, 9vw, 130px); }
  .hero__title { max-width: 880px; }

  .cheque {
    grid-template-columns: 1fr 460px;
    gap: 56px;
    align-items: start;
  }

  .steps { grid-template-columns: repeat(4, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }

  .sticky-cta { display: none; } /* desktop has fixed nav CTA */
  .footer__bottom { padding-bottom: 32px; }
}

@media (min-width: 1200px) {
  .testimonials { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- 17b. SMALL MOBILE FINE-TUNING ----------
   Most layout/padding scaling is handled fluidly by clamp() at the base
   level. These overrides only fix font sizes and components where a
   straight clamp wasn't expressive enough. */
@media (max-width: 430px) {
  /* Component titles — lower than clamp min so they breathe on phones. */
  .card__title { font-size: 17px; }
  .calc__title { font-size: 18px; }
  .locator__title { font-size: 19px; }
  .locator__sub { font-size: 14px; }
  .locator__input { font-size: 17px; padding: 0 14px; letter-spacing: .10em; }
  .calc__input { font-size: 16px; }
  .calc__result-value strong { font-size: 22px; }
  .calc__result-value--pay strong { font-size: 24px; }

  /* Stats: tighter horizontal padding (clamp would over-stretch). */
  .stat { padding: 18px 12px; }
  .stat__label { font-size: 11.5px; }

  /* Compare table — keep both columns readable. */
  .compare__row > div { padding: 12px 14px; font-size: 13.5px; }

  /* FAQ — long French questions need extra room. */
  .faq__q { font-size: 15px; padding: 16px 14px; }
  .faq__a { padding: 0 14px 16px; font-size: 14.5px; }

  /* Hero trust list — let "+5 000 véhicules réparés" wrap cleanly. */
  .hero__trust { font-size: 12.5px; gap: 8px 14px; }

  /* Sticky CTA on bottom — keep readable but compact. */
  .sticky-cta { font-size: 14.5px; padding: 12px 16px; min-height: 50px; }

  /* Final section — center the CTA stack with breathing room. */
  .final__ctas { width: 100%; max-width: 100%; }

  /* Section 2 (pain points) — slightly smaller body copy. */
  .prose { font-size: 15px; }
}

/* Extra tight zone for very small Androids (<360px) — Galaxy Fold cover, etc. */
@media (max-width: 360px) {
  .hero__title { font-size: 26px; line-height: 1.15; }
  .section__title { font-size: 22px; }
  .section__title--xl { font-size: 26px; }
  .btn--lg { font-size: 14.5px; --pad-x: 14px; }
  .stat__value { font-size: 22px; }
  .calc__input { font-size: 15px; }
}

/* ---------- 17c. LARGE PHONE / FOLDABLE ZONE ----------
   480-719px: bigger Pro Max phones, Galaxy Fold opened, small tablets in
   portrait. Single-column stays, but we increase rhythm and use the extra
   width for slightly tighter content with more breathing room. */
@media (min-width: 480px) and (max-width: 719px) {
  /* Hero CTAs side-by-side if room allows (text shorter than container). */
  .hero__ctas .btn { max-width: 460px; }

  /* Final section CTAs centered with sensible max-width. */
  .final__ctas { max-width: 460px; margin: 0 auto; }

  /* Hero subtitle aligned visually with the headline width. */
  .hero__sub { max-width: 560px; }

  /* Compare table — give cells a bit more vertical breathing room. */
  .compare__row > div { padding: 16px 18px; }
}

/* ---------- 18. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .proof__scanner, .proof__glow { display: none; }
}

/* ---------- 19. PRINT ---------- */
@media print {
  .nav, .sticky-cta, .footer { display: none; }
  body { background: #fff; color: #000; }
}

/* ---------- 20. BANNER DE CONSENTEMENT (RGPD) ---------- */
.es-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding: 16px 18px;
  background: var(--navy-deep);
  color: var(--white);
  border: 1px solid var(--navy-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  font-family: var(--font);
}
.es-consent[hidden] { display: none; }
.es-consent__text {
  margin: 0;
  flex: 1 1 260px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.es-consent__text a { color: var(--green); text-decoration: underline; }
.es-consent__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
}
.es-consent__btn {
  cursor: pointer;
  border: 0;
  border-radius: var(--r-sm);
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background .15s ease, opacity .15s ease;
}
.es-consent__btn--accept { background: var(--green); color: var(--ink); }
.es-consent__btn--accept:hover { background: var(--green-hover); }
.es-consent__btn--refuse {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--navy-line);
}
.es-consent__btn--refuse:hover { background: rgba(255,255,255,.08); }
@media (max-width: 520px) {
  .es-consent__actions { width: 100%; }
  .es-consent__btn { flex: 1 1 auto; }
}
