/* ============================================================
   Jérôme-Pneus · Design System
   Style: Trust & Authority · Automotive
   Palette: Navy #0F2747 + Action Red #E11528
   Fonts: Sora (display) + Inter (body)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #0A1B33;
  --navy-800: #0F2747;
  --navy-700: #143258;
  --navy-600: #1E3A5F;
  --navy-500: #2C4A73;
  --steel-100: #E7EEF6;
  --steel-50: #F3F7FB;

  --red-600: #C10F20;
  --red-500: #E11528;
  --red-400: #F0364A;
  --red-soft: #FDECEE;

  --gold: #F6A623;
  --green-600: #15803D;
  --green-500: #16A34A;
  --green-soft: #E7F6EC;

  /* Neutrals */
  --bg: #F7F9FC;
  --surface: #FFFFFF;
  --ink: #0F172A;
  --ink-2: #334155;
  --muted: #5B6B7F;
  --muted-2: #8A99AB;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Typography */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15, 39, 71, .06), 0 1px 3px rgba(15, 39, 71, .08);
  --sh-md: 0 6px 16px rgba(15, 39, 71, .08), 0 2px 6px rgba(15, 39, 71, .06);
  --sh-lg: 0 18px 40px rgba(15, 39, 71, .14), 0 6px 14px rgba(15, 39, 71, .08);
  --sh-red: 0 10px 24px rgba(225, 21, 40, .28);

  /* Layout */
  --container: 1200px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t-fast: .16s;
  --t: .24s;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--navy-800); }
:focus-visible { outline: 3px solid var(--red-400); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--navy { background: var(--navy-800); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--alt { background: var(--surface); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red-500);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold); }
h1.display { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2.title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section--navy .section-head p { color: #B7C5D8; }
.lead { font-size: 1.12rem; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  padding: 11px 20px; border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
  min-height: 44px; white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--red-500); color: #fff; box-shadow: var(--sh-red); }
.btn--primary:hover { background: var(--red-600); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--navy-800); background: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { background: var(--steel-50); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--lg { padding: 13px 24px; font-size: .98rem; min-height: 50px; }
.btn--block { width: 100%; }

/* ---------- Badges / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border);
  font-size: .86rem; font-weight: 500; color: var(--ink-2); box-shadow: var(--sh-sm);
}
.chip svg { width: 16px; height: 16px; color: var(--red-500); }
.chip--navy { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #E7EEF6; backdrop-filter: blur(6px); }
.chip--navy svg { color: var(--gold); }

/* Rating stars */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 8px 16px 8px 12px; box-shadow: var(--sh-sm);
}
.rating-pill .g {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  background: conic-gradient(from -45deg, #4285F4 25%, #EA4335 0 50%, #FBBC05 0 75%, #34A853 0); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rating-pill b { font-weight: 700; color: var(--ink); }
.rating-pill small { color: var(--muted); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-md); }
.nav { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand { display: flex; flex: none; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--navy-800); letter-spacing: -.02em; }
.brand .logo {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  display: grid; place-items: center; box-shadow: var(--sh-sm);
}
.brand .logo svg { width: 24px; height: 24px; color: #fff; }
.brand b { color: var(--red-500); }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }
.brand-logo { display: block; height: 44px; width: auto; flex: none; max-width: none; }
.site-footer .brand-logo { height: 50px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > a, .nav-links .nav-trigger {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--ink-2);
  padding: 9px 14px; border-radius: var(--r-sm); white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links > a:hover, .nav-links .nav-trigger:hover { color: var(--navy-800); background: var(--steel-50); }
.nav-links > a.active, .nav-links .nav-trigger.active { color: var(--red-500); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--navy-800); white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; color: var(--red-500); }

/* ===== Services mega-menu (desktop) ===== */
.nav-item--mega { position: relative; display: flex; align-items: center; }
.nav-trigger { display: inline-flex !important; align-items: center; gap: 5px; cursor: pointer; }
.nav-caret { width: 14px; height: 14px; transition: transform var(--t-fast); opacity: .8; }
.nav-item--mega:hover .nav-caret, .nav-item--mega:focus-within .nav-caret { transform: rotate(180deg); }
.mega {
  position: absolute; top: 100%; left: 50%; margin-top: 14px;
  width: min(640px, 92vw); padding: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 200;
}
.mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega::after {
  content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--surface); border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.nav-item--mega:hover .mega, .nav-item--mega:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega-link { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--r-md); transition: background var(--t-fast); }
.mega-link:hover { background: var(--steel-50); }
.mega-ic { width: 40px; height: 40px; flex: none; border-radius: 11px; background: var(--red-soft); color: var(--red-500); display: grid; place-items: center; }
.mega-ic svg { width: 21px; height: 21px; }
.mega-tx { display: flex; flex-direction: column; line-height: 1.25; }
.mega-tx b { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--navy-800); }
.mega-tx small { color: var(--muted); font-size: .8rem; }
.mega-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; padding: 13px 12px 2px; border-top: 1px solid var(--border); }
.mega-foot__tx { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); }
.mega-foot__tx svg { width: 18px; height: 18px; flex: none; color: var(--red-500); }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
/* Barre de navigation complete sur PC et tablette large : pas de menu burger.
   Sans le bouton CTA, la barre mesure ~910px et tient des ~980px de large. */
@media (min-width: 980px) {
  .nav { gap: 16px; }
  .nav-links { gap: 2px; }
  .nav-links > a, .nav-links .nav-trigger { padding: 8px 9px; font-size: .88rem; }
  .nav-phone span, .nav-phone { font-size: .9rem; }
}
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--border); color: var(--navy-800); place-items: center; }
.nav-toggle svg { width: 24px; height: 24px; }
/* Menu burger reserve a la tablette portrait et au mobile */
@media (max-width: 979px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle { display: grid; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--surface); padding: 24px 20px 40px;
  transform: translateX(100%); transition: transform var(--t) var(--ease);
  overflow-y: auto; display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy-800); padding: 16px 8px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.mobile-menu a.active { color: var(--red-500); }
.mobile-menu .m-actions { margin-top: 22px; display: grid; gap: 12px; }
/* mobile Services accordion */
.mobile-menu .m-group { border-bottom: 1px solid var(--border); }
.mobile-menu .m-group summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy-800);
  padding: 16px 8px; display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu .m-group summary::-webkit-details-marker { display: none; }
.mobile-menu .m-group summary .nav-caret { width: 18px; height: 18px; transition: transform var(--t-fast); }
.mobile-menu .m-group[open] summary { color: var(--red-500); }
.mobile-menu .m-group[open] summary .nav-caret { transform: rotate(180deg); }
.mobile-menu .m-sub { display: flex; flex-direction: column; padding: 2px 0 12px 6px; }
.mobile-menu .m-sub a {
  font-size: 1rem; font-weight: 500; color: var(--muted);
  padding: 12px 12px; border-bottom: 0; border-radius: var(--r-sm); justify-content: flex-start;
}
.mobile-menu .m-sub a:hover { background: var(--steel-50); color: var(--navy-800); }
.mobile-menu .m-sub .m-sub__all { color: var(--red-500); font-weight: 600; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy-800); color: #fff; overflow: hidden;
  padding: 92px 0 104px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(225,21,40,.30), transparent 60%),
    radial-gradient(680px 520px at 8% 110%, rgba(44,74,115,.7), transparent 60%);
}
.hero::after { /* tread pattern */
  content: ""; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, #fff 0 2px, transparent 2px 13px);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.8vw, 3.7rem); }
.hero h1 .hl { color: var(--gold); }
.hero p.sub { color: #C2D0E2; font-size: 1.18rem; margin-top: 20px; max-width: 540px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .divider { width: 1px; height: 38px; background: rgba(255,255,255,.18); }
.hero-trust .stat b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-trust .stat span { font-size: .82rem; color: #9FB1C7; }

/* ===== Hero carousel ===== */
.hero--carousel { padding: 0; }
.hero-track { display: flex; will-change: transform; transition: transform .8s var(--ease); }
.hero-slide {
  flex: 0 0 100%; min-width: 100%; position: relative;
  display: flex; align-items: center; min-height: 588px;
  background: var(--navy-800);
}
.hero-slide__bg { /* real LCP-friendly background image */
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero-slide::before { /* navy gradient overlay over photo */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(11,26,48,.94) 0%, rgba(11,26,48,.78) 42%, rgba(11,26,48,.45) 100%);
}
.hero-slide::after { /* subtle tread texture */
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .05; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, #fff 0 2px, transparent 2px 13px);
}
.hero-slide--navy::before {
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(225,21,40,.34), transparent 60%),
    radial-gradient(720px 560px at 6% 112%, rgba(44,74,115,.85), transparent 62%),
    linear-gradient(120deg, #0B1A30, #16335c);
}
.hero-slide .container { position: relative; z-index: 2; width: 100%; }
.hero-slide__inner { max-width: 660px; padding: 96px 0 100px; }
.hero-slide h1,
.hero-slide .hero-title {
  color: #fff; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.08; letter-spacing: -.01em;
}
.hero-slide .hl { color: var(--gold); }
.hero-slide p.sub { color: #C7D5E8; font-size: 1.16rem; margin-top: 20px; max-width: 560px; }
.hero-slide .hero-chips { margin: 0 0 24px; }
.hero-slide .hero-actions { margin-top: 32px; }

/* slide entrance: content rises + fades when its slide is active */
.hero-slide__inner > * { opacity: 0; transform: translateY(22px); }
.hero-slide.is-active .hero-slide__inner > * {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.hero-slide.is-active .hero-slide__inner > *:nth-child(1) { transition-delay: .12s; }
.hero-slide.is-active .hero-slide__inner > *:nth-child(2) { transition-delay: .20s; }
.hero-slide.is-active .hero-slide__inner > *:nth-child(3) { transition-delay: .28s; }
.hero-slide.is-active .hero-slide__inner > *:nth-child(4) { transition-delay: .36s; }

/* nav arrows */
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: #fff; backdrop-filter: blur(6px);
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.hero-nav:hover { background: var(--red-500); border-color: var(--red-500); }
.hero-nav:active { transform: translateY(-50%) scale(.94); }
.hero-nav svg { width: 22px; height: 22px; }
.hero-nav--prev { left: 22px; }
.hero-nav--next { right: 22px; }

/* dots */
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 22px; z-index: 3;
  display: flex; justify-content: center; gap: 10px;
}
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.4); border: 0;
  transition: background var(--t-fast), width var(--t-fast), border-radius var(--t-fast);
}
.hero-dots button[aria-selected="true"] { background: var(--gold); width: 30px; border-radius: 6px; }
.hero--carousel .orbs { display: none; }

/* trust strip below carousel */
.hero-trustbar { background: var(--surface); border-bottom: 1px solid var(--border); }
.hero-trustbar .hero-trust { margin: 0; justify-content: center; padding: 22px 0; gap: 26px; }
.hero-trustbar .hero-trust .stat { text-align: center; }
.hero-trustbar .hero-trust .stat b { color: var(--navy-800); font-size: 1.42rem; }
.hero-trustbar .hero-trust .stat span { color: var(--muted); }
.hero-trustbar .hero-trust .divider { height: 34px; background: var(--border); }

/* Hero side card (reviews) */
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl); padding: 26px; backdrop-filter: blur(10px); box-shadow: var(--sh-lg);
}
.hero-card .gh { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.hero-card .gh .score { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-card .gh .meta { text-align: right; }
.hero-card .gh .meta .stars svg { width: 20px; height: 20px; }
.hero-card .gh .meta small { color: #9FB1C7; font-size: .82rem; }
.hero-card .gquote { border-top: 1px solid rgba(255,255,255,.12); margin-top: 16px; padding-top: 16px; }
.hero-card .gquote p { color: #DCE5F0; font-size: .95rem; }
.hero-card .gquote .who { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.hero-card .gquote .who .av { width: 36px; height: 36px; border-radius: 50%; background: var(--red-500); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.hero-card .gquote .who b { font-size: .9rem; color: #fff; }
.hero-card .gquote .who small { display: block; color: #9FB1C7; font-size: .78rem; }

/* ---------- Marquee / brands ---------- */
.brandbar { background: var(--surface); border-block: 1px solid var(--border); padding: 26px 0; }
.brandbar .lab { text-align: center; color: var(--muted); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.brand-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 16px; }
.brand-logos span {
  display: grid; place-items: center; height: 52px; padding: 0 18px; flex: none;
  background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--sh-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.brand-logos span:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.brand-logos img { height: 26px; width: auto; display: block; }

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

/* ---- Tire dimension schema ---- */
.tire-schema {
  max-width: 560px; margin: 0 auto 30px; padding: 22px 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
.tire-svg { width: 100%; height: auto; display: block; }
.ts-lab { font-family: var(--font-display); font-size: 16px; fill: var(--navy-800); }
.ts-lab--strong { font-weight: 700; }
.ts-lab--muted { fill: #5b6b80; font-size: 13.5px; }
.ts-guide { stroke: #9fb0c4; stroke-width: 1.5; stroke-dasharray: 4 5; }
.ts-dim { stroke: var(--red-500); stroke-width: 2.6; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--steel-100); }
.card .ico {
  width: 54px; height: 54px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--red-soft); color: var(--red-500); margin-bottom: 18px;
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--red-500); }
.card .more svg { width: 16px; height: 16px; transition: transform var(--t); }
.card:hover .more svg { transform: translateX(4px); }

/* service card with index */
.card .num { font-family: var(--font-display); font-weight: 800; font-size: .8rem; color: var(--red-500); letter-spacing: .1em; }

/* feature list with check */
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--ink-2); }
.checklist li svg { width: 22px; height: 22px; color: var(--green-500); flex: none; margin-top: 1px; }
.checklist.on-navy li { color: #D6E0EC; }
.checklist.on-navy li svg { color: #5BD08A; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; padding: 14px; }
.stat-box b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-box span { color: #9FB1C7; font-size: .92rem; margin-top: 8px; display: block; }
.stat-box .gold { color: var(--gold); }

/* ---------- Reviews ---------- */
.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--sh-sm); height: 100%; display: flex; flex-direction: column;
}
.review .stars { margin-bottom: 12px; }
.review p { color: var(--ink-2); font-size: 1rem; flex: 1; }
.review .by { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.review .by .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; }
.review .by b { font-size: .95rem; }
.review .by small { color: var(--muted); display: flex; align-items: center; gap: 5px; }
.review .by small svg { width: 13px; height: 13px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.step .n { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-800); color: #fff; font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Tyre guide ---------- */
.tyre-guide { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; margin-bottom: 44px; }
.tyre-figure {
  margin: 0; padding: 26px 28px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-md); color: var(--ink-2);
}
.tyre-figure svg { display: block; width: 100%; height: auto; }
.tyre-legend { display: grid; gap: 16px; list-style: none; }
.tyre-legend li { display: flex; gap: 16px; align-items: flex-start; }
.tyre-n {
  flex: none; min-width: 54px; height: 40px; padding: 0 12px; border-radius: var(--r-pill);
  background: var(--navy-800); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; display: grid; place-items: center; letter-spacing: .01em;
}
.tyre-legend b { display: block; font-family: var(--font-display); color: var(--navy-800); margin-bottom: 3px; }
.tyre-legend small { color: var(--muted); font-size: .9rem; line-height: 1.45; display: block; }

.season-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.season-card {
  padding: 28px 26px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.season-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.season-ic { width: 54px; height: 54px; border-radius: var(--r-md); display: grid; place-items: center; margin-bottom: 16px; }
.season-ic svg { width: 28px; height: 28px; }
.season-ic--sun { background: #FFF3DC; color: #DB8B00; }
.season-ic--win { background: #E6F1FB; color: #2A7AC4; }
.season-ic--all { background: var(--green-soft); color: var(--green-600); }
.season-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.season-card p { color: var(--muted); font-size: .92rem; line-height: 1.55; }

.tyre-note {
  display: flex; align-items: center; gap: 13px; flex-wrap: wrap; margin-top: 30px; padding: 18px 22px;
  background: var(--steel-50); border: 1px solid var(--border); border-radius: var(--r-md); color: var(--ink-2);
}
.tyre-note svg { width: 22px; height: 22px; flex: none; color: var(--red-500); }
.tyre-note a { color: var(--red-500); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.tyre-note a:hover { color: var(--navy-800); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.media-card {
  border-radius: var(--r-xl); overflow: hidden; position: relative; min-height: 420px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; color: #fff; box-shadow: var(--sh-lg);
}
.media-card::after { content: ""; position: absolute; inset: 0; opacity: .08; background-image: repeating-linear-gradient(115deg, #fff 0 2px, transparent 2px 14px); }
.media-card .mc-inner { position: relative; z-index: 1; text-align: center; padding: 30px; }
.media-card .mc-inner svg { width: 84px; height: 84px; color: var(--gold); margin: 0 auto 16px; }
.media-card .mc-inner p { color: #C2D0E2; }
.media-card .float-badge {
  position: absolute; z-index: 2; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,.95); border-radius: var(--r-md); padding: 16px 18px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 14px;
}
.media-card .float-badge .bi { width: 44px; height: 44px; border-radius: 10px; background: var(--green-soft); color: var(--green-600); display: grid; place-items: center; flex: none; }
.media-card .float-badge b { color: var(--ink); display: block; font-family: var(--font-display); }
.media-card .float-badge small { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(120deg, var(--navy-800), var(--navy-700)); color: #fff; border-radius: var(--r-xl); padding: 56px; overflow: hidden; box-shadow: var(--sh-lg); }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: .07; background-image: repeating-linear-gradient(115deg, #fff 0 2px, transparent 2px 14px); }
.cta-band .inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { color: #C2D0E2; margin-top: 8px; max-width: 460px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero { background: var(--navy-800); color: #fff; padding: 56px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .06; background-image: repeating-linear-gradient(115deg, #fff 0 2px, transparent 2px 13px); }
.page-hero .container { position: relative; z-index: 1; }
.crumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #9FB1C7; margin-bottom: 16px; }
.crumb a:hover { color: #fff; }
.crumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #C2D0E2; margin-top: 14px; max-width: 620px; font-size: 1.1rem; }

/* ---------- Pricing / table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--border); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { background: var(--steel-50); font-family: var(--font-display); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--navy-800); }
.price-table td { color: var(--ink-2); }
.price-table tr:last-child td { border-bottom: none; }
.price-table .from { font-family: var(--font-display); font-weight: 700; color: var(--navy-800); white-space: nowrap; }
.price-note { color: var(--muted); font-size: .85rem; margin-top: 12px; }

/* ---------- Accordion (FAQ) ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy-800); }
.faq-q .ic { width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--steel-50); display: grid; place-items: center; transition: transform var(--t), background var(--t); }
.faq-q .ic svg { width: 16px; height: 16px; color: var(--red-500); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--red-500); }
.faq-item.open .faq-q .ic svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-list { display: grid; gap: 18px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ic { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--red-soft); color: var(--red-500); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row b { font-family: var(--font-display); color: var(--navy-800); display: block; margin-bottom: 2px; }
.info-row a, .info-row p { color: var(--muted); }
.info-row a:hover { color: var(--red-500); }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--navy-800); margin-bottom: 7px; }
.field label .req { color: var(--red-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: var(--r-sm);
  background: #fff; color: var(--ink); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 4px rgba(30,58,95,.1); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.contact-actions { display: grid; gap: 12px; max-width: 460px; }
.contact-checklist { margin-top: 24px; margin-bottom: 4px; }
.form-success { display: none; background: var(--green-soft); border: 1px solid #BFE6CC; color: var(--green-600); padding: 16px; border-radius: var(--r-sm); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: flex; align-items: center; gap: 11px; }
.form-success svg { width: 20px; height: 20px; flex: none; }

/* hours table */
.hours { display: grid; gap: 2px; }
.hours-row { display: flex; justify-content: space-between; padding: 11px 14px; border-radius: var(--r-sm); }
.hours-row:nth-child(odd) { background: var(--steel-50); }
.hours-row.today { background: var(--green-soft); }
.hours-row span:first-child { color: var(--ink-2); font-weight: 500; }
.hours-row span:last-child { font-family: var(--font-display); font-weight: 600; color: var(--navy-800); }
.hours-row .closed { color: var(--muted); font-weight: 500; }
.hours-row .tag { font-size: .72rem; background: var(--green-500); color: #fff; padding: 2px 8px; border-radius: var(--r-pill); margin-left: 8px; }

.map-embed { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--r-lg); }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--border); height: 100%; min-height: 320px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #B7C5D8; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand small { color: #7E90A8; }
.site-footer p { color: #93A5BD; font-size: .94rem; }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; color: #93A5BD; font-size: .94rem; transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }
.footer-contact .info-row { margin-bottom: 12px; }
.footer-contact .info-row .ic { background: rgba(255,255,255,.07); color: var(--gold); width: 40px; height: 40px; }
.footer-contact .info-row b { color: #fff; }
.footer-contact .info-row a, .footer-contact .info-row p { color: #93A5BD; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #7E90A8; }
.footer-bottom a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #B7C5D8; transition: background var(--t), color var(--t); }
.footer-social a:hover { background: var(--red-500); color: #fff; }
.footer-social svg { width: 20px; height: 20px; }

/* ---------- Mobile sticky call bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border); box-shadow: 0 -6px 18px rgba(15,39,71,.1);
}
.mobile-bar .btn { flex: 1; padding: 13px 14px; min-height: 50px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.muted { color: var(--muted); }
.reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; }
.tag-soft { display: inline-block; background: var(--steel-50); border: 1px solid var(--border); color: var(--navy-700); font-family: var(--font-display); font-weight: 600; font-size: .8rem; padding: 5px 12px; border-radius: var(--r-pill); }

/* ---------- Legal / RGPD ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal__updated { color: var(--muted); font-size: .9rem; margin-bottom: 30px; }
.legal h2 { font-family: var(--font-display); font-size: 1.32rem; color: var(--navy-800); margin-top: 40px; margin-bottom: 8px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-family: var(--font-display); font-size: 1.04rem; color: var(--navy-700); margin-top: 22px; margin-bottom: 4px; }
.legal p { color: var(--ink-2); line-height: 1.75; margin-top: 10px; }
.legal ul { margin: 14px 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.legal ul li { position: relative; padding-left: 24px; color: var(--ink-2); line-height: 1.62; }
.legal ul li::before { content: ""; position: absolute; left: 5px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--red-500); }
.legal a { color: var(--red-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--red-500); }
.legal__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 24px; margin-top: 16px; box-shadow: var(--sh-sm); }
.legal__card p { margin-top: 4px; }
.legal__card strong { color: var(--navy-800); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tyre-guide { grid-template-columns: 1fr; gap: 32px; }
  .tyre-figure { max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .section { padding: 60px 0; }
  .hero:not(.hero--carousel) { padding: 56px 0 72px; }
  .hero-slide { min-height: 0; }
  .hero-slide__inner { padding: 64px 0 68px; max-width: 100%; }
  .hero-slide::before { background:
    linear-gradient(180deg, rgba(11,26,48,.86) 0%, rgba(11,26,48,.74) 55%, rgba(11,26,48,.62) 100%); }
  .hero-nav { width: 42px; height: 42px; }
  .hero-nav--prev { left: 10px; }
  .hero-nav--next { right: 10px; }
  .hero-trustbar .hero-trust { gap: 14px 20px; padding: 18px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .season-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 36px 26px; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-nav { display: none; }
  .hero-trust .divider { display: none; }
  .section-head { margin-bottom: 34px; }
  .card { padding: 22px; }
}

/* ============================================================
   PREMIUM LAYER · effects
   ============================================================ */

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--red-500), var(--gold));
  transform: scaleX(0); transform-origin: 0 50%; pointer-events: none; will-change: transform;
}

/* ---- Hero animated aurora + floating orbs ---- */
.hero .container { z-index: 2; }
.hero::before { animation: auroraShift 18s ease-in-out infinite alternate; }
@keyframes auroraShift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-4%, 3%, 0) scale(1.12); }
}
.hero .orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; transition: transform .3s var(--ease); }
.hero .orb { position: absolute; display: block; border-radius: 50%; filter: blur(46px); will-change: transform; }
.hero .orb-1 { width: 360px; height: 360px; top: -90px; right: 4%; background: radial-gradient(circle, rgba(225,21,40,.55), transparent 70%); animation: floatA 15s var(--ease) infinite alternate; }
.hero .orb-2 { width: 300px; height: 300px; bottom: -70px; left: 0; background: radial-gradient(circle, rgba(44,74,115,.9), transparent 70%); animation: floatB 19s var(--ease) infinite alternate; }
.hero .orb-3 { width: 220px; height: 220px; top: 38%; left: 42%; background: radial-gradient(circle, rgba(246,166,35,.4), transparent 70%); animation: floatA 23s var(--ease) infinite alternate; }
@keyframes floatA { to { transform: translate3d(28px, 38px, 0) scale(1.12); } }
@keyframes floatB { to { transform: translate3d(-36px, -28px, 0) scale(1.16); } }

/* ---- Animated gradient highlight ---- */
.hero h1 .hl {
  background: linear-gradient(100deg, var(--gold), #FFDD9E, var(--red-400), var(--gold));
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: hueSweep 9s linear infinite;
}
@keyframes hueSweep { to { background-position: 220% 0; } }

/* ---- Hero card glow ring ---- */
.hero-card { position: relative; }
.hero-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(246,166,35,.75), rgba(225,21,40,.5), transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* ---- Card / review / step premium hover ---- */
.card, .review, .step { position: relative; }
.review, .step { transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t); }
.card::before, .review::before, .step::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(135deg, var(--red-500), var(--gold) 55%, transparent 80%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity var(--t); pointer-events: none;
}
.card:hover::before, .review:hover::before, .step:hover::before { opacity: .9; }
.review:hover, .step:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

/* ---- Button shine sweep ---- */
.btn--primary, .btn--light, .btn--outline-light { position: relative; overflow: hidden; }
.btn--primary::after, .btn--light::after, .btn--outline-light::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn--primary:hover::after, .btn--light:hover::after, .btn--outline-light:hover::after { left: 150%; }

/* ---- Brand marquee ---- */
.brandbar.is-marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.brandbar.is-marquee .brand-logos { flex-wrap: nowrap; justify-content: flex-start; width: max-content; gap: 0; animation: marquee 36s linear infinite; }
.brandbar.is-marquee .brand-logos span { margin: 0 9px; }
.brandbar.is-marquee:hover .brand-logos { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Count-up tabular figures ---- */
.stat-box b, .hero-card .gh .score, .big-score, [data-count] { font-variant-numeric: tabular-nums; }

/* ---- Custom scrollbar ---- */
html { scrollbar-width: thin; scrollbar-color: var(--navy-500) transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--navy-500); border-radius: 10px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--navy-700); }

/* ---- Nav controls on mobile ---- */
@media (max-width: 860px) {
  .nav-cta { margin-left: auto; }
}

/* ---- WhatsApp floating button ---- */
.wa-fab {
  position: fixed; right: 20px; bottom: 24px; z-index: 900;
  display: inline-flex; align-items: center; height: 58px; padding: 0 24px 0 0;
  border-radius: 999px; background: #25D366; color: #fff;
  box-shadow: 0 12px 28px rgba(37,211,102,.42);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-fab svg { width: 28px; height: 28px; flex: none; margin: 0 12px 0 17px; }
.wa-fab__label { font-family: var(--font-display); font-weight: 700; font-size: 1rem; white-space: nowrap; line-height: 1; }
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,211,102,.5); }
.wa-fab:focus-visible { outline: 3px solid var(--navy-800); outline-offset: 3px; }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55); animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse { to { box-shadow: 0 0 0 18px rgba(37,211,102,0); } }
@media (max-width: 720px) {
  .wa-fab { bottom: 84px; right: 12px; height: 50px; padding: 0 18px 0 0; }
  .wa-fab svg { width: 25px; height: 25px; margin: 0 9px 0 13px; }
  .wa-fab__label { font-size: .92rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero .orbs { transform: none !important; }
  .hero-slide__inner > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- Photo media-card (real photo behind) ---------- */
.media-card--photo { background: var(--navy-900); }
.media-card--photo .mc-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .8s var(--ease); }
.media-card--photo:hover .mc-photo { transform: scale(1.04); }
.media-card--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,27,51,.18) 0%, rgba(10,27,51,.10) 38%, rgba(10,27,51,.68) 100%);
}
.media-card--photo::after { display: none; }
.media-card--photo .mc-cap { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: #fff; }
.media-card--photo .mc-cap b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; }
.media-card--photo .mc-cap span { color: #C2D0E2; font-size: .9rem; }

/* ---------- Photo gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure {
  position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); background: var(--steel-100); aspect-ratio: 4 / 3;
}
.gallery--portrait figure { aspect-ratio: 3 / 4; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 32px 14px 12px;
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .86rem; line-height: 1.3;
  background: linear-gradient(transparent, rgba(10,27,51,.86));
}
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery figcaption { font-size: .8rem; padding: 24px 11px 10px; }
}

/* ============================================================
   Catalogue jantes
   ============================================================ */
.page-hero__meta { margin-top: 12px; font-size: .92rem; color: #9FB1C7; }
.page-hero__meta span { color: #fff; font-weight: 600; }

/* live-stock dot on the mega-menu catalogue entry */
.mega-link--accent .mega-tx b { display: inline-flex; align-items: center; gap: 8px; }
.mega-link--accent .mega-tx b::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500); box-shadow: 0 0 0 3px rgba(22, 163, 74, .18);
}

/* ---- Toolbar / filters ---- */
.cat-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px 16px; align-items: flex-end;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 20px;
}
.cat-field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 160px; min-width: 148px; }
.cat-field--search { flex: 2 1 280px; }
.cat-field label {
  font-family: var(--font-display); font-weight: 600; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.cat-toolbar input,
.cat-toolbar select {
  width: 100%; height: 46px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: #fff; color: var(--ink); font-family: var(--font-body); font-weight: 500;
  font-size: .95rem; padding: 0 14px; box-shadow: var(--sh-sm);
  transition: border-color var(--t), box-shadow var(--t);
}
.cat-toolbar input:focus,
.cat-toolbar select:focus { border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(30, 58, 95, .14); outline: none; }
.cat-toolbar select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F2747' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.cat-search { position: relative; display: flex; align-items: center; }
.cat-search svg { position: absolute; left: 14px; width: 18px; height: 18px; color: var(--muted-2); pointer-events: none; }
.cat-search input { padding-left: 42px; }
.cat-reset {
  display: inline-flex; align-items: center; gap: 7px; height: 46px; padding: 0 16px;
  margin-left: auto; border: 1px solid var(--border-strong); background: #fff; color: var(--navy-800);
  font-family: var(--font-display); font-weight: 600; font-size: .88rem; border-radius: var(--r-pill);
  cursor: pointer; transition: border-color var(--t), background var(--t), color var(--t);
}
.cat-reset svg { width: 16px; height: 16px; }
.cat-reset:hover { border-color: var(--navy-800); background: var(--steel-50); }

/* ---- Result bar ---- */
.cat-bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 18px; margin: 22px 2px 18px; }
.cat-count { color: var(--ink-2); font-size: .98rem; }
.cat-count strong { color: var(--navy-800); font-family: var(--font-display); }
.cat-note { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .85rem; }
.cat-note svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.cat-note--ns {
  display: block; margin-top: 16px; padding: 16px 18px; background: var(--steel-50);
  border: 1px solid var(--border); border-radius: var(--r-md); color: var(--ink-2); font-size: .95rem;
}
.cat-note--ns a { color: var(--red-500); font-weight: 600; }

/* ---- Product grid ---- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 22px; }

.jcard {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.jcard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--steel-100); }
.jcard__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(135deg, var(--steel-50), var(--steel-100)); }
.jcard__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.jcard:hover .jcard__img { transform: scale(1.06); }
.jcard__noimg { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted-2); }
.jcard__noimg svg { width: 46px; height: 46px; }
.jcard__badge {
  position: absolute; top: 10px; left: 10px; z-index: 1; display: inline-flex; align-items: center; gap: 5px;
  background: rgba(22, 163, 74, .96); color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: .74rem; padding: 5px 10px; border-radius: var(--r-pill); box-shadow: 0 4px 10px rgba(21, 128, 61, .3);
}
.jcard__badge svg { width: 13px; height: 13px; }
.jcard__dia {
  position: absolute; top: 10px; right: 10px; z-index: 1; background: rgba(15, 39, 71, .92); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: 5px 11px;
  border-radius: var(--r-pill); backdrop-filter: blur(4px);
}
.jcard__body { display: flex; flex-direction: column; gap: 10px; padding: 18px; flex: 1; }
.jcard__title { font-size: 1.18rem; color: var(--navy-800); margin: 0; }
.jcard__finish { color: var(--muted); font-size: .9rem; margin: -4px 0 0; }
.jcard__fit {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  background: var(--steel-50); border: 1px solid var(--border); color: var(--navy-700);
  font-family: var(--font-display); font-weight: 600; font-size: .78rem; padding: 4px 11px 4px 9px; border-radius: var(--r-pill);
}
.jcard__fit svg { width: 15px; height: 15px; color: var(--red-500); }
.jcard__specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 2px; }
.spec-chip {
  display: flex; flex-direction: column; gap: 2px; text-align: center; line-height: 1.15;
  background: var(--steel-50); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 7px 6px; font-size: .85rem; font-weight: 600; color: var(--ink-2); font-variant-numeric: tabular-nums;
}
.spec-chip b { font-family: var(--font-display); font-weight: 700; font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted-2); }
.jcard__cta { margin-top: auto; gap: 8px; }
.jcard__cta svg { width: 16px; height: 16px; }

/* ---- Pagination ---- */
.cat-pager { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
.cat-page {
  min-width: 44px; height: 44px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: #fff; border-radius: var(--r-md); color: var(--navy-800);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: transform var(--t), border-color var(--t), background var(--t), color var(--t);
}
.cat-page svg { width: 18px; height: 18px; }
.cat-page:hover:not(:disabled):not(.is-current) { border-color: var(--navy-700); background: var(--steel-50); transform: translateY(-1px); }
.cat-page.is-current { background: var(--navy-800); color: #fff; border-color: var(--navy-800); cursor: default; }
.cat-page:disabled { opacity: .4; cursor: not-allowed; }
.cat-ellipsis { padding: 0 2px; color: var(--muted-2); align-self: flex-end; }

/* ---- Empty / error states ---- */
.cat-empty {
  text-align: center; max-width: 520px; margin: 30px auto 6px; padding: 36px 26px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--sh-sm);
}
.cat-empty__ic { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--steel-50); color: var(--navy-700); }
.cat-empty__ic svg { width: 30px; height: 30px; }
.cat-error .cat-empty__ic { background: var(--red-soft); color: var(--red-500); }
.cat-empty h3 { font-size: 1.3rem; margin-bottom: 8px; }
.cat-empty p { color: var(--muted); }
.cat-empty__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }

/* ---- Skeleton loading ---- */
.jcard--skel { pointer-events: none; }
.sk { background: var(--steel-100); background-image: linear-gradient(100deg, var(--steel-100) 30%, var(--steel-50) 50%, var(--steel-100) 70%); background-size: 200% 100%; animation: skShimmer 1.3s linear infinite; }
.sk-media { aspect-ratio: 1 / 1; }
.sk-body { padding: 18px; display: flex; flex-direction: column; gap: 11px; }
.sk-line { height: 13px; border-radius: 6px; }
.sk-line.w40 { width: 40%; } .sk-line.w60 { width: 60%; } .sk-line.w80 { width: 80%; }
@keyframes skShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

@media (prefers-reduced-motion: no-preference) {
  .jcard { animation: jcardIn .5s var(--ease) backwards; }
}
@keyframes jcardIn { from { opacity: 0; transform: translateY(14px); } }

@keyframes catDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); } 70% { box-shadow: 0 0 0 7px rgba(34,197,94,0); } }

/* In-page catalogue promo (pneus-jantes) */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cat-promo { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; background: linear-gradient(120deg, var(--navy-800), var(--navy-700)); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.cat-promo::after { content: ""; position: absolute; inset: 0; opacity: .06; background-image: repeating-linear-gradient(115deg, #fff 0 2px, transparent 2px 14px); pointer-events: none; }
.cat-promo__txt { position: relative; z-index: 1; padding: 48px; }
.cat-promo__live { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; letter-spacing: .02em; color: #BBF7D0; background: rgba(34,197,94,.14); border: 1px solid rgba(34,197,94,.32); padding: 6px 13px; border-radius: var(--r-pill); }
.cat-promo__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); animation: catDot 2s var(--ease) infinite; }
.cat-promo__title { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 16px; letter-spacing: -.02em; }
.cat-promo__lead { color: #C2D0E2; margin-top: 12px; max-width: 480px; }
.cat-promo__feats { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.cat-promo__feats li { display: flex; align-items: center; gap: 11px; color: #E7EEF6; font-weight: 500; }
.cat-promo__feats svg { width: 20px; height: 20px; flex: none; color: var(--green-500); background: rgba(34,197,94,.16); border-radius: 50%; padding: 3px; }
.cat-promo__visual { position: relative; z-index: 1; display: block; min-height: 320px; overflow: hidden; }
.cat-promo__visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t) var(--ease); }
.cat-promo__visual::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--navy-700) 0%, transparent 32%); pointer-events: none; }
.cat-promo__visual:hover img { transform: scale(1.05); }
.cat-promo__chip { position: absolute; z-index: 2; left: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; color: var(--navy-800); background: #fff; padding: 10px 16px; border-radius: var(--r-pill); box-shadow: var(--sh-md); }
.cat-promo__chip::after { content: "\2192"; font-size: 1.05rem; transition: transform var(--t) var(--ease); }
.cat-promo__visual:hover .cat-promo__chip::after { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .sk { animation: none; }
  .jcard__img, .jcard:hover .jcard__img { transition: none; transform: none; }
  .cat-promo__dot { animation: none; }
  .cat-promo__visual:hover img { transform: none; }
}

@media (max-width: 860px) {
  .cat-promo { grid-template-columns: 1fr; }
  .cat-promo__txt { padding: 36px 28px; order: 2; }
  .cat-promo__visual { min-height: 220px; order: 1; }
  .cat-promo__visual::before { background: linear-gradient(0deg, var(--navy-700) 0%, transparent 42%); }
}

@media (max-width: 560px) {
  .cat-toolbar { padding: 16px; }
  .cat-field, .cat-field--search { flex: 1 1 100%; }
  .cat-reset { margin-left: 0; width: 100%; justify-content: center; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .jcard__body { padding: 14px; gap: 8px; }
  .jcard__title { font-size: 1.05rem; }
  .spec-chip { font-size: .78rem; padding: 6px 4px; }
}
@media (max-width: 380px) {
  .cat-grid { grid-template-columns: 1fr; }
}
