/* ClimUrgence — style.css — Redesign 2026 */
/* Fonts : Syne (titres 700/800) + DM Sans (corps 300/400/500) via <link> dans HTML */

/* ─────────────────────────────────────────────
   VARIABLES
───────────────────────────────────────────── */
:root {
  --blue:        #1A7EC8;
  --blue-dark:   #1565A0;
  --orange:      #E8521A;
  --orange-dark: #CC4514;
  --text:        #3D3D3D;
  --text-muted:  #6B7280;
  --white:       #FFFFFF;
  --bg:          #F5F7FA;
  --bg-dark:     #0D1B2A;
  --nav-h:       72px;
  --cta-h:       60px;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
  --max-w:       1140px;
  --ease:        .2s ease;
}

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: var(--cta-h);
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─────────────────────────────────────────────
   TYPOGRAPHIE
───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-weight: 400; /* Bebas Neue n'a qu'un seul weight */
  line-height: 1.1;
  letter-spacing: .03em;
  color: inherit;
}

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─────────────────────────────────────────────
   SKIP LINK
───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: .5rem 1rem;
  background: var(--blue);
  color: #fff;
  font-size: .875rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-sm);
  z-index: 200;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 44px;
  /* Sur fond sombre le logo original reste lisible — pas de filtre */
}

/* Navigation principale */
.main-nav { display: none; }

@media (min-width: 900px) {
  .main-nav {
    display: flex;
    align-items: center;
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    gap: .125rem;
  }
  .main-nav a {
    display: block;
    padding: .375rem .7rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: background var(--ease), color var(--ease);
  }
  .main-nav a:hover,
  .main-nav a.active,
  .main-nav a[aria-current="page"] {
    background: var(--bg);
    color: var(--blue);
  }
}

/* Nav mobile ouverte */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: .75rem 1.25rem 1.25rem;
  box-shadow: var(--shadow);
  z-index: 199;
}
.main-nav.open ul {
  display: flex;
  flex-direction: column;
  gap: .125rem;
  width: 100%;
}
.main-nav.open a {
  display: block;
  padding: .625rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}
.main-nav.open a:hover,
.main-nav.open a[aria-current="page"] {
  background: var(--bg);
  color: var(--blue);
}

/* Actions header */
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

/* Bouton hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,.12);
  transition: background var(--ease);
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.125rem;
  background: var(--orange);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.header-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (min-width: 560px) { .header-cta { display: flex; } }

/* ─────────────────────────────────────────────
   BOUTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-secondary:hover { background: var(--bg); border-color: var(--bg); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-lg { padding: .9rem 2rem; font-size: 1rem; }

/* ─────────────────────────────────────────────
   HERO (page d'accueil)
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,126,200,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,126,200,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 650px; height: 650px;
  background: radial-gradient(circle at 30% 40%, rgba(26,126,200,.16) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  background: rgba(232,82,26,.15);
  border: 1px solid rgba(232,82,26,.35);
  color: #FF9A70;
  font-size: .75rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-badge svg { width: 13px; height: 13px; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.hero h1 em { font-style: normal; color: var(--orange); }

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-lead strong { color: var(--white); font-weight: 500; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 2.75rem;
}

.answer-capsule {
  display: inline-block;
  max-width: 600px;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.answer-capsule p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.answer-capsule strong { color: var(--white); }

/* ─────────────────────────────────────────────
   BANDEAU URGENCE (orange)
───────────────────────────────────────────── */
.urgency-strip {
  background: var(--orange);
  padding: .875rem 0;
}
.urgency-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .375rem 2rem;
}
.urgency-strip-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-weight: 600;
  font-size: .875rem;
  white-space: nowrap;
}
.urgency-strip-item svg { width: 17px; height: 17px; flex-shrink: 0; }
.urgency-strip-sep {
  color: rgba(255,255,255,.4);
  font-size: 1.25rem;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   BARRE DE CONFIANCE
───────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: .875rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .825rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

/* ─────────────────────────────────────────────
   SECTIONS GÉNÉRIQUES
───────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--bg    { background: var(--bg); }
.section--white { background: var(--white); }
.section--dark  { background: var(--bg-dark); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: .725rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .625rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #111827;
  margin-bottom: .625rem;
  letter-spacing: .04em;
}
.section--dark .section-title { color: var(--white); }
.section-sub {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   CARDS SERVICES
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #EBF4FC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.service-card-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}
.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--blue);
  margin-top: .125rem;
  transition: gap var(--ease);
}
.card-link:hover { gap: .625rem; }
.card-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   SECTION POURQUOI NOUS CHOISIR
───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.05);
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EBF4FC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--blue);
}
.why-icon svg { width: 24px; height: 24px; }
.why-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--blue);
  line-height: 1;
  margin-bottom: .375rem;
}
.why-label {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   ZONES D'INTERVENTION
───────────────────────────────────────────── */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
}

.zone-dept {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.05);
}
.zone-dept h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--bg);
}
.zone-dept ul { display: flex; flex-direction: column; }
.zone-dept li {
  font-size: .875rem;
  color: var(--text-muted);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.zone-dept li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  opacity: .35;
  flex-shrink: 0;
}
.zone-dept li:last-child { border-bottom: none; }

/* ─────────────────────────────────────────────
   FORMULAIRE DEVIS
───────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,.05);
}
@media (max-width: 540px) { .form-card { padding: 1.75rem 1.25rem; } }

.form-card h2 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: .375rem;
}
.form-card > p {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 500px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .8rem;
  font-weight: 500;
  color: #374151;
  letter-spacing: .01em;
}
.req { color: var(--orange); margin-left: .1rem; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: .625rem .875rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #D1D5DB;
  border-radius: var(--radius-sm);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #C0C7D0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,126,200,.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-urgence {
  display: flex;
  align-items: center;
  gap: .625rem;
  cursor: pointer;
  font-size: .875rem;
  color: var(--text-muted);
}
.form-urgence input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

/* ─────────────────────────────────────────────
   FAQ ACCORDÉON
───────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.07);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.125rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: #111827;
  text-align: left;
  gap: 1rem;
  background: transparent;
  transition: background var(--ease);
}
.faq-question:hover { background: var(--bg); }
.faq-question[aria-expanded="true"] { background: var(--bg); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(26,126,200,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease, background .2s;
  color: var(--blue);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  background: var(--blue);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-answer.open { max-height: 500px; }

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer-inner p { margin-bottom: .5rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: var(--text); font-weight: 500; }
.faq-answer-inner a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ─────────────────────────────────────────────
   SECTION CTA FINAL
───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1565A0 0%, #1A7EC8 55%, #1A9BD8 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.05;
  margin-bottom: .875rem;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin: 0 auto 2rem;
  max-width: 480px;
  line-height: 1.6;
}
.cta-desc a { color: var(--white); font-weight: 600; }

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.related-links {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  max-width: 640px;
  margin: 0 auto;
}
.related-links h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .875rem;
}
.related-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.related-links li a {
  display: inline-block;
  padding: .375rem .75rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9999px;
  transition: background var(--ease), border-color var(--ease);
}
.related-links li a:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.45);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.55);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: .875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--ease);
}
.footer-phone:hover { color: var(--orange); }
.footer-phone svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col li a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--ease);
}
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ─────────────────────────────────────────────
   BOUTON MOBILE FIXE
───────────────────────────────────────────── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--cta-h);
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  z-index: 300;
  box-shadow: 0 -4px 20px rgba(232,82,26,.3);
  transition: background var(--ease);
  text-decoration: none;
}
.mobile-cta:hover { background: var(--orange-dark); }
.mobile-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* ─────────────────────────────────────────────
   PAGE HERO (pages internes)
───────────────────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
}
.page-hero .hero-badge { margin-bottom: 1.25rem; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero .hero-lead,
.page-hero .lead {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.page-hero .hero-lead strong,
.page-hero .lead strong { color: var(--white); font-weight: 500; }
.page-hero .hero-btns { display: flex; flex-wrap: wrap; gap: .875rem; }

/* ─────────────────────────────────────────────
   BREADCRUMB (pages internes)
───────────────────────────────────────────── */
.breadcrumb {
  padding: .875rem 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .375rem;
  list-style: none;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumb li + li::before { content: '/'; margin-right: .375rem; color: #D1D5DB; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ─────────────────────────────────────────────
   UTILITAIRES
───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ─────────────────────────────────────────────
   UPDATE BADGE
───────────────────────────────────────────── */
.update-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .75rem;
}
.update-badge svg { color: var(--blue); }

/* ─────────────────────────────────────────────
   CONTENT BLOCK (texte long)
───────────────────────────────────────────── */
.content-block { max-width: 760px; }
.content-block p { font-size: .9375rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.content-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .03em;
  color: #111827;
  margin: 1.5rem 0 .5rem;
}
.content-block strong { color: var(--text); font-weight: 500; }

/* ─────────────────────────────────────────────
   BOÎTES INFO / AVERTISSEMENT
───────────────────────────────────────────── */
.info-box {
  background: #EBF4FC;
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .875rem 1.125rem;
  font-size: .875rem;
  color: #1a3a5c;
  line-height: 1.6;
}
.warning-box {
  background: #FFF7ED;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .875rem 1.125rem;
  font-size: .875rem;
  color: #7c2d12;
  line-height: 1.6;
}
.info-box strong, .warning-box strong { font-weight: 600; }

/* ─────────────────────────────────────────────
   TABLEAU
───────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  background: var(--white);
}
.table-wrapper th {
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .06em;
  font-weight: 400;
  padding: .75rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.table-wrapper td {
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
  color: var(--text-muted);
  vertical-align: top;
}
.table-wrapper tr:last-child td { border-bottom: none; }
.table-wrapper tr:hover td { background: var(--bg); }
.table-wrapper td strong { color: var(--text); font-weight: 500; }

/* ─────────────────────────────────────────────
   ÉTAPES (processus)
───────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 1.25rem; }
.step-item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content { flex: 1; }
.step-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: .25rem;
}
.step-content p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-content strong { color: var(--text); font-weight: 500; }

/* ─────────────────────────────────────────────
   PLANS (contrats pro)
───────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .plans-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .plans-grid { grid-template-columns: repeat(3,1fr); } }

.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue), var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: #111827;
}
.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: var(--blue);
  letter-spacing: .03em;
  line-height: 1;
}
.plan-period { font-size: .78rem; color: var(--text-muted); margin-bottom: .75rem; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.plan-features li {
  font-size: .875rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

