/* ===========================
   REPARMOBIL — Design System
   =========================== */

:root {
  /* Palette extraite du LOGO réel REPARMOBIL : cobalt + jaune underline */
  --ink: #0E1F3A;          /* cobalt foncé du logo */
  --ink-soft: #1A3158;
  --bg: #ffffff;
  --bg-soft: #F4F6FA;
  --bg-card: #ffffff;
  --line: #DDE4EE;
  --line-soft: #ECF0F5;

  --primary: #2C5A8C;       /* cobalt mid (corps logo) */
  --primary-dark: #1A3158;
  --primary-soft: #E6EEF8;

  --accent: #FFD400;        /* jaune souligné logo */
  --accent-dark: #E5BE00;

  --success: #16A34A;
  --danger: #DC2626;

  --txt: #1A1F2C;
  --txt-soft: #5A6473;
  --txt-muted: #8A93A6;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(10,14,26,.04), 0 2px 4px rgba(10,14,26,.04);
  --shadow-md: 0 4px 6px rgba(10,14,26,.04), 0 8px 16px rgba(10,14,26,.06);
  --shadow-lg: 0 12px 24px rgba(10,14,26,.06), 0 24px 48px rgba(10,14,26,.08);

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--txt);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: white; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--dark { background: var(--ink); color: white; }
.btn--dark:hover { background: var(--ink-soft); }
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 14px; }

/* ===== Top bar ===== */
.top-bar {
  background: var(--ink);
  color: white;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
}
.top-bar__left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.top-bar__pill {
  background: var(--accent);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.top-bar__txt { color: rgba(255,255,255,.7); }
.top-bar__right { display: flex; align-items: center; gap: 14px; }
.top-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: white;
  font-family: var(--font-mono);
}
.top-bar__phone:hover { color: var(--accent); }
.top-bar__wa {
  background: #25D366;
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

@media (max-width: 720px) {
  .top-bar__txt { display: none; }
}

/* ===== Header ===== */
.site-header {
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo__img { height: 54px; width: auto; display: block; }
@media (max-width: 600px) { .logo__img { height: 44px; } }

.primary-nav ul { list-style: none; display: flex; gap: 4px; }
.primary-nav li { position: relative; }
.primary-nav a {
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: 15px;
  color: var(--txt);
  transition: color .15s, background .15s;
  display: inline-block;
}
.primary-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.primary-nav .has-sub > a::after {
  content: '▾';
  margin-left: 6px;
  font-size: 10px;
  color: var(--txt-muted);
}
.primary-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 6px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 60;
  display: flex;
  flex-direction: column;
}
.primary-nav .has-sub:hover .submenu,
.primary-nav .has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .submenu a {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: var(--r-sm);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  transition: background .15s;
}
.cart-btn:hover { background: var(--primary-soft); color: var(--primary); }
.cart-btn__count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.mobile-toggle { display: none; flex-direction: column; gap: 4px; width: 38px; height: 38px; justify-content: center; align-items: center; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s; }

@media (max-width: 980px) {
  .primary-nav { display: none; }
  .primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line); padding: 16px 24px; box-shadow: var(--shadow-lg); }
  .primary-nav.is-open ul { flex-direction: column; gap: 4px; }
  .mobile-toggle { display: flex; }
  .header-cta { display: none; }
  .logo__text small { display: none; }
}

/* ===== HERO — vraie photo atelier ===== */
.hero {
  background: var(--ink);
  color: white;
  overflow: hidden;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  min-height: 620px;
  align-items: stretch;
}
.hero__left {
  padding: 80px 60px 80px 0;
  max-width: 620px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__addr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,212,0,.12);
  border: 1px solid rgba(255,212,0,.25);
  border-radius: 999px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
  width: max-content;
}
.hero__addr i {
  background: var(--accent);
  color: var(--ink);
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .06em;
}
.hero h1 {
  color: white;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(transparent 70%, rgba(255,212,0,.3) 70%);
  padding: 0 4px;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__cta .btn--ghost { color: white; border-color: rgba(255,255,255,.25); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}
.hero__meta > div {
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero__meta > div:last-child { border-right: 0; padding-right: 0; }
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__meta strong em { color: var(--accent); font-style: normal; }
.hero__meta span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  line-height: 1.4;
  display: block;
}

/* Photo réelle de l'atelier en plein hero */
.hero__photo {
  position: relative;
  background-image: url('/assets/images/61af6a7fa04d261af51990e80520210612_143934.jpg');
  background-size: cover;
  background-position: center;
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 18%, transparent 82%, rgba(14,31,58,.65) 100%);
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,212,0,.15) 0%, transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(14,31,58,.6) 100%);
}

/* Petit floating card "panne du jour" sur la photo */
.hero__tag {
  position: absolute;
  bottom: 38px;
  left: 38px;
  background: rgba(14,31,58,.92);
  backdrop-filter: blur(12px);
  color: white;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  max-width: 340px;
  z-index: 2;
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
.hero__tag p { font-size: 11px; color: var(--accent); margin-bottom: 4px; letter-spacing: .1em; font-family: var(--font-mono); font-weight: 700; }
.hero__tag strong { font-family: var(--font-display); font-size: 16px; line-height: 1.3; display: block; margin-bottom: 8px; }
.hero__tag span { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.65); }
.hero__tag span b { color: white; font-weight: 700; font-size: 15px; }

.hero__sticker {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--accent);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  z-index: 2;
  box-shadow: 0 12px 24px rgba(255,212,0,.35);
  letter-spacing: .04em;
  transform: rotate(-4deg);
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 50px 24px 40px; max-width: none; margin: 0; }
  .hero__photo { min-height: 380px; }
}
@media (max-width: 600px) {
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero__meta > div:nth-child(2) { border-right: 0; }
}

/* ===== Atelier — marquee photos réelles ===== */
.workshop-strip {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.workshop-strip__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.workshop-strip__head b { color: var(--accent); font-weight: 700; }
.workshop-strip__rail {
  display: flex;
  gap: 0;
  animation: scroll-x 60s linear infinite;
  width: max-content;
}
.workshop-strip__rail figure {
  width: 280px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-right: 1px solid rgba(0,0,0,.5);
  position: relative;
  filter: grayscale(0.15);
  transition: filter .3s;
}
.workshop-strip:hover .workshop-strip__rail { animation-play-state: paused; }
.workshop-strip__rail figure:hover { filter: grayscale(0); }
.workshop-strip__rail figure figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(14,31,58,.95));
  color: white;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .2s;
}
.workshop-strip__rail figure:hover figcaption { opacity: 1; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Brand strip ===== */
.brand-strip {
  background: var(--bg-soft);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.brand-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.brand-strip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--txt-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.brand-strip__logos {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  align-items: center;
}
.brand-strip__logos span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--txt-soft);
  opacity: .75;
  transition: opacity .2s;
}
.brand-strip__logos span:hover { opacity: 1; color: var(--ink); }

/* ===== Models grid ===== */
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.model-tile {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 20px;
  text-align: left;
  transition: all .15s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.model-tile:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.model-tile__brand {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}
.model-tile strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.model-tile__price {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 4px;
}
@media (max-width: 880px) { .models-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .models-grid { grid-template-columns: 1fr; } }

/* ===== Top alert banner ===== */
.alert-bar {
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 10px 24px;
  position: relative;
}
.alert-bar b { font-weight: 800; }
.alert-bar a { text-decoration: underline; }

/* ===== Calc widget home ===== */
.calc-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.calc-widget__left { flex: 1; min-width: 280px; }
.calc-widget__right { flex-shrink: 0; }
.calc-widget .btn--dark { background: var(--ink); color: white; }
.calc-widget .btn--dark:hover { background: #000; }

/* ===== Calculatrice de devis ===== */
.calc {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.calc__step { margin-bottom: 28px; }
.calc__step:last-child { margin-bottom: 0; }
.calc__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.calc__label span {
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}
.calc__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.calc__choices button {
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: white;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: all .15s;
}
.calc__choices button:hover { border-color: var(--primary); color: var(--primary); }
.calc__choices button.is-active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.calc__result {
  margin-top: 28px;
  padding: 32px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: white;
  border-radius: var(--r-lg);
  text-align: center;
}
.calc__result-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 6px;
}
.calc__result-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 12px;
}
.calc__result-info {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  margin-bottom: 20px;
}
.calc__result .cta-row { justify-content: center; }
.calc__result .btn--ghost { color: white; border-color: rgba(255,255,255,.25); }
.calc__result .btn--ghost:hover { background: rgba(255,255,255,.06); }

/* ===== Tableau pannes par modèle ===== */
.model-pannes__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.model-pannes__table th, .model-pannes__table td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.model-pannes__table tr:last-child td { border-bottom: 0; }
.model-pannes__table th { background: var(--bg-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--txt-soft); }
.model-pannes__price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
}

/* ===== Sitemap ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.sitemap-col h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.sitemap-col ul { list-style: none; padding: 0; }
.sitemap-col li { padding: 6px 0; border-bottom: 1px solid var(--line-soft); }
.sitemap-col li a { color: var(--ink); font-size: 14px; }
.sitemap-col li a:hover { color: var(--primary); }

/* ===== Articles grid + page ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.articles-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .articles-grid--3 { grid-template-columns: 1fr; } }
.article-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.article-card__cover {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.article-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.article-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 10px;
}
.article-card h2, .article-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--ink);
}
.article-card p {
  font-size: 14px;
  color: var(--txt-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.article-card__cta {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

.article-page__hero {
  padding: 90px 0 70px;
  background-size: cover;
  background-position: center;
  color: white;
  margin-bottom: 50px;
}
.article-page__hero h1 { color: white; max-width: 820px; margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); }
.article-page__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.article-page__excerpt {
  max-width: 720px;
  font-size: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.article-page__body { padding-bottom: 60px; }

/* ===== Trust badges strip ===== */
.trust-strip {
  background: white;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.trust-strip__item > svg {
  color: var(--primary);
  flex-shrink: 0;
  background: var(--primary-soft);
  padding: 8px;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
}
.trust-strip__item:nth-child(2) > svg { color: var(--accent-dark); background: rgba(255,212,0,.15); }
.trust-strip__item:nth-child(3) > svg { color: var(--success); background: #DCFCE7; }
.trust-strip__item:nth-child(4) > svg { color: var(--ink); background: var(--bg-soft); }
.trust-strip__item strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 600; line-height: 1.2; }
.trust-strip__item span { font-size: 12px; color: var(--txt-soft); }
@media (max-width: 820px) {
  .trust-strip__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-strip__item strong { font-size: 14px; }
}

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: white; }
.section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section__head h2 { margin-bottom: 14px; }
.section__head p { color: var(--txt-soft); font-size: 17px; }
.section--dark .section__head p { color: rgba(255,255,255,.7); }

/* ===== 3 piliers ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.pillar:nth-child(2) .pillar__icon { background: #FFF5DC; color: #C58A00; }
.pillar:nth-child(3) .pillar__icon { background: #E8FAF0; color: var(--success); }
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--txt-soft); margin-bottom: 20px; line-height: 1.55; }
.pillar__price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 16px;
  font-size: 14px;
}
.pillar__link::after { content: '→'; transition: transform .15s; }
.pillar:hover .pillar__link::after { transform: translateX(4px); }

@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ===== Method ===== */
.method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.method::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.method__step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.method__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.method__num--active { background: var(--ink); color: var(--accent); }
.method__step h4 { margin-bottom: 6px; }
.method__step p { color: var(--txt-soft); font-size: 14px; }

@media (max-width: 720px) {
  .method { grid-template-columns: 1fr 1fr; }
  .method::before { display: none; }
}

/* ===== Services list (page Réparations) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.service-card__icon {
  width: 44px; height: 44px;
  background: var(--bg-soft);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}
.service-card h4 { font-size: 17px; margin-bottom: 6px; }
.service-card p { font-size: 14px; color: var(--txt-soft); line-height: 1.5; margin-bottom: 8px; }
.service-card__price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

/* ===== Products grid ===== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
  gap: 24px;
  justify-content: center;
}
.product {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.product__image {
  aspect-ratio: 1;
  max-height: 280px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .3s;
}
.product:hover .product__image img { transform: scale(1.05); }
.product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.product__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__brand {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--txt-muted);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.product__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ink);
  min-height: 42px;
}
.product__desc {
  font-size: 13px;
  color: var(--txt-soft);
  line-height: 1.4;
  margin-bottom: 16px;
  flex: 1;
}
.product__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.product__price--old {
  font-size: 13px;
  color: var(--txt-muted);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 500;
}
.product__cta {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  transition: background .15s;
}
.product__cta:hover { background: var(--primary); }

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 20px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  color: var(--txt-soft);
  cursor: pointer;
  transition: all .15s;
}
.tab:hover { color: var(--ink); border-color: var(--ink); }
.tab.is-active { background: var(--ink); color: white; border-color: var(--ink); }

/* ===== Reviews ===== */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
}
.review::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--bg-soft);
  line-height: 1;
}
.review__stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--accent); }
.review__body { font-size: 15px; line-height: 1.55; color: var(--txt); margin-bottom: 20px; }
.review__author {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--ink));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.review__date {
  display: block;
  font-size: 12px;
  color: var(--txt-muted);
  font-weight: 400;
}

.reviews-head {
  text-align: center;
  margin-bottom: 32px;
}
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
}
.reviews-rating strong { color: var(--accent); font-size: 22px; font-family: var(--font-display); }

/* ===== Map / Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info__block {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info__block:last-child { border-bottom: 0; }
.contact-info__icon {
  width: 40px; height: 40px;
  background: var(--bg-soft);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info__block strong { display: block; font-size: 14px; color: var(--txt-soft); margin-bottom: 4px; font-weight: 500; }
.contact-info__block a, .contact-info__block p { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.contact-info__block a:hover { color: var(--primary); }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form p.muted { color: var(--txt-soft); margin-bottom: 24px; font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--txt); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: white;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field--checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--txt-soft); line-height: 1.4; }
.form-field--checkbox input { width: auto; margin-top: 2px; }

.map-embed {
  margin-top: 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  background: var(--bg-soft);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(10,14,26,.85));
  color: white;
  font-weight: 600;
  font-size: 13px;
}

/* ===== Article content (page Réparations / Pièces détachées) ===== */
.article-body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
}
.article-body h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: 2rem;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  margin-top: 36px;
  margin-bottom: 14px;
}
.article-body p { margin-bottom: 18px; color: var(--txt); }
.article-body ul { margin: 18px 0 24px; padding-left: 0; list-style: none; }
.article-body ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.article-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px; height: 22px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.article-body a { color: var(--primary); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(0,102,255,.3); }
.article-body a:hover { text-decoration-color: var(--primary); }
.article-body strong { color: var(--ink); font-weight: 600; }

.page-header {
  background: var(--bg-soft);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 14px; }
.page-header p { color: var(--txt-soft); font-size: 18px; max-width: 620px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Product page ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail__gallery {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 32px;
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.product-detail__gallery img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-detail__info h1 { font-size: 2.2rem; margin-bottom: 12px; }
.product-detail__brand {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.product-detail__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--ink);
  margin: 16px 0 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.product-detail__price small { font-size: 14px; color: var(--txt-soft); font-weight: 400; font-family: var(--font-body); }
.product-detail__short { color: var(--txt-soft); margin-bottom: 24px; font-size: 16px; line-height: 1.55; }
.product-detail__form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.product-detail__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.product-detail__qty button { width: 36px; height: 100%; background: var(--bg-soft); }
.product-detail__qty input { width: 50px; border: 0; text-align: center; height: 100%; padding: 12px 4px; }
.product-detail__form .btn { flex: 1; justify-content: center; }
.product-detail__usp { display: flex; flex-direction: column; gap: 12px; }
.product-detail__usp span { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--txt-soft); }
.product-detail__usp svg { color: var(--success); }

.product-tabs { margin-top: 60px; }
.product-tabs__head { display: flex; gap: 8px; border-bottom: 2px solid var(--line); margin-bottom: 24px; }
.product-tabs__head button {
  padding: 14px 24px;
  font-weight: 600;
  color: var(--txt-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .15s;
}
.product-tabs__head button.is-active { color: var(--ink); border-color: var(--ink); }
.product-tabs__body section { display: none; }
.product-tabs__body section.is-active { display: block; }

@media (max-width: 880px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Cart page ===== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cart-table th, .cart-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.cart-table th { background: var(--bg-soft); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--txt-soft); }
.cart-table tr:last-child td { border-bottom: 0; }
.cart-line { display: flex; align-items: center; gap: 16px; }
.cart-line__img { width: 64px; height: 64px; background: var(--bg-soft); border-radius: 8px; padding: 4px; }
.cart-line__img img { width: 100%; height: 100%; object-fit: contain; }
.cart-summary {
  margin-top: 24px;
  background: var(--ink);
  color: white;
  padding: 28px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cart-summary__total { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.cart-summary__total small { font-size: 13px; color: rgba(255,255,255,.6); display: block; font-weight: 400; font-family: var(--font-body); }
.cart-empty { text-align: center; padding: 80px 24px; color: var(--txt-soft); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 80px 0 30px;
  margin-top: 80px;
}
.footer-cta {
  background: linear-gradient(135deg, var(--primary), #4D8FFF);
  color: white;
  padding: 48px;
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
  box-shadow: 0 24px 48px rgba(0,102,255,.25);
}
.footer-cta .eyebrow { color: rgba(255,255,255,.8); }
.footer-cta h2 { color: white; margin-bottom: 8px; }
.footer-cta__sub { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.5; }
.footer-cta__actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.footer-cta .btn--ghost { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.25); }
.footer-cta .btn--ghost:hover { background: rgba(255,255,255,.2); }
.footer-cta .btn--primary { background: var(--ink); color: white; }
.footer-cta .btn--primary:hover { background: black; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 { color: white; font-family: var(--font-display); font-size: 15px; margin-bottom: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-col--brand .logo__text strong { color: white; }
.footer-col--brand .logo__text small { color: rgba(255,255,255,.5); }
.footer-tagline { font-size: 14px; line-height: 1.55; margin: 18px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--accent); color: var(--ink); }
.footer-col--contact address { font-style: normal; font-size: 14px; line-height: 1.6; margin-bottom: 14px; color: white; }
.footer-col--contact .muted { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-phones { margin-bottom: 14px; font-size: 14px; font-family: var(--font-mono); line-height: 1.7; }
.footer-phones a { color: white; }
.footer-hours { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom ul { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 980px) {
  .footer-cta { grid-template-columns: 1fr; padding: 32px; }
  .footer-cta__actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Floating WhatsApp ===== */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 100;
  transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.1); }

/* ===== Sticky mobile CTA bar ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(10,14,26,.08);
  z-index: 90;
  padding: 8px;
  gap: 6px;
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.mobile-bar__btn--call { background: var(--primary-soft); color: var(--primary); }
.mobile-bar__btn--wa   { background: #DCFCE7; color: #16A34A; }
.mobile-bar__btn--devis{ background: var(--accent); color: var(--ink); }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  .fab-wa { display: none; }
  body { padding-bottom: 78px; }
}

/* ===== Comparateur prix ===== */
.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.compare__table th, .compare__table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare__table tr:last-child td { border-bottom: 0; }
.compare__table th {
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--txt-soft);
}
.compare__col--us {
  background: linear-gradient(180deg, rgba(255,212,0,.1), rgba(255,212,0,.04));
  font-weight: 700;
  color: var(--ink);
  position: relative;
}
.compare__col--us b {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--primary);
  display: block;
}
.compare__col--us small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 2px;
}
.compare__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--txt-muted);
  font-style: italic;
  max-width: 760px;
}
@media (max-width: 720px) {
  .compare { overflow-x: auto; }
  .compare__table { min-width: 640px; }
}

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--primary);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--txt-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== Brand SEO landing pages ===== */
.brand-hero {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: white;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.brand-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,212,0,.08), transparent 60%);
  border-radius: 50%;
}
.brand-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.brand-hero__brand {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 22px;
}
.brand-hero h1 { color: white; font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 18px; }
.brand-hero h1 em { color: var(--accent); font-style: normal; }
.brand-hero__sub { font-size: 18px; color: rgba(255,255,255,.78); margin-bottom: 28px; max-width: 540px; line-height: 1.55; }
.brand-hero__photo {
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
@media (max-width: 880px) {
  .brand-hero .container { grid-template-columns: 1fr; }
  .brand-hero__photo { aspect-ratio: 16/9; max-height: 280px; }
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.price-list__row strong { font-weight: 600; color: var(--ink); }
.price-list__row span {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 6px;
}

/* ===== Utility ===== */
.section--no-pt { padding-top: 0; }
.section--no-pb { padding-bottom: 0; }
.text-center { text-align: center; }
.cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
