/* Phone Center Rennes — styles */
:root {
  --bleu-profond: #0a1f3d;
  --bleu-nuit: #0d2a52;
  --bleu-elec: #1a6bff;
  --bleu-clair: #4d8fff;
  --blanc: #ffffff;
  --gris-50: #f5f7fb;
  --gris-100: #e8edf5;
  --gris-200: #d0d8e6;
  --gris-500: #5a6a82;
  --gris-700: #2c3a4f;
  --ombre: 0 12px 40px rgba(10, 31, 61, 0.12);
  --rayon: 14px;
  --header-h: 104px;
  --font: "Sora", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none !important; }
  .reviews-scroll__track { animation: none !important; }
}

body {
  font-family: var(--font);
  color: var(--gris-700);
  background: var(--blanc);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bleu-elec); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bleu-elec);
  color: var(--blanc);
  padding: 0.75rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gris-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--bleu-profond);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo:hover { text-decoration: none; }
.logo__img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  display: block;
  border-radius: 12px;
}
.logo span {
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--gris-500);
  letter-spacing: 0;
}
.footer-brand .logo__img {
  width: 92px;
  height: 92px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 6px;
  box-sizing: border-box;
}

@media (min-width: 981px) {
  :root { --header-h: 120px; }
  .logo__img {
    width: 104px;
    height: 104px;
  }
  .logo {
    font-size: 1.15rem;
    gap: 1rem;
  }
  .logo small { font-size: 0.78rem; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav a {
  color: var(--gris-700);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--bleu-elec);
  background: rgba(26, 107, 255, 0.08);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid var(--bleu-clair);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--bleu-elec);
  color: var(--blanc);
  box-shadow: 0 8px 24px rgba(26, 107, 255, 0.35);
}
.btn--primary:hover { background: #0f5aef; color: var(--blanc); }
.btn--ghost {
  background: transparent;
  color: var(--bleu-profond);
  border-color: var(--gris-200);
}
.btn--ghost:hover {
  border-color: var(--bleu-elec);
  color: var(--bleu-elec);
}
.btn--white {
  background: var(--blanc);
  color: var(--bleu-profond);
}
.btn--white:hover { background: var(--gris-50); color: var(--bleu-profond); }
.btn--outline-white {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--blanc);
}
.btn--sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
.btn--call { background: var(--bleu-profond); color: var(--blanc); }
.btn--call:hover { background: var(--bleu-nuit); color: var(--blanc); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gris-200);
  border-radius: 10px;
  background: var(--blanc);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bleu-profond);
  transition: transform 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--blanc);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--gris-100);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: var(--ombre);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 0.85rem 1rem; }
  .header-actions .btn--call { display: none; }
}

@media (min-width: 981px) {
  .header-actions .btn--primary[href^="tel"] { display: none; }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  color: var(--blanc);
  overflow: hidden;
  background: var(--bleu-profond);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.88;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 24, 48, 0.88) 0%, rgba(10, 31, 61, 0.55) 45%, rgba(10, 31, 61, 0.35) 100%),
    linear-gradient(to top, rgba(8, 24, 48, 0.7) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 107, 255, 0.22), transparent 50%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 42rem;
  gap: 2.5rem;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bleu-clair);
  margin-bottom: 1rem;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bleu-elec);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
  margin-bottom: 1rem;
}
.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__address {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}
.hero__address svg { flex-shrink: 0; margin-top: 2px; }

@media (max-width: 860px) {
  .hero__content {
    padding: 3rem 0 2.5rem;
  }
  .hero h1 { max-width: none; }
}

/* ——— Marquee (boucle CSS -50%, fiable iOS) ——— */
.marquee {
  --marquee-h: 1.5625cm;
  --marquee-duration: 32s;
  height: var(--marquee-h);
  margin-top: 0.87rem;
  background: var(--bleu-nuit);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  position: relative;
  touch-action: pan-y;
}
.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  transform: translate3d(0, 0, 0);
  animation: marquee-scroll var(--marquee-duration) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.marquee.is-paused .marquee__track {
  animation-play-state: paused;
}
/* Pause hover desktop only — iOS sticky :hover figeait le défilement */
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee__track { animation-play-state: paused; }
}
.marquee__group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 0 1.3rem;
  height: var(--marquee-h);
  flex-shrink: 0;
}
.marquee__item::after {
  content: "";
  width: 5.2px;
  height: 5.2px;
  border-radius: 50%;
  background: var(--bleu-elec);
  flex-shrink: 0;
  opacity: 0.85;
}
.marquee__slot {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marquee__slot--wide {
  width: 110px;
  height: 32px;
}
.marquee__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
/* 2 groupes identiques → -50% = boucle sans saut */
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 720px) {
  .marquee { --marquee-duration: 26s; }
  .marquee__item { gap: 1rem; padding: 0 1rem; }
  .marquee__slot { width: 32px; height: 32px; }
  .marquee__slot--wide { width: 96px; height: 28px; }
}

/* ——— Sections ——— */
.section {
  padding: 4.5rem 0;
}
.section--alt { background: var(--gris-50); }
.section--dark {
  background: linear-gradient(160deg, var(--bleu-profond), var(--bleu-nuit));
  color: var(--blanc);
}
.section__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section__head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  color: var(--bleu-profond);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section--dark .section__head h2 { color: var(--blanc); }
.section__head p,
.page-hero p {
  color: var(--gris-500);
  font-size: 1.05rem;
}
.section--dark .section__head p { color: rgba(255, 255, 255, 0.78); }

/* Titre section expressif */
.section__head--display {
  max-width: 38rem;
  margin-bottom: 3rem;
  position: relative;
  padding-top: 0.35rem;
}
.section__head--display::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3.25rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bleu-elec), var(--bleu-clair));
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bleu-elec);
}
.section__head--display h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 6.5vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--bleu-profond);
}
.section__head--display .title-line {
  display: inline-block;
}
.section__head--display .title-line--accent {
  background: linear-gradient(120deg, var(--bleu-elec) 0%, #3d8bff 45%, var(--bleu-profond) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.section__head--display .title-mark {
  display: inline-grid;
  place-items: center;
  width: 0.72em;
  height: 0.72em;
  margin-left: 0.08em;
  border-radius: 50%;
  background: var(--bleu-elec);
  color: var(--blanc);
  font-size: 0.55em;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(-0.08em);
  box-shadow: 0 10px 24px rgba(26, 107, 255, 0.35);
}
.section__lead {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.55;
  color: var(--gris-500);
}

.page-hero {
  padding: 3.25rem 0 1rem;
  background:
    linear-gradient(180deg, var(--gris-50), var(--blanc));
  border-bottom: 1px solid var(--gris-100);
}
.page-hero .container { padding-bottom: 2rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gris-500);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gris-500); }
.breadcrumb span[aria-current="page"] { color: var(--bleu-profond); font-weight: 600; }

/* ——— Cards / grids ——— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--blanc);
  border: 1px solid var(--gris-100);
  border-radius: var(--rayon);
  padding: 1.35rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre);
  border-color: rgba(26, 107, 255, 0.25);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26, 107, 255, 0.1);
  color: var(--bleu-elec);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bleu-profond);
  margin-bottom: 0.45rem;
}
.card p { color: var(--gris-500); font-size: 0.95rem; }

.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--rayon);
  min-height: 200px;
  color: var(--blanc);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  text-decoration: none;
  isolation: isolate;
}
.service-tile:hover { text-decoration: none; transform: none; }
.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.5s var(--ease);
}
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 31, 61, 0.92));
}
.service-tile:hover img { transform: scale(1.06); }
.service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blanc);
  margin-bottom: 0.25rem;
}
.service-tile p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }

/* ——— Why us ——— */
.why-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) {
  .why-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .why-list { grid-template-columns: 1fr; }
}
.why-item {
  background: var(--blanc);
  border-left: 3px solid var(--bleu-elec);
  padding: 1.15rem 1.1rem;
  border-radius: 0 var(--rayon) var(--rayon) 0;
  box-shadow: 0 4px 18px rgba(10, 31, 61, 0.06);
}
.why-item h3 {
  font-size: 1rem;
  color: var(--bleu-profond);
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}
.why-item p { font-size: 0.9rem; color: var(--gris-500); }

/* ——— Reviews (style Google) ——— */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .reviews { grid-template-columns: 1fr; }
}

.reviews-scroll {
  --reviews-duration: 42s;
  overflow: hidden;
  width: 100%;
  margin: 0.5rem 0 0;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.reviews-scroll__track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  transform: translate3d(0, 0, 0);
  animation: reviews-scroll var(--reviews-duration) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.reviews-scroll.is-paused .reviews-scroll__track {
  animation-play-state: paused;
}
@media (hover: hover) and (pointer: fine) {
  .reviews-scroll:hover .reviews-scroll__track,
  .reviews-scroll:focus-within .reviews-scroll__track {
    animation-play-state: paused;
  }
}
.reviews-scroll__group {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.15rem;
  padding-inline: 0.575rem;
  flex-shrink: 0;
  min-width: max-content;
}
.reviews-scroll .g-review {
  width: min(380px, 85vw);
  flex-shrink: 0;
}
@keyframes reviews-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 720px) {
  .reviews-scroll { --reviews-duration: 36s; }
}

.g-review {
  background: #2b2d31;
  color: #e8eaed;
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(10, 31, 61, 0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.g-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 31, 61, 0.28);
}
.g-review__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.g-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}
.g-review__avatar--a { background: #5f6368; }
.g-review__avatar--r { background: #00897b; }
.g-review__avatar--rd { background: #7e57c2; }
.g-review__avatar--l { background: #1a73e8; }
.g-review__who { min-width: 0; }
.g-review__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.g-review__source {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #9aa0a6;
  margin: 0.15rem 0 0;
}
.g-review__g {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.g-review__meta {
  font-size: 0.82rem;
  color: #bdc1c6;
  margin: 0;
}
.g-review__meta strong {
  color: #fff;
  font-weight: 700;
}
.g-review__stars {
  display: inline-flex;
  gap: 1px;
  margin-right: 0.15rem;
  vertical-align: -1px;
  color: #fbbc04;
}
.g-review__stars svg {
  width: 14px;
  height: 14px;
}
.g-review blockquote {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #e8eaed;
  flex: 1;
}
.g-review__visit {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: #9aa0a6;
}

/* ——— Pricing tables ——— */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanc);
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid var(--gris-100);
  font-size: 0.95rem;
}
.price-table th,
.price-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--gris-100);
}
.price-table th {
  background: var(--bleu-profond);
  color: var(--blanc);
  font-weight: 600;
  font-family: var(--font-display);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(26, 107, 255, 0.04); }
.price-tag {
  font-weight: 700;
  color: var(--bleu-elec);
  white-space: nowrap;
}
.notice {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(26, 107, 255, 0.08);
  border-left: 3px solid var(--bleu-elec);
  border-radius: 0 10px 10px 0;
  font-size: 0.92rem;
  color: var(--gris-700);
}

/* ——— Brands ——— */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}
.brand-chip {
  display: grid;
  place-items: center;
  gap: 0.65rem;
  padding: 1.25rem 0.85rem 1.1rem;
  background: var(--blanc);
  border: 1px solid var(--gris-100);
  border-radius: var(--rayon);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--bleu-profond);
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.brand-chip:hover {
  border-color: var(--bleu-elec);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 31, 61, 0.08);
}
.brand-chip__logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gris-50);
  border: 1px solid var(--gris-100);
  display: grid;
  place-items: center;
  padding: 0.55rem;
  box-sizing: border-box;
}
.brand-chip__logo-wrap--wide {
  width: 96px;
  height: 48px;
  padding: 0.65rem 0.75rem;
}
.brand-chip__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* logos blancs → bleu profond sur fond clair */
  filter: brightness(0) saturate(100%) invert(11%) sepia(28%) saturate(1800%) hue-rotate(187deg) brightness(0.95);
}

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding: 1.5rem 1.2rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rayon);
}
.section:not(.section--dark) .step {
  background: var(--blanc);
  border-color: var(--gris-100);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bleu-elec);
  color: var(--blanc);
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.85rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.section--dark .step h3 { color: var(--blanc); }
.section:not(.section--dark) .step h3 { color: var(--bleu-profond); }
.step p { font-size: 0.92rem; }
.section--dark .step p { color: rgba(255, 255, 255, 0.75); }

/* ——— Forms ——— */
.form {
  display: grid;
  gap: 1rem;
  background: var(--blanc);
  border: 1px solid var(--gris-100);
  border-radius: var(--rayon);
  padding: 1.5rem;
  box-shadow: var(--ombre);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bleu-profond);
  margin-bottom: 0.35rem;
}
.field .req { color: var(--bleu-elec); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gris-200);
  border-radius: 10px;
  background: var(--gris-50);
  color: var(--gris-700);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bleu-elec);
  box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.18);
  background: var(--blanc);
}
.field textarea { min-height: 120px; resize: vertical; }
.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
}
.checkbox input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--bleu-elec);
  flex-shrink: 0;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status.is-success {
  display: block;
  background: #e8f7ef;
  color: #0d5c32;
  border: 1px solid #b7e4c7;
}
.form-status.is-error {
  display: block;
  background: #fdecea;
  color: #8a1c12;
  border: 1px solid #f5c6c2;
}

/* ——— FAQ (toujours ouvertes) ——— */
.faq { display: grid; gap: 0.85rem; }
.faq details {
  background: var(--blanc);
  border: 1px solid var(--gris-100);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.faq details[open] {
  border-color: rgba(26, 107, 255, 0.18);
  box-shadow: 0 8px 22px rgba(10, 31, 61, 0.05);
}
.faq summary {
  cursor: default;
  pointer-events: none;
  padding: 1rem 1.15rem 0.35rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--bleu-profond);
  list-style: none;
  display: block;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: none; }
.faq .faq__body {
  padding: 0.35rem 1.15rem 1.15rem;
  color: var(--gris-500);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ——— Contact layout ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.info-block {
  background: var(--bleu-profond);
  color: var(--blanc);
  border-radius: var(--rayon);
  padding: 1.75rem;
}
.info-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.info-block a { color: var(--bleu-clair); }
.info-block dl { display: grid; gap: 0.85rem; }
.info-block dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}
.info-block dd { font-weight: 500; }
.hours { display: grid; gap: 0.35rem; font-size: 0.92rem; }
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.3rem;
}
.map-wrap {
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid var(--gris-100);
  min-height: 320px;
  background: var(--gris-100);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.map-fallback {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--gris-500);
  background: var(--blanc);
  border-top: 1px solid var(--gris-100);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
}
.split__media {
  border-radius: var(--rayon);
  overflow: hidden;
  min-height: 280px;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* ——— Reveal / counters ——— */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; }
}
.stat {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--rayon);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bleu-clair);
  display: block;
}
.stat__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--bleu-profond);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h3 {
  font-family: var(--font-display);
  color: var(--blanc);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.site-footer a:hover { color: var(--blanc); text-decoration: underline; }
.site-footer ul { display: grid; gap: 0.45rem; }
.footer-brand .logo { color: var(--blanc); margin-bottom: 0.85rem; }
.footer-brand .logo small { color: rgba(255, 255, 255, 0.55); }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ——— Legal pages ——— */
.prose {
  max-width: 720px;
}
.prose h2 {
  font-family: var(--font-display);
  color: var(--bleu-profond);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}
.prose h3 {
  color: var(--bleu-profond);
  font-size: 1.05rem;
  margin: 1.35rem 0 0.5rem;
}
.prose p, .prose li {
  color: var(--gris-500);
  margin-bottom: 0.75rem;
}
.prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.prose strong { color: var(--gris-700); }

/* ——— CTA band ——— */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: var(--rayon);
  background: linear-gradient(120deg, var(--bleu-elec), var(--bleu-profond));
  color: var(--blanc);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--blanc);
}
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ——— Utilities ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.text-center { text-align: center; }
