/* ===================================================
   SERRURIER VINCENNES 94300
   Design: CyberWebMarketing 2026
   Direction artistique: Editorial lumineux, Syne + DM Sans
   =================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ===== VARIABLES ===== */
:root {
  /* Palette principale */
  --blanc:       #FAFAF7;
  --creme:       #F2EDE6;
  --creme-dark:  #EAE3D8;
  --corail:      #D4547A;
  --corail-light:#FDE8F0;
  --teal:        #2A7A6F;
  --teal-light:  #E0F2EF;
  --soleil:      #F5A623;
  --soleil-light:#FEF3DC;
  --encre:       #1A2332;
  --encre-soft:  #4A5568;
  --encre-muted: #8898AA;

  /* Typographie */
  --ff-head: 'Syne', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  /* Espacements */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-xxl: 120px;

  /* Border-radius */
  --rad-sm:  8px;
  --rad-md:  16px;
  --rad-lg:  24px;
  --rad-xl:  32px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(26,35,50,.07);
  --shadow-md: 0 8px 24px rgba(26,35,50,.10);
  --shadow-lg: 0 16px 48px rgba(26,35,50,.12);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

body {
  font-family: var(--ff-body);
  background: var(--blanc);
  color: var(--encre);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; background: none; border: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--encre);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

h2 em, h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 700;
}

p {
  font-size: .96rem;
  line-height: 1.75;
  color: var(--encre-soft);
}

strong { color: var(--encre); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.eyebrow--light {
  color: var(--corail);
  background: var(--corail-light);
}

/* ===== CONTENEUR ===== */
.w, .urgence-inner, .header-inner,
.intro-wrap, .situation-wrap, .services-wrap,
.process-wrap, .vincennes-wrap, .avis-wrap,
.faq-wrap, .contact-wrap, .ctaf-wrap, .footer-wrap {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal], [data-reveal-r] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal-r] {
  transform: translateY(28px) translateX(20px);
}
[data-reveal].in, [data-reveal-r].in {
  opacity: 1;
  transform: none;
}

/* ===== BARRE URGENCE ===== */
.urgence-bar {
  background: var(--teal);
  padding: 8px 0;
  position: relative;
  z-index: 100;
}
.urgence-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.urgence-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7FFFD4;
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.urgence-text {
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.urgence-text strong { color: #fff; }
.urgence-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.18);
  padding: 4px 12px;
  border-radius: 20px;
  transition: background .2s;
}
.urgence-tel:hover { background: rgba(255,255,255,.28); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--blanc);
  border-bottom: 1.5px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.scrolled {
  border-color: var(--creme-dark);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--encre);
  flex-shrink: 0;
}
.logo em {
  font-style: italic;
  color: var(--teal);
  margin-left: 4px;
}
.logo-icon {
  color: var(--teal);
  display: flex;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--ff-head);
  font-size: .84rem;
  font-weight: 500;
  color: var(--encre-soft);
  padding: 6px 12px;
  border-radius: var(--rad-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--encre); background: var(--creme); }

.nav-link--call {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  background: var(--teal-light);
  font-weight: 600;
  border-radius: 20px;
  margin-left: 8px;
}
.nav-link--call:hover { background: var(--teal); color: #fff; }

/* Bouton appel header */
.btn-appel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-head);
  font-size: .84rem;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  padding: 9px 18px;
  border-radius: 20px;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.btn-appel:hover { background: #236860; transform: scale(1.03); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--encre);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
  transform-origin: center;
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== SECTION INTRO ===== */
.sec-intro {
  background: var(--blanc);
  padding-top: var(--space-xl);
  overflow: hidden;
}
.intro-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: var(--space-xl);
}
.intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--encre-soft);
  background: var(--creme);
  border: 1.5px solid var(--creme-dark);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-green 2s ease-in-out infinite;
}
.intro-h1 { margin-bottom: 20px; }
.h1-accent {
  color: var(--corail);
  display: inline-block;
  position: relative;
}
.h1-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--soleil);
  opacity: .35;
  border-radius: 3px;
  z-index: -1;
}
.intro-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--encre-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.intro-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-urgence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: .96rem;
  font-weight: 700;
  color: #fff;
  background: var(--corail);
  padding: 14px 28px;
  border-radius: var(--rad-lg);
  transition: transform .2s var(--ease-spring), box-shadow .2s;
  box-shadow: 0 4px 16px rgba(212,84,122,.3);
}
.cta-urgence:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212,84,122,.4);
}
.cta-decouvrir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--encre-soft);
  padding: 12px 20px;
  border-radius: var(--rad-lg);
  border: 1.5px solid var(--creme-dark);
  transition: border-color .2s, color .2s;
}
.cta-decouvrir:hover { border-color: var(--teal); color: var(--teal); }

/* Card stack intro */
.intro-right { position: relative; }
.intro-card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 20px;
}
.icard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--rad-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.icard:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.icard--1 { transform: translateX(0); }
.icard--2 { transform: translateX(16px); }
.icard--3 { transform: translateX(8px); }
.icard-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--teal-light);
  color: var(--teal);
}
.icard--2 .icard-icon { background: var(--corail-light); color: var(--corail); }
.icard--3 .icard-icon { background: var(--soleil-light); color: var(--soleil); }
.icard-label {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 2px;
  line-height: 1.2;
}
.icard-sub {
  font-size: .78rem;
  color: var(--encre-muted);
  line-height: 1.3;
}

/* Ruban défilant */
.ruban {
  background: var(--encre);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ruban-track {
  display: inline-flex;
  animation: ruban-scroll 28s linear infinite;
}
@keyframes ruban-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ruban-item {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 0 24px;
}
.ruban-sep { color: var(--corail); margin-right: 24px; }

/* ===== SECTION SITUATION ===== */
.sec-situation {
  background: var(--creme);
  padding: var(--space-xxl) 0;
}
.situation-header {
  text-align: center;
  margin-bottom: 52px;
}
.situation-lead {
  text-align: center;
  max-width: 500px;
  margin: 12px auto 0;
  font-size: 1rem;
}
.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sit-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--rad-lg);
  padding: 28px 24px;
  text-align: left;
  cursor: pointer;
  transition: border-color .25s, transform .25s var(--ease-spring), box-shadow .25s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.sit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.sit-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sit-card:hover::before { transform: scaleX(1); }
.sit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sit-icon.teal { background: var(--teal-light); color: var(--teal); }
.sit-icon.corail { background: var(--corail-light); color: var(--corail); }
.sit-icon.soleil { background: var(--soleil-light); color: var(--soleil); }
.sit-icon.neutre { background: var(--creme); color: var(--encre-soft); }
.sit-title {
  font-family: var(--ff-head);
  font-size: .96rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 4px;
  line-height: 1.3;
}
.sit-sub {
  font-size: .8rem;
  color: var(--encre-muted);
  line-height: 1.4;
}
.sit-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.1rem;
  color: var(--encre-muted);
  transition: transform .2s var(--ease-spring), color .2s;
}
.sit-card:hover .sit-arrow { transform: translateX(4px); color: var(--teal); }
.sit-card--autre { border-style: dashed; border-color: var(--creme-dark); }
.sit-card--autre::before { background: var(--corail); }
.sit-card--autre:hover { border-color: var(--corail); border-style: solid; }

/* ===== SECTION SERVICES ===== */
.sec-services {
  background: var(--blanc);
  padding: var(--space-xxl) 0;
}
.services-header {
  max-width: 680px;
  margin-bottom: 56px;
}
.services-lead {
  margin-top: 16px;
  font-size: 1rem;
  max-width: 520px;
}
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.srv {
  background: var(--blanc);
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--rad-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.srv:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.srv--accent { background: var(--teal); border-color: var(--teal); }
.srv--accent h3, .srv--accent p { color: rgba(255,255,255,.9); }
.srv--accent h3 strong { color: #fff; }
.srv--accent .srv-num { color: rgba(255,255,255,.4); }
.srv--accent .srv-price { color: #fff; background: rgba(255,255,255,.15); }
.srv--accent .srv-cta { color: #fff; border-color: rgba(255,255,255,.4); }
.srv--accent .srv-cta:hover { background: rgba(255,255,255,.15); }
.srv--creme { background: var(--creme); border-color: var(--creme-dark); }
.srv--teal { background: #1D5E55; border-color: #1D5E55; }
.srv--teal h3, .srv--teal p { color: rgba(255,255,255,.9); }
.srv--teal h3 strong { color: #fff; }
.srv--teal .srv-num { color: rgba(255,255,255,.35); }
.srv--teal .srv-price { color: #fff; background: rgba(255,255,255,.12); }
.srv--teal .srv-cta { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.3); }
.srv--teal .srv-cta:hover { background: rgba(255,255,255,.12); }
.srv-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.srv-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--creme-dark);
  line-height: 1;
}
.srv-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-ico.teal { background: var(--teal-light); color: var(--teal); }
.srv-ico.corail { background: var(--corail-light); color: var(--corail); }
.srv-ico.soleil { background: var(--soleil-light); color: var(--soleil); }
.srv-ico.blanc { background: rgba(255,255,255,.2); color: #fff; }
.srv h3 { font-size: 1.1rem; margin-bottom: 10px; }
.srv p { font-size: .87rem; line-height: 1.72; flex: 1; }
.srv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1.5px solid rgba(0,0,0,.06);
}
.srv--accent .srv-footer, .srv--teal .srv-footer { border-color: rgba(255,255,255,.12); }
.srv-price {
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 20px;
}
.srv-cta {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--encre-soft);
  border: 1.5px solid var(--creme-dark);
  padding: 5px 14px;
  border-radius: 20px;
  transition: background .2s, color .2s;
}
.srv-cta:hover { background: var(--creme); color: var(--encre); }

/* ===== SECTION PROCESS ===== */
.sec-process {
  background: var(--creme);
  padding: var(--space-xxl) 0;
}
.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 8px, transparent 8px, transparent 18px);
}
.pstep {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.pstep-num {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--encre-muted);
  margin-bottom: 12px;
}
.pstep-line { display: none; }
.pstep-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blanc);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: background .3s, color .3s, transform .3s var(--ease-spring);
}
.pstep:hover .pstep-ico {
  background: var(--teal);
  color: #fff;
  transform: scale(1.1);
}
.pstep h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--encre);
}
.pstep p { font-size: .84rem; }

/* ===== SECTION VINCENNES ===== */
.sec-vincennes {
  background: var(--encre);
  padding: var(--space-xxl) 0;
}
.vincennes-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vincennes-text h2 { color: #fff; }
.vincennes-text h2 em { color: var(--soleil); }
.vincennes-text .eyebrow { color: var(--soleil); background: rgba(245,166,35,.15); }
.vincennes-text p { color: rgba(255,255,255,.7); margin-bottom: 16px; }
.vincennes-text strong { color: rgba(255,255,255,.9); }
.cta-vincennes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--encre);
  background: var(--soleil);
  padding: 12px 24px;
  border-radius: 20px;
  margin-top: 8px;
  transition: transform .2s var(--ease-spring), box-shadow .2s;
  box-shadow: 0 4px 14px rgba(245,166,35,.3);
}
.cta-vincennes:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,.4); }

.zones-title {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.zone-list { display: flex; flex-direction: column; gap: 14px; }
.zone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border-radius: var(--rad-md);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.zone:hover { background: rgba(255,255,255,.08); }
.zone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.zone-dot.teal { background: var(--teal); box-shadow: 0 0 0 3px rgba(42,122,111,.3); }
.zone-dot.corail { background: var(--corail); box-shadow: 0 0 0 3px rgba(212,84,122,.3); }
.zone-dot.soleil { background: var(--soleil); box-shadow: 0 0 0 3px rgba(245,166,35,.3); }
.zone > div strong { display: block; font-family: var(--ff-head); font-size: .9rem; color: rgba(255,255,255,.9); margin-bottom: 2px; }
.zone > div span { font-size: .78rem; color: rgba(255,255,255,.5); }
.zones-note {
  margin-top: 20px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

/* ===== SECTION AVIS ===== */
.sec-avis {
  background: var(--blanc);
  padding: var(--space-xxl) 0;
}
.avis-header {
  margin-bottom: 52px;
}
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.avis-card {
  background: var(--blanc);
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--rad-xl);
  padding: 28px;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.avis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.avis-card--featured {
  background: var(--corail-light);
  border-color: var(--corail);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.avis-card--featured:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.avis-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.avis-stars {
  display: flex;
  gap: 2px;
  color: var(--soleil);
}
.avis-tag {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.avis-tag.teal { background: var(--teal-light); color: var(--teal); }
.avis-tag.corail { background: rgba(212,84,122,.15); color: var(--corail); }
.avis-tag.soleil { background: var(--soleil-light); color: #9A6500; }
.avis-quote {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--encre-soft);
  margin-bottom: 20px;
  font-style: italic;
}
.avis-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avis-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.av-name {
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 1px;
  line-height: 1.2;
}
.av-loc { font-size: .76rem; color: var(--encre-muted); }

/* ===== SECTION FAQ ===== */
.sec-faq {
  background: var(--creme);
  padding: var(--space-xxl) 0;
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-lead { margin: 16px 0 24px; font-size: .95rem; }
.cta-faq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: .86rem;
  font-weight: 600;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 10px 20px;
  border-radius: 20px;
  transition: background .2s, color .2s;
}
.cta-faq:hover { background: var(--teal); color: #fff; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--blanc);
  border-radius: var(--rad-md);
  overflow: hidden;
  border: 1.5px solid var(--creme-dark);
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--teal); box-shadow: 0 4px 16px rgba(42,122,111,.1); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--ff-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--encre);
  transition: color .2s;
}
.faq-btn:hover { color: var(--teal); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--encre-muted);
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-ans {
  height: 0;
  overflow: hidden;
  transition: height .35s var(--ease);
}
.faq-ans p {
  padding: 0 22px 20px;
  font-size: .87rem;
  line-height: 1.75;
}

/* ===== SECTION CONTACT ===== */
.sec-contact {
  background: var(--blanc);
  padding: var(--space-xxl) 0;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-aside h2 em { color: var(--corail); }
.contact-aside p { margin: 12px 0 28px; font-size: .95rem; }
.contact-phone-block {
  background: var(--encre);
  border-radius: var(--rad-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.cpb-label {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.cpb-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--soleil);
  line-height: 1.1;
  margin-bottom: 6px;
  transition: color .2s;
}
.cpb-num:hover { color: #FFD080; }
.cpb-avail {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.map-note { font-size: .76rem; color: var(--encre-muted); margin-top: 8px; }

/* Formulaire */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--encre-soft);
  letter-spacing: .02em;
}
.finput-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.finput-ico {
  position: absolute;
  left: 14px;
  color: var(--encre-muted);
  pointer-events: none;
  z-index: 1;
}
.finput-wrap input,
.finput-wrap select {
  width: 100%;
  background: var(--blanc);
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--rad-sm);
  padding: 12px 14px 12px 36px;
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--encre);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.finput-wrap input[readonly] {
  background: var(--creme);
  color: var(--encre-soft);
  padding-left: 14px;
}
.finput-wrap input:focus,
.finput-wrap select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,122,111,.12);
}
.finput-wrap input::placeholder { color: var(--encre-muted); }
.select-wrap .finput-ico { left: 14px; }
.select-wrap select { padding-left: 36px; padding-right: 36px; cursor: pointer; }
.select-chevron {
  position: absolute;
  right: 12px;
  color: var(--encre-muted);
  pointer-events: none;
}
.contact-form textarea {
  width: 100%;
  background: var(--blanc);
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--rad-sm);
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--encre);
  resize: vertical;
  min-height: 100px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  line-height: 1.6;
}
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,122,111,.12);
}
.contact-form textarea::placeholder { color: var(--encre-muted); }
.field-hint { font-size: .76rem; color: var(--encre-muted); }
.field-hint.err { color: var(--corail); }

/* Adresse autocomplete */
.addr-field { flex-wrap: wrap; }
.addr-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--teal);
  border-radius: var(--rad-sm);
  list-style: none;
  z-index: 50;
  box-shadow: var(--shadow-md);
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.addr-suggestions.open { display: block; }
.addr-suggestions li {
  padding: 10px 14px;
  font-size: .85rem;
  cursor: pointer;
  transition: background .15s;
  color: var(--encre);
}
.addr-suggestions li:hover,
.addr-suggestions li.active { background: var(--teal-light); color: var(--teal); }

/* RGPD */
.rgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.rgpd-label input { display: none; }
.rgpd-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--creme-dark);
  border-radius: 4px;
  transition: background .2s, border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.rgpd-label input:checked + .rgpd-box {
  background: var(--teal);
  border-color: var(--teal);
}
.rgpd-label input:checked + .rgpd-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.rgpd-label span:last-child { font-size: .8rem; color: var(--encre-muted); line-height: 1.5; }

/* Boutons formulaire */
.form-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  padding: 13px 28px;
  border-radius: var(--rad-lg);
  transition: background .2s, transform .2s var(--ease-spring);
  cursor: pointer;
  border: none;
}
.btn-submit:hover { background: #236860; transform: scale(1.02); }
.btn-submit:disabled { opacity: .6; cursor: wait; }
.btn-urgence-form {
  font-family: var(--ff-head);
  font-size: .86rem;
  font-weight: 600;
  color: var(--corail);
  border: 2px solid var(--corail);
  padding: 11px 22px;
  border-radius: var(--rad-lg);
  transition: background .2s, color .2s;
}
.btn-urgence-form:hover { background: var(--corail); color: #fff; }
.form-feedback {
  font-size: .84rem;
  padding: 10px 14px;
  border-radius: var(--rad-sm);
}
.form-feedback:not(:empty) { background: var(--teal-light); color: var(--teal); }
.form-feedback.err:not(:empty) { background: var(--corail-light); color: var(--corail); }

/* ===== SECTION CTA FINAL ===== */
.sec-cta-final {
  background: var(--corail);
  padding: var(--space-xl) 0;
}
.ctaf-wrap { text-align: center; }
.ctaf-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}
.ctaf-wrap h2 { color: #fff; margin-bottom: 12px; font-size: clamp(2.4rem, 5vw, 3.5rem); }
.ctaf-wrap h2 em { color: var(--soleil); font-style: italic; }
.ctaf-wrap p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 36px; }
.ctaf-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.ctaf-btn-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--corail);
  background: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  transition: transform .2s var(--ease-spring), box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.ctaf-btn-main:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.ctaf-btn-sec {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  border: 2px solid rgba(255,255,255,.5);
  padding: 14px 28px;
  border-radius: 50px;
  transition: background .2s, border-color .2s;
}
.ctaf-btn-sec:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); }

/* ===== FOOTER ===== */
.footer {
  background: var(--encre);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-logo { color: rgba(255,255,255,.9); }
.footer-logo em { color: var(--teal); }
.footer-logo .logo-icon { color: var(--teal); }
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .83rem;
  margin: 14px 0 16px;
  line-height: 1.7;
}
.footer-brand strong { color: rgba(255,255,255,.65); }
.footer-tel {
  display: inline-flex;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--soleil);
  transition: color .2s;
}
.footer-tel:hover { color: #FFD080; }
.footer-col h4 {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-legal { display: flex; gap: 20px; }

/* ===== BOUTONS FLOTTANTS ===== */
.float-zone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 80;
}
.float-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blanc);
  border: 1.5px solid var(--creme-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--encre-soft);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .2s;
  cursor: pointer;
}
.float-top.visible { opacity: 1; transform: translateY(0); }
.float-top:hover { background: var(--creme); }
.float-call {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--corail);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,84,122,.4);
  transition: transform .2s var(--ease-spring), box-shadow .2s;
  animation: float-ring 4s ease-in-out infinite;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(212,84,122,.5); }
@keyframes float-ring {
  0%, 100% { transform: scale(1); }
  5% { transform: scale(1.08) rotate(-5deg); }
  10% { transform: scale(1.08) rotate(5deg); }
  15% { transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-mosaic { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 100vw);
    height: 100dvh;
    background: var(--blanc);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -4px 0 32px rgba(0,0,0,.12);
    z-index: 85;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 10px 14px; width: 100%; border-radius: var(--rad-md); }
  .nav-link--call { margin-left: 0; margin-top: 8px; justify-content: center; }
  .burger { display: flex; }
  .btn-appel { display: none; }
  .intro-wrap { grid-template-columns: 1fr; gap: 40px; }
  .intro-right { display: none; }
  .situation-grid { grid-template-columns: repeat(2, 1fr); }
  .vincennes-wrap { grid-template-columns: 1fr; gap: 48px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 60px;
    --space-xxl: 80px;
  }
  .situation-grid { grid-template-columns: 1fr; }
  .services-mosaic { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .avis-card--featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .urgence-inner { flex-direction: column; gap: 6px; text-align: center; }
  .intro-ctas { flex-direction: column; align-items: flex-start; }
  .ctaf-ctas { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===================================================
   SERRURIER VINCENNES 94300 — PAGES LÉGALES
   CSS partagé : mentions-legales / confidentialite / cgu
   CyberWebMarketing 2026
   =================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ===== VARIABLES (identiques au site principal) ===== */
:root {
  --blanc:       #FAFAF7;
  --creme:       #F2EDE6;
  --creme-dark:  #EAE3D8;
  --corail:      #D4547A;
  --corail-light:#FDE8F0;
  --teal:        #2A7A6F;
  --teal-light:  #E0F2EF;
  --teal-dk:     #1D5E55;
  --soleil:      #F5A623;
  --soleil-light:#FEF3DC;
  --encre:       #1A2332;
  --encre-soft:  #4A5568;
  --encre-muted: #8898AA;
  --ff-head:     'Syne', sans-serif;
  --ff-body:     'DM Sans', sans-serif;
  --rad-sm:  8px;
  --rad-md:  16px;
  --rad-lg:  24px;
  --shadow-sm: 0 2px 8px rgba(26,35,50,.07);
  --shadow-md: 0 8px 24px rgba(26,35,50,.10);
  --ease: cubic-bezier(.25,.46,.45,.94);
}

body {
  font-family: var(--ff-body);
  background: var(--blanc);
  color: var(--encre);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { cursor: pointer; font: inherit; background: none; border: none; }

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3 {
  font-family: var(--ff-head);
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--encre);
}
p { color: var(--encre-soft); font-size: .94rem; line-height: 1.8; }
p + p { margin-top: 14px; }
strong { color: var(--encre); font-weight: 600; }
a { transition: color .2s; }

/* ===== CONTENEUR ===== */
.legal-container { width: min(1100px, 100% - 40px); margin-inline: auto; }

/* ===================================================
   HERO LÉGAL — BANDE D'INTRO
   =================================================== */
.legal-hero {
  background: var(--encre);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}

/* Motif de fond décoratif */
.legal-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,122,111,.18) 0%, transparent 70%);
  pointer-events: none;
}
.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,84,122,.12) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero-inner { position: relative; z-index: 1; }

/* Fil d'Ariane */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.legal-breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.legal-breadcrumb a:hover { color: var(--teal); }
.legal-breadcrumb svg { color: rgba(255,255,255,.3); }
.legal-breadcrumb span { color: rgba(255,255,255,.7); }

/* Tag coloré */
.legal-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42,122,111,.2);
  border: 1px solid rgba(42,122,111,.35);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.legal-tag--corail {
  color: var(--corail);
  background: rgba(212,84,122,.15);
  border-color: rgba(212,84,122,.3);
}
.legal-tag--soleil {
  color: var(--soleil);
  background: rgba(245,166,35,.12);
  border-color: rgba(245,166,35,.3);
}

/* Titre */
.legal-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.legal-title em {
  font-style: italic;
  color: var(--teal);
  font-weight: 700;
}

/* Méta (date, conformité…) */
.legal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-head);
  font-size: .76rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
}
.legal-meta svg { flex-shrink: 0; }

/* ===================================================
   CORPS DE PAGE LÉGALE
   =================================================== */
.legal-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
  width: min(1100px, 100% - 40px);
  margin-inline: auto;
  padding: 72px 0 96px;
}

/* ===== TABLE DES MATIÈRES (STICKY) ===== */
.legal-toc {
  position: sticky;
  top: 80px;
  background: var(--creme);
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--rad-lg);
  padding: 24px 22px;
}
.legal-toc > p {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--encre-muted);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--rad-sm);
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 500;
  color: var(--encre-soft);
  transition: background .15s, color .15s;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: .65rem;
  font-weight: 700;
  color: var(--encre-muted);
  flex-shrink: 0;
}
.legal-toc a:hover,
.legal-toc a.active {
  background: var(--blanc);
  color: var(--teal);
}
.legal-toc a.active::before { color: var(--teal); }

/* ===== CONTENU LÉGAL ===== */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ===== SECTION ===== */
.legal-section {
  scroll-margin-top: 90px;
}

.legal-section-title {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--creme-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-section-title::before {
  content: attr(data-n);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
  background: var(--teal);
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
  line-height: 1.6;
}

/* Listes dans les sections légales */
.legal-section ul,
.legal-section ol {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-section ul li,
.legal-section ol li {
  padding: 12px 16px 12px 44px;
  background: var(--creme);
  border-radius: var(--rad-sm);
  font-size: .88rem;
  color: var(--encre-soft);
  line-height: 1.65;
  position: relative;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.legal-section ol { counter-reset: ol-cnt; }
.legal-section ol li { counter-increment: ol-cnt; }
.legal-section ol li::before {
  content: counter(ol-cnt);
  position: absolute;
  left: 14px;
  top: 12px;
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 20px;
  transform: none;
}
.legal-section li strong { color: var(--encre); }
.legal-section a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--teal-dk); }

/* Encadrés info / avertissement */
.legal-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: var(--rad-md);
  padding: 18px 20px;
  margin: 20px 0;
}
.legal-box--info {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
}
.legal-box--warn {
  background: var(--soleil-light);
  border-left: 4px solid var(--soleil);
}
.legal-box--alert {
  background: var(--corail-light);
  border-left: 4px solid var(--corail);
}
.legal-box__ico {
  flex-shrink: 0;
  margin-top: 1px;
}
.legal-box--info .legal-box__ico { color: var(--teal); }
.legal-box--warn .legal-box__ico { color: #9A6500; }
.legal-box--alert .legal-box__ico { color: var(--corail); }
.legal-box p {
  font-size: .87rem;
  line-height: 1.7;
  margin: 0;
}
.legal-box--info p { color: var(--teal-dk); }
.legal-box--warn p { color: #6B4600; }
.legal-box--alert p { color: #9B2347; }
.legal-box a { color: inherit; font-weight: 600; }

/* Card de contact en bas de page */
.legal-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--encre);
  border-radius: var(--rad-lg);
  padding: 32px;
  margin-top: 16px;
}
.lcc-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--rad-sm);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.lcc-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.lcc-body {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  line-height: 1.7;
}
.lcc-body a { color: var(--soleil); text-decoration: underline; text-underline-offset: 3px; }
.lcc-body a:hover { color: #FFD080; }
.lcc-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--encre);
  background: var(--soleil);
  padding: 9px 20px;
  border-radius: 20px;
  transition: background .2s, transform .2s;
}
.lcc-btn:hover { background: #E09510; transform: translateY(-1px); }
.lcc-btn-sec {
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px;
  border-radius: 20px;
  transition: color .2s, border-color .2s;
}
.lcc-btn-sec:hover { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .legal-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 72px;
  }
  .legal-toc { position: static; }
  .legal-toc ol { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .legal-toc a { padding: 5px 10px; font-size: .74rem; }
}

@media (max-width: 600px) {
  .legal-hero { padding: 44px 0 38px; }
  .legal-title { font-size: 1.8rem; }
  .legal-contact-card { flex-direction: column; padding: 24px; }
  .lcc-actions { flex-direction: column; }
}