/* =============================================================
   SERRURIER LIMEIL-BRÉVANNES — Neon-Pop Editorial
   Fonts : Bebas Neue (display) + Outfit (body)
   Palette : blanc pur + vert citron + sky blue + rose vif + orange
   Style : magazine sport moderne, typographie XXL, blocs en collision
   ============================================================= */

/* ===== TOKENS ===== */
:root {
  --lime: #B5F23D;
  --lime-dk: #8DC41E;
  --sky: #38BDF8;
  --sky-dk: #0EA5E9;
  --rose: #FF3D9A;
  --rose-dk: #E0187D;
  --orange: #FF8C00;
  --orange-dk: #E07800;
  --purple: #A855F7;

  --ink: #0A0F1E;
  --ink-2: #1A2340;
  --muted: #6B7899;
  --border: #E8EAF0;
  --bg: #FFFFFF;
  --bg-off: #F7F8FC;

  --ff-disp: 'Bebas Neue', Impact, sans-serif;
  --ff-body: 'Outfit', system-ui, sans-serif;

  --w: 1200px;
  --r: 12px;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

textarea, input, select {
  font: inherit;
}

/* ===== WRAP ===== */
.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--ff-disp);
  letter-spacing: .01em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 em {
  font-style: normal;
  color: var(--rose);
}

.sec-num {
  font-family: var(--ff-disp);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: rgba(0, 0, 0, .05);
  display: block;
  user-select: none;
  pointer-events: none;
}

.sec-num.white {
  color: rgba(255, 255, 255, .12);
}

.sec-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 56px;
}

.sec-title-block h2 {
  margin-bottom: 10px;
}

.sec-title-block p {
  font-size: .95rem;
  color: var(--muted);
  max-width: 560px;
}

/* ===== ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-anim].visible {
  opacity: 1;
  transform: none;
}

[data-d="1"] {
  transition-delay: .08s;
}

[data-d="2"] {
  transition-delay: .16s;
}

[data-d="3"] {
  transition-delay: .24s;
}

[data-d="4"] {
  transition-delay: .32s;
}

/* ===== HEADER ===== */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.hdr.scrolled {
  border-color: var(--lime);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
}

.hdr-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 48px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* LOGO */
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-disp);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: .04em;
  flex-shrink: 0;
}

.hdr-logo strong {
  color: var(--rose);
}

.hdr-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* NAV DESKTOP */
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.hdr-nav a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .2s;
  position: relative;
}

.hdr-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 2px;
}

.hdr-nav a:hover {
  color: var(--ink);
}

.hdr-nav a:hover::after {
  transform: scaleX(1);
}

/* TÉLÉPHONE */
.hdr-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--ff-disp);
  font-size: 1rem;
  letter-spacing: .06em;
  padding: 9px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}

.hdr-tel:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
}

/* BURGER */
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 4px;
  flex-shrink: 0;
}

.hdr-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

@media (max-width: 900px) {
  .hdr-inner {
    padding: 0 20px;
  }

  /* Téléphone passe derrière le menu */
  .hdr-tel {
    position: relative;
    z-index: 1;
    /* sous le menu */
    padding: 9px 12px;
  }

  .hdr-tel span {
    display: none;
  }

  .hdr-nav {
    position: fixed;
    top: 0;
    /* ← part du haut de l'écran */
    left: 0;
    right: 0;
    padding-top: 80px;
    /* ← laisse voir le header en dessous */
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-left: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--lime);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
    z-index: 800;
    /* ← sous le header (z-index:900) mais au-dessus du reste */

    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s, transform .25s;
  }

  .hdr-nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .hdr-nav a {
    font-size: .9rem;
    letter-spacing: .08em;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
  }

  .hdr-nav a:last-child {
    border-bottom: none;
  }

  .hdr-nav a::after {
    display: none;
  }

  .hdr-burger {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 901;
    /* ← toujours cliquable au-dessus de tout */
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  padding-top: 66px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg-num {
  position: absolute;
  bottom: -80px;
  right: -40px;
  font-family: var(--ff-disp);
  font-size: clamp(16rem, 40vw, 36rem);
  line-height: 1;
  color: rgba(0, 0, 0, .03);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: var(--w);
  margin: 0 auto;
  padding: 64px 48px 48px;
  position: relative;
  z-index: 2;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  animation: blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.h1-outline {
  font-family: var(--ff-disp);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  letter-spacing: .02em;
}

.h1-fill {
  font-family: var(--ff-disp);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .95;
  color: var(--ink);
  letter-spacing: .02em;
}

.h1-accent {
  font-family: var(--ff-disp);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--rose);
  letter-spacing: .04em;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-sub strong {
  color: var(--ink);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--rose);
  color: #fff;
  font-family: var(--ff-disp);
  font-size: 1.1rem;
  letter-spacing: .06em;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(255, 61, 154, .35);
}

.cta-main:hover {
  background: var(--rose-dk);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 61, 154, .45);
}

.cta-sec {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 50px;
  border: 2px solid var(--ink);
  transition: background .2s, color .2s, transform .2s;
}

.cta-sec:hover {
  background: var(--ink);
  color: var(--lime);
  transform: translateY(-2px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.htag {
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 50px;
}

.htag-lime {
  background: rgba(181, 242, 61, .25);
  color: var(--lime-dk);
}

.htag-sky {
  background: rgba(56, 189, 248, .2);
  color: var(--sky-dk);
}

.htag-rose {
  background: rgba(255, 61, 154, .15);
  color: var(--rose-dk);
}

/* Price cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.price-card {
  border-radius: var(--r);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform .3s, box-shadow .3s;
}

.price-card:hover {
  transform: translateX(-6px);
}

.pc-label {
  font-weight: 700;
  font-size: .95rem;
}

.pc-price {
  font-family: var(--ff-disp);
  font-size: 1.3rem;
  letter-spacing: .04em;
}

.pc-price strong {
  font-size: 1.8rem;
}

.pc-top {
  background: var(--lime);
  color: var(--ink);
}

.pc-mid {
  background: var(--sky);
  color: var(--ink);
}

.pc-bot {
  background: var(--rose);
  color: #fff;
}

.pc-eff {
  background: var(--orange);
  color: #fff;
}

/* Ticker */
.hero-ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 2;
}

.ticker-inner {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.ticker-inner span {
  font-family: var(--ff-disp);
  font-size: 1rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
}

.ticker-inner b {
  color: var(--lime);
  font-weight: 400;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== SERVICES ===== */
.sec-services {
  background: var(--bg-off);
  padding: 100px 0;
}

.services-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sb-card {
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.sb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
}

.sb-big {
  grid-row: span 2;
}

.sb-lime {
  background: var(--lime);
  color: var(--ink);
}

.sb-sky {
  background: var(--sky);
  color: var(--ink);
}

.sb-rose {
  background: var(--rose);
  color: #fff;
}

.sb-orange {
  background: var(--orange);
  color: #fff;
}

.sbc-num {
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-family: var(--ff-disp);
  font-size: 7rem;
  line-height: 1;
  color: rgba(0, 0, 0, .08);
  user-select: none;
  pointer-events: none;
}

.sb-rose .sbc-num, .sb-orange .sbc-num {
  color: rgba(255, 255, 255, .12);
}

.sbc-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, .12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sb-rose .sbc-icon, .sb-orange .sbc-icon {
  background: rgba(255, 255, 255, .2);
}

.sb-card h3 {
  font-family: var(--ff-disp);
  font-size: 1.8rem;
  letter-spacing: .03em;
  margin-bottom: 12px;
}

.sb-big h3 {
  font-size: 2.4rem;
}

.sb-card p {
  font-size: .9rem;
  line-height: 1.68;
  opacity: .8;
  margin-bottom: 10px;
}

.sbc-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 2px solid rgba(0, 0, 0, .12);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.sb-rose .sbc-price, .sb-orange .sbc-price {
  border-color: rgba(255, 255, 255, .25);
}

.sbc-price span {
  font-family: var(--ff-disp);
  font-size: 2rem;
  letter-spacing: .03em;
}

.sbc-price small {
  font-size: .78rem;
  opacity: .7;
}

/* ===== PROCESS ===== */
.sec-process {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sec-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg,
      rgba(181, 242, 61, .03) 0, rgba(181, 242, 61, .03) 1px,
      transparent 1px, transparent 40px);
}

.process-diagonal-bg {
  position: absolute;
  top: 50%;
  left: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 61, 154, .15), transparent 60%);
  pointer-events: none;
}

.process-head {
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.process-title {
  font-family: var(--ff-disp);
  font-size: clamp(3rem, 8vw, 7rem);
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
}

.process-title em {
  color: var(--lime);
  font-style: normal;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  position: relative;
  z-index: 2;
}

.ps-step {
  text-align: center;
}

.ps-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform .3s;
}

.ps-step:hover .ps-bubble {
  transform: scale(1.12);
}

.ps-bubble.sky {
  background: var(--sky);
}

.ps-bubble.rose {
  background: var(--rose);
  color: #fff;
}

.ps-bubble.orange {
  background: var(--orange);
  color: #fff;
}

.ps-idx {
  font-family: var(--ff-disp);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, .1);
  line-height: 1;
  margin-bottom: 6px;
}

.ps-body h3 {
  font-family: var(--ff-disp);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}

.ps-body p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  max-width: 180px;
  margin: 0 auto;
}

.ps-arrow {
  font-size: 2rem;
  color: rgba(255, 255, 255, .2);
  padding: 0 12px;
  margin-top: 22px;
  align-self: flex-start;
}

/* ===== LA VILLE ===== */
.sec-ville {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sec-ville::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, var(--lime) 0, var(--lime) 8px, transparent 8px),
    linear-gradient(180deg, transparent 66px, var(--border) 66px, var(--border) 68px, transparent 68px);
  background-size: auto, auto;
  opacity: .4;
  pointer-events: none;
}

.ville-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ville-text .sec-num {
  line-height: .85;
  margin-bottom: -16px;
}

.ville-text h2 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  margin-bottom: 24px;
}

.ville-text h2 em {
  color: var(--lime-dk);
}

.ville-text p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.cta-ville {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--ff-disp);
  font-size: 1rem;
  letter-spacing: .06em;
  padding: 12px 26px;
  border-radius: 50px;
  margin-top: 10px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(181, 242, 61, .4);
}

.cta-ville:hover {
  background: var(--lime-dk);
  transform: translateY(-2px);
}

.ville-zones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vz-card {
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform .25s;
}

.vz-card:hover {
  transform: translateX(6px);
}

.vz-name {
  font-size: .9rem;
  font-weight: 700;
}

.vz-type {
  font-size: .78rem;
}

.vz-lime {
  background: rgba(181, 242, 61, .18);
  border-left: 4px solid var(--lime);
}

.vz-sky {
  background: rgba(56, 189, 248, .15);
  border-left: 4px solid var(--sky);
}

.vz-rose {
  background: rgba(255, 61, 154, .12);
  border-left: 4px solid var(--rose);
  color: var(--ink);
}

.vz-orange {
  background: rgba(255, 140, 0, .12);
  border-left: 4px solid var(--orange);
}

.vz-purple {
  background: rgba(168, 85, 247, .1);
  border-left: 4px solid var(--purple);
}

.vz-type {
  color: var(--muted);
}

/* ===== TARIFS ===== */
.sec-tarifs {
  background: var(--bg-off);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tarifs-bg-text {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-disp);
  font-size: clamp(10rem, 25vw, 22rem);
  line-height: 1;
  color: rgba(0, 0, 0, .04);
  user-select: none;
  pointer-events: none;
}

.tarifs-rows {
  max-width: 700px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.trf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background .2s;
}

.trf-row:last-child {
  border-bottom: none;
}

.trf-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trf-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.trf-dot.lime {
  background: var(--lime-dk);
}

.trf-dot.sky {
  background: var(--sky-dk);
}

.trf-dot.rose {
  background: var(--rose);
}

.trf-dot.orange {
  background: var(--orange);
}

.trf-info strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
}

.trf-info span {
  font-size: .78rem;
  color: var(--muted);
}

.trf-price {
  font-family: var(--ff-disp);
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: var(--rose);
  white-space: nowrap;
}

.trf-note {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
}

.tarifs-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.tg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: .84rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
}

.tg-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lime-bg {
  background: var(--lime);
  color: var(--ink);
}

.sky-bg {
  background: var(--sky);
  color: var(--ink);
}

.rose-bg {
  background: var(--rose);
  color: #fff;
}

.orange-bg {
  background: var(--orange);
  color: #fff;
}

/* ===== AVIS ===== */
.sec-avis {
  background: var(--bg);
  padding: 100px 0;
}

.avis-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 56px;
}

.avis-header h2 {
  margin-bottom: 20px;
}

.avis-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.score-big {
  font-family: var(--ff-disp);
  font-size: 4.5rem;
  color: var(--lime-dk);
  line-height: 1;
}

.stars {
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 4px;
}

.avis-header p {
  font-size: .8rem;
  color: var(--muted);
}

.avis-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.avis-card {
  border-radius: var(--r);
  padding: 28px;
  border: 2px solid transparent;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.avis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.avis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
}

.ac-lime::before {
  background: var(--lime);
}

.ac-sky::before {
  background: var(--sky);
}

.ac-rose::before {
  background: var(--rose);
}

.ac-lime {
  border-color: rgba(181, 242, 61, .3);
  background: rgba(181, 242, 61, .05);
}

.ac-sky {
  border-color: rgba(56, 189, 248, .25);
  background: rgba(56, 189, 248, .05);
}

.ac-rose {
  border-color: rgba(255, 61, 154, .2);
  background: rgba(255, 61, 154, .04);
}

.ac-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.ac-lime .ac-tag {
  background: var(--lime);
  color: var(--ink);
}

.ac-sky .ac-tag {
  background: var(--sky);
  color: var(--ink);
}

.ac-rose .ac-tag {
  background: var(--rose);
  color: #fff;
}

.ac-stars {
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 12px;
}

blockquote {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 18px;
}

.ac-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ac-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.sky-av {
  background: var(--sky);
}

.rose-av {
  background: var(--rose);
  color: #fff;
}

.ac-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}

.ac-loc {
  font-size: .75rem;
  color: var(--muted);
}

/* ===== FAQ ===== */
.sec-faq {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sec-faq::after {
  content: '?';
  position: absolute;
  right: -60px;
  bottom: -80px;
  font-family: var(--ff-disp);
  font-size: clamp(16rem, 40vw, 32rem);
  line-height: 1;
  color: rgba(255, 255, 255, .04);
  pointer-events: none;
  user-select: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.faq-left {
  position: sticky;
  top: 86px;
}

.faq-left h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.faq-left p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-faq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--ff-disp);
  font-size: 1rem;
  letter-spacing: .06em;
  padding: 11px 22px;
  border-radius: 50px;
  transition: background .2s, transform .2s;
}

.cta-faq:hover {
  background: var(--lime-dk);
  transform: translateY(-2px);
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s;
}

.faq-item.open {
  background: rgba(255, 255, 255, .09);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  transition: color .2s;
}

.faq-ico {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--lime);
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--lime);
  color: var(--ink);
}

.faq-body {
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}

.faq-inner {
  padding: 0 22px 18px;
}

.faq-inner p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
}

.faq-inner strong {
  color: rgba(255, 255, 255, .9);
}

/* ===== CONTACT ===== */
.sec-contact {
  background: var(--bg);
  padding: 100px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-left .sec-num {
  margin-bottom: -16px;
}

.contact-left h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 14px;
}

.contact-left>p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cl-phone {
  background: var(--ink);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 18px;
}

.cl-phone-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 4px;
}

.cl-phone-num {
  display: block;
  font-family: var(--ff-disp);
  font-size: 2rem;
  color: var(--lime);
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.cl-phone-avail {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}

.cl-map {
  border-radius: var(--r);
  overflow: hidden;
}

.cl-map iframe {
  display: block;
}

/* Form */
.contact-form {
  background: var(--bg-off);
  border-radius: 20px;
  padding: 36px;
  border: 2px solid var(--border);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.cf-field label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 11px 14px;
  font-size: .87rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}

.cf-field input:read-only {
  background: var(--bg-off);
  color: var(--muted);
}

.cf-field textarea {
  resize: vertical;
  min-height: 100px;
  padding: 11px 14px;
}

.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(255, 61, 154, .15);
}

.addr-wrap {
  position: relative;
}

.cf-sugg {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 2px solid var(--rose);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.cf-sugg.open {
  display: block;
}

.cf-sugg li {
  padding: 10px 14px;
  font-size: .84rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.cf-sugg li:last-child {
  border-bottom: none;
}

.cf-sugg li:hover, .cf-sugg li.active {
  background: rgba(255, 61, 154, .08);
  color: var(--rose-dk);
}

.cf-hint {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 4px;
}

.cf-hint.err {
  color: var(--rose);
}

.sel-wrap {
  position: relative;
}

.sel-ico {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

/* Checkbox */
.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 16px 0;
}

.cf-check input {
  display: none;
}

.cf-box {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 2px solid var(--border);
  border-radius: 5px;
  transition: background .2s, border-color .2s;
  position: relative;
}

.cf-check input:checked+.cf-box {
  background: var(--rose);
  border-color: var(--rose);
}

.cf-check input:checked+.cf-box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 7px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.cf-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  font-family: var(--ff-disp);
  font-size: 1.1rem;
  letter-spacing: .06em;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255, 61, 154, .35);
}

.cta-submit:hover {
  background: var(--rose-dk);
  transform: translateY(-2px);
}

.cta-tel-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  padding: 13px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: border-color .2s, background .2s;
}

.cta-tel-alt:hover {
  border-color: var(--ink);
}

.cf-feedback {
  margin-top: 12px;
  font-size: .85rem;
  color: var(--lime-dk);
  font-weight: 600;
}

.cf-feedback.err {
  color: var(--rose);
}

/* ===== CTA FINAL ===== */
.sec-cta-final {
  background: var(--lime);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ctaf-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-disp);
  font-size: clamp(10rem, 30vw, 24rem);
  line-height: 1;
  color: rgba(0, 0, 0, .06);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.ctaf-content {
  position: relative;
  z-index: 2;
}

.ctaf-content h2 {
  font-family: var(--ff-disp);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--ink);
  margin-bottom: 14px;
}

.ctaf-content h2 em {
  color: var(--rose);
  font-style: normal;
}

.ctaf-content p {
  font-size: 1rem;
  color: rgba(0, 0, 0, .55);
  margin-bottom: 36px;
}

.ctaf-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.ctaf-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--ff-disp);
  font-size: 1.2rem;
  letter-spacing: .06em;
  padding: 16px 32px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
}

.ctaf-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
}

.ctaf-btn-sec {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 50px;
  border: 2px solid rgba(0, 0, 0, .25);
  transition: border-color .2s, background .2s;
}

.ctaf-btn-sec:hover {
  border-color: var(--ink);
  background: rgba(0, 0, 0, .06);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.65;
  margin-top: 12px;
  margin-bottom: 16px;
}

.footer-tel {
  display: inline-block;
  font-family: var(--ff-disp);
  font-size: 1.4rem;
  color: var(--lime);
  letter-spacing: .04em;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 9px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45);
}

.footer-bottom a:hover {
  color: var(--lime);
}

.footer-legal {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.footer-legal a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ===== FLOAT ===== */
.floats {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-top {
  width: 42px;
  height: 42px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}

.float-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.float-top:hover {
  background: var(--bg-off);
}

.float-call {
  width: 54px;
  height: 54px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 61, 154, .5);
  transition: transform .2s, box-shadow .2s;
}

.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(255, 61, 154, .6);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .wrap {
    padding: 0 32px;
  }

  .hdr-inner {
    padding: 0 32px;
  }

  .hero-grid {
    padding: 48px 32px 40px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }

  .ps-arrow {
    display: none;
  }

  .process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .ps-step {
    flex: 1;
    min-width: 180px;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .sb-big {
    grid-row: unset;
  }

  .tarifs-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-left {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:768px) {
  .wrap {
    padding: 0 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 36px 20px 32px;
    gap: 24px;
  }

  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .price-card:hover {
    transform: none;
  }

  .h1-outline, .h1-fill {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .h1-accent {
    font-size: clamp(1.6rem, 7vw, 2.8rem);
  }

  .sec-services, .sec-process, .sec-ville, .sec-tarifs, .sec-avis, .sec-faq, .sec-contact, .sec-cta-final {
    padding: 64px 0;
  }

  .sec-head {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
  }

  .sec-num {
    font-size: 4rem;
  }

  .sec-num.white {
    font-size: 4rem;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .avis-track {
    grid-template-columns: 1fr;
  }

  .avis-header {
    flex-direction: column;
    gap: 16px;
  }

  .ville-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ps-step {
    text-align: left;
  }

  .ps-bubble {
    margin: 0 0 12px 0;
  }

  .ps-body p {
    max-width: none;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .contact-layout {
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ctaf-content h2 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .ctaf-actions {
    flex-direction: column;
    align-items: center;
  }

  .avis-header {
    align-items: flex-start;
  }

  .avis-score {
    flex-wrap: wrap;
  }
}

@media (max-width:480px) {
  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .cta-main, .cta-sec {
    justify-content: center;
    text-align: center;
  }

  .hero-tags {
    gap: 8px;
  }

  .tarifs-guarantees {
    flex-direction: column;
  }

  .cf-actions {
    flex-direction: column;
  }

  .cta-submit, .cta-tel-alt {
    justify-content: center;
    text-align: center;
  }
}

/* ===== legal.css — partagé par mentions-legales, confidentialite, cgu ===== */

:root {
  --lime: #B5F23D;
  --lime-dk: #8DC41E;
  --rose: #FF3D9A;
  --ink: #0A0F1E;
  --ink2: #1A2340;
  --muted: #6B7899;
  --border: #E8EAF0;
  --bg: #FFFFFF;
  --bg-off: #F7F8FC;
  --warn-bg: #FFFBEA;
  --warn-border: #F59E0B;
  --info-bg: rgba(181, 242, 61, .08);
  --info-border: var(--lime-dk);
  --ff-disp: 'Bebas Neue', Impact, sans-serif;
  --ff-body: 'Outfit', system-ui, sans-serif;
  --w: 1200px;
  --r: 12px;
}

/* ===== HERO ===== */
.legal-hero {
  background: var(--ink);
  padding: 120px 48px 64px;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      rgba(181, 242, 61, .03) 0, rgba(181, 242, 61, .03) 1px,
      transparent 1px, transparent 40px);
  pointer-events: none;
}

.legal-hero-inner {
  max-width: var(--w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.legal-breadcrumb a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s;
}

.legal-breadcrumb a:hover {
  color: var(--lime);
}

.legal-breadcrumb span {
  color: var(--lime);
}

/* Tag */
.legal-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--lime);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* Title */
.legal-title {
  font-family: var(--ff-disp);
  font-size: clamp(2.8rem, 7vw, 6rem);
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.legal-title i {
  font-style: normal;
  color: var(--lime);
}

/* Meta */
.legal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

/* ===== BODY ===== */
.legal-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 48px 100px;
  font-family: var(--ff-body);
}

/* Table des matières */
.legal-toc {
  background: var(--bg-off);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-bottom: 56px;
}

.legal-toc p {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.legal-toc ol li {
  counter-increment: toc;
  font-size: .84rem;
}

.legal-toc ol li::before {
  content: counter(toc, decimal-leading-zero) '. ';
  font-weight: 700;
  color: var(--lime-dk);
  margin-right: 4px;
}

.legal-toc a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.legal-toc a:hover {
  color: var(--lime-dk);
}

/* Sections */
.legal-section {
  margin-bottom: 52px;
  scroll-margin-top: 86px;
}

.legal-section-title {
  font-family: var(--ff-disp);
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-section-title::before {
  content: attr(data-n);
  font-size: .72rem;
  font-weight: 700;
  background: var(--lime);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.legal-section p {
  font-size: .9rem;
  color: #3a4356;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--lime-dk);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--rose);
}

.legal-section ul {
  list-style: none;
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section ul li {
  font-size: .88rem;
  color: #3a4356;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

/* Encarts */
.legal-warn {
  background: var(--warn-bg);
  border-left: 4px solid var(--warn-border);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 18px;
  font-size: .85rem;
  color: #92400e;
  line-height: 1.7;
  margin: 16px 0;
}

.legal-info {
  background: var(--info-bg);
  border-left: 4px solid var(--info-border);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 18px;
  font-size: .85rem;
  color: var(--ink2);
  line-height: 1.7;
  margin: 16px 0;
}

.legal-info a, .legal-warn a {
  font-weight: 700;
}

/* Carte contact bas de page */
.legal-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--ink);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 56px;
}

.lcc-ico {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
}

.lcc-title {
  font-family: var(--ff-disp);
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.lcc-body {
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
  margin-bottom: 14px;
}

.lcc-body a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
}

.lcc-body a:hover {
  text-decoration: underline;
}

.lcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--ff-disp);
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.lcc-btn:hover {
  background: var(--lime-dk);
  transform: translateY(-1px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .legal-hero {
    padding: 100px 20px 48px;
  }

  .legal-body {
    padding: 40px 20px 72px;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-contact-card {
    flex-direction: column;
    gap: 14px;
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .legal-title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .legal-section-title {
    font-size: 1.4rem;
  }
}