/* =========================================================
   EURO STORM DÉBOSSELAGE — Site B2B / B2C
   Mobile-first · Premium automotive · SEO-ready
   Navy #1F2F4A · Lime #A7DB5F · Inter
   ========================================================= */

/* ---------- 0. TOKENS ---------- */
:root {
  --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);
  --green-ink:   #6F8A2E;          /* lime lisível sobre fundo claro */

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

  --b2b:         #3D7BA5;          /* accent info pour blocs B2B */
  --b2b-soft:    rgba(61,123,165,.10);

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

  --container: 1200px;
  --container-narrow: 800px;
  --container-article: 760px;

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

  --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);

  --sp-section: clamp(44px, 6.5vw, 100px);
  --nav-h: 64px;
}

/* ---------- 1. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 78px; }
body {
  margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: clip;
}
img, svg, video { 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: -.015em; line-height: 1.12; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }
p, li, dd, summary { overflow-wrap: break-word; hyphens: auto; }
h1, h2, h3, h4 { overflow-wrap: break-word; }

/* Accessibility utilities */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  transform: translateY(-150%); transition: transform .2s ease;
  background: var(--green); color: #112016;
  padding: 11px 18px; border-radius: 4px 4px 4px 0;
  font-weight: 800; font-size: 14px;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- 2. LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 5vw, 32px); }
.container--narrow { max-width: var(--container-narrow); }
.container--article { max-width: var(--container-article); }

.section { padding: var(--sp-section) 0; }
.section--light  { background: var(--off); color: var(--ink); }
.section--white  { background: var(--white); color: var(--ink); }
.section--dark   { background: var(--navy); color: var(--white); }
.section--deep   { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%); color: var(--white); }
.section--tight  { padding-top: clamp(32px, 5vw, 60px); padding-bottom: clamp(32px, 5vw, 60px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 15px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green);
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; }
.section--light .eyebrow, .section--white .eyebrow { color: var(--green-ink); }
.eyebrow--center { justify-content: center; }
.eyebrow--b2b { color: #7FB2D6; }
.section--light .eyebrow--b2b, .section--white .eyebrow--b2b { color: var(--b2b); }

.section__head { max-width: 760px; }
.section__head--center { max-width: 820px; margin: 0 auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

.section__title { font-size: clamp(26px, 5.4vw, 44px); margin: 0 0 16px; color: var(--ink); line-height: 1.14; }
.section--dark .section__title, .section--deep .section__title { color: var(--white); }
.section__title .hl { color: var(--green); }
.section--light .section__title .hl, .section--white .section__title .hl { color: var(--green-ink); }

.lead { font-size: clamp(16px, 1.8vw, 19px); line-height: 1.6; color: var(--gray-600); max-width: 720px; }
.section--dark .lead, .section--deep .lead { color: rgba(255,255,255,.8); }
.section__head--center .lead { margin-left: auto; margin-right: auto; }

.prose { max-width: 720px; color: var(--gray-600); font-size: clamp(15.5px, 1.7vw, 17.5px); }
.prose p { margin-bottom: 1.1em; }
.section--dark .prose, .section--deep .prose { color: rgba(255,255,255,.8); }
.prose strong { color: var(--ink); font-weight: 700; }
.section--dark .prose strong, .section--deep .prose strong { color: #fff; }

/* ---------- 3. BUTTONS ---------- */
.btn {
  --pad-y: 15px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; 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;
  white-space: normal; text-align: center; max-width: 100%; user-select: none;
}
@media (min-width: 720px) { .btn { white-space: nowrap; } }
.btn--lg { --pad-y: 18px; --pad-x: 30px; min-height: 58px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--cta { background: var(--green); color: #112016; box-shadow: var(--sh-cta); }
.btn--cta:hover { background: var(--green-hover); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.28); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.section--light .btn--ghost, .section--white .btn--ghost { color: var(--ink); border-color: var(--gray-200); }
.section--light .btn--ghost:hover, .section--white .btn--ghost:hover { background: var(--gray-50); }
.btn--outline { background: transparent; color: var(--green-ink); border: 2px solid var(--green-line); }
.section--dark .btn--outline, .section--deep .btn--outline { color: var(--green); }
.btn--outline:hover { background: var(--green-soft); border-color: var(--green); }
.btn--b2b { background: var(--navy); color: #fff; box-shadow: var(--sh-md); }
.btn--b2b:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.28); }
.btn--whatsapp:hover { background: #1FBA5A; transform: translateY(-2px); }

/* ---------- 4. TOPBAR ---------- */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.75); font-size: 12.5px; border-bottom: 1px solid var(--navy-line); }
.topbar__inner { max-width: var(--container); margin: 0 auto; padding: 8px clamp(16px,5vw,32px); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar__items { display: flex; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--green); }
.topbar__items--right { display: none; }
.topbar a:hover { color: var(--green); }
@media (max-width: 720px) { .topbar__item--hours { display: none; } }
@media (min-width: 900px) { .topbar__items--right { display: flex; } }

/* ---------- 5. NAV ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(22,35,56,.94); backdrop-filter: saturate(150%) blur(12px); -webkit-backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--navy-line); color: #fff; }
.nav__inner { max-width: var(--container); margin: 0 auto; padding: 11px clamp(16px,5vw,32px); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 32px; width: auto; max-width: 190px; object-fit: contain; }
@media (min-width: 1024px) { .nav__logo { height: 38px; max-width: 230px; } }
.nav__links { display: none; gap: 28px; }
.nav__links a { position: relative; color: rgba(255,255,255,.8); padding: 6px 0; font-size: 14px; font-weight: 600; transition: color .15s ease; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green); transition: width .22s ease; }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--green); }
.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__links { display: flex; } .nav__cta { display: inline-flex; } }
.nav__burger { width: 42px; height: 42px; display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 9px; }
.nav__burger:hover { background: rgba(255,255,255,.06); }
.nav__burger span { display: block; width: 23px; height: 2px; background: #fff; 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); }
@media (min-width: 1024px) { .nav__burger { display: none; } }
.nav__mobile { position: fixed; left: 0; right: 0; top: var(--nav-h); bottom: 0; display: flex; flex-direction: column; gap: 2px; padding: 20px clamp(16px,5vw,32px) 36px; background: var(--navy-deep); overflow-y: auto; 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[aria-current="page"] { color: var(--green); }
.nav__mobile .btn { margin-top: 18px; border-bottom: none; color: #112016; }
.nav__mobile[hidden] { display: none !important; }
@media (min-width: 1024px) { .nav__mobile { display: none !important; } }
body.menu-open { overflow: hidden; }
body.menu-open .nav { position: fixed; top: 0; left: 0; right: 0; }

/* ---------- 6. HERO ---------- */
.hero { position: relative; isolation: isolate; background: var(--navy-deep); color: #fff; padding: clamp(60px,11vw,116px) 0 clamp(52px,9vw,96px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(1100px 540px at 80% -8%, rgba(167,219,95,.12), transparent 58%), radial-gradient(900px 620px at -5% 108%, rgba(31,47,74,.85), transparent 70%), linear-gradient(180deg, #0F1A2C 0%, #162338 58%, #1F2F4A 100%); }
.hero__bg::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(112deg, transparent 0 24px, rgba(255,255,255,.022) 24px 25px), repeating-linear-gradient(22deg, transparent 0 38px, rgba(167,219,95,.04) 38px 39px); pointer-events: none; }
.hero__inner { position: relative; max-width: 880px; }
.hero__title { font-size: clamp(30px, 6.6vw, 60px); line-height: 1.08; margin: 8px 0 18px; letter-spacing: -.02em; }
.hero__title .hl { color: var(--green); }
.hero__sub { max-width: 620px; font-size: clamp(15.5px, 2.1vw, 19px); line-height: 1.6; color: rgba(255,255,255,.82); margin-bottom: 28px; }
.hero__ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
@media (min-width: 600px) { .hero__ctas { flex-direction: row; flex-wrap: wrap; } }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 13px; color: rgba(255,255,255,.72); }
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust--center { justify-content: center; margin-top: 22px; }
.check { display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; background: var(--green-soft); color: var(--green); border-radius: 999px; font-size: 11px; font-weight: 800; flex-shrink: 0; }

/* ---------- 7. PAGE HERO ---------- */
.page-hero { position: relative; isolation: isolate; background: var(--navy-deep); color: #fff; padding: clamp(48px,7.5vw,84px) 0 clamp(44px,6.5vw,72px); overflow: hidden; }
.page-hero--b2b .page-hero__bg::before { background: radial-gradient(800px 420px at 85% -20%, rgba(61,123,165,.22), transparent 60%), linear-gradient(180deg, #0C1726 0%, #162338 55%, #1F2F4A 100%); }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 420px at 88% -20%, rgba(167,219,95,.14), transparent 60%), linear-gradient(180deg, #0F1A2C 0%, #162338 55%, #1F2F4A 100%); }
.page-hero__inner { position: relative; max-width: 780px; }
.page-hero__title { font-size: clamp(28px, 5.8vw, 50px); margin: 14px 0 16px; line-height: 1.08; }
.page-hero__title .hl { color: var(--green); }
.page-hero__sub { font-size: clamp(15.5px, 1.9vw, 18.5px); line-height: 1.6; color: rgba(255,255,255,.82); max-width: 640px; margin: 0 0 26px; }
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.68); }
.breadcrumb a { color: rgba(255,255,255,.78); transition: color .15s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span[aria-current] { color: var(--green); }
.breadcrumb .sep { opacity: .5; }

/* ---------- 8. PROFILE CHOICE (B2B / B2C) ---------- */
.choice { display: grid; gap: 20px; margin-top: 8px; }
@media (min-width: 820px) { .choice { grid-template-columns: 1fr 1fr; } }
.choice-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--sh-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.choice-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--green-line); }
.choice-card--pro { background: linear-gradient(165deg, #1F2F4A, #162338); color: #fff; border-color: rgba(255,255,255,.1); }
.choice-card--pro:hover { border-color: rgba(61,123,165,.5); }
.choice-card__tag { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; padding: 6px 13px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--green-soft); color: var(--green-ink); }
.choice-card--pro .choice-card__tag { background: rgba(61,123,165,.2); color: #9CC6E2; }
.choice-card__icon { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: var(--green-soft); color: var(--green-ink); }
.choice-card--pro .choice-card__icon { background: rgba(255,255,255,.08); color: var(--green); }
.choice-card__icon svg { width: 30px; height: 30px; }
.choice-card__title { font-size: clamp(22px, 3.2vw, 28px); }
.choice-card--pro .choice-card__title { color: #fff; }
.choice-card__text { font-size: 15.5px; color: var(--gray-600); margin: 0; flex: 1; }
.choice-card--pro .choice-card__text { color: rgba(255,255,255,.78); }
.choice-card__list { display: grid; gap: 8px; margin: 4px 0 6px; }
.choice-card__list li { display: flex; gap: 9px; align-items: center; font-size: 14px; color: var(--gray-600); }
.choice-card--pro .choice-card__list li { color: rgba(255,255,255,.8); }
.choice-card__list svg { width: 16px; height: 16px; color: var(--green-ink); flex-shrink: 0; }
.choice-card--pro .choice-card__list svg { color: var(--green); }

/* ---------- 9. CARDS / GRIDS ---------- */
.grid { display: grid; gap: 18px; margin-top: 38px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .grid--2 { grid-template-columns: repeat(2,1fr); } .grid--3 { grid-template-columns: repeat(3,1fr); } .grid--4 { grid-template-columns: repeat(4,1fr); } }

.card { background: var(--white); border-radius: var(--r-lg); padding: clamp(22px,3.8vw,32px) clamp(20px,3.4vw,28px); box-shadow: var(--sh-md); border: 1px solid var(--gray-100); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--green-line); }
.card--dark { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); box-shadow: none; color: #fff; }
.card--dark:hover { border-color: var(--green-line); background: rgba(167,219,95,.05); }
.card__icon { width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--green-soft); color: var(--green-ink); margin-bottom: 16px; }
.card--dark .card__icon { color: var(--green); }
.card__icon svg { width: 27px; height: 27px; }
.card__title { font-size: 19px; margin-bottom: 9px; color: var(--ink); }
.card--dark .card__title { color: #fff; }
.card__text { color: var(--gray-600); font-size: 15px; line-height: 1.6; margin: 0; }
.card--dark .card__text { color: rgba(255,255,255,.74); }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--green-ink); transition: gap .18s ease; }
.card--dark .card__link { color: var(--green); }
.card__link:hover { gap: 11px; }

/* Compact tag-card (listas de públicos / problemas) */
.tagcards { display: grid; gap: 12px; margin-top: 36px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .tagcards { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 920px) { .tagcards { grid-template-columns: repeat(3,1fr); } }
.tagcard { display: flex; gap: 13px; align-items: flex-start; padding: 18px 20px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-md); box-shadow: var(--sh-sm); }
.section--dark .tagcard, .section--deep .tagcard { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); box-shadow: none; }
.tagcard__icon { flex-shrink: 0; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--green-soft); color: var(--green-ink); }
.section--dark .tagcard__icon, .section--deep .tagcard__icon { color: var(--green); }
.tagcard__icon svg { width: 20px; height: 20px; }
.tagcard__title { font-size: 15.5px; font-weight: 700; color: var(--ink); margin: 0 0 2px; }
.section--dark .tagcard__title, .section--deep .tagcard__title { color: #fff; }
.tagcard__text { font-size: 13.5px; color: var(--gray-600); margin: 0; line-height: 1.45; }
.section--dark .tagcard__text, .section--deep .tagcard__text { color: rgba(255,255,255,.7); }

/* Cities (zone d'intervention — autorité) */
.cities { display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center; margin-top: 36px; }
.city { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; background: var(--white); border: 1px solid var(--gray-100); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink); box-shadow: var(--sh-sm); transition: transform .18s ease, border-color .18s ease; }
.city:hover { transform: translateY(-2px); border-color: var(--green-line); }
.city svg { width: 14px; height: 14px; color: var(--green-ink); flex-shrink: 0; }
.section--dark .city, .section--deep .city { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: #fff; }
.section--dark .city svg, .section--deep .city svg { color: var(--green); }
.zone-note { text-align: center; margin-top: 24px; font-size: 14.5px; color: var(--gray-600); }
.zone-note a { color: var(--green-ink); font-weight: 700; }
.section--dark .zone-note, .section--deep .zone-note { color: rgba(255,255,255,.75); }
.section--dark .zone-note a, .section--deep .zone-note a { color: var(--green); }

/* France map (l'Hexagone) — authority block */
.zone-grid { display: grid; gap: clamp(40px, 5vw, 64px); align-items: center; margin-top: 12px; }
@media (min-width: 920px) { .zone-grid { grid-template-columns: minmax(300px, 1fr) 1.05fr; } }
.zone-map { position: relative; width: 100%; max-width: 520px; aspect-ratio: 1; margin: 0 auto; }
.france-map {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(167,219,95,.92) 0%, rgba(167,219,95,.55) 60%, rgba(167,219,95,.4) 100%);
  -webkit-mask: url('/assets/france.svg') no-repeat center / contain;
          mask: url('/assets/france.svg') no-repeat center / contain;
  filter: drop-shadow(0 0 36px rgba(167,219,95,.35)) drop-shadow(0 6px 14px rgba(0,0,0,.35));
}
.france-pins { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.pin { position: absolute; width: 11px; height: 11px; border-radius: 999px; background: #fff; transform: translate(-50%,-50%); box-shadow: 0 0 0 2px var(--green), 0 0 12px rgba(167,219,95,.7); }
.pin--hq { width: 15px; height: 15px; background: var(--green); box-shadow: 0 0 0 3px rgba(255,255,255,.35), 0 0 18px rgba(167,219,95,.95); }
.pin::after {
  content: ""; position: absolute; inset: -5px;
  border-radius: 999px; border: 2px solid var(--green);
  animation: pin-pulse 2.4s ease-out infinite;
}
.pin--hq::after { inset: -7px; border-width: 2.5px; }
@keyframes pin-pulse { 0% { transform: scale(.5); opacity: .85; } 80% { opacity: .1; } 100% { transform: scale(2.4); opacity: 0; } }

.tricolore { display: inline-block; height: 4px; width: 58px; border-radius: 2px; background: linear-gradient(90deg, #0055A4 0 33.33%, #fff 33.33% 66.66%, #EF4135 66.66% 100%); margin: 0 0 18px; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }

@media (min-width: 920px) {
  .zone-body { text-align: left; }
}
.zone-body .cities { justify-content: center; margin-top: 28px; }
.zone-body .zone-note { text-align: center; }
@media (min-width: 920px) {
  .zone-body .cities { justify-content: flex-start; }
  .zone-body .zone-note { text-align: left; }
}

/* ---------- 10. SPLIT + MEDIA ---------- */
.split { display: grid; gap: clamp(28px,5vw,58px); align-items: center; }
@media (min-width: 920px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: -1; } }
.split__body .lead { margin-bottom: 20px; }
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--gray-100); background: var(--navy-deep); line-height: 0; }
.section--dark .media-frame, .section--deep .media-frame { border-color: rgba(255,255,255,.1); }
.media-frame img, .media-frame video { width: 100%; display: block; }
.media-frame--video { aspect-ratio: 9/16; max-width: 380px; margin: 0 auto; }
.media-frame--wide { aspect-ratio: 16/10; }
.media-frame--wide img, .media-frame--wide video, .media-frame--video video { width: 100%; height: 100%; object-fit: cover; }
.media-badge { position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; background: rgba(22,35,56,.82); backdrop-filter: blur(6px); border: 1px solid var(--green-line); border-radius: 999px; color: #fff; font-weight: 700; font-size: 12.5px; z-index: 3; }
.media-badge svg { width: 15px; height: 15px; color: var(--green); }
.media-frame--video .media-badge { top: 14px; bottom: auto; }
.scanline { position: absolute; top: 0; left: -2%; width: 3px; height: 100%; z-index: 4; pointer-events: none; background: linear-gradient(to bottom, transparent 0%, rgba(167,219,95,.5) 15%, #fff 42%, var(--green) 50%, #fff 58%, rgba(167,219,95,.5) 85%, transparent 100%); box-shadow: 0 0 6px 2px rgba(255,255,255,.85), 0 0 14px 6px rgba(167,219,95,.65), 0 0 28px 10px rgba(167,219,95,.32); animation: scanner-sweep 4s cubic-bezier(.45,0,.55,1) infinite; }
@keyframes scanner-sweep { 0% { left: -2%; opacity: 0; } 4% { opacity: 1; } 96% { left: 102%; opacity: 1; } 100% { left: 102%; opacity: 0; } }

/* ---------- 11. STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 6px; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat { display: flex; flex-direction: column; background: var(--white); padding: 24px 18px; border-radius: var(--r-lg); border: 1px solid var(--gray-100); box-shadow: var(--sh-sm); text-align: center; }
.section--dark .stat, .section--deep .stat { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); box-shadow: none; }
.stat__value { font-size: clamp(28px,4.8vw,40px); font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.section--dark .stat__value, .section--deep .stat__value { color: var(--green); }
.stat__label { font-size: 12.5px; color: var(--gray-600); margin-top: 7px; line-height: 1.4; }
.section--dark .stat__label, .section--deep .stat__label { color: rgba(255,255,255,.74); }

/* ---------- 12. STEPS / PROCESS ---------- */
.steps { display: grid; gap: 16px; margin-top: 38px; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .steps--4 { grid-template-columns: repeat(4,1fr); } }
.step { position: relative; background: var(--white); padding: clamp(20px,3.6vw,28px) clamp(18px,3.2vw,24px); border-radius: var(--r-lg); border: 1px solid var(--gray-100); box-shadow: var(--sh-sm); }
.section--dark .step, .section--deep .step { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); box-shadow: none; }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--navy); color: var(--green); font-weight: 800; font-size: 17px; border-radius: 999px; margin-bottom: 14px; }
.section--dark .step__num, .section--deep .step__num { background: var(--green); color: #112016; }
.step__title { font-size: 17px; margin-bottom: 7px; color: var(--ink); }
.section--dark .step__title, .section--deep .step__title { color: #fff; }
.step__text { color: var(--gray-600); font-size: 14.5px; margin: 0; line-height: 1.55; }
.section--dark .step__text, .section--deep .step__text { color: rgba(255,255,255,.74); }

/* ---------- 13. CHECKLIST ---------- */
.checklist { display: grid; gap: 13px; margin: 22px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.55; color: var(--gray-600); }
.section--dark .checklist li, .section--deep .checklist li { color: rgba(255,255,255,.8); }
.checklist li strong { color: var(--ink); }
.section--dark .checklist li strong, .section--deep .checklist li strong { color: #fff; }
.checklist__icon { flex-shrink: 0; width: 25px; height: 25px; margin-top: 1px; display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); color: var(--green-ink); border-radius: 999px; }
.section--dark .checklist__icon, .section--deep .checklist__icon { color: var(--green); }
.checklist__icon svg { width: 14px; height: 14px; }

/* ---------- 14. COMPARE ---------- */
.compare { margin-top: 38px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.compare__row { display: grid; grid-template-columns: 1fr 1fr; }
.compare__row > div { padding: 15px 17px; font-size: 14.5px; background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.78); }
.compare__row > div + div { border-left: 1px solid rgba(255,255,255,.08); }
.compare__row--head > div { background: rgba(255,255,255,.07); color: #fff; font-weight: 700; font-size: 13.5px; letter-spacing: .02em; }
.compare__win { color: #fff !important; }
.compare__win::before { content: "✓"; display: inline-block; margin-right: 9px; color: var(--green); font-weight: 800; }
.compare__row:last-child > div { border-bottom: none; }

/* ---------- 15. VIDEO GALLERY ---------- */
.video-grid { display: grid; gap: 18px; margin-top: 38px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .video-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3,1fr); } }
.video-card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--navy-deep); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--sh-md); aspect-ratio: 9/16; }
.section--light .video-card, .section--white .video-card { border-color: var(--gray-100); }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; background: linear-gradient(180deg, rgba(22,35,56,.05) 40%, rgba(22,35,56,.85) 100%); pointer-events: none; }
.video-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 62px; height: 62px; border-radius: 999px; background: rgba(167,219,95,.94); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(0,0,0,.4); transition: transform .2s ease, background .2s ease; z-index: 2; }
.video-card__play svg { width: 25px; height: 25px; color: #112016; margin-left: 3px; }
.video-card:hover .video-card__play { transform: translate(-50%,-50%) scale(1.08); background: var(--green-hover); }
.video-card.is-playing .video-card__play, .video-card.is-playing .video-card__overlay { opacity: 0; visibility: hidden; }
.video-card__label { position: relative; color: #fff; font-weight: 700; font-size: 15px; z-index: 1; }
.video-card__tag { display: inline-block; margin-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }

/* ---------- 16. TESTIMONIALS ---------- */
.rating { display: flex; flex-direction: column; align-items: center; gap: 6px; margin: 6px 0 34px; }
.rating__stars { font-size: 25px; color: var(--green); letter-spacing: 4px; }
.rating__text { margin: 0; font-size: 15px; color: var(--gray-600); }
.rating__text strong { color: var(--ink); }
.section--dark .rating__text, .section--deep .rating__text { color: rgba(255,255,255,.78); }
.section--dark .rating__text strong, .section--deep .rating__text strong { color: #fff; }
.testimonials { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(2,1fr); } }
.testimonial { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: clamp(22px,3.8vw,30px); box-shadow: var(--sh-sm); margin: 0; }
.section--dark .testimonial, .section--deep .testimonial { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); box-shadow: none; }
.testimonial__stars { color: var(--green); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial blockquote { margin: 0 0 14px; font-size: 15.5px; color: var(--ink); line-height: 1.65; }
.section--dark .testimonial blockquote, .section--deep .testimonial blockquote { color: rgba(255,255,255,.92); }
.testimonial figcaption { font-size: 13px; color: var(--gray-400); font-weight: 600; }

/* ---------- 17. FAQ ---------- */
.faq { margin-top: 34px; display: grid; gap: 12px; }
.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: 19px 50px 19px 19px; font-weight: 700; font-size: 15.5px; color: var(--ink); position: relative; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; position: absolute; right: 19px; top: 50%; transform: translateY(-50%); font-size: 23px; color: var(--green-ink); font-weight: 400; transition: transform .2s ease; }
.faq__item[open] .faq__q::after { content: "−"; }
.faq__item[open] { border-color: var(--green-line); }
.faq__a { padding: 0 19px 19px; font-size: 15px; color: var(--gray-600); line-height: 1.65; }
.faq__a ul { list-style: disc; padding-left: 20px; margin: 8px 0; display: grid; gap: 6px; }
.faq__a p { margin: 0 0 .8em; }

/* ---------- 18. ATELIERS ---------- */
.ateliers { display: grid; gap: 20px; margin-top: 38px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .ateliers { grid-template-columns: repeat(2,1fr); } }
.atelier { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); display: flex; flex-direction: column; }
.atelier__map { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.atelier__body { padding: clamp(22px,3.8vw,28px); display: flex; flex-direction: column; gap: 13px; }
.atelier__brand { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-ink); margin: 0; }
.atelier__name { font-size: 22px; color: var(--ink); margin: 0; }
.atelier__row { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--gray-600); line-height: 1.5; }
.atelier__row svg { width: 18px; height: 18px; color: var(--green-ink); flex-shrink: 0; margin-top: 2px; }
.atelier__row strong { color: var(--ink); }
.atelier__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

/* ---------- 19. FORMS ---------- */
.form { display: grid; gap: 17px; }
.form__row { display: grid; gap: 17px; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field__label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field__label .req { color: var(--green-ink); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; font-family: var(--font); font-size: 15px; color: var(--ink); background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-md); transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.field input::placeholder, .field textarea::placeholder { color: var(--gray-400); }
.field input[type="file"] { padding: 11px 13px; background: var(--gray-50); cursor: pointer; }
.form__note { font-size: 12px; color: var(--gray-400); margin: 0; line-height: 1.5; }
.form__success { display: none; padding: 16px 18px; background: rgba(61,165,97,.1); border: 1px solid rgba(61,165,97,.35); border-radius: var(--r-md); color: #2C7E49; font-size: 14.5px; font-weight: 600; }
.form__success.is-visible { display: block; }
.form-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: clamp(24px,4vw,38px); box-shadow: var(--sh-lg); }

.contact-grid { display: grid; gap: clamp(26px,5vw,50px); }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.contact-info { display: grid; gap: 15px; align-content: start; }
.info-card { display: flex; gap: 15px; align-items: flex-start; padding: 20px 22px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.info-card__icon { flex-shrink: 0; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); color: var(--green-ink); border-radius: 13px; }
.info-card__icon svg { width: 22px; height: 22px; }
.info-card__label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin: 0 0 3px; }
.info-card__value { font-size: 16px; font-weight: 600; color: var(--ink); margin: 0; line-height: 1.4; }
.info-card__value a:hover { color: var(--green-ink); }
.info-card small { display: block; font-weight: 400; font-size: 13px; color: var(--gray-600); margin-top: 2px; }

/* ---------- 20. CTA BAND ---------- */
.cta-band { position: relative; isolation: isolate; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 300px at 50% -30%, rgba(167,219,95,.16), transparent 65%); }
.cta-band__inner { max-width: 720px; margin: 0 auto; }
.cta-band__title { font-size: clamp(28px,5.6vw,46px); color: #fff; margin: 0 0 16px; line-height: 1.12; }
.cta-band__title .hl { color: var(--green); }
.cta-band .lead { margin: 0 auto 28px; color: rgba(255,255,255,.82); }
.cta-band__ctas { display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: 440px; margin: 0 auto; }
.cta-band__ctas .btn { width: 100%; }
@media (min-width: 600px) { .cta-band__ctas { flex-direction: row; justify-content: center; max-width: none; } .cta-band__ctas .btn { width: auto; } }

/* ---------- 21. BLOG ---------- */
.blog-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.blog-cat { padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-600); transition: all .15s ease; }
.blog-cat:hover, .blog-cat--active { background: var(--navy); color: #fff; border-color: var(--navy); }
.blog-grid { display: grid; gap: 22px; margin-top: 36px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.post-card__media { aspect-ratio: 16/9; overflow: hidden; background: var(--navy-deep); position: relative; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__cat { position: absolute; top: 12px; left: 12px; padding: 5px 11px; border-radius: 999px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--green); color: #112016; }
.post-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.post-card__title { font-size: 18px; line-height: 1.3; color: var(--ink); margin: 0 0 9px; }
.post-card__excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.55; margin: 0 0 16px; flex: 1; }
.post-card__link { font-weight: 700; font-size: 14px; color: var(--green-ink); display: inline-flex; align-items: center; gap: 6px; transition: gap .18s ease; }
.post-card__link:hover { gap: 11px; }

/* ---------- 22. ARTICLE ---------- */
.article { padding: clamp(36px,5vw,64px) 0; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-bottom: 18px; font-size: 13px; color: var(--gray-400); }
.article__cat { padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--green-soft); color: var(--green-ink); }
.article__title { font-size: clamp(28px,5vw,44px); line-height: 1.12; color: var(--ink); margin: 0 0 18px; }
.article__lead { font-size: clamp(17px,2vw,20px); line-height: 1.55; color: var(--gray-600); margin: 0 0 28px; font-weight: 500; }
.article__hero { margin: 0 0 30px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--gray-100); aspect-ratio: 16/9; position: relative; background: var(--navy-deep); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article__hero figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; font-size: 12.5px; color: rgba(255,255,255,.9); background: linear-gradient(180deg, transparent, rgba(22,35,56,.82)); }
.article__answer { padding: 20px 22px; background: var(--green-soft); border-left: 4px solid var(--green); border-radius: 0 var(--r-md) var(--r-md) 0; margin: 0 0 32px; }
.article__answer p { margin: 0; font-size: 16px; color: var(--ink); line-height: 1.6; }
.article__answer strong { color: var(--ink); }
.prose-article { color: #2A3447; font-size: 17px; line-height: 1.75; }
.prose-article > * { margin-bottom: 1.2em; }
.prose-article h2 { font-size: clamp(22px,3.4vw,30px); color: var(--ink); margin: 1.6em 0 .6em; line-height: 1.2; }
.prose-article h3 { font-size: clamp(18px,2.6vw,22px); color: var(--ink); margin: 1.4em 0 .5em; }
.prose-article ul, .prose-article ol { padding-left: 22px; display: grid; gap: 9px; }
.prose-article ul { list-style: disc; }
.prose-article ol { list-style: decimal; }
.prose-article a { color: var(--green-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose-article strong { color: var(--ink); font-weight: 700; }
.prose-article blockquote { margin: 1.4em 0; padding: 16px 20px; border-left: 4px solid var(--gray-200); background: var(--gray-50); border-radius: 0 var(--r-md) var(--r-md) 0; font-style: italic; color: var(--gray-600); }
.article__cta { margin: 40px 0 0; padding: clamp(24px,4vw,34px); background: linear-gradient(165deg, var(--navy), var(--navy-deep)); border-radius: var(--r-lg); color: #fff; text-align: center; }
.article__cta h3 { font-size: clamp(20px,3vw,26px); color: #fff; margin: 0 0 10px; }
.article__cta p { color: rgba(255,255,255,.8); margin: 0 0 20px; }
.article__share { display: flex; align-items: center; gap: 12px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--gray-100); font-size: 13px; color: var(--gray-400); }

/* ---------- 23. FOOTER ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-top: 58px; }
.footer__inner { display: grid; gap: 36px; }
@media (min-width: 820px) { .footer__inner { grid-template-columns: 1.4fr 2fr; align-items: start; } }
.footer__brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer__logo { height: 38px; width: auto; max-width: 220px; object-fit: contain; }
.footer__tag { font-size: 14px; color: rgba(255,255,255,.65); margin: 0; max-width: 320px; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.7); transition: all .18s ease; }
.footer__social a:hover { background: var(--green); color: #112016; border-color: var(--green); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__cols { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 560px) { .footer__cols { grid-template-columns: repeat(3,1fr); } }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__title { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 4px; font-weight: 700; }
.footer__col a, .footer__col span { font-size: 14px; color: rgba(255,255,255,.7); transition: color .15s ease; }
.footer__col a:hover { color: var(--green); }
.footer__bottom { margin-top: 42px; padding: 20px clamp(16px,5vw,32px); border-top: 1px solid var(--navy-line); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.66); max-width: var(--container); margin-left: auto; margin-right: auto; }
.footer__bottom a:hover { color: var(--green); }

/* ---------- 24. FLOATING WHATSAPP ---------- */
.fab-wa { position: fixed; right: 16px; bottom: max(16px, env(safe-area-inset-bottom,16px)); z-index: 60; width: 58px; height: 58px; border-radius: 999px; background: #25D366; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(37,211,102,.4); transition: transform .18s ease; }
.fab-wa:hover { transform: scale(1.06); }
.fab-wa svg { width: 30px; height: 30px; color: #fff; }

/* ---------- 25. REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 25a-1. CHAT BUBBLE (assistant) ---------- */
.chat-bubble {
  position: fixed; right: 16px; z-index: 70;
  bottom: calc(max(16px, env(safe-area-inset-bottom,16px)) + 76px);
  max-width: 300px; display: flex; align-items: flex-start; gap: 10px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--gray-100); border-radius: 14px 14px 14px 4px;
  box-shadow: var(--sh-lg); padding: 14px 16px 14px 14px;
  transform: translateY(12px); opacity: 0; pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.chat-bubble.is-in { opacity: 1; transform: none; pointer-events: auto; }
.chat-bubble[hidden] { display: none; }
.chat-bubble__avatar { flex-shrink: 0; width: 38px; height: 38px; border-radius: 999px; background: #25D366; display: inline-flex; align-items: center; justify-content: center; }
.chat-bubble__avatar svg { width: 22px; height: 22px; color: #fff; }
.chat-bubble__body { display: flex; flex-direction: column; gap: 4px; }
.chat-bubble__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.15; color: var(--ink); margin: 0; }
.chat-bubble__text { font-size: 12.5px; line-height: 1.4; color: var(--gray-600); margin: 0 0 6px; }
.chat-bubble__cta { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; background: #25D366; color: #fff; font-weight: 700; font-size: 12.5px; line-height: 1; white-space: nowrap; padding: 9px 14px; border-radius: 999px; }
.chat-bubble__cta svg { width: 15px; height: 15px; flex-shrink: 0; }
.chat-bubble__cta:hover { background: #1FBA5A; }
.chat-bubble__close { position: absolute; top: 6px; right: 8px; width: 22px; height: 22px; border-radius: 999px; color: var(--gray-400); font-size: 16px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
.chat-bubble__close:hover { color: var(--ink); background: var(--gray-50); }
@media (max-width: 480px) { .chat-bubble { max-width: calc(100vw - 32px); } }

/* ---------- 25a-2. EXIT-INTENT MODAL ---------- */
.exit-modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; }
.exit-modal.is-open { display: flex; }
.exit-modal__overlay { position: absolute; inset: 0; background: rgba(13,20,35,.72); backdrop-filter: blur(3px); animation: exitFade .25s ease; }
.exit-modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: var(--white); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); animation: exitPop .3s cubic-bezier(.2,.7,.3,1.2);
}
.exit-modal__head { position: relative; padding: clamp(26px,5vw,36px) clamp(24px,5vw,34px) 0; }
.exit-modal__eyebrow { font-family: var(--font-display); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; color: var(--green-ink); margin: 0 0 10px; }
.exit-modal__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,4vw,30px); line-height: 1.05; color: var(--ink); margin: 0 0 12px; }
.exit-modal__text { font-size: 15px; line-height: 1.55; color: var(--gray-600); margin: 0; padding: 0 clamp(24px,5vw,34px); }
.exit-modal__actions { display: flex; flex-direction: column; gap: 10px; padding: 22px clamp(24px,5vw,34px) clamp(26px,5vw,34px); }
@media (min-width: 480px) { .exit-modal__actions { flex-direction: row; } .exit-modal__actions .btn { flex: 1; } }
.exit-modal__close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border-radius: 999px; color: var(--gray-400); font-size: 24px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; z-index: 2; }
.exit-modal__close:hover { color: var(--ink); background: var(--gray-50); }
@keyframes exitFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes exitPop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .exit-modal__overlay, .exit-modal__card, .chat-bubble { animation: none; } }

/* ---------- 25b. COOKIE CONSENT (CMP — RGPD/CNIL) ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: var(--navy-deep); color: rgba(255,255,255,.88);
  border-top: 2px solid var(--green-line);
  box-shadow: 0 -10px 30px rgba(0,0,0,.3);
  padding: 18px clamp(16px,5vw,32px) max(18px, env(safe-area-inset-bottom,18px));
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 16px; align-items: center; }
@media (min-width: 880px) { .cookie-banner__inner { grid-template-columns: 1fr auto; } }
.cookie-banner__text { font-size: 13.5px; line-height: 1.55; margin: 0; color: rgba(255,255,255,.82); }
.cookie-banner__text a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 879px) { .cookie-banner__actions .btn { flex: 1 1 auto; } }
.cookie-banner .btn { min-height: 44px; font-size: 14px; }
.btn--ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.32); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }

/* ---------- 26. SMALL SCREENS ---------- */
@media (max-width: 430px) {
  .card__title { font-size: 18px; }
  .stat { padding: 20px 12px; }
  .compare__row > div { padding: 13px 14px; font-size: 13.5px; }
  .faq__q { font-size: 15px; padding: 17px 46px 17px 16px; }
  .prose-article { font-size: 16px; }
}

/* ---------- 27. REDUCED MOTION / PRINT ---------- */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } .reveal { opacity: 1; transform: none; } .scanline { display: none; } }
@media print { .topbar, .nav, .nav__mobile, .fab-wa, .cta-band { display: none; } body { background: #fff; color: #000; } }

/* ============================================================
   DESIGN UPGRADE — Direção A (Industriel / Atelier)
   Saira Condensed display · eyebrow sans tracinho · CTA chanfré
   FAB pill compact · sections avec photos réelles
   ============================================================ */

:root {
  --font-display: 'Saira Condensed', 'Inter', system-ui, sans-serif;
}

/* Display typography — industrial automotive feel */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0; line-height: 1.04; }
.hero__title, .page-hero__title, .section__title, .cta-band__title, .article__title,
.choice-card__title, .post-card__title, .card__title, .atelier__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.005em;
}
.section__title, .cta-band__title, .article__title, .hero__title, .page-hero__title { line-height: 1.02; }
.tl-item__title, .step__title, .stat__value, .choice-card__title { font-family: var(--font-display); font-weight: 700; }
.stat__value { letter-spacing: -.005em; }

/* Eyebrow without the line — cleaner editorial style */
.eyebrow::before { display: none; }
.eyebrow { gap: 0; font-weight: 800; letter-spacing: .18em; }

/* Chanfered industrial buttons */
.btn { border-radius: 4px 4px 4px 0; }
.btn--cta { box-shadow: 0 4px 0 0 rgba(0,0,0,.25), var(--sh-cta); }
.btn--cta:hover { box-shadow: 0 2px 0 0 rgba(0,0,0,.25), var(--sh-cta); transform: translateY(2px); }

/* Compact WhatsApp FAB — with label, less generic */
.fab-wa {
  width: auto; height: auto; padding: 11px 18px 11px 14px;
  border-radius: 999px; gap: 9px;
}
.fab-wa svg { width: 22px; height: 22px; }
.fab-wa::after {
  content: "WhatsApp";
  color: #fff; font-family: var(--font);
  font-weight: 800; font-size: 14px; letter-spacing: .02em;
}
@media (max-width: 480px) {
  .fab-wa { padding: 11px 14px; }
  .fab-wa::after { display: none; }
}

/* Photo hero (home) — real garage photo background */
.hero--photo { background-image: linear-gradient(180deg, rgba(13,20,35,.78) 0%, rgba(13,20,35,.86) 60%, rgba(13,20,35,.94) 100%), url('/assets/photos/atelier-hero.jpg'); background-size: cover; background-position: center; }
.hero--photo .hero__bg { display: none; }

/* CTA band with photo background */
.cta-band--photo { background-image: linear-gradient(180deg, rgba(13,20,35,.82) 0%, rgba(13,20,35,.90) 100%), url('/assets/photos/garage-wide.jpg'); background-size: cover; background-position: center; background-blend-mode: normal; }
.cta-band--photo::before { display: none; }

/* Photo split section reusable */
.split--photo .split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.split--photo .split__media img { width: 100%; height: auto; display: block; }

/* Number-style accent before some eyebrows (editorial) */
.eyebrow--num { font-family: var(--font-display); font-size: 13px; letter-spacing: .14em; }
.eyebrow--num::before { display: inline-block; content: attr(data-num); margin-right: 10px; color: var(--green); font-weight: 700; }
.section--dark .eyebrow--num::before, .section--deep .eyebrow--num::before { color: var(--green); }

/* Atelier sign-style watermark on dark sections (industrial accent) */
.section__title .hl { font-style: normal; }

/* Larger letter-spacing on uppercase items for editorial weight */
.footer__title, .nav__links a, .blog-cat, .video-card__tag, .atelier__brand, .info-card__label,
.post-card__cat, .article__cat { font-family: var(--font); }
