/*
  Clé Rapide — feuille de style partagée
  Duplication multi-ville standard : ne pas modifier ce fichier.
  Les variations SEO, ville, département, FAQ locale et contenus se font dans le HTML.
*/

/* ===== style.css ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
body {
  background: #0d0d0f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
:root {
  --topbar-height: 36px;
  --header-height: 50px;
  --menu-panel-gap: 10px;
  --menu-offset-top: calc(var(--topbar-height) + var(--header-height) + var(--menu-panel-gap));
  --anchor-scroll-offset: calc(var(--topbar-height) + var(--header-height) + 14px);
}
.page {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: #0d0d0f;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.18;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.55);
  }
}
@keyframes sh {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
@keyframes scroll-marques {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.topbar {
  background: #111318;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: sticky;
  top: 0;
  z-index: 1002;
}
.topbar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: blink 2s infinite;
  flex-shrink: 0;
}
.topbar-text {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
}
.topbar-online {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.topbar-online__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}
.header {
  background: #0d0d0f;
  height: var(--header-height);
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: var(--topbar-height);
  z-index: 1001;
  border-bottom: 1px solid rgba(210, 210, 210, 0.12);
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}
.header-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 8px;
  border: 1.5px solid rgba(210, 210, 210, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.header-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1;
}
.shimmer {
  background: linear-gradient(
    90deg,
    rgba(180, 180, 180, 0.45),
    #e8e8e8,
    rgba(180, 180, 180, 0.45)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sh 3.5s linear infinite;
}
.red {
  color: #d42b1e;
}
.header-tagline {
  font-size: 8px;
  color: #f7f6f4;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 2px;
  -webkit-text-fill-color: #f7f6f4;
}

.header-logo-link {
  display: block;
  line-height: 0;
  border-radius: 0;
  flex-shrink: 0;
}
.header-logo-img {
  display: block;
  width: clamp(82px, 15vw, 104px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
.header-brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.footer-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 8px;
}
.footer-logo-img {
  display: block;
  width: min(144px, 46vw);
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.header-wa {
  width: 36px;
  height: 36px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.menu-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.menu-btn__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #f7f6f4;
  border-radius: 2px;
  transition:
    transform 0.24s ease,
    opacity 0.2s ease,
    background 0.2s ease;
  transform-origin: center;
}
.menu-btn.is-active .menu-btn__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.is-active .menu-btn__bar:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-active .menu-btn__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 12, 0.58);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.26s ease;
  z-index: 119;
}
.site-menu {
  position: fixed;
  inset: var(--menu-offset-top) auto 0 50%;
  width: min(430px, 100vw);
  height: calc(100dvh - var(--menu-offset-top));
  padding: 16px 20px 22px;
  background: rgba(13, 13, 15, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, 14px);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.28s ease,
    opacity 0.24s ease,
    visibility 0.24s ease;
  z-index: 120;
  overflow-y: auto;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .site-menu-backdrop {
  opacity: 1;
}
body.menu-open .site-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
#hero,
#pitch,
#pourquoi,
#process,
#remboursement,
#avis,
#services,
#devis,
#marques-compat,
#zone-intervention,
#faq,
#savoir-faire {
  scroll-margin-top: var(--anchor-scroll-offset);
}
.site-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.site-menu__eyebrow {
  font: 700 11px/1 "Inter", sans-serif;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(212, 43, 30, 0.92);
}
.site-menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f6f4;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.site-menu__brand {
  margin-bottom: 20px;
  font: 800 22px/1.18 "Inter", sans-serif;
  letter-spacing: -0.4px;
  color: #f7f6f4;
}
.site-menu__nav {
  display: grid;
  gap: 10px;
}
.site-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.site-menu-link span {
  display: block;
  font: 700 15px/1.3 "Inter", sans-serif;
  color: #f7f6f4;
}
.site-menu-link small {
  display: block;
  font: 500 11px/1.45 "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.42);
  text-align: right;
}
.site-menu__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.site-menu-cta {
  min-height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-decoration: none;
  font: 700 14px/1.2 "Inter", sans-serif;
}
.site-menu-cta--primary {
  background: linear-gradient(135deg, #d42b1e, #ef5a4d);
  color: #fff;
}
.site-menu-cta--phone {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7f6f4;
}
.site-menu-cta--ghost {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.24);
  color: #8df0b3;
}
.site-menu__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-menu__legal a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font: 600 11px/1.4 "Inter", sans-serif;
}
@media (min-width: 768px) {
  :root {
    --topbar-height: 40px;
    --header-height: 72px;
    --menu-panel-gap: 12px;
  }
  .site-menu {
    width: min(460px, calc(100vw - 48px));
    padding: 20px 24px 26px;
  }
  .site-menu__brand {
    font-size: 28px;
  }
  .site-menu-link {
    padding: 16px 18px;
  }
  .site-menu-link span {
    font-size: 16px;
  }
  .site-menu-link small {
    font-size: 12px;
  }
}
.hero {
  background: #0d0d0f;
  padding: 18px 20px 32px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  object-fit: cover;
  object-position: 85% center;
  opacity: 1;
  pointer-events: none;
}
.deco {
  position: absolute;
  pointer-events: none;
}
.deco-tr {
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(212, 43, 30, 0.09) 0%,
    transparent 70%
  );
}
.deco-bl {
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(212, 43, 30, 0.07) 0%,
    transparent 70%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 8, 8, 0.98) 0%,
    rgba(8, 8, 8, 0.8) 35%,
    rgba(8, 8, 8, 0.6) 65%,
    rgba(8, 8, 8, 0.4) 100%
  );
  pointer-events: none;
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0d0d0f);
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(210, 210, 210, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 210, 210, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: gridMove 8s linear infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
}
h1,
h2 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
.h1-line1 {
  display: block;
  margin-bottom: 10px;
  animation: slideUp 0.7s ease both;
  opacity: 0;
  line-height: 1;
}
.h1-tw-wrap {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f7f6f4;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  opacity: 0.75;
}
.tw-cursor {
  display: inline-block;
  width: 2px;
  height: 0.75em;
  background: #f7f6f4;
  margin-left: 1px;
  vertical-align: baseline;
  animation: blink 0.7s step-end infinite;
  flex-shrink: 0;
}
.h1-main {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f7f6f4;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 3px;
}
.h1-services {
  display: block;
  margin-bottom: 12px;
  animation: slideUp 0.7s 0.08s ease both;
  opacity: 1;
}
.h1-location-seo {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.h1-services-inner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.h1-services-inner::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(212, 43, 30, 0.5);
  flex-shrink: 0;
}
.h2-wrap {
  margin-top: 20px;
  margin-bottom: 14px;
}
.hero-title-line {
  display: block;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(
    90deg,
    rgba(200, 200, 200, 0.5),
    #e8e8e8,
    rgba(200, 200, 200, 0.5)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2-big {
  font-size: 42px;
  line-height: 0.95;
}
.h2-line-primary {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
}
.h2-line-secondary {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
  letter-spacing: 1px;
}
.h2-accent,
.h2-accent-big {
  -webkit-text-fill-color: #d42b1e;
  background: none;
}
.h2-accent-big {
  font-size: 1.3em;
  line-height: 0;
}
.hero-title-line--primary {
  animation:
    slideUp 0.7s 0.18s ease both,
    sh 3.5s linear infinite;
  opacity: 0;
}
.hero-title-line--secondary {
  animation:
    slideUp 0.7s 0.25s ease both,
    sh 4s linear infinite;
  opacity: 0;
}
.hero-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #d42b1e, rgba(212, 43, 30, 0));
  border-radius: 2px;
  margin-bottom: 20px;
  margin-top: 4px;
}
.pitch {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 1;
}
.pitch-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}
.pitch-strong {
  color: #fff;
  font-weight: 700;
}
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 1px 11px 2px;
  border-radius: 100px;
  vertical-align: middle;
  line-height: 1.6;
  margin-left: 4px;
  position: relative;
  top: -3px;
}
.hero-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.hero-rating-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  backdrop-filter: blur(4px);
}
.hero-rating-stars {
  color: #ffd600;
  font-size: 12px;
  letter-spacing: 1px;
}
.hero-rating-score {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.8px;
}
.hero-rating-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
}
.hero-rating-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.3px;
}
.ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  border-radius: 12px;
  letter-spacing: -0.1px;
  white-space: nowrap;
}
.btn-devis {
  background: #f7f6f4;
  color: #1a1a1a;
  padding: 15px 20px;
  font-weight: 800;
}
.btn-tel {
  background: #d42b1e;
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow:
    0 6px 20px rgba(212, 43, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
  display: inline-block;
}
.marques-wrap {
  background: #0d0d0f;
}
.marques-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 0 10px;
  background: linear-gradient(
    90deg,
    rgba(200, 200, 200, 0.5),
    #e8e8e8,
    rgba(200, 200, 200, 0.5)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sh 4s linear infinite;
}
.marques-scroll {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  background: #0d0d0f;
  -webkit-mask: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.marques-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scroll-marques 35s linear infinite;
  padding: 0 10px;
}
.marques-track:hover {
  animation-play-state: paused;
}
.mb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  padding: 10px 12px;
  flex-shrink: 0;
  min-width: 72px;
  transition: all 0.25s;
}
.mb-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.mb-icon {
  width: 38px;
  height: 38px;
  padding: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.mb-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.mb-name {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* PITCH SECTION */
.pitch-transition {
  height: 40px;
  background: linear-gradient(to bottom, #0d0d0f, #ffffff);
}
.pitch-section {
  padding: 24px 20px 52px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.pitch-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.35),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.pitch-intro {
  text-align: center;
  margin-bottom: 36px;
}
.pitch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 18px;
}
.pitch-eyebrow::before,
.pitch-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.pitch-headline {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.pitch-headline span {
  color: #d42b1e;
}
.pitch-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.8;
  margin-top: 14px;
}
.pitch-sub strong {
  color: #1a202c;
  font-weight: 600;
}
.pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pitch-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 24px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(17, 19, 24, 0.05);
  box-shadow: 0 1px 12px rgba(17, 19, 24, 0.035);
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.pitch-stat:hover {
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.06);
  border-color: rgba(212, 43, 30, 0.08);
  transform: translateY(-2px);
}
.pitch-num {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
  color: #111318;
  min-height: 40px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.pitch-num .suffix {
  font-size: 22px;
  font-weight: 700;
  color: #d42b1e;
  margin-left: 2px;
  letter-spacing: 0;
}
.pitch-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #718096;
  letter-spacing: 0.2px;
  line-height: 1.5;
  text-align: center;
}
.d1 {
  transition-delay: 0.05s;
}
.d2 {
  transition-delay: 0.12s;
}
.d3 {
  transition-delay: 0.19s;
}
.d4 {
  transition-delay: 0.26s;
}
@media (max-width: 389px) {
  .h1-tw-wrap {
    font-size: 21px;
  }
  .h1-main {
    font-size: 42px;
  }
  .h1-services-inner {
    font-size: 13.5px;
  }
  .pitch-transition {
    height: 32px;
  }
  .pitch-section {
    padding: 22px 16px 44px;
  }
  .pitch-line {
    left: 16px;
    right: 16px;
  }
  .pitch-intro {
    margin-bottom: 28px;
  }
  .pitch-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 14px;
  }
  .pitch-headline {
    font-size: 21px;
    line-height: 1.28;
  }
  .pitch-sub {
    font-size: 14px;
    line-height: 1.7;
  }
  .pitch-grid {
    gap: 8px;
  }
  .pitch-stat {
    padding: 22px 12px 20px;
    border-radius: 18px;
  }
  .pitch-num {
    font-size: 30px;
    min-height: 34px;
  }
  .pitch-num .suffix {
    font-size: 19px;
  }
  .pitch-label {
    font-size: 11px;
    line-height: 1.45;
  }
}
@media (min-width: 768px) {
  .h1-tw-wrap {
    font-size: 26px;
  }
  .h1-main {
    font-size: 54px;
  }
  .h1-services-inner {
    font-size: 15px;
  }
  .pitch-transition {
    height: 56px;
  }
  .pitch-section {
    padding: 42px 32px 72px;
  }
  .pitch-line {
    left: 32px;
    right: 32px;
  }
  .pitch-intro {
    max-width: 860px;
    margin: 0 auto 42px;
  }
  .pitch-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 22px;
  }
  .pitch-headline {
    font-size: 42px;
    line-height: 1.22;
    letter-spacing: -1px;
  }
  .pitch-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 760px;
    margin: 16px auto 0;
  }
  .pitch-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .pitch-stat {
    padding: 30px 18px 26px;
    border-radius: 22px;
  }
  .pitch-num {
    font-size: 40px;
    min-height: 44px;
  }
  .pitch-num .suffix {
    font-size: 24px;
  }
  .pitch-label {
    font-size: 13px;
    line-height: 1.55;
  }
}
@media (min-width: 1200px) {
  .h1-tw-wrap {
    font-size: 28px;
  }
  .h1-main {
    font-size: 58px;
  }
  .h1-services-inner {
    font-size: 16px;
  }
  .pitch-transition {
    height: 64px;
  }
  .pitch-section {
    padding: 54px clamp(40px, 5vw, 88px) 84px;
  }
  .pitch-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .pitch-intro {
    max-width: 980px;
    margin-bottom: 48px;
  }
  .pitch-headline {
    font-size: 50px;
    letter-spacing: -1.3px;
  }
  .pitch-sub {
    font-size: 21px;
    max-width: 820px;
  }
  .pitch-grid {
    gap: 18px;
  }
  .pitch-stat {
    padding: 34px 20px 28px;
    border-radius: 24px;
  }
  .pitch-num {
    font-size: 46px;
    min-height: 48px;
  }
  .pitch-num .suffix {
    font-size: 26px;
  }
  .pitch-label {
    font-size: 14px;
  }
}

/* WHY SECTION */
@keyframes checkPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.why-section {
  padding: 48px 20px 52px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.why-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.why-eyebrow::before,
.why-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.why-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.why-title span {
  color: #d42b1e;
}
.why-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 16px;
}

.why-illustration {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 14px;
  margin-inline: 0;
}
.why-illustration-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.why-illustration-frame::before {
  display: none;
}
.why-illustration-img {
  position: relative;
  display: block;
  width: min(100%, 760px);
  height: auto;
  max-width: 760px;
  margin: 0 auto;
}
.why-args {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.why-arg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f6f8fa;
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 16px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.why-arg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: #d42b1e;
}
.wa2::before {
  opacity: 0.7;
}
.wa3::before {
  opacity: 0.5;
}
.wa4::before {
  opacity: 0.35;
}
.wa5::before {
  opacity: 0.2;
}
.why-arg:hover {
  box-shadow: 0 8px 22px rgba(17, 19, 24, 0.055);
  border-color: rgba(212, 43, 30, 0.08);
  transform: translateY(-2px);
}
.why-arg:hover::before {
  opacity: 1 !important;
}
.why-arg-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212, 43, 30, 0.06);
  border: 1px solid rgba(212, 43, 30, 0.12);
  display: grid;
  place-items: center;
}
.why-arg-body {
  flex: 1;
  min-width: 0;
}
.why-arg-title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111318;
  letter-spacing: -0.1px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.why-arg-desc {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 10px;
}
.why-arg-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-arg-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  overflow: hidden;
}
.why-arg-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, #d42b1e, rgba(212, 43, 30, 0.5));
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-arg-bar-indicator {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-arg-bar-num {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(212, 43, 30, 0.7);
  letter-spacing: 0.3px;
  position: absolute;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.why-arg-bar-check {
  position: absolute;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-arg-bar-indicator.done .why-arg-bar-num {
  opacity: 0;
  transform: scale(0.7);
}
.why-arg-bar-indicator.done .why-arg-bar-check {
  animation: checkPop 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
  opacity: 1;
}
.why-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-btn-red,
.why-btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 12px;
}
.why-btn-red {
  background: #d42b1e;
  color: #fff;
  box-shadow:
    0 6px 28px rgba(212, 43, 30, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.why-btn-dark {
  background: #111318;
  color: #fff;
}
.wd1 {
  transition-delay: 0.06s;
}
.wd2 {
  transition-delay: 0.12s;
}
.wd3 {
  transition-delay: 0.18s;
}
.wd4 {
  transition-delay: 0.24s;
}
.wd5 {
  transition-delay: 0.3s;
}
.wd6 {
  transition-delay: 0.36s;
}
@media (max-width: 389px) {
  .why-section {
    padding: 40px 16px 44px;
  }
  .why-line {
    left: 16px;
    right: 16px;
  }
  .why-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .why-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .why-sub {
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 12px;
  }
  .why-illustration {
    margin-bottom: 12px;
  }
  .why-illustration-frame {
    padding: 0;
    border-radius: 0;
  }
  .why-args {
    gap: 8px;
    margin-bottom: 24px;
  }
  .why-arg {
    gap: 12px;
    padding: 16px 14px;
    border-radius: 14px;
  }
  .why-arg-icon {
    width: 38px;
    height: 38px;
    border-radius: 0;
  }
  .why-arg-title {
    font-size: 12px;
  }
  .why-arg-desc {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .why-btn-red,
  .why-btn-dark {
    padding: 14px 16px;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .why-section {
    padding: 64px 32px 72px;
  }
  .why-line {
    left: 32px;
    right: 32px;
  }
  .why-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .why-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
    max-width: 780px;
  }
  .why-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 920px;
    margin-bottom: 18px;
  }
  .why-illustration {
    margin-bottom: 18px;
  }
  .why-illustration-frame {
    padding: 0;
    border-radius: 0;
  }
  .why-illustration-img {
    max-width: 920px;
  }
  .why-args {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 38px;
  }
  .why-arg {
    padding: 20px 18px;
    border-radius: 18px;
  }
  .why-arg-icon {
    width: 46px;
    height: 46px;
  }
  .why-arg-title {
    font-size: 14px;
  }
  .why-arg-desc {
    font-size: 13px;
  }
  .why-arg-bar-track {
    height: 5px;
  }
  .why-arg-bar-num {
    font-size: 11px;
  }
  .why-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .why-btn-red,
  .why-btn-dark {
    min-width: 198px;
    padding: 16px 22px;
    font-size: 16px;
    border-radius: 14px;
  }
}
@media (min-width: 1200px) {
  .why-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .why-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .why-title {
    font-size: 52px;
    max-width: 860px;
  }
  .why-sub {
    font-size: 21px;
    max-width: 980px;
    margin-bottom: 22px;
  }
  .why-illustration {
    margin-bottom: 22px;
  }
  .why-illustration-frame {
    padding: 0;
  }
  .why-illustration-img {
    max-width: 980px;
  }
  .why-args {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .why-arg {
    padding: 22px 20px;
  }
  .why-arg-title {
    font-size: 15px;
  }
  .why-arg-desc {
    font-size: 13px;
  }
  .why-btn-red,
  .why-btn-dark {
    min-width: 280px;
  }
}

/* PROCESS SECTION */
.process-section {
  padding: 48px 20px 52px;
  position: relative;
  background: #f6f8fa;
  overflow: hidden;
}
.process-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.process-eyebrow::before,
.process-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.process-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.process-title span {
  color: #d42b1e;
}
.process-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 36px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.05);
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 12px rgba(17, 19, 24, 0.035);
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.process-step:hover {
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.06);
  border-color: rgba(212, 43, 30, 0.08);
  transform: translateY(-2px);
}
.process-step-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.process-step-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.process-step-left.visible,
.process-step-right.visible {
  opacity: 1;
  transform: none;
}
.process-step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
}
.process-step-connector-line {
  width: 1px;
  height: 28px;
  border-left: 2px dashed rgba(212, 43, 30, 0.25);
}
.process-step-connector-arrow {
  color: rgba(212, 43, 30, 0.5);
  font-size: 14px;
  line-height: 1;
  margin-top: -2px;
}
.process-step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.process-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(212, 43, 30, 0.08);
  border: 1px solid rgba(212, 43, 30, 0.2);
  display: grid;
  place-items: center;
  font-size: 24px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 6px;
}
.process-step-title {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #111318;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.process-step-arg {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.5;
  margin-bottom: 4px;
}
.process-step-detail {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.65;
}
.process-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-btn-red,
.process-btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 12px;
  white-space: nowrap;
}
.process-btn-red {
  background: #d42b1e;
  color: #fff;
  box-shadow:
    0 6px 28px rgba(212, 43, 30, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.process-btn-dark {
  background: #111318;
  color: #fff;
}
.process-delay-1 {
  transition-delay: 0.06s;
}
.process-delay-2 {
  transition-delay: 0.14s;
}
.process-delay-3 {
  transition-delay: 0.22s;
}
@media (max-width: 389px) {
  .process-section {
    padding: 40px 16px 44px;
  }
  .process-line {
    left: 16px;
    right: 16px;
  }
  .process-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .process-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .process-sub {
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 28px;
  }
  .process-step {
    padding: 24px 16px 20px;
    border-radius: 18px;
  }
  .process-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .process-step-title {
    font-size: 16px;
  }
  .process-step-arg {
    font-size: 13px;
  }
  .process-step-detail {
    font-size: 12px;
  }
  .process-btn-red,
  .process-btn-dark {
    padding: 14px 16px;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .process-section {
    padding: 64px 32px 72px;
  }
  .process-line {
    left: 32px;
    right: 32px;
  }
  .process-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .process-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
    max-width: 760px;
  }
  .process-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 820px;
    margin-bottom: 42px;
  }
  .process-steps {
    max-width: 860px;
    margin: 0 auto;
  }
  .process-step {
    padding: 34px 24px 28px;
    border-radius: 24px;
  }
  .process-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }
  .process-step-num {
    font-size: 11px;
  }
  .process-step-title {
    font-size: 24px;
  }
  .process-step-arg {
    font-size: 16px;
  }
  .process-step-detail {
    font-size: 14px;
    line-height: 1.7;
  }
  .process-step-connector-line {
    height: 34px;
  }
  .process-step-connector-arrow {
    font-size: 16px;
  }
  .process-cta {
    margin-top: 38px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .process-btn-red,
  .process-btn-dark {
    min-width: 198px;
    padding: 16px 22px;
    font-size: 16px;
    border-radius: 14px;
  }
}
@media (min-width: 1200px) {
  .process-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .process-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .process-title {
    font-size: 52px;
    max-width: 840px;
  }
  .process-sub {
    font-size: 21px;
    max-width: 940px;
  }
  .process-steps {
    max-width: 940px;
  }
  .process-step {
    padding: 38px 28px 32px;
  }
  .process-step-title {
    font-size: 28px;
  }
  .process-step-arg {
    font-size: 17px;
  }
  .process-step-detail {
    font-size: 15px;
  }
  .process-btn-red,
  .process-btn-dark {
    min-width: 280px;
  }
}

/* REMBOURSEMENT SECTION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes scroll-banks {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.remb-section {
  padding: 48px 20px 52px;
  position: relative;
  background: linear-gradient(180deg, #fcfbfa 0%, #f8f4f2 100%);
  overflow: hidden;
  text-align: center;
}
.remb-section::before {
  content: "";
  position: absolute;
  inset: 16px 16px 14px;
  border: 1px solid rgba(212, 43, 30, 0.07);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0.6)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
  pointer-events: none;
}
.remb-section > * {
  position: relative;
  z-index: 1;
}
.remb-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.remb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(212, 43, 30, 0.06);
  border: 1px solid rgba(212, 43, 30, 0.14);
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(212, 43, 30, 0.06);
}
.remb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.remb-eyebrow::before,
.remb-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.remb-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.remb-title span {
  color: #d42b1e;
}
.remb-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 6px;
}
.remb-hint {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 24px;
}
.remb-banks-scroll {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  -webkit-mask: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.remb-banks-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: scroll-banks 45s linear infinite;
}
.remb-banks-track:hover {
  animation-play-state: paused;
}
.remb-bank-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: #f4f6f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  flex-shrink: 0;
}
.remb-bank-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d42b1e;
  opacity: 0.5;
  flex-shrink: 0;
}
.remb-bank-pill-name {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #4a5568;
  white-space: nowrap;
}
.remb-bank-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fcf8f2 100%);
  border: 1.5px solid rgba(212, 43, 30, 0.16);
  border-radius: 16px;
  padding: 0 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.remb-bank-select-wrap:focus-within {
  border-color: #d42b1e;
  box-shadow: 0 0 0 4px rgba(212, 43, 30, 0.10), 0 14px 28px rgba(17, 19, 24, 0.10);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}
.remb-bank-select-icon {
  flex-shrink: 0;
  margin-right: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(212, 43, 30, 0.12) 0%, rgba(212, 43, 30, 0.06) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}
.remb-bank-select-icon svg {
  width: 18px;
  height: 18px;
  stroke: #c62d20;
}
.remb-bank-select {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111318;
  letter-spacing: -0.01em;
  padding: 16px 0;
  cursor: pointer;
}
.remb-bank-select option {
  color: #111318;
}
.remb-bank-select-arrow {
  flex-shrink: 0;
  margin-left: 10px;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.remb-bank-select-arrow svg {
  stroke: #c62d20;
  opacity: 0.9;
}
.remb-result {
  display: none;
  background: #f4f6f9;
  border: 1px solid rgba(212, 43, 30, 0.2);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 16px;
  animation: fadeUp 0.4s ease both;
}
.remb-result.show {
  display: block;
}
.remb-result-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.remb-result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.remb-result-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.remb-result-bank {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 8px;
}
.remb-result-bank strong {
  color: #111318;
  font-weight: 700;
}
.remb-result-amount {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #22c55e;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.remb-result-amount-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #4a5568;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.remb-result-cta,
.remb-result-devis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
}
.remb-result-cta {
  background: #d42b1e;
  color: #fff;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(212, 43, 30, 0.3);
  margin-bottom: 10px;
}
.remb-result-devis {
  background: #111318;
  color: #fff;
  padding: 13px 20px;
}
.remb-disclaimer {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #718096;
  line-height: 1.6;
  text-align: center;
  margin-top: 4px;
}
.remb-badge-4x {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(212, 43, 30, 0.2);
  border-radius: 12px;
  padding: 10px 16px;
  margin-top: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.remb-badge-4x-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #d42b1e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.remb-badge-4x-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.remb-badge-4x-title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #111318;
}
.remb-badge-4x-sub {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #718096;
  margin-top: 1px;
}
@media (max-width: 389px) {
  .remb-section {
    padding: 40px 16px 44px;
  }
  .remb-line {
    left: 16px;
    right: 16px;
  }
  .remb-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 18px;
  }
  .remb-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .remb-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .remb-sub {
    font-size: 14px;
    line-height: 1.68;
  }
  .remb-hint {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .remb-bank-select {
    font-size: 14px;
    padding: 14px 0;
  }
  .remb-result {
    padding: 20px 16px;
  }
  .remb-result-amount {
    font-size: 38px;
  }
  .remb-result-cta,
  .remb-result-devis {
    font-size: 13px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .remb-badge-4x {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }
}
@media (min-width: 768px) {
  .remb-section {
    padding: 64px 32px 72px;
  }
  .remb-line {
    left: 32px;
    right: 32px;
  }
  .remb-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    margin-bottom: 24px;
  }
  .remb-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .remb-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
    max-width: 840px;
    margin: 0 auto 12px;
  }
  .remb-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 860px;
    margin: 0 auto 8px;
  }
  .remb-hint {
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto 28px;
  }
  .remb-banks-scroll {
    margin: 0 auto 24px;
    max-width: 920px;
  }
  .remb-banks-track {
    gap: 10px;
    animation-duration: 38s;
  }
  .remb-bank-pill {
    padding: 8px 14px;
  }
  .remb-bank-pill-name {
    font-size: 12px;
  }
  .remb-bank-select-wrap {
    max-width: 720px;
    margin: 0 auto 24px;
    padding: 0 18px;
  }
  .remb-bank-select {
    font-size: 16px;
    padding: 18px 0;
  }
  .remb-result {
    max-width: 720px;
    margin: 0 auto 18px;
    padding: 28px 24px;
  }
  .remb-result-bank {
    font-size: 16px;
  }
  .remb-result-amount {
    font-size: 58px;
  }
  .remb-result-amount-label {
    font-size: 13px;
  }
  .remb-result-cta,
  .remb-result-devis {
    font-size: 15px;
    padding: 15px 22px;
  }
  .remb-disclaimer {
    font-size: 13px;
    max-width: 720px;
    margin: 8px auto 0;
  }
  .remb-badge-4x {
    margin-top: 24px;
    padding: 12px 18px;
  }
  .remb-badge-4x-title {
    font-size: 14px;
  }
  .remb-badge-4x-sub {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .remb-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .remb-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .remb-title {
    font-size: 52px;
    max-width: 900px;
  }
  .remb-sub {
    font-size: 21px;
    max-width: 920px;
  }
  .remb-hint {
    font-size: 18px;
  }
  .remb-banks-scroll {
    max-width: 1040px;
  }
  .remb-result {
    max-width: 760px;
  }
  .remb-result-amount {
    font-size: 64px;
  }
}

/* HERO RESPONSIVE LOCK */
@media (max-width: 389px) {
  .topbar {
    padding: 0 10px;
    min-height: 36px;
    height: auto;
    text-align: center;
  }
  .topbar-text {
    font-size: 10px;
    line-height: 1.2;
  }
  .header {
    padding: 0 14px;
  }
  .header-brand {
    min-width: 0;
  }
  .header-name {
    font-size: 13px;
  }
  .hero {
    padding: 16px 16px 28px;
    min-height: 500px;
  }
  .hero-image {
    width: 66%;
    object-position: 82% center;
    opacity: 0.92;
  }
  .hero-content {
    max-width: 100%;
  }
  .h1-tw-wrap {
    font-size: 18px;
    white-space: normal;
  }
  .h1-main {
    font-size: 34px;
    white-space: normal;
  }
  .h2-wrap {
    margin-top: 18px;
  }
  .h2-big {
    font-size: 36px;
  }
  .h2-line-secondary {
    font-size: 31px;
  }
  .pitch {
    gap: 14px;
    margin-bottom: 24px;
  }
  .pitch-text {
    font-size: 16px;
    line-height: 1.55;
  }
  .location-pill {
    font-size: 15px;
    padding: 1px 10px 2px;
    margin-left: 0;
    top: 0;
  }
  .ctas {
    gap: 8px;
  }
  .btn {
    font-size: 14px;
  }
  .btn-devis,
  .btn-tel {
    padding: 14px 16px;
  }
  .marques-label {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .page {
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
  }
  .topbar {
    height: 40px;
    padding: 0 24px;
  }
  .topbar-text {
    font-size: 12px;
    letter-spacing: 0.4px;
  }
  .header {
    top: 40px;
    height: 72px;
    padding: 0 32px;
  }
  .header-brand {
    gap: 12px;
  }
  .header-icon {
    width: 40px;
    height: 40px;
  }
  .header-name {
    font-size: 18px;
  }
  .header-tagline {
    font-size: 9px;
  }
  .header__actions {
    gap: 10px;
  }
  .header-wa,
  .menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 0;
  }
  .hero {
    min-height: calc(100vh - 112px);
    padding: 42px 32px 40px;
  }
  .hero-content {
    max-width: min(56%, 520px);
  }
  .hero-image {
    width: 48%;
    object-position: 92% center;
  }
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(8, 8, 8, 0.98) 0%,
      rgba(8, 8, 8, 0.85) 38%,
      rgba(8, 8, 8, 0.58) 68%,
      rgba(8, 8, 8, 0.2) 100%
    );
  }
  .h1-tw-wrap {
    font-size: 26px;
  }
  .h1-main {
    font-size: 60px;
    letter-spacing: 1.5px;
  }
  .h1-services {
    margin-bottom: 16px;
  }
  .h1-services-inner {
    font-size: 13.5px;
    letter-spacing: 2px;
  }
  .h2-wrap {
    margin-top: 24px;
    margin-bottom: 18px;
  }
  .h2-big {
    font-size: 68px;
    line-height: 0.9;
  }
  .h2-line-secondary {
    font-size: 48px;
  }
  .hero-divider {
    width: 56px;
    margin-bottom: 24px;
  }
  .pitch {
    gap: 18px;
    margin-bottom: 32px;
    max-width: 520px;
  }
  .pitch-text {
    font-size: 22px;
    line-height: 1.6;
  }
  .location-pill {
    font-size: 18px;
    padding: 2px 12px 3px;
  }
  .hero-rating-row {
    margin-bottom: 18px;
  }
  .hero-rating-pill {
    padding: 8px 16px 8px 10px;
  }
  .hero-rating-stars,
  .hero-rating-score,
  .hero-rating-text {
    font-size: 13px;
  }
  .ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .btn {
    min-width: 220px;
    max-width: max-content;
    font-size: 16px;
    border-radius: 14px;
  }
  .btn-devis {
    padding: 16px 22px;
  }
  .btn-tel {
    padding: 15px 22px;
    font-size: 15px;
  }
  .marques-label {
    font-size: 20px;
    padding: 18px 0 12px;
  }
  .marques-scroll {
    padding: 16px 0;
  }
  .marques-track {
    gap: 14px;
    padding: 0 18px;
    animation-duration: 32s;
  }
  .mb-card {
    min-width: 92px;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .mb-icon {
    width: 40px;
    height: 40px;
  }
  .mb-name {
    font-size: 10px;
  }
}
@media (min-width: 1200px) {
  .page {
    max-width: min(100%, 1600px);
  }
  .topbar {
    height: 42px;
  }
  .header {
    top: 42px;
    height: 80px;
    padding: 0 clamp(32px, 4vw, 72px);
  }
  .header-name {
    font-size: 20px;
  }
  .header-tagline {
    font-size: 10px;
  }
  .hero {
    min-height: max(700px, calc(100vh - 122px));
    padding: 56px clamp(40px, 5vw, 88px) 52px;
  }
  .hero-content {
    max-width: min(52%, 680px);
  }
  .hero-image {
    width: min(46%, 760px);
    object-position: right center;
  }
  .deco-tr {
    top: -90px;
    right: -90px;
    width: 360px;
    height: 360px;
  }
  .deco-bl {
    bottom: -90px;
    left: -90px;
    width: 320px;
    height: 320px;
  }
  .hero-grid {
    background-size: 40px 40px;
  }
  .h1-tw-wrap {
    font-size: 30px;
  }
  .h1-main {
    font-size: 76px;
  }
  .h2-big {
    font-size: 88px;
  }
  .h2-line-secondary {
    font-size: 56px;
  }
  .pitch {
    max-width: 640px;
  }
  .pitch-text {
    font-size: 24px;
  }
  .ctas {
    gap: 14px;
  }
  .btn {
    min-width: 240px;
  }
  .marques-label {
    font-size: 22px;
  }
  .marques-track {
    gap: 16px;
    padding: 0 24px;
  }
  .mb-card {
    min-width: 102px;
    padding: 14px 16px;
  }
}

/* MARQUES SECTION */
.brands-section {
  padding: 48px 20px 52px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.brands-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.brands-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.brands-eyebrow::before,
.brands-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.brands-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.brands-title span {
  color: #d42b1e;
}
.brands-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 720px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.brands-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #f6f8fa;
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 14px;
  padding: 16px 8px 12px;
  transition: all 0.25s;
  text-align: center;
  min-width: 0;
  box-shadow: 0 1px 10px rgba(17, 19, 24, 0.025);
}
.brands-item:hover {
  background: rgba(212, 43, 30, 0.04);
  border-color: rgba(212, 43, 30, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 19, 24, 0.05);
}
.brands-item.is-pressed {
  background: rgba(212, 43, 30, 0.06);
  border-color: rgba(212, 43, 30, 0.22);
  transform: translateY(0) scale(0.985);
  box-shadow: 0 4px 12px rgba(17, 19, 24, 0.05);
}
.brands-item.is-pressed .brands-logo {
  border-color: rgba(212, 43, 30, 0.28);
  transform: scale(0.96);
}
.brands-logo {
  width: 46px;
  height: 46px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.25s,
    transform 0.2s ease;
}
.brands-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brands-item:hover .brands-logo {
  border-color: rgba(212, 43, 30, 0.2);
}
.brands-name {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #4a5568;
  letter-spacing: 0.3px;
  line-height: 1;
  transition: color 0.25s;
}
.brands-item:hover .brands-name {
  color: #d42b1e;
}
.brands-link {
  font-family: "Inter", sans-serif;
  font-size: 8px;
  color: #a0aec0;
  letter-spacing: 0.3px;
  margin-top: 1px;
  display: block;
  line-height: 1;
  transition: color 0.2s;
}
.brands-item:hover .brands-link {
  color: #d42b1e;
}
.brands-disclaimer {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #718096;
  line-height: 1.6;
  padding-top: 4px;
  max-width: 720px;
  margin: 0 auto;
}
.brands-disclaimer a {
  color: #d42b1e;
  font-weight: 600;
}
.brands-delay-1 {
  transition-delay: 0.03s;
}
.brands-delay-2 {
  transition-delay: 0.06s;
}
.brands-delay-3 {
  transition-delay: 0.09s;
}
.brands-delay-4 {
  transition-delay: 0.12s;
}
.brands-delay-5 {
  transition-delay: 0.15s;
}
.brands-delay-6 {
  transition-delay: 0.18s;
}
.brands-delay-7 {
  transition-delay: 0.21s;
}
.brands-delay-8 {
  transition-delay: 0.24s;
}
.brands-delay-9 {
  transition-delay: 0.27s;
}
.brands-delay-10 {
  transition-delay: 0.3s;
}
.brands-delay-11 {
  transition-delay: 0.33s;
}
.brands-delay-12 {
  transition-delay: 0.36s;
}
.brands-delay-13 {
  transition-delay: 0.39s;
}
@media (max-width: 389px) {
  .brands-section {
    padding: 40px 16px 44px;
  }
  .brands-line {
    left: 16px;
    right: 16px;
  }
  .brands-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .brands-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .brands-sub {
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 22px;
  }
  .brands-grid {
    gap: 8px;
  }
  .brands-item {
    padding: 14px 6px 10px;
    border-radius: 14px;
  }
  .brands-logo {
    width: 40px;
    height: 40px;
    border-radius: 0;
  }
  .brands-name {
    font-size: 9px;
  }
  .brands-link {
    font-size: 7px;
  }
  .brands-disclaimer {
    font-size: 12px;
    line-height: 1.65;
  }
}
@media (min-width: 768px) {
  .brands-section {
    padding: 64px 32px 72px;
  }
  .brands-line {
    left: 32px;
    right: 32px;
  }
  .brands-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .brands-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
    max-width: 760px;
  }
  .brands-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 900px;
    margin-bottom: 34px;
  }
  .brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 980px;
  }
  .brands-item {
    padding: 20px 10px 14px;
    border-radius: 14px;
  }
  .brands-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  .brands-logo svg {
    width: 38px;
    height: 38px;
  }
  .brands-name {
    font-size: 12px;
  }
  .brands-link {
    font-size: 9px;
  }
  .brands-disclaimer {
    font-size: 15px;
    max-width: 820px;
    line-height: 1.8;
  }
}
@media (min-width: 1200px) {
  .brands-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .brands-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .brands-title {
    font-size: 52px;
    max-width: 860px;
  }
  .brands-sub {
    font-size: 21px;
    max-width: 980px;
  }
  .brands-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    max-width: none;
  }
  .brands-item {
    padding: 22px 12px 16px;
    border-radius: 14px;
  }
  .brands-logo {
    width: 60px;
    height: 60px;
  }
  .brands-logo svg {
    width: 40px;
    height: 40px;
  }
  .brands-name {
    font-size: 13px;
  }
  .brands-link {
    font-size: 10px;
  }
  .brands-disclaimer {
    font-size: 16px;
    max-width: 920px;
  }
}

/* FORM SECTION */
.form-section {
  padding: 48px 20px 60px;
  position: relative;
  background: linear-gradient(180deg, #fcfbfa 0%, #f8f4f2 100%);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.form-section::before {
  content: "";
  position: absolute;
  inset: 16px 16px 14px;
  border: 1px solid rgba(212, 43, 30, 0.07);
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.62)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
  pointer-events: none;
}
.form-shell {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 24px 18px 18px;
  border: 1px solid rgba(212, 43, 30, 0.09);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.84)
  );
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.045);
}
.form-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.form-modal-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #111318;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}
.form-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 15, 0.88);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 2998;
}
.form-modal-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
body.form-modal-open {
  overflow: hidden;
}
.form-section.is-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2999;
  width: min(430px, calc(100vw - 20px));
  max-height: calc(100dvh - 20px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
  padding-top: 22px;
}
.form-section.is-modal::before {
  inset: 10px;
}
.form-section.is-modal::after {
  content: none;
}
.form-section.is-modal .form-shell {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.form-section.is-modal .form-modal-close {
  display: flex;
  position: sticky;
  top: 0;
  margin: 0 0 14px auto;
  z-index: 2;
}
.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.form-eyebrow::before,
.form-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.form-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.form-title span {
  color: #d42b1e;
}
.form-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 24px;
}
.progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.progress-track {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 33.333%;
  background: #d42b1e;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.step-counter {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #718096;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.step {
  display: none;
  animation: fadeUp 0.35s ease both;
}
.step.active {
  display: block;
}
.step-card {
  background: #ffffff;
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 1px 12px rgba(17, 19, 24, 0.035);
}
.step-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #111318;
  margin-bottom: 6px;
}
.step-hint {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.5;
}
.plate-wrap {
  position: relative;
  margin-bottom: 14px;
}
.plate-input {
  width: 100%;
  height: 56px;
  background: #f4f6f9;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 22px;
  font-weight: 900;
  color: #111318;
  letter-spacing: 3px;
  text-transform: uppercase;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-align: center;
}
.plate-input:focus {
  border-color: #d42b1e;
  background: #fff;
}
.plate-input::placeholder {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #a0aec0;
}
.vehicle-result {
  display: none;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  padding: 12px 14px;
  margin-bottom: 14px;
  animation: fadeUp 0.3s ease both;
}
.vehicle-result.show {
  display: flex;
}
.vr-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vr-brand {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111318;
}
.vr-year,
.vr-loading {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #718096;
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.svc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px 16px;
  background: #f4f6f9;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  transition: all 0.2s ease;
  text-align: center;
  gap: 10px;
}
.svc-btn:hover,
.svc-btn.active {
  background: rgba(212, 43, 30, 0.05);
  border-color: #d42b1e;
}
.svc-btn.active {
  box-shadow: 0 0 0 1px rgba(212, 43, 30, 0.2);
}
.svc-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 43, 30, 0.07);
  border: 1px solid rgba(212, 43, 30, 0.12);
  display: grid;
  place-items: center;
}
.svc-btn-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111318;
  line-height: 1.3;
}
.svc-btn-price {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #d42b1e;
  font-weight: 600;
  margin-top: 2px;
}
.form-group {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  height: 50px;
  background: #f4f6f9;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #111318;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-input:focus {
  border-color: #d42b1e;
  background: #fff;
}
.form-input::placeholder {
  color: #a0aec0;
}
.form-select {
  appearance: none;
  padding: 0 14px;
  font-size: 14px;
}
.btn-next {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #d42b1e;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  box-shadow:
    0 6px 28px rgba(212, 43, 30, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: opacity 0.2s;
}
.btn-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.btn-back {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #a0aec0;
  margin-top: 12px;
  transition: color 0.2s;
  cursor: pointer;
}
.btn-back:hover {
  color: #4a5568;
}
.form-note {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #718096;
  margin-top: 12px;
  line-height: 1.5;
}
.form-note strong {
  color: #4a5568;
}
.step-success-wrap {
  text-align: center;
  padding: 20px 0;
  animation: fadeUp 0.5s ease both;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1.5px solid rgba(34, 197, 94, 0.2);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.success-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111318;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.success-sub {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 24px;
}
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #d42b1e;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(212, 43, 30, 0.3);
}
.plate-skip-wrap {
  text-align: center;
  margin-bottom: 14px;
}
.plate-skip-btn {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #d42b1e;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  transition: color 0.2s;
}
.plate-skip-btn:hover {
  color: #b52219;
}
.plate-skip-hint {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #718096;
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.manual-fields {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.manual-fields.is-visible {
  display: flex;
}
@media (max-width: 389px) {
  .form-section {
    padding: 40px 16px 44px;
  }
  .form-line {
    left: 16px;
    right: 16px;
  }
  .form-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .form-sub {
    font-size: 14px;
    line-height: 1.68;
  }
  .form-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .form-section.is-modal {
    width: calc(100vw - 14px);
    max-height: calc(100dvh - 14px);
    padding: 18px 16px 24px;
    border-radius: 20px;
  }
  .form-modal-close {
    width: 38px;
    height: 38px;
    border-radius: 0;
    font-size: 24px;
  }
  .step-card {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .plate-input {
    height: 52px;
    font-size: 18px;
    letter-spacing: 2px;
  }
  .svc-grid {
    gap: 8px;
  }
  .svc-btn {
    padding: 18px 10px 14px;
  }
  .btn-next,
  .btn-call {
    padding: 14px 16px;
    font-size: 14px;
  }
  .btn-back {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .form-section {
    padding: 64px 32px 72px;
  }
  .form-line {
    left: 32px;
    right: 32px;
  }
  .form-shell {
    max-width: 820px;
  }
  .form-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
  }
  .form-sub {
    font-size: 19px;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 720px;
  }
  .form-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .progress-wrap {
    max-width: 720px;
  }
  .step-card {
    padding: 30px 26px;
    border-radius: 24px;
  }
  .step-title {
    font-size: 24px;
  }
  .step-hint {
    font-size: 15px;
  }
  .plate-input {
    height: 62px;
    font-size: 28px;
  }
  .vehicle-result {
    padding: 14px 16px;
  }
  .vr-brand {
    font-size: 15px;
  }
  .vr-year,
  .vr-loading {
    font-size: 12px;
  }
  .svc-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .svc-btn {
    padding: 22px 12px 18px;
  }
  .svc-btn-icon {
    width: 48px;
    height: 48px;
  }
  .svc-btn-label {
    font-size: 13px;
  }
  .svc-btn-price {
    font-size: 12px;
  }
  .form-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .form-label {
    font-size: 12px;
  }
  .form-input {
    height: 56px;
    font-size: 16px;
  }
  .btn-next,
  .btn-call {
    width: max-content;
    min-width: 280px;
    padding: 16px 24px;
    font-size: 16px;
  }
  .btn-back {
    font-size: 14px;
  }
  .form-note {
    font-size: 13px;
  }
  .form-section.is-modal {
    width: min(760px, calc(100vw - 64px));
    max-height: calc(100dvh - 48px);
    padding: 24px 32px 34px;
    border-radius: 28px;
  }
  .form-modal-close {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .form-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .form-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .form-shell {
    max-width: 940px;
  }
  .form-title {
    font-size: 52px;
    max-width: 820px;
  }
  .form-sub {
    font-size: 21px;
    max-width: 760px;
  }
  .step-card {
    padding: 34px 30px;
  }
  .step-title {
    font-size: 28px;
  }
  .step-hint {
    font-size: 16px;
  }
  .progress-wrap {
    max-width: 760px;
  }
  .form-section.is-modal {
    width: min(860px, calc(100vw - 96px));
    max-height: calc(100dvh - 64px);
  }
}

/* SERVICES SECTION */
.services-section {
  padding: 48px 20px 52px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.services-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.services-eyebrow::before,
.services-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.services-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.services-title span {
  color: #d42b1e;
}
.services-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 32px;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.services-card {
  background: #f6f8fa;
  border: 1px solid rgba(17, 19, 24, 0.05);
  border-radius: 20px;
  padding: 22px 20px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 12px rgba(17, 19, 24, 0.035);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.services-card:hover {
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.06);
  border-color: rgba(212, 43, 30, 0.08);
  transform: translateY(-2px);
}
.services-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d42b1e, rgba(212, 43, 30, 0.1));
  border-radius: 20px 20px 0 0;
}
.services-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212, 43, 30, 0.07);
  border: 1px solid rgba(212, 43, 30, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.services-card-title {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #111318;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.services-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
}
.services-sep {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}
.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.services-price-block {
  display: flex;
  flex-direction: column;
}
.services-from {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: #a0aec0;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.services-price {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #111318;
  letter-spacing: -0.5px;
  line-height: 1;
}
.services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #111318;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 168px;
}
.services-more-wrap {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.services-more {
  width: 18px;
  height: 18px;
  color: rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-more:hover,
.services-link:hover {
  color: #d42b1e;
}
.services-link {
  font-family: "Inter", sans-serif;
  font-size: 8px;
  color: #a0aec0;
  letter-spacing: 0.3px;
  display: block;
  margin-top: 4px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s;
}
.services-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
}
.services-bridge-line {
  width: 1px;
  height: 28px;
  border-left: 2px dashed rgba(212, 43, 30, 0.25);
}
.services-bridge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d42b1e;
  opacity: 0.35;
}
.prevention-card {
  background: #f4f6f9;
  border: 1px solid rgba(212, 43, 30, 0.15);
  border-left: 3px solid #d42b1e;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prevention-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.prevention-icon {
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: rgba(212, 43, 30, 0.08);
  border: 1px solid rgba(212, 43, 30, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.prevention-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 3px;
}
.prevention-title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #111318;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.prevention-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.75;
}
.prevention-desc strong {
  color: #111318;
}
.prevention-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.prevention-price-block {
  display: flex;
  flex-direction: column;
}
.prevention-from {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: #a0aec0;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.prevention-price {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #111318;
  letter-spacing: -0.5px;
  line-height: 1;
}
.prevention-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #111318;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 168px;
}
.services-delay-1 {
  transition-delay: 0.08s;
}
.services-delay-2 {
  transition-delay: 0.16s;
}
.services-delay-3 {
  transition-delay: 0.24s;
}
.services-delay-4 {
  transition-delay: 0.32s;
}
.services-delay-5 {
  transition-delay: 0.4s;
}
@media (max-width: 389px) {
  .services-section {
    padding: 40px 16px 44px;
  }
  .services-line {
    left: 16px;
    right: 16px;
  }
  .services-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .services-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .services-sub {
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 24px;
  }
  .services-card {
    padding: 20px 16px 16px;
    border-radius: 18px;
  }
  .services-card-title {
    font-size: 16px;
  }
  .services-desc {
    font-size: 13px;
    line-height: 1.65;
  }
  .services-footer,
  .prevention-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-price,
  .prevention-price {
    font-size: 24px;
  }
  .services-btn,
  .prevention-btn {
    width: 100%;
    min-width: 0;
    font-size: 13px;
    padding: 12px 14px;
  }
  .prevention-card {
    padding: 18px 16px;
  }
  .prevention-title {
    font-size: 14px;
  }
  .prevention-desc {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .services-section {
    padding: 64px 32px 72px;
  }
  .services-line {
    left: 32px;
    right: 32px;
  }
  .services-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .services-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
    max-width: 780px;
  }
  .services-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 860px;
    margin-bottom: 38px;
  }
  .services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .services-card {
    padding: 24px 22px 20px;
    border-radius: 24px;
  }
  .services-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
  .services-card-title {
    font-size: 24px;
  }
  .services-desc {
    font-size: 15px;
    line-height: 1.8;
  }
  .services-price,
  .prevention-price {
    font-size: 34px;
  }
  .services-btn,
  .prevention-btn {
    min-width: 220px;
    padding: 14px 18px;
    font-size: 14px;
  }
  .services-bridge {
    padding: 16px 0;
  }
  .services-bridge-line {
    height: 36px;
  }
  .prevention-card {
    padding: 24px 22px;
  }
  .prevention-title {
    font-size: 22px;
  }
  .prevention-desc {
    font-size: 15px;
    line-height: 1.8;
  }
  .prevention-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .prevention-footer {
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .services-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .services-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .services-title {
    font-size: 52px;
    max-width: 860px;
  }
  .services-sub {
    font-size: 21px;
    max-width: 940px;
  }
  .services-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .services-card {
    padding: 26px 22px 20px;
  }
  .services-card-title {
    font-size: 20px;
  }
  .services-desc {
    font-size: 14px;
  }
  .services-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-btn {
    width: 100%;
    min-width: 0;
  }
  .prevention-card {
    padding: 28px 24px;
  }
  .prevention-title {
    font-size: 24px;
  }
  .prevention-desc {
    font-size: 16px;
  }
  .prevention-footer {
    justify-content: space-between;
  }
}

/* AVIS SECTION */
@keyframes avis-slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.avis-section {
  padding: 48px 0 52px;
  position: relative;
  background: linear-gradient(180deg, #fcfbfa 0%, #f8f4f2 100%);
  overflow: hidden;
}
.avis-section::before {
  content: "";
  position: absolute;
  inset: 16px 16px 14px;
  border: 1px solid rgba(212, 43, 30, 0.07);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0.6)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
  pointer-events: none;
}
.avis-inner,
.avis-carousel-wrap,
.avis-cta {
  position: relative;
  z-index: 1;
}
.avis-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.avis-inner {
  padding: 0 20px;
}
.avis-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.avis-eyebrow::before,
.avis-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.avis-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.avis-title span {
  color: #d42b1e;
}
.avis-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 28px;
}
.avis-score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid rgba(212, 43, 30, 0.18);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 28px;
  box-shadow: 0 1px 10px rgba(17, 19, 24, 0.045);
}
.avis-score-stars {
  color: #ffd600;
  font-size: 14px;
  letter-spacing: 1px;
}
.avis-score-num {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #111318;
}
.avis-score-sep {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.1);
}
.avis-score-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #4a5568;
  font-weight: 500;
}
.avis-carousel-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
.avis-carousel-wrap::before,
.avis-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  z-index: 2;
  pointer-events: none;
}
.avis-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8f3f2, transparent);
}
.avis-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8f3f2, transparent);
}
.avis-carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: avis-slide-left 32s linear infinite;
  padding: 4px 20px 8px;
}
.avis-carousel-track:hover {
  animation-play-state: paused;
}
.avis-carousel-track.is-paused {
  animation-play-state: paused;
}
.avis-card {
  width: 198px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 1px 10px rgba(17, 19, 24, 0.03);
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.avis-card:hover {
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.055);
  border-color: rgba(212, 43, 30, 0.08);
  transform: translateY(-2px);
}
.avis-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 10px;
}
.avis-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 43, 30, 0.1);
  border: 1px solid rgba(212, 43, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #d42b1e;
  flex-shrink: 0;
}
.avis-meta {
  flex: 1;
}
.avis-name {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111318;
  line-height: 1.2;
}
.avis-location {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #718096;
  margin-top: 2px;
  letter-spacing: 0.2px;
}
.avis-service {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-top: 4px;
}
.avis-stars {
  font-size: 11px;
  color: #ffd600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.avis-quote {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.65;
  border-left: 2px solid rgba(212, 43, 30, 0.25);
  padding-left: 10px;
}
.avis-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}
.avis-btn-red,
.avis-btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 12px;
}
.avis-btn-red {
  background: #d42b1e;
  color: #fff;
  box-shadow: 0 6px 28px rgba(212, 43, 30, 0.3);
}
.avis-btn-dark {
  background: #111318;
  color: #fff;
}
.avis-delay-1 {
  transition-delay: 0.05s;
}
.avis-delay-2 {
  transition-delay: 0.15s;
}
.avis-delay-3 {
  transition-delay: 0.25s;
}
@media (max-width: 389px) {
  .avis-section {
    padding: 40px 0 44px;
  }
  .avis-line {
    left: 16px;
    right: 16px;
  }
  .avis-inner {
    padding: 0 16px;
  }
  .avis-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .avis-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .avis-sub {
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 22px;
  }
  .avis-score {
    padding: 9px 12px;
    margin-bottom: 22px;
    gap: 8px;
  }
  .avis-score-stars {
    font-size: 12px;
  }
  .avis-score-num {
    font-size: 15px;
  }
  .avis-score-label {
    font-size: 11px;
  }
  .avis-carousel-track {
    gap: 10px;
    padding: 4px 16px 8px;
    animation-duration: 28s;
  }
  .avis-card {
    width: 232px;
    padding: 16px 14px;
  }
  .avis-quote {
    font-size: 12px;
  }
  .avis-cta {
    padding: 0 16px;
  }
  .avis-btn-red,
  .avis-btn-dark {
    font-size: 14px;
    padding: 14px 16px;
  }
}
@media (min-width: 768px) {
  .avis-section {
    padding: 64px 0 72px;
  }
  .avis-line {
    left: 32px;
    right: 32px;
  }
  .avis-inner {
    padding: 0 32px;
  }
  .avis-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .avis-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
    max-width: 760px;
  }
  .avis-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 860px;
    margin-bottom: 32px;
  }
  .avis-score {
    padding: 12px 18px;
    border-radius: 14px;
  }
  .avis-score-stars {
    font-size: 16px;
  }
  .avis-score-num {
    font-size: 18px;
  }
  .avis-score-label {
    font-size: 13px;
  }
  .avis-carousel-wrap {
    margin-bottom: 38px;
  }
  .avis-carousel-track {
    gap: 14px;
    padding: 6px 32px 10px;
    animation-duration: 34s;
  }
  .avis-card {
    width: 320px;
    padding: 22px 20px;
    border-radius: 20px;
  }
  .avis-initial {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .avis-name {
    font-size: 15px;
  }
  .avis-location {
    font-size: 12px;
  }
  .avis-service {
    font-size: 11px;
  }
  .avis-stars {
    font-size: 12px;
  }
  .avis-quote {
    font-size: 14px;
    line-height: 1.75;
  }
  .avis-cta {
    padding: 0 32px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .avis-btn-red,
  .avis-btn-dark {
    min-width: 280px;
    padding: 16px 22px;
    font-size: 16px;
    border-radius: 14px;
  }
}
@media (min-width: 1200px) {
  .avis-section {
    padding: 76px 0 84px;
  }
  .avis-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .avis-inner {
    padding: 0 clamp(40px, 5vw, 88px);
  }
  .avis-title {
    font-size: 52px;
    max-width: 860px;
  }
  .avis-sub {
    font-size: 21px;
    max-width: 920px;
  }
  .avis-carousel-track {
    gap: 16px;
    padding: 8px clamp(40px, 5vw, 88px) 12px;
    animation-duration: 38s;
  }
  .avis-card {
    width: 340px;
    padding: 24px 22px;
  }
  .avis-quote {
    font-size: 15px;
  }
  .avis-cta {
    padding: 0 clamp(40px, 5vw, 88px);
  }
}

/* ZONE SECTION */
.zone-section {
  padding: 48px 20px 52px;
  background: #f6f8fa;
  position: relative;
  overflow: hidden;
}
.zone-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.zone-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.zone-label::before,
.zone-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.zone-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #111318;
}
.zone-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 20px;
}
.zone-map-wrap {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 12px;
  max-width: 980px;
}
.zone-map-wrap svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  -webkit-mask-image:
    linear-gradient(to bottom, black 55%, transparent 100%),
    linear-gradient(
      to right,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%
    );
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to bottom, black 55%, transparent 100%),
    linear-gradient(
      to right,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%
    );
  mask-composite: intersect;
}
.zone-map-wrap--tarn {
  margin-top: -24px;
}
.zone-map-wrap--tarn svg {
  width: 128%;
  max-width: none;
  margin-left: -6%;
  margin-top: -30px;
  -webkit-mask-image:
    linear-gradient(to bottom, black 70%, transparent 100%),
    linear-gradient(
      to right,
      transparent 0%,
      black 4%,
      black 87%,
      transparent 100%
    );
  mask-image:
    linear-gradient(to bottom, black 70%, transparent 100%),
    linear-gradient(
      to right,
      transparent 0%,
      black 4%,
      black 87%,
      transparent 100%
    );
}
#zone-car-img {
  position: absolute;
  bottom: -58px;
  left: 50%;
  transform: translateX(-50%);
  width: min(245%, 1180px);
  height: auto !important;
  max-width: none;
  aspect-ratio: 676 / 241;
  object-fit: contain;
  display: block;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 24px 10px rgba(0, 0, 0, 0.18))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.06s linear;
}
.zone-map-wrap--tarn #zone-car-img {
  left: 54%;
  bottom: -50px;
  width: min(232%, 1100px);
}
.zone-map-note {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.65;
  margin-top: 12px;
}
.zone-map-note strong {
  color: #111318;
}
.zone-map-note a {
  color: #d42b1e;
  font-weight: 700;
  text-decoration: none;
}
.zone-links {
  margin-top: 20px;
}
.zone-links-label {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 10px;
  display: block;
  opacity: 0.7;
}
.zone-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.zone-link {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #4a5568;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  padding: 5px 11px;
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.zone-link:hover {
  color: #d42b1e;
  border-color: rgba(212, 43, 30, 0.2);
  background: rgba(212, 43, 30, 0.04);
}
@media (max-width: 389px) {
  .zone-section {
    padding: 40px 16px 44px;
  }
  .zone-line {
    left: 16px;
    right: 16px;
  }
  .zone-label {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .zone-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .zone-sub {
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 18px;
  }
  .zone-map-note {
    font-size: 12px;
    line-height: 1.6;
  }
  #zone-car-img {
    bottom: -42px;
    width: min(280%, 860px);
    height: auto !important;
  }
  .zone-map-wrap--tarn {
    margin-top: -28px;
  }
  .zone-map-wrap--tarn svg {
    width: 142%;
    margin-left: -9%;
    margin-top: -36px;
    -webkit-mask-image:
      linear-gradient(to bottom, black 70%, transparent 100%),
      linear-gradient(
        to right,
        transparent 0%,
        black 4%,
        black 85%,
        transparent 100%
      );
    mask-image:
      linear-gradient(to bottom, black 70%, transparent 100%),
      linear-gradient(
        to right,
        transparent 0%,
        black 4%,
        black 85%,
        transparent 100%
      );
  }
  .zone-map-wrap--tarn #zone-car-img {
    left: 58%;
    bottom: -30px;
    width: min(255%, 860px);
  }
  .zone-links {
    margin-top: 16px;
  }
  .zone-link {
    font-size: 10px;
    padding: 5px 10px;
  }
}
@media (min-width: 768px) {
  .zone-section {
    padding: 64px 32px 72px;
  }
  .zone-line {
    left: 32px;
    right: 32px;
  }
  .zone-label {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .zone-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
    max-width: 760px;
  }
  .zone-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 860px;
    margin-bottom: 24px;
  }
  .zone-map-wrap {
    max-width: 1120px;
    margin-bottom: 16px;
  }
  #zone-car-img {
    bottom: -108px;
    width: 215%;
  }
  .zone-map-wrap--tarn {
    margin-top: -18px;
  }
  .zone-map-wrap--tarn svg {
    width: 118%;
    margin-left: -2%;
    margin-top: -18px;
    -webkit-mask-image:
      linear-gradient(to bottom, black 70%, transparent 100%),
      linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 84%,
        transparent 100%
      );
    mask-image:
      linear-gradient(to bottom, black 70%, transparent 100%),
      linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 84%,
        transparent 100%
      );
  }
  .zone-map-wrap--tarn #zone-car-img {
    left: 53%;
    bottom: -94px;
    width: 208%;
  }
  .zone-map-note {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 14px;
  }
  .zone-links {
    margin-top: 24px;
  }
  .zone-links-label {
    font-size: 10px;
    letter-spacing: 2.4px;
    margin-bottom: 12px;
  }
  .zone-links-grid {
    gap: 8px;
  }
  .zone-link {
    font-size: 13px;
    padding: 7px 13px;
    border-radius: 8px;
  }
}
@media (min-width: 1200px) {
  .zone-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .zone-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .zone-title {
    font-size: 52px;
    max-width: 860px;
  }
  .zone-sub {
    font-size: 21px;
    max-width: 940px;
  }
  .zone-map-wrap {
    max-width: 1240px;
  }
  #zone-car-img {
    bottom: -124px;
    width: 190%;
  }
  .zone-map-note {
    font-size: 16px;
  }
  .zone-link {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* TARN — POLISH LOCAL */
body[data-department-default="81"] .hero-rating-score,
body[data-department-default="81"] .hero-rating-divider,
body[data-department-default="81"] .avis-score-num,
body[data-department-default="81"] .avis-score-sep {
  display: none;
}
body[data-department-default="81"] .hero-rating-pill {
  gap: 7px;
  padding-right: 12px;
}
body[data-department-default="81"] .hero-rating-text {
  letter-spacing: 0.2px;
}
body[data-department-default="81"] .avis-score {
  gap: 8px;
}
body[data-department-default="81"] .zone-map-wrap--tarn svg {
  margin-top: 4px;
  clip-path: inset(16px 0 0 0);
}
body[data-department-default="81"] .zone-map-wrap--tarn svg circle[stroke="rgba(212,43,30,.70)"] {
  opacity: 0.48;
}
body[data-department-default="81"] .zone-map-wrap--tarn svg circle[stroke="rgba(212,43,30,.58)"] {
  opacity: 0.36;
}
body[data-department-default="81"] .zone-map-wrap--tarn svg circle[stroke="rgba(212,43,30,.46)"] {
  opacity: 0.28;
}
body[data-department-default="81"] .zone-map-wrap--tarn svg circle[fill="#D42B1E"] {
  opacity: 0.62;
}
body[data-department-default="81"] .zone-map-wrap--tarn svg polygon[filter="url(#zone-softBorder)"] {
  opacity: 0.58;
}
body[data-department-default="81"] .zone-map-wrap--tarn svg polygon[stroke="#D42B1E"] {
  opacity: 0.76;
}
body[data-department-default="81"] .zone-map-wrap--tarn svg text[fill="rgba(212,43,30,.6)"] {
  fill: rgba(212, 43, 30, 0.42);
}
@media (max-width: 389px) {
  body[data-department-default="81"] .zone-map-wrap--tarn svg {
    margin-top: -2px;
    clip-path: inset(12px 0 0 0);
  }
}
@media (min-width: 768px) {
  body[data-department-default="81"] .zone-map-wrap--tarn svg {
    margin-top: 14px;
    clip-path: inset(20px 0 0 0);
  }
}

/* FORM HARDENING */
.form-hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-hp-input {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
}

/* FAQ SECTION */
@keyframes faq-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.faq-section {
  padding: 48px 20px 52px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.faq-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.faq-eyebrow::before,
.faq-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.faq-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.faq-title span {
  color: #d42b1e;
}
.faq-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 32px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.faq-item {
  background: #f6f8fa;
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(17, 19, 24, 0.025);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.faq-item.open {
  border-color: rgba(212, 43, 30, 0.2);
  box-shadow: 0 6px 18px rgba(212, 43, 30, 0.06);
  transform: translateY(-1px);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-question-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111318;
  line-height: 1.35;
  flex: 1;
}
.faq-item.open .faq-question-text {
  color: #d42b1e;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(212, 43, 30, 0.07);
  border: 1px solid rgba(212, 43, 30, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #d42b1e;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
  padding: 0 18px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 18px 18px;
}
.faq-answer-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
  animation: faq-fadeIn 0.3s ease both;
}
.faq-answer p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 8px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer strong {
  color: #111318;
  font-weight: 600;
}
.faq-link {
  color: #d42b1e;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
}
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212, 43, 30, 0.06);
  border: 1px solid rgba(212, 43, 30, 0.15);
  color: #d42b1e;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 8px;
}
.faq-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-btn-red,
.faq-btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 12px;
}
.faq-btn-red {
  background: #d42b1e;
  color: #fff;
  box-shadow: 0 6px 28px rgba(212, 43, 30, 0.3);
}
.faq-btn-dark {
  background: #111318;
  color: #fff;
}
@media (max-width: 389px) {
  .faq-section {
    padding: 40px 16px 44px;
  }
  .faq-line {
    left: 16px;
    right: 16px;
  }
  .faq-eyebrow {
    font-size: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
  .faq-title {
    font-size: 21px;
    line-height: 1.22;
  }
  .faq-sub {
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 24px;
  }
  .faq-list {
    gap: 7px;
    margin-bottom: 24px;
  }
  .faq-item {
    border-radius: 14px;
  }
  .faq-question {
    padding: 16px 14px;
    gap: 10px;
  }
  .faq-question-text {
    font-size: 13px;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 17px;
  }
  .faq-answer {
    padding: 0 14px;
  }
  .faq-item.open .faq-answer {
    padding: 0 14px 14px;
  }
  .faq-answer-inner {
    padding-top: 12px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .faq-link {
    font-size: 12px;
  }
  .faq-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  .faq-btn-red,
  .faq-btn-dark {
    font-size: 14px;
    padding: 14px 16px;
  }
}
@media (min-width: 768px) {
  .faq-section {
    padding: 64px 32px 72px;
  }
  .faq-line {
    left: 32px;
    right: 32px;
  }
  .faq-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .faq-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -1px;
    max-width: 760px;
  }
  .faq-sub {
    font-size: 19px;
    line-height: 1.85;
    max-width: 900px;
    margin-bottom: 38px;
  }
  .faq-list {
    gap: 12px;
    max-width: 980px;
  }
  .faq-item {
    border-radius: 20px;
  }
  .faq-question {
    padding: 22px 22px 20px;
  }
  .faq-question-text {
    font-size: 18px;
    line-height: 1.4;
  }
  .faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 0;
    font-size: 22px;
  }
  .faq-answer {
    padding: 0 22px;
  }
  .faq-item.open .faq-answer {
    padding: 0 22px 22px;
  }
  .faq-answer-inner {
    padding-top: 16px;
  }
  .faq-answer p {
    font-size: 16px;
    line-height: 1.85;
  }
  .faq-link {
    font-size: 14px;
  }
  .faq-badge {
    font-size: 12px;
    padding: 5px 12px;
  }
  .faq-cta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .faq-btn-red,
  .faq-btn-dark {
    min-width: 280px;
    padding: 16px 22px;
    font-size: 16px;
    border-radius: 14px;
  }
}
@media (min-width: 1200px) {
  .faq-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .faq-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .faq-title {
    font-size: 52px;
    max-width: 860px;
  }
  .faq-sub {
    font-size: 21px;
    max-width: 940px;
  }
  .faq-list {
    max-width: 1080px;
  }
  .faq-question {
    padding: 24px 24px 22px;
  }
  .faq-question-text {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 24px;
  }
  .faq-item.open .faq-answer {
    padding: 0 24px 24px;
  }
  .faq-answer p {
    font-size: 17px;
  }
  .faq-badge {
    font-size: 13px;
  }
  .faq-btn-red,
  .faq-btn-dark {
    min-width: 320px;
  }
}

/* SAVOIR-FAIRE SECTION */
@keyframes sf-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.sf-section {
  padding: 48px 20px 52px;
  position: relative;
  background: linear-gradient(180deg, #fcfbfa 0%, #f8f4f2 100%);
  overflow: hidden;
}
.sf-section::before {
  content: "";
  position: absolute;
  inset: 16px 16px 14px;
  border: 1px solid rgba(212, 43, 30, 0.07);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0.6)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
  pointer-events: none;
}
.sf-section > * {
  position: relative;
  z-index: 1;
}
.sf-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 43, 30, 0.3),
    transparent
  );
  transform-origin: left;
  animation: lineGrow 1s ease both;
}
.sf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d42b1e;
  margin-bottom: 14px;
}
.sf-eyebrow::before,
.sf-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(212, 43, 30, 0.3);
}
.sf-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111318;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.sf-title span {
  color: #d42b1e;
}
.sf-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 780px;
}
.sf-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf-item {
  background: #ffffff;
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(17, 19, 24, 0.025);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.sf-item.open {
  border-color: rgba(212, 43, 30, 0.2);
  box-shadow: 0 6px 18px rgba(212, 43, 30, 0.06);
  transform: translateY(-1px);
}
.sf-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.sf-icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: rgba(212, 43, 30, 0.07);
  border: 1px solid rgba(212, 43, 30, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.sf-item.open .sf-icon {
  background: rgba(212, 43, 30, 0.14);
}
.sf-question-text {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111318;
  line-height: 1.35;
  transition: color 0.25s;
}
.sf-item.open .sf-question-text {
  color: #d42b1e;
}
.sf-chevron {
  font-size: 11px;
  color: #a0aec0;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.sf-item.open .sf-chevron {
  transform: rotate(180deg);
}
.sf-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 18px;
}
.sf-item.open .sf-answer {
  max-height: 1200px;
  padding: 0 18px 18px;
}
.sf-answer-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
  animation: sf-fadeIn 0.35s ease both;
}
.sf-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
}
.sf-text p {
  margin-bottom: 10px;
}
.sf-text p:last-child {
  margin-bottom: 0;
}
.sf-text strong {
  color: #111318;
  font-weight: 600;
}
.sf-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(212, 43, 30, 0.06);
  border: 1px solid rgba(212, 43, 30, 0.15);
  color: #d42b1e;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  vertical-align: middle;
}
.sf-link {
  color: #d42b1e;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
@media (max-width: 389px) {
  .sf-section {
    padding: 42px 16px 46px;
  }
  .sf-line {
    left: 16px;
    right: 16px;
  }
  .sf-title {
    font-size: 22px;
  }
  .sf-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .sf-question {
    padding: 16px;
  }
  .sf-icon {
    width: 36px;
    height: 36px;
  }
  .sf-question-text,
  .sf-text {
    font-size: 13px;
  }
  .sf-answer,
  .sf-item.open .sf-answer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .sf-section {
    padding: 64px 32px 72px;
  }
  .sf-line {
    left: 32px;
    right: 32px;
  }
  .sf-title {
    font-size: 40px;
    max-width: 760px;
  }
  .sf-sub {
    font-size: 18px;
    max-width: 860px;
    margin-bottom: 36px;
  }
  .sf-list {
    gap: 12px;
    max-width: 980px;
  }
  .sf-question {
    padding: 22px 24px;
    gap: 16px;
  }
  .sf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .sf-question-text {
    font-size: 18px;
  }
  .sf-chevron {
    font-size: 12px;
  }
  .sf-answer {
    padding: 0 24px;
  }
  .sf-item.open .sf-answer {
    padding: 0 24px 24px;
  }
  .sf-answer-inner {
    padding-top: 18px;
  }
  .sf-text {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .sf-section {
    padding: 76px clamp(40px, 5vw, 88px) 84px;
  }
  .sf-line {
    left: clamp(40px, 5vw, 88px);
    right: clamp(40px, 5vw, 88px);
  }
  .sf-title {
    font-size: 52px;
    max-width: 860px;
  }
  .sf-sub {
    font-size: 21px;
    max-width: 920px;
    margin-bottom: 42px;
  }
  .sf-list {
    max-width: 1080px;
  }
  .sf-question {
    padding: 24px 26px;
  }
  .sf-answer {
    padding: 0 26px;
  }
  .sf-item.open .sf-answer {
    padding: 0 26px 26px;
  }
  .sf-text {
    font-size: 17px;
    line-height: 1.9;
  }
}

/* FOOTER SECTION */
@keyframes sh {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.site-footer {
  background: #0d0d0f;
  padding: 40px 20px 48px;
  position: relative;
  overflow: hidden;
}
.footer-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d42b1e, transparent);
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-logo-name {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
}
.footer-desc strong {
  color: rgba(255, 255, 255, 0.6);
}
.footer-rappel {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(210, 210, 210, 0.08);
  border-left: 2px solid rgba(212, 43, 30, 0.42);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.footer-rappel-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-rappel-text strong {
  color: rgba(255, 255, 255, 0.8);
}
.rappel-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.rappel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  background: #d42b1e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  box-shadow: 0 4px 16px rgba(212, 43, 30, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}
.rappel-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 43, 30, 0.4);
}
.rappel-btn--full {
  width: 100%;
}
.rappel-hint {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(210, 210, 210, 0.06);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:visited {
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-item a:hover {
  color: #d42b1e;
}
.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(212, 43, 30, 0.08);
  border: 1px solid rgba(212, 43, 30, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.footer-legal {
  padding-top: 20px;
}
.footer-legal-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-siret {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
}
.footer-siret,
.footer-siret a,
.footer-siret a[x-apple-data-detectors],
.footer-siret span {
  color: rgba(255, 255, 255, 0.2) !important;
  text-decoration: none !important;
}
.footer-siret strong {
  color: rgba(255, 255, 255, 0.35) !important;
}
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  flex-shrink: 0;
}
.footer-legal-link {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:visited {
  color: rgba(255, 255, 255, 0.2);
}
.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer-copy {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.12);
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 389px) {
  .site-footer {
    padding: 36px 16px 42px;
  }
  .footer-logo-name {
    font-size: 20px;
  }
  .footer-rappel {
    padding: 18px;
  }
  .rappel-row {
    flex-direction: column;
  }
  .rappel-btn {
    width: 100%;
  }
  .footer-contact-item {
    align-items: flex-start;
  }
  .footer-legal-top {
    flex-direction: column;
    gap: 10px;
  }
  .footer-legal-links {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .site-footer {
    padding: 56px 32px 60px;
  }
  .footer-brand {
    margin-bottom: 24px;
  }
  .footer-logo-name {
    font-size: 34px;
  }
  .footer-tagline {
    font-size: 11px;
  }
  .footer-desc {
    font-size: 16px;
    max-width: 760px;
  }
  .footer-rappel {
    padding: 24px;
    border-radius: 18px;
    max-width: 860px;
  }
  .footer-rappel-text {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .rappel-row {
    gap: 10px;
    max-width: 620px;
  }
  .rappel-input,
  .rappel-btn {
    height: 52px;
    font-size: 15px;
  }
  .rappel-hint {
    font-size: 11px;
    text-align: left;
  }
  .footer-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 28px;
  }
  .footer-contact-item {
    font-size: 14px;
    align-items: flex-start;
  }
  .contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 0;
  }
  .footer-legal {
    padding-top: 24px;
  }
  .footer-legal-top {
    margin-bottom: 16px;
  }
  .footer-siret,
  .footer-legal-link,
  .footer-copy {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .site-footer {
    padding: 64px clamp(40px, 5vw, 88px) 72px;
  }
  .footer-brand {
    margin-bottom: 28px;
  }
  .footer-logo-name {
    font-size: 40px;
  }
  .footer-tagline {
    font-size: 12px;
    letter-spacing: 2.4px;
  }
  .footer-desc {
    font-size: 17px;
    line-height: 1.9;
    max-width: 820px;
  }
  .footer-rappel {
    margin: 28px 0;
    padding: 28px;
    max-width: 980px;
  }
  .footer-rappel-text {
    font-size: 17px;
  }
  .rappel-row {
    max-width: 680px;
  }
  .rappel-input,
  .rappel-btn {
    height: 54px;
    font-size: 16px;
  }
  .footer-contact {
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 30px;
  }
  .footer-contact-item {
    font-size: 15px;
  }
  .contact-icon {
    width: 36px;
    height: 36px;
  }
  .footer-legal-top {
    gap: 20px;
  }
  .footer-siret,
  .footer-legal-link,
  .footer-copy {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .header-logo-img {
    width: min(118px, 33vw);
  }
  .header-tagline {
    font-size: 7px;
    letter-spacing: 1.3px;
  }
  .footer-logo-img {
    width: min(168px, 52vw);
  }
}

@media (min-width: 768px) {
  .header-logo-img {
    width: 128px;
  }
  .footer-logo-img {
    width: 198px;
  }
}

/* Override layer moved to /assets/site-overrides.css */


/* ===== hero-band.css ===== */
/* Clé Rapide — modular override file (visual frozen) */

/* HERO MARQUES BAND */
.marques-label {
  font-size: 20px;
  letter-spacing: 2.8px;
  padding: 18px 0 10px;
}
.marques-scroll {
  padding: 14px 0 16px;
  background: #0d0d0f;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 11%, black 89%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 11%, black 89%, transparent 100%);
}
.marques-track {
  gap: 24px;
  animation-duration: 42s;
  align-items: center;
}
.mb-card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-width: auto !important;
  gap: 0 !important;
  box-shadow: none !important;
}
.mb-card:hover {
  background: transparent !important;
  border-color: transparent !important;
  transform: translateY(-1px);
}
.mb-icon {
  width: 96px !important;
  height: 46px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.mb-icon .brand-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(0.82);
  opacity: 0.97;
}
.mb-name { display: none !important; }

/* HERO PEUGEOT */
.brand-peugeot .brand-img--peugeot {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.mb-card.brand-peugeot {
  min-width: 76px !important;
}
.mb-card.brand-peugeot .mb-icon {
  width: 58px !important;
  height: 58px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.mb-card.brand-peugeot .brand-img--peugeot {
  max-width: 58px !important;
  max-height: 58px !important;
}

@media (max-width: 767px) {
  .mb-card.brand-peugeot {
    min-width: 74px !important;
  }
  .mb-card.brand-peugeot .mb-icon {
    width: 54px !important;
    height: 54px !important;
  }
  .mb-card.brand-peugeot .brand-img--peugeot {
    max-width: 54px !important;
    max-height: 54px !important;
  }
}


/* ===== buttons.css ===== */
/* Clé Rapide — modular override file (visual frozen) */

/* BUTTON RADIUS NORMALIZATION */
.services-btn {
  border-radius: 14px !important;
  box-shadow: 0 6px 18px rgba(17, 19, 24, 0.12);
}
.rappel-btn {
  border-radius: 14px !important;
}
.btn-devis,
.btn-tel,
.btn-call,
.avis-btn-red,
.avis-btn-dark,
.process-btn-red,
.process-btn-dark {
  border-radius: 14px;
}
@media (max-width: 767px) {
  .services-btn,
  .rappel-btn,
  .btn-devis,
  .btn-tel,
  .btn-call,
  .avis-btn-red,
  .avis-btn-dark,
  .process-btn-red,
  .process-btn-dark {
    border-radius: 14px;
  }
}

/* PREVENTION BUTTON */
.prevention-btn {
  border-radius: 14px !important;
  box-shadow: 0 6px 18px rgba(17, 19, 24, 0.12);
}
@media (max-width: 767px) {
  .prevention-btn {
    border-radius: 14px !important;
  }
}


/* ===== footer.css ===== */
/* Clé Rapide — modular override file (visual frozen) */

/* FOOTER LOGO */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
}
.footer-logo-img {
  display: block;
  width: min(168px, 52vw) !important;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
}
@media (max-width: 767px) {
  .footer-logo-img {
    width: min(156px, 58vw) !important;
  }
}


/* ===== remboursement.css ===== */
/* Clé Rapide — modular override file (visual frozen) */

/* REMBOURSEMENT */
.remb-section {
  background: linear-gradient(180deg, #fff8ef 0%, #f5ede2 100%) !important;
  padding: 52px 20px 60px !important;
}
.remb-section::before {
  inset: 14px 14px 12px !important;
  border: 1px solid rgba(181, 132, 65, 0.16) !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.98), 0 20px 60px rgba(91, 61, 20, 0.05) !important;
}
.remb-icon {
  width: 70px !important;
  height: 70px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, rgba(212,43,30,0.1), rgba(181,132,65,0.1)) !important;
  border: 1px solid rgba(181,132,65,0.18) !important;
  box-shadow: 0 10px 25px rgba(181,132,65,0.1) !important;
}
.remb-title {
  font-size: 24px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.5px !important;
}
.remb-sub {
  max-width: 340px;
  margin: 0 auto 14px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}
.remb-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(181,132,65,0.14);
  margin: 0 auto 14px !important;
  max-width: 330px;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
.remb-showcase {
  margin: 4px auto 16px !important;
  max-width: 248px !important;
}
.remb-showcase-visual {
  border-radius: 28px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  margin-bottom: 10px;
}
.remb-showcase-img {
  display: block !important;
  width: 100% !important;
  max-width: 248px !important;
  margin: 0 auto !important;
  height: auto !important;
  border-radius: 28px !important;
}
.remb-bank-select-wrap {
  max-width: 340px;
  margin: 0 auto 14px !important;
  background: #fff;
  border: 1px solid rgba(181,132,65,0.16);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(91,61,20,0.08);
}
.remb-result {
  max-width: 340px;
  margin: 16px auto 0;
  border-radius: 22px !important;
  border: 1px solid rgba(181,132,65,0.18) !important;
  box-shadow: 0 18px 38px rgba(91,61,20,0.1) !important;
}
.remb-badge-4x {
  max-width: 340px;
  margin: 18px auto 0;
  box-shadow: 0 14px 28px rgba(17,19,24,0.12);
}
.remb-badge-4x-title {
  font-size: 13px !important;
}
.remb-badge-4x-sub {
  font-size: 11px !important;
}
.remb-proof-row,
.remb-proof-chip {
  display: none !important;
}

/* REMBOURSEMENT VISUAL TUNING */
.remb-section {
  background: linear-gradient(180deg, #fff8ef 0%, #f5ede2 100%) !important;
}
.remb-section::before {
  border: 1px solid rgba(181, 132, 65, 0.16) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.98), 0 20px 60px rgba(91, 61, 20, 0.05) !important;
}
.remb-showcase-visual {
  background: radial-gradient(circle at 50% 32%, rgba(255,255,255,0.99), rgba(250,252,255,0.97) 52%, rgba(242,246,250,0.94) 100%) !important;
  border: 1px solid rgba(196, 205, 214, 0.18) !important;
  box-shadow: 0 12px 30px rgba(70,95,120,0.07), inset 0 1px 0 rgba(255,255,255,0.98) !important;
}
.remb-showcase-img {
  filter: none !important;
}
.remb-bank-select-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.96)) !important;
}
.remb-hint {
  background: rgba(255,255,255,0.78) !important;
}
@media (max-width: 767px) {
  .remb-showcase-visual {
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.99), rgba(250,252,255,0.97) 50%, rgba(242,246,250,0.94) 100%) !important;
  }
}

/* REMBOURSEMENT FREEZE */


/* ===== form.css ===== */
/* Clé Rapide — modular override file (visual frozen) */

/* FORMULAIRE */
.form-section {
  background: linear-gradient(180deg, #121317 0%, #17191f 100%) !important;
  padding: 56px 20px 66px !important;
}
.form-section::before {
  inset: 14px 14px 12px !important;
  border: 1px solid rgba(212,43,30,0.12) !important;
  border-radius: 30px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05) !important;
}
.form-shell {
  padding: 26px 18px 20px !important;
  border: 1px solid rgba(212,43,30,0.14) !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.93)) !important;
  box-shadow: 0 28px 60px rgba(0,0,0,0.28) !important;
}
.form-eyebrow { margin-bottom: 12px !important; }
.form-title {
  font-size: 24px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 10px !important;
}
.form-sub {
  font-size: 15px !important;
  line-height: 1.75 !important;
  margin-bottom: 16px !important;
}
.progress-wrap {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17,19,24,0.04);
  border: 1px solid rgba(17,19,24,0.06);
}
.step-card {
  border: 1px solid rgba(212,43,30,0.1) !important;
  border-radius: 22px !important;
  box-shadow: 0 12px 30px rgba(17,19,24,0.06) !important;
}
.step-title { font-size: 16px !important; }
.step-hint {
  font-size: 13px !important;
  line-height: 1.5 !important;
}
.form-label { font-size: 11px !important; }
.form-input,
.form-select {
  border-radius: 14px !important;
  border-color: rgba(17,19,24,0.1) !important;
  background: #f8fafc !important;
}
.form-input { font-size: 15px !important; }
.form-select { font-size: 14px !important; }
:is(.form-input, .plate-input):focus {
  border-color: #d42b1e !important;
  box-shadow: 0 0 0 4px rgba(212,43,30,0.08);
}
.vehicle-result { border-radius: 14px !important; }
.btn-next {
  min-height: 54px;
  border-radius: 14px !important;
  box-shadow: 0 12px 28px rgba(212,43,30,0.32), inset 0 1px 0 rgba(255,255,255,0.14) !important;
  font-size: 15px !important;
}
.form-note {
  margin-top: 14px !important;
  font-size: 12px !important;
}
.form-proof-row { display: none !important; }

.form-section.is-modal {
  top: 10px !important;
  bottom: 10px;
  transform: translateX(-50%) !important;
  max-height: none !important;
  padding-bottom: 24px !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
}
.form-section.is-modal::before { inset: 10px; }
.form-section.is-modal .form-shell {
  padding: 0 0 6px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.form-section.is-modal .form-title { margin-bottom: 6px; }
.form-section.is-modal :is(.form-sub, .progress-wrap) { margin-bottom: 18px; }
.form-section.is-modal .step-card { padding: 20px 16px; }
.form-section.is-modal .form-group { margin-bottom: 12px; }
.form-section.is-modal .form-input { min-height: 50px; }
.form-section.is-modal #step-4 .step-card { padding-bottom: 112px; }
.form-section.is-modal #form-final {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
}
.form-section.is-modal #btn-submit {
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 3;
  box-shadow: 0 14px 32px rgba(17, 19, 24, 0.14);
}

@media (max-width: 767px) {
  .brands-logo {
    width: 56px !important;
    height: 56px !important;
    padding: 6px !important;
  }
  .remb-title {
    font-size: 24px !important;
  }
  .remb-showcase {
    max-width: 232px !important;
    margin-bottom: 12px !important;
  }
  .remb-showcase-img {
    max-width: 232px !important;
    border-radius: 24px !important;
  }
  .remb-showcase-visual {
    padding: 0 !important;
    border-radius: 24px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }
  .form-title {
    font-size: 24px !important;
  }
  .form-section.is-modal {
    width: calc(100vw - 12px) !important;
    top: 6px !important;
    bottom: 6px;
    padding: 16px 12px 20px !important;
    border-radius: 18px;
  }
  .form-section.is-modal::before { inset: 8px; }
  .form-section.is-modal .form-modal-close { margin-bottom: 10px; }
  .form-section.is-modal .step-card {
    padding: 18px 14px;
    border-radius: 18px;
  }
  .form-section.is-modal .svc-grid { gap: 8px; }
  .form-section.is-modal #step-4 .step-card { padding-bottom: 104px; }
}


@media (max-width: 389px) {
  .remb-title {
    font-size: 21px !important;
    line-height: 1.2 !important;
  }
}

/* FORMULAIRE IPHONE */
@media (max-width: 430px) {
  .form-section.is-modal {
    top: 4px !important;
    bottom: 4px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 10px) !important;
    box-sizing: border-box !important;
    padding: 12px 11px 14px !important;
    border-radius: 16px !important;
  }
  .form-section.is-modal::before {
    inset: 6px 6px 6px 7px !important;
    border-radius: 14px !important;
  }
  .form-section.is-modal .form-modal-close {
    width: 38px;
    height: 38px;
    margin-bottom: 8px !important;
    border-radius: 11px;
    font-size: 24px;
  }
  .form-section.is-modal .form-shell {
    padding: 0 4px 4px 8px !important;
  }
  .form-section.is-modal .form-eyebrow,
  .form-section.is-modal .form-title,
  .form-section.is-modal .form-sub {
    padding-left: 1px;
  }
  .form-title {
    font-size: 22px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }
  .form-sub {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
  }
  .form-section.is-modal .progress-wrap {
    padding: 10px 12px !important;
    margin-bottom: 14px !important;
    border-radius: 14px !important;
    gap: 10px !important;
  }
  .step-counter {
    font-size: 10px;
  }
  .form-section.is-modal .step-card {
    padding: 16px 12px !important;
    border-radius: 16px !important;
  }
  .step-title {
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }
  .step-hint {
    font-size: 12px !important;
    line-height: 1.42 !important;
    margin-bottom: 14px !important;
  }
  .plate-wrap {
    margin-bottom: 10px !important;
  }
  .plate-input {
    height: 50px !important;
    font-size: 20px !important;
    letter-spacing: 2px !important;
    border-radius: 12px !important;
  }
  .vehicle-result {
    gap: 8px !important;
    padding: 10px 12px !important;
    margin-bottom: 10px !important;
    border-radius: 12px !important;
  }
  .vr-brand {
    font-size: 12px !important;
  }
  .vr-year,
  .vr-loading {
    font-size: 10px !important;
    line-height: 1.35 !important;
  }
  .plate-skip-wrap {
    margin-bottom: 10px !important;
  }
  .plate-skip-btn {
    font-size: 12px !important;
  }
  .plate-skip-hint {
    font-size: 11px !important;
    margin-top: 5px !important;
  }
  .manual-fields {
    gap: 8px !important;
    margin-bottom: 10px !important;
  }
  .form-section.is-modal .form-group {
    margin-bottom: 10px !important;
  }
  .form-label {
    margin-bottom: 6px !important;
  }
  .form-section.is-modal .form-input {
    min-height: 46px !important;
    height: 46px !important;
    font-size: 14px !important;
  }
  .form-select {
    font-size: 13px !important;
  }
  .svc-grid {
    gap: 8px !important;
  }
  .svc-btn {
    padding: 16px 10px 13px !important;
    gap: 8px !important;
  }
  .svc-btn-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .svc-btn-label {
    font-size: 11px !important;
  }
  .svc-btn-price {
    font-size: 10px !important;
  }
  .btn-next,
  .btn-call {
    min-height: 50px !important;
    padding: 13px 16px !important;
    font-size: 14px !important;
  }
  .btn-back {
    margin-top: 10px !important;
    font-size: 12px !important;
  }
  .form-note {
    margin-top: 10px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  .form-section.is-modal #step-4 .step-card {
    padding-bottom: 92px !important;
  }
  .form-section.is-modal #btn-submit {
    box-shadow: 0 10px 24px rgba(17, 19, 24, 0.12) !important;
  }
}


/* ===== marques-grid.css ===== */
/* Clé Rapide — modular override file (visual frozen) */

/* MARQUES GRID */
.brands-item {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  gap: 8px;
  background: #f6f8fa;
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 14px;
  padding: 16px 8px 12px;
  transition: all 0.25s;
  text-align: center;
  min-width: 0;
  box-shadow: 0 1px 10px rgba(17, 19, 24, 0.025);
}
.brands-item:hover {
  background: rgba(212, 43, 30, 0.04);
  border-color: rgba(212, 43, 30, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 19, 24, 0.05);
}
.brands-item.is-pressed {
  background: rgba(212, 43, 30, 0.06);
  border-color: rgba(212, 43, 30, 0.22);
  transform: translateY(0) scale(0.985);
  box-shadow: 0 4px 12px rgba(17, 19, 24, 0.05);
}
.brands-item.is-pressed .brands-logo {
  border-color: rgba(212, 43, 30, 0.28);
  transform: scale(0.96);
}
.brands-logo {
  width: 56px !important;
  height: 56px !important;
  padding: 6px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: border-color 0.25s, transform 0.2s ease;
  box-sizing: border-box !important;
}
.brands-logo .brand-img,
.brands-logo img {
  width: auto !important;
  height: auto !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}
.brands-item:hover .brands-logo {
  border-color: rgba(212, 43, 30, 0.2);
}
.brands-name {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #4a5568;
  letter-spacing: 0.3px;
  line-height: 1;
  transition: color 0.25s;
}
.brands-item:hover .brands-name {
  color: #d42b1e;
}
.brands-link {
  font-family: "Inter", sans-serif;
  font-size: 8px;
  color: #a0aec0;
  letter-spacing: 0.3px;
  margin-top: 1px;
  display: block;
  line-height: 1;
  transition: color 0.2s;
}
.brands-item:hover .brands-link {
  color: #d42b1e;
}

/* MARQUES PEUGEOT */
.brands-logo.brand-peugeot .brand-img--peugeot {
  max-width: 40px !important;
  max-height: 40px !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .brands-item {
    padding: 14px 6px 10px;
    border-radius: 14px;
  }
  .brands-logo {
    width: 46px !important;
    height: 46px !important;
    padding: 5px !important;
    border-radius: 12px !important;
  }
  .brands-logo .brand-img,
  .brands-logo img {
    max-width: 32px !important;
    max-height: 32px !important;
  }
  .brands-name {
    font-size: 9px;
  }
  .brands-link {
    font-size: 7px;
  }
  .brands-logo.brand-peugeot .brand-img--peugeot {
    max-width: 32px !important;
    max-height: 32px !important;
  }
}

@media (min-width: 768px) {
  .brands-item {
    padding: 20px 10px 14px;
    border-radius: 14px;
  }
  .brands-logo {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
  }
  .brands-name {
    font-size: 12px;
  }
  .brands-link {
    font-size: 9px;
  }
}

@media (min-width: 1200px) {
  .brands-item {
    padding: 22px 12px 16px;
    border-radius: 14px;
  }
  .brands-logo {
    width: 60px !important;
    height: 60px !important;
    padding: 6px !important;
    border-radius: 14px !important;
  }
  .brands-logo .brand-img,
  .brands-logo img {
    max-width: 40px !important;
    max-height: 40px !important;
  }
  .brands-name {
    font-size: 13px;
  }
  .brands-link {
    font-size: 10px;
  }
}


/* ===== template-utilities.css ===== */
/* Clé Rapide — modular override file (visual frozen) */

/* TEMPLATE UTILITIES */
.gtm-noscript-frame {
  display: none;
  visibility: hidden;
}


/* LEGAL PAGES */
.legal-page {
  background: #0d0d0f;
  color: rgba(255, 255, 255, 0.75);
}
.legal-page .legal-shell {
  width: min(860px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 60px;
}
.legal-page .legal-header {
  padding: 20px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}
.legal-page .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font: 700 11px/1 "Inter", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(212, 43, 30, 0.9);
  text-decoration: none;
}
.legal-page .legal-back::before {
  content: "←";
}
.legal-page .legal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font: 700 13px/1.2 "Inter", sans-serif;
  color: #f7f6f4;
  letter-spacing: 0.3px;
}
.legal-page .legal-brand-logo {
  display: block;
  width: min(170px, 46vw);
  height: auto;
}
.legal-page .legal-title {
  margin: 0;
  font: 900 26px/1.15 "Inter", sans-serif;
  letter-spacing: -0.5px;
  color: #f7f6f4;
}
.legal-page .legal-date {
  margin-top: 8px;
  font: 400 11px/1.5 "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.3);
}
.legal-page .legal-section {
  margin-bottom: 28px;
}
.legal-page .legal-section h2 {
  margin: 0 0 10px;
  font: 800 13px/1.4 "Inter", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d42b1e;
}
.legal-page .legal-section p,
.legal-page .legal-section li {
  font: 400 14px/1.8 "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.68);
}
.legal-page .legal-section p {
  margin: 0 0 8px;
}
.legal-page .legal-section ul {
  margin: 0 0 8px;
  padding-left: 18px;
}
.legal-page .legal-section a {
  color: #d42b1e;
  text-decoration: none;
}
.legal-page .legal-section a:visited {
  color: #d42b1e;
}
.legal-page .legal-sep {
  height: 1px;
  margin: 28px 0;
  background: rgba(255, 255, 255, 0.06);
}
.legal-page .legal-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font: 400 11px/1.7 "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.25);
}
.legal-page .legal-footer,
.legal-page .legal-footer a,
.legal-page .legal-footer a[x-apple-data-detectors],
.legal-page .legal-footer span {
  color: rgba(255, 255, 255, 0.25) !important;
  text-decoration: none !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.25) !important;
}
@media (min-width: 768px) {
  .legal-page .legal-shell {
    width: min(940px, calc(100vw - 64px));
    padding-top: 36px;
    padding-bottom: 84px;
  }
  .legal-page .legal-title {
    font-size: 34px;
  }
  .legal-page .legal-section h2 {
    font-size: 14px;
  }
  .legal-page .legal-section p,
  .legal-page .legal-section li {
    font-size: 15px;
  }
}

/* HUB OCCITANIE */
.hub-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #faf7f4 100%);
  color: #111318;
}
.hub-hero {
  padding: 28px 20px 18px;
}
.hub-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}
.hub-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.hub-brand img {
  display: block;
  width: 180px;
  height: auto;
}
.hub-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(212, 43, 30, 0.08);
  border: 1px solid rgba(212, 43, 30, 0.14);
  color: #b3251a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hub-title {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 12px;
}
.hub-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  max-width: 860px;
  margin: 0;
}
.hub-sections {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 18px;
  display: grid;
  gap: 16px;
}
.hub-card {
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(17, 19, 24, 0.05);
  padding: 22px 18px;
}
.hub-card-head h2 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: #111318;
}
.hub-card-head p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: #4a5568;
}
.hub-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111318;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hub-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hub-links-grid a,
.hub-main-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f6f8fa;
  border: 1px solid rgba(17, 19, 24, 0.08);
  color: #111318;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.hub-main-link {
  background: #d42b1e;
  border-color: #d42b1e;
  color: #fff;
}
.hub-links-grid a:hover,
.hub-main-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.08);
}
.hub-links-grid a:hover {
  border-color: rgba(212, 43, 30, 0.18);
  background: #fff;
}
.hub-bottom-note {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.hub-bottom-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #4a5568;
}
@media (max-width: 520px) {
  .hub-title {
    font-size: 26px;
  }
  .hub-links-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .hub-hero {
    padding: 44px 32px 22px;
  }
  .hub-brand img {
    width: 210px;
  }
  .hub-title {
    font-size: 44px;
  }
  .hub-sub {
    font-size: 18px;
  }
  .hub-sections {
    padding: 0 32px 24px;
  }
  .hub-card {
    padding: 28px 24px;
  }
  .hub-card-head h2 {
    font-size: 28px;
  }
  .hub-card-head p {
    font-size: 16px;
  }
  .hub-links-grid a,
  .hub-main-link {
    min-height: 60px;
    font-size: 15px;
  }
  .hub-bottom-note {
    padding: 0 32px 56px;
  }
  .hub-bottom-note p {
    font-size: 14px;
  }
}


/* ===== SECTION HUB — ROULETTE DÉPARTEMENTS ===== */
.departments-section {
  position: relative;
  padding: 48px 20px 50px;
  background: linear-gradient(180deg, #0d0d0f 0%, #16191f 32%, #eef2f5 100%);
  overflow: hidden;
}
.departments-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 43, 30, 0.34), transparent);
}
.departments-intro {
  margin-bottom: 18px;
}
.departments-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}
.departments-eyebrow::before,
.departments-eyebrow::after {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(212, 43, 30, 0.34);
}
.departments-title {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -1.1px;
  color: #f7f6f4;
  margin-bottom: 12px;
}
.departments-title span {
  color: #d42b1e;
}
.departments-sub {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.departments-picker {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 246, 249, 0.98) 100%);
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 16px 46px rgba(7, 10, 15, 0.18);
}
.departments-picker-label {
  display: block;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d42b1e;
}
.departments-picker-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  border-radius: 18px;
  background: #ffffff;
  border: 1.5px solid rgba(17, 19, 24, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.departments-select {
  width: 100%;
  min-height: 58px;
  appearance: menulist;
  -webkit-appearance: menulist;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 50px 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #111318;
}
.departments-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #d42b1e;
  pointer-events: none;
}
.departments-picker-note {
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #5b6472;
}
.departments-submit {
  margin-top: 14px;
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 16px;
  background: #111318;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.departments-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.departments-submit:not(:disabled):active {
  transform: translateY(1px);
}
@media (max-width: 389px) {
  .departments-section {
    padding: 44px 16px 46px;
  }
  .departments-line {
    left: 16px;
    right: 16px;
  }
  .departments-title {
    font-size: 26px;
  }
  .departments-picker {
    padding: 16px;
    border-radius: 20px;
  }
  .departments-select {
    font-size: 16px;
  }
}


.brands-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.brands-section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  background: #111318;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}


body[data-page-type="hub"] .brands-link {
  color: #111318;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1px;
  line-height: 1.25;
  margin-top: 6px;
}
body[data-page-type="hub"] .brands-item:hover .brands-link,
body[data-page-type="hub"] .brands-link:hover {
  color: #111318;
}
