/* ─────────────────────────────────────────────────────────
   PITLINE · Garage entretien auto — Racing pit-stop
   ───────────────────────────────────────────────────────── */

:root {
  --red:       #E4002B;
  --red-dark:  #B40022;
  --yellow:    #FFD100;
  --yellow-dk: #E8BF00;
  --ink:       #0F1012;
  --ink-soft:  #1E2025;
  --graphite:  #3A3D44;
  --steel:     #6B6F78;
  --smoke:     #B9BDC4;
  --line:      #E4E6EA;
  --paper:     #F5F5F2;
  --white:     #FFFFFF;
  --mint:      #00C389;   /* feu vert disponibilités */

  --font-head: 'Archivo', sans-serif;
  --font-nar:  'Archivo Narrow', 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 14px rgba(15, 16, 18, .06);
  --shadow:    0 12px 32px rgba(15, 16, 18, .10);
  --shadow-lg: 0 26px 60px rgba(15, 16, 18, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 36px; }

/* ── TOP STRIP ────────────────────────────────────────────── */
.topstrip {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  overflow: hidden;
  border-bottom: 2px solid var(--red);
}
.topstrip-inner {
  display: flex;
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 0 0 20px;
  gap: 20px;
}
.topstrip-chip {
  background: var(--red);
  color: var(--white);
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .16em;
  flex: none;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  padding-right: 24px;
}
.topstrip-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: topstripScroll 32s linear infinite;
  padding: 10px 0;
  flex: 1;
}
.topstrip-track strong { color: var(--yellow); font-weight: 800; }
.topstrip-track .dot { color: var(--red); }
@keyframes topstripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: .06em;
}
.logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--red);
  color: var(--white);
  border-radius: 7px;
  box-shadow: 0 6px 12px rgba(228, 0, 43, .3);
}
.logo-type {
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  letter-spacing: .05em;
}
.logo-garage {
  font-family: var(--font-nar);
  font-weight: 700;
  font-size: .56rem;
  letter-spacing: .28em;
  color: var(--red);
  margin-bottom: 2px;
}
.logo-footer .logo-garage { color: var(--yellow); }

.nav-menu {
  display: flex;
  gap: 30px;
}
.nav-menu a {
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  color: var(--graphite);
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--red); }
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width .25s ease;
}
.nav-menu a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-find {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .9rem;
  color: var(--graphite);
  transition: color .2s;
}
.nav-find:hover { color: var(--red); }
.nav-find svg { color: var(--red); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all .25s ease;
  border-radius: 1px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: 1rem;
}
.nav-mobile a.btn { border: none; margin-top: 12px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { font-size: .78rem; padding: 10px 16px; }
.btn-lg { font-size: .98rem; padding: 17px 28px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(228, 0, 43, .28);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 12px 28px rgba(228, 0, 43, .4); }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(255, 209, 0, .35);
}
.btn-yellow:hover { background: var(--yellow-dk); }

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .4);
}
.btn-ghost-dark:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); }

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0 90px;
  min-height: 680px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: grayscale(40%) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(15, 16, 18, .96) 0%, rgba(15, 16, 18, .85) 42%, rgba(15, 16, 18, .55) 100%),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(228, 0, 43, .05) 80px 81px);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 72px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 8px 16px 8px 8px;
  border-radius: 100px;
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.kicker-flag {
  background: var(--red);
  padding: 4px 8px;
  border-radius: 100px;
  font-size: .85rem;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.025em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.h1-line { display: block; }
.h1-accent { color: var(--red); }
.hero-title em {
  font-style: normal;
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 5px;
  background: var(--yellow);
  transform: skew(-10deg);
}

.hero-lead {
  max-width: 500px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .75);
}
.hero-trust svg { color: var(--mint); }

/* Widget devis éclair */
.hero-widget {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .1);
  position: relative;
}
.hero-widget::before {
  content: "";
  position: absolute;
  top: -6px; right: 24px;
  width: 60px; height: 6px;
  background: repeating-linear-gradient(90deg, var(--red) 0 10px, var(--white) 10px 20px);
}

.widget-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.widget-chip {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .62rem;
  letter-spacing: .18em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.widget-head h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.widget-timer {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  background: rgba(228, 0, 43, .08);
  padding: 8px 12px;
  border-radius: 6px;
}

.widget-form { display: flex; flex-direction: column; gap: 14px; }
.widget-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.widget-form label > span {
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel);
}
.widget-form input,
.widget-form select {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .95rem;
  font-weight: 500;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s;
}
.widget-form input:focus,
.widget-form select:focus {
  outline: none;
  border-color: var(--red);
}

/* Plaque immat' */
.plate {
  display: flex;
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: #F5B733;
}
.plate-eu {
  width: 34px;
  display: grid; place-items: center;
  background: #003399;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .02em;
}
.plate input {
  flex: 1;
  border: none !important;
  background: #F5B733 !important;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: .08em;
  color: var(--ink);
  padding: 10px 8px !important;
  border-radius: 0 !important;
}

.widget-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.widget-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 4px;
}
.widget-result > div { display: flex; flex-direction: column; gap: 2px; }
.widget-result span {
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel);
}
.widget-result strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: -.02em;
}
.widget-result em {
  font-style: normal;
  font-size: .78rem;
  color: var(--steel);
}
.result-right strong { color: var(--ink); }

.widget-mini {
  font-size: .78rem;
  color: var(--steel);
  text-align: center;
  margin-top: 6px;
}

/* ── USP ─────────────────────────────────────────────────── */
.usp {
  background: var(--paper);
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.usp-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.usp-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  color: var(--red);
}
.usp-item strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.usp-item span {
  font-size: .86rem;
  color: var(--steel);
  line-height: 1.4;
}
.usp-item-pro .usp-icon { background: var(--ink); color: var(--yellow); border-color: var(--ink); }

/* ── SECTIONS HEAD ───────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--yellow); }
.ey-square {
  width: 10px; height: 10px;
  background: currentColor;
  display: inline-block;
}

.section-head { margin-bottom: 44px; }
.section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
}
.section-head-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head-avis {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.section-title em {
  font-style: normal;
  color: var(--red);
}
.section-title-light { color: var(--white); }
.section-title-light em { color: var(--yellow); }

.section-lede {
  font-size: .98rem;
  color: var(--steel);
  line-height: 1.6;
  padding-bottom: 6px;
}

/* ── SERVICES ────────────────────────────────────────────── */
.services { padding: 100px 0 110px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  grid-auto-rows: 1fr;
}
.service-card-hero {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card-hero .svc-img {
  height: 54%;
  overflow: hidden;
}
.service-card-hero .svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card-hero:hover .svc-img img { transform: scale(1.05); }
.service-card-hero .svc-body { padding: 28px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card-hero .svc-cat {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.service-card-hero h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -.015em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card-hero p {
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: auto;
}
.svc-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 24px;
}
.svc-price .price-label {
  display: block;
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.svc-price strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -.02em;
}
.svc-price strong em { font-style: normal; font-size: 1.3rem; color: var(--yellow); }
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--yellow);
  padding: 12px 18px;
  border-radius: 8px;
  transition: background .2s;
}
.service-card-hero:hover .svc-cta { background: var(--white); }

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.service-card:hover::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}
.svc-icon-wrap {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--paper);
  border-radius: 10px;
  color: var(--red);
  margin-bottom: 4px;
  transition: background .2s, color .2s;
}
.service-card:hover .svc-icon-wrap {
  background: var(--red);
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.005em;
}
.service-card p {
  font-size: .87rem;
  line-height: 1.5;
  color: var(--steel);
  flex: 1;
}
.svc-price-inline {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px dashed var(--line);
}
.svc-price-inline span {
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--steel);
}
.svc-price-inline strong {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -.02em;
}

/* ── PROMO BANNER ────────────────────────────────────────── */
.promo {
  padding: 70px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}
.promo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.promo-card-main {
  background: var(--yellow);
  color: var(--ink);
  padding: 38px 36px;
}
.promo-card-main::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 70%; height: 180%;
  background: repeating-linear-gradient(-20deg, transparent 0 40px, rgba(228, 0, 43, .08) 40px 45px);
  pointer-events: none;
}
.promo-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .68rem;
  letter-spacing: .14em;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.promo-tag-muted {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.promo-tag-dark {
  background: var(--yellow);
  color: var(--ink);
}
.promo-card-main h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.promo-card-main h3 em {
  font-style: normal;
  color: var(--red);
  display: block;
  margin-top: 4px;
}
.promo-card-main p {
  position: relative;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 480px;
  margin-bottom: 24px;
}
.promo-price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.promo-price .was {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, .45);
  margin-right: 8px;
}
.promo-price strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -.02em;
  margin-right: 8px;
}
.promo-price em {
  font-style: normal;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
}
.promo-bullets {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: .85rem;
  color: var(--ink);
  font-weight: 500;
}

.promo-card-side {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.promo-side-img {
  height: 150px;
  overflow: hidden;
}
.promo-side-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-side-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.promo-side-body h4 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.promo-price-mini {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.promo-price-mini .was {
  font-family: var(--font-mono);
  text-decoration: line-through;
  color: var(--smoke);
  font-size: .95rem;
}
.promo-price-mini strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--red);
}

.promo-card-dark {
  background: var(--ink);
  color: var(--white);
}
.promo-card-dark .promo-side-body { padding: 28px 26px; }
.promo-card-dark h4 em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}
.promo-card-dark p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.55;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  transition: gap .2s;
}
.promo-card-dark .link-arrow { color: var(--yellow); }
.link-arrow:hover { gap: 12px; }

/* ── STEPS ───────────────────────────────────────────────── */
.steps {
  padding: 100px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 60px, rgba(228, 0, 43, .04) 60px 61px),
    radial-gradient(ellipse at 80% 20%, rgba(228, 0, 43, .12), transparent 50%);
  pointer-events: none;
}
.steps > .container { position: relative; z-index: 2; }

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 14px;
  margin-bottom: 50px;
}
.step {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .25s, border-color .25s, background .25s;
}
.step:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--red);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.step-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.55;
}
.step-arrow {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  padding-top: 32px;
}

.steps-cta { text-align: center; }

/* ── PNEUS ───────────────────────────────────────────────── */
.pneus { padding: 100px 0; }

.brands-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding: 32px 0;
  margin-bottom: 48px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
}
.brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: .06em;
  color: var(--ink);
  text-transform: uppercase;
  opacity: .6;
  transition: opacity .2s;
}
.brand:hover { opacity: 1; }

.pneus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.tyre-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.tyre-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.tyre-img {
  position: relative;
  background: var(--paper);
  height: 180px;
  overflow: hidden;
}
.tyre-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.tyre-card:hover .tyre-img img { transform: scale(1.05); }
.tyre-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
}
.tyre-badge-hot { background: var(--red); }
.tyre-badge-promo { background: var(--yellow); color: var(--ink); }

.tyre-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tyre-brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--red);
}
.tyre-body h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.005em;
  color: var(--ink);
  line-height: 1.2;
}
.tyre-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.spec {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .72rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--steel);
}
.spec-a { background: #00C389; color: var(--white); }
.spec-b { background: #7BC043; color: var(--white); }

.tyre-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}
.tyre-price .was {
  font-family: var(--font-mono);
  text-decoration: line-through;
  color: var(--smoke);
  font-size: .82rem;
}
.tyre-price strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.tyre-price em { font-style: normal; font-size: .8rem; color: var(--steel); }

.tyre-cta {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 11px;
  border-radius: 8px;
  transition: background .2s;
  margin-top: 4px;
}
.tyre-cta:hover { background: var(--red); }

/* ── EV ──────────────────────────────────────────────────── */
.ev {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--paper) 0%, #EDEDE8 100%);
  position: relative;
  overflow: hidden;
}
.ev::before {
  content: "⚡";
  position: absolute;
  top: -20px;
  right: 8%;
  font-size: 260px;
  color: var(--yellow);
  opacity: .18;
  transform: rotate(12deg);
  line-height: 1;
}
.ev-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.ev-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.ev-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ev-chip {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.ev-chip svg { color: var(--yellow-dk); }

.ev-text { position: relative; z-index: 2; }
.ev-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--graphite);
  margin-bottom: 28px;
}

.ev-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.ev-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ev-list svg {
  flex: none;
  color: var(--red);
  background: var(--white);
  padding: 4px;
  border-radius: 50%;
  border: 2px solid var(--red);
  box-sizing: content-box;
  margin-top: 2px;
}
.ev-list strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.005em;
  margin-bottom: 2px;
}
.ev-list span {
  font-size: .9rem;
  color: var(--steel);
  line-height: 1.5;
}

/* ── AVIS ────────────────────────────────────────────────── */
.avis { padding: 100px 0; background: var(--white); }

.trustbox {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.trust-stars {
  font-size: 1.3rem;
  color: #FFA726;
  letter-spacing: .08em;
}
.trustbox span {
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .85rem;
  color: var(--steel);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.avis-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, transform .25s;
}
.avis-card:hover { border-color: var(--ink); transform: translateY(-4px); }
.avis-stars { color: #FFA726; font-size: 1.1rem; letter-spacing: .1em; }
.avis-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.avis-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
}
.avis-card footer strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
}
.avis-card footer span {
  font-size: .82rem;
  color: var(--steel);
}

/* ── AGENCES ─────────────────────────────────────────────── */
.agences { padding: 100px 0; background: var(--paper); border-top: 1px solid var(--line); }

.agences-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.agence-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.agence-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink); }
.agence-featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.agence-featured:hover { border-color: var(--red); }

.agence-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.agence-featured .agence-head { border-bottom-color: rgba(255, 255, 255, .15); }
.agence-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--red);
  letter-spacing: -.02em;
}
.agence-featured .agence-num { color: var(--yellow); }
.agence-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-nar);
  font-weight: 600;
  font-size: .78rem;
  color: var(--mint);
}
.agence-open .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(0, 195, 137, .25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 195, 137, .25); }
  50% { box-shadow: 0 0 0 6px rgba(0, 195, 137, 0); }
}

.agence-card h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  line-height: 1.15;
  text-transform: uppercase;
}
.agence-card address {
  font-style: normal;
  font-size: .92rem;
  color: var(--steel);
  line-height: 1.45;
}
.agence-featured address { color: rgba(255, 255, 255, .7); }

.agence-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  font-size: .88rem;
  color: var(--graphite);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.agence-featured .agence-specs {
  color: rgba(255, 255, 255, .82);
  border-color: rgba(255, 255, 255, .1);
}

.agence-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { padding: 100px 0; background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.3fr);
  gap: 60px;
  align-items: start;
}
.faq-left p {
  margin: 18px 0;
  color: var(--steel);
  font-size: .98rem;
  line-height: 1.6;
}
.faq-left p a { color: var(--red); }

.faq-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}
.faq-phone,
.faq-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  transition: border-color .2s, color .2s;
}
.faq-phone svg { color: var(--red); }
.faq-phone:hover { border-color: var(--red); color: var(--red); }
.faq-mail:hover { border-color: var(--ink); }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -.005em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  transition: transform .3s;
  color: var(--red);
  flex: none;
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p {
  padding: 0 0 22px;
  color: var(--graphite);
  font-size: .96rem;
  line-height: 1.65;
  max-width: 640px;
}

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-final { padding: 80px 0 100px; background: var(--white); }
.cta-box {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(228, 0, 43, .25), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 209, 0, .15), transparent 40%);
  pointer-events: none;
}
.cta-flag {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: .1em;
}
.cta-box h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
}
.cta-box h2 em { font-style: normal; color: var(--yellow); display: block; }
.cta-box p {
  position: relative;
  max-width: 540px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, .75);
  font-size: 1.02rem;
  line-height: 1.6;
}
.cta-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  border-top: 4px solid var(--red);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.logo-footer .logo-type { color: var(--white); }
.footer-brand p {
  color: rgba(255, 255, 255, .7);
  font-size: .93rem;
  line-height: 1.6;
  max-width: 360px;
}
.footer-certifs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.footer-certifs span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  color: rgba(255, 255, 255, .85);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.footer-col a {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
  gap: 16px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .55);
}
.footer-made .flag {
  display: inline-block;
  margin-left: 4px;
  animation: flagWave 2s ease-in-out infinite;
}
@keyframes flagWave {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

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

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-menu, .nav-find { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-widget { max-width: 500px; margin: 0 auto; width: 100%; }
  .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-hero { grid-column: span 2; grid-row: auto; }
  .service-card-hero .svc-img { height: 260px; }
  .promo-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-arrow { display: none; }
  .pneus-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-grid { grid-template-columns: 1fr; gap: 40px; }
  .ev-visual { aspect-ratio: 16 / 10; max-width: 560px; margin: 0 auto; }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .agences-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .section-head-row { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .topstrip-inner { padding-left: 0; }
  .topstrip-chip { padding: 6px 12px 6px 14px; font-size: .64rem; }
  .topstrip-track { font-size: .74rem; gap: 18px; padding: 8px 0; }
  .hero { padding: 60px 0; min-height: 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-lead { font-size: 1rem; }
  .hero-widget { padding: 22px; }
  .widget-row { grid-template-columns: 1fr; }
  .widget-head h3 { font-size: 1.3rem; }
  .usp { padding: 32px 0; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .services { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-hero { grid-column: auto; }
  .service-card-hero h3 { font-size: 1.6rem; }
  .svc-price strong { font-size: 2rem; }
  .promo { padding: 50px 0; }
  .promo-card-main { padding: 28px 24px; }
  .promo-price { padding: 16px 18px; }
  .promo-price strong { font-size: 2rem; }
  .steps { padding: 70px 0; }
  .steps-row { grid-template-columns: 1fr; }
  .pneus { padding: 70px 0; }
  .brands-strip { gap: 20px; padding: 22px 0; margin-bottom: 32px; }
  .brand { font-size: .95rem; }
  .pneus-grid { grid-template-columns: 1fr; }
  .ev { padding: 70px 0; }
  .ev::before { font-size: 140px; }
  .avis { padding: 70px 0; }
  .avis-grid { grid-template-columns: 1fr; }
  .agences { padding: 70px 0; }
  .faq { padding: 70px 0; }
  .cta-box { padding: 52px 28px; }
  .footer { padding: 60px 0 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
