/* ================================================================
   MARTINS TRANSPORTS — DESIGN SYSTEM v2
   Fonts : Barlow Condensed | DM Sans | Oswald
   Palette : #D40511 | #FFCC00 | #0A0A0A | #FFFFFF
   ================================================================ */

/* ── GOOGLE FONTS (chargées via <link> dans le HTML) ──
   Barlow Condensed : 400,600,700,800,900
   DM Sans          : 400,500,600,700
   Oswald           : 400,500,600,700
   ─────────────────────────────────────────────────── */

/* ── SURCHARGE VARIABLES BRIEF V3 ── */

/* ════════════════════════════════════════════════════
   1. VARIABLES CSS
════════════════════════════════════════════════════ */
:root {
  /* Palette officielle */
  --rouge:       #D40511;
  --rouge-dark:  #A8040D;
  --rouge-light: rgba(212,5,17,0.12);
  --jaune:       #FFCC00;
  --jaune-dark:  #E6B800;
  --jaune-light: rgba(255,204,0,0.15);
  --noir:        #0A0A0A;
  --gris-fonce:  #1A1A1A;
  --blanc:       #FFFFFF;
  --gris-clair:  #F5F5F5;
  --gris-bord:   #E0E0E0;
  --texte:       #1A1A1A;
  --muted:       #666666;

  /* Alias internes */
  --noir-soft:   #141414;
  --noir-border: rgba(255,255,255,0.08);
  --gris-mid:    #E0E0E0;

  /* Typographie */
  --font-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-label:   'Oswald', 'Arial Narrow', Arial, sans-serif;

  /* Espacements */
  --container:    1200px;
  --section-py:   96px;
  --section-py-sm:56px;

  /* Rayons */
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  9999px;

  /* Ombres */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow:       0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.20);
  --shadow-xl:    0 24px 64px rgba(0,0,0,0.28);

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:   0.3s var(--ease);
  --transition-fast: 0.18s var(--ease);

  /* Header height */
  --header-h:     76px;
  --header-h-mob: 64px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--blanc);
  color: var(--texte);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* Accessibilité */
:focus-visible {
  outline: 3px solid var(--jaune);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Prix sur une seule ligne — règle absolue */
.prix,
[class*="price"],
[class*="tarif"] {
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   3. TYPOGRAPHIE
════════════════════════════════════════════════════ */

/* Titres — Barlow Condensed */
h1, h2, h3, .heading {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--noir);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; }

/* Corps — DM Sans */
p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
p.lead {
  font-size: 1.15rem;
  color: var(--texte);
  line-height: 1.6;
}

/* Labels — Oswald */
.label, .eyebrow, .tag-text {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Utilitaires typographie */
.text-rouge   { color: var(--rouge); }
.text-jaune   { color: var(--jaune); }
.text-noir    { color: var(--noir); }
.text-blanc   { color: var(--blanc); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.font-heading { font-family: var(--font-heading); }
.font-label   { font-family: var(--font-label); }

/* ════════════════════════════════════════════════════
   4. LAYOUT — CONTAINER & GRID
════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm  { max-width: 780px; }
.container-lg  { max-width: 1400px; }

/* Grid utilitaire */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ════════════════════════════════════════════════════
   5. SECTIONS
════════════════════════════════════════════════════ */
.section {
  padding: var(--section-py) 0;
}
.section-sm {
  padding: var(--section-py-sm) 0;
}

/* Variantes fond */
.section-dark     { background: var(--noir); color: var(--blanc); }
.section-dark h1,
.section-dark h2,
.section-dark h3   { color: var(--blanc); }
.section-dark p    { color: rgba(255,255,255,0.70); }

.section-jaune    { background: var(--jaune); color: var(--noir); }
.section-jaune p  { color: rgba(10,10,10,0.72); }

.section-gris     { background: var(--gris-clair); }

.section-noir-soft { background: #111111; color: var(--blanc); }

/* En-tête de section */
.section-header {
  margin-bottom: 60px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin: 0 auto;
  max-width: 580px;
}

.section-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 12px;
  display: block;
}
.section-dark .section-eyebrow { color: var(--jaune); }

.section-header h2 {
  margin-bottom: 16px;
}

/* Diviseur jaune */
.divider {
  width: 52px;
  height: 4px;
  background: var(--jaune);
  border-radius: 2px;
  margin: 14px 0 0;
}
.centered .divider { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════
   6. BOUTONS
════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover   { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active  { transform: translateY(0); box-shadow: none; }

/* Jaune */
.btn-jaune   { background: var(--jaune); color: var(--noir); border-color: var(--jaune); }
.btn-jaune:hover { background: var(--jaune-dark); border-color: var(--jaune-dark); }

/* Rouge */
.btn-rouge   { background: var(--rouge); color: var(--blanc); border-color: var(--rouge); }
.btn-rouge:hover { background: var(--rouge-dark); border-color: var(--rouge-dark); }

/* Noir */
.btn-noir    { background: var(--noir); color: var(--blanc); border-color: var(--noir); }
.btn-noir:hover { background: #222; }

/* Outline blanc */
.btn-outline-blanc {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-blanc:hover { background: var(--blanc); color: var(--noir); border-color: var(--blanc); }

/* Outline noir */
.btn-outline-noir {
  background: transparent;
  color: var(--noir);
  border-color: var(--noir);
}
.btn-outline-noir:hover { background: var(--noir); color: var(--blanc); }

/* Outline jaune */
.btn-outline-jaune {
  background: transparent;
  color: var(--jaune);
  border-color: var(--jaune);
}
.btn-outline-jaune:hover { background: var(--jaune); color: var(--noir); }

/* Tailles */
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }
.btn-xl { padding: 22px 48px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ════════════════════════════════════════════════════
   7. BADGES & TAGS
════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-jaune  { background: var(--jaune); color: var(--noir); }
.badge-rouge  { background: var(--rouge); color: var(--blanc); }
.badge-noir   { background: var(--noir); color: var(--blanc); }
.badge-blanc  { background: var(--blanc); color: var(--noir); border: 1px solid var(--gris-mid); }
.badge-gris   { background: var(--gris-clair); color: var(--texte); }

/* ════════════════════════════════════════════════════
   8. CARTES
════════════════════════════════════════════════════ */
.card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-dark {
  background: #141414;
  border-color: rgba(255,255,255,0.06);
  color: var(--blanc);
}
.card-dark h3, .card-dark h4 { color: var(--blanc); }
.card-dark p { color: rgba(255,255,255,0.65); }

.card-accent {
  border-left: 4px solid var(--jaune);
}

/* Icône de carte */
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--jaune-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card-icon svg { width: 28px; height: 28px; color: var(--rouge); }

/* ════════════════════════════════════════════════════
   9. FORMULAIRES
════════════════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte);
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gris-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--texte);
  background: var(--blanc);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--jaune);
  box-shadow: 0 0 0 3px var(--jaune-light);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

.form-error {
  font-size: 0.82rem;
  color: var(--rouge);
  display: none;
}
.form-group.has-error .form-control { border-color: var(--rouge); }
.form-group.has-error .form-error { display: block; }

/* ════════════════════════════════════════════════════
   10. HEADER / NAVIGATION
════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--noir);
  border-bottom: 3px solid var(--jaune);
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
}

/* Logo — centre exact */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* Liens gauche */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-start;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--jaune);
  background: rgba(255,204,0,0.08);
}

/* CTA nav — droite */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.nav-tel {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--jaune);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-tel svg { width: 14px; height: 14px; }
.nav-tel:hover { color: var(--blanc); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.nav-burger:hover { background: rgba(255,255,255,0.08); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px 28px;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.nav-mobile.open {
  display: flex;
  max-height: 600px;
}
.nav-mobile a {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-mobile a:hover { color: var(--jaune); background: rgba(255,204,0,0.06); }
.nav-mobile .btn {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
}

/* Décalage contenu sous header fixe */
body { padding-top: var(--header-h); }

/* ════════════════════════════════════════════════════
   11. FOOTER
════════════════════════════════════════════════════ */
#footer {
  background: var(--noir);
  color: var(--blanc);
  padding: 72px 0 0;
  border-top: 3px solid var(--jaune);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Logo footer */
.footer-logo img {
  height: auto;
  width: 180px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Liens footer */
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--blanc); }

/* Contact footer */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--jaune);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--jaune); }

/* Réseaux sociaux */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.footer-social a:hover {
  background: var(--jaune);
  border-color: var(--jaune);
}
.footer-social a:hover svg { color: var(--noir); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.65); }

/* Barre bas footer */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--jaune); }
.footer-lang-switcher {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.footer-lang-switcher button {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.footer-lang-switcher button:hover,
.footer-lang-switcher button.active {
  color: var(--jaune);
  border-color: rgba(255,204,0,0.4);
}

/* ════════════════════════════════════════════════════
   12. HERO
════════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--header-h));
  background: var(--noir);
  color: var(--blanc);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Motif géométrique de fond */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,204,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,204,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(212,5,17,0.06), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jaune);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: var(--radius-full);
}
.hero-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jaune);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-content h1 {
  color: var(--blanc);
  margin-bottom: 24px;
}
.hero-content h1 em {
  color: var(--jaune);
  font-style: normal;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--jaune);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* Image / visuel côté droit */
.hero-visual {
  position: relative;
}
.hero-visual-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Badge flottant sur la photo */
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--jaune);
  color: var(--noir);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.hero-badge-txt {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════
   13. PAGE HERO (sous-pages)
════════════════════════════════════════════════════ */
.page-hero {
  background: var(--noir);
  color: var(--blanc);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(212,5,17,0.06));
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--jaune);
}
.page-hero h1 { color: var(--blanc); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.breadcrumb a:hover { color: var(--jaune); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: rgba(255,255,255,0.75); }

/* ════════════════════════════════════════════════════
   14. COMPOSANTS SERVICES
════════════════════════════════════════════════════ */
.service-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f0f0f0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body {
  padding: 28px;
}
.service-card-body h3 { margin-bottom: 10px; font-size: 1.4rem; }
.service-card-body p { margin-bottom: 20px; font-size: 0.92rem; }

/* Tarif bloc */
.tarif-ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 16px;
}
.tarif-ligne:last-child { border-bottom: none; }
.tarif-label {
  font-size: 0.9rem;
  color: var(--texte);
  font-weight: 500;
}
.tarif-prix {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--noir);
  white-space: nowrap;
}
.tarif-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   15. COMPTEURS STATS
════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--noir-soft);
  padding: 40px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--jaune);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

/* ════════════════════════════════════════════════════
   16. CTA BANDE
════════════════════════════════════════════════════ */
.cta-band {
  background: var(--jaune);
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--noir);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.cta-band p { color: rgba(10,10,10,0.65); margin-top: 8px; }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════
   17. TÉMOIGNAGES
════════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--jaune);
  color: var(--jaune);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--texte);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gris-clair);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--noir);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════
   18. CALCULATEUR DE PRIX
════════════════════════════════════════════════════ */
.calculateur {
  background: var(--gris-clair);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.calculateur h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.calculateur-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.calc-result {
  margin-top: 24px;
  background: var(--noir);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.calc-result-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 8px;
}
.calc-result-prix {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--jaune);
  line-height: 1;
  white-space: nowrap;
}
.calc-result-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  margin-top: 8px;
}

/* Range input */
.range-group { margin-bottom: 20px; }
.range-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.range-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte);
}
.range-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--rouge);
}
input[type="range"] {
  width: 100%;
  height: 4px;
  background: var(--gris-mid);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rouge);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212,5,17,0.4);
  transition: transform 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* ════════════════════════════════════════════════════
   19. ABONNEMENTS
════════════════════════════════════════════════════ */
.abo-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid rgba(0,0,0,0.08);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.abo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.abo-card.featured {
  background: var(--noir);
  border-color: var(--jaune);
  color: var(--blanc);
}
.abo-card.featured h3 { color: var(--blanc); }
.abo-card.featured p  { color: rgba(255,255,255,0.68); }

.abo-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jaune);
  color: var(--noir);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.abo-prix-bloc {
  margin: 24px 0;
}
.abo-prix {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--noir);
  line-height: 1;
  white-space: nowrap;
}
.abo-card.featured .abo-prix { color: var(--jaune); }
.abo-prix-unit {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.abo-card.featured .abo-prix-unit { color: rgba(255,255,255,0.52); }

.abo-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.abo-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}
.abo-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--rouge);
  margin-top: 1px;
}
.abo-card.featured .abo-feature svg { color: var(--jaune); }

/* ════════════════════════════════════════════════════
   20. PAGE À PROPOS
════════════════════════════════════════════════════ */
.portrait-bloc {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1a1a1a;
}
.portrait-bloc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--jaune);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--jaune);
  border: 2px solid var(--blanc);
  box-shadow: 0 0 0 3px var(--jaune);
}
.timeline-date {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 6px;
}
.timeline-titre {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--noir);
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Valeurs */
.valeur-card {
  text-align: center;
  padding: 40px 28px;
}
.valeur-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--jaune-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.valeur-icon svg { width: 36px; height: 36px; color: var(--rouge); }

/* ════════════════════════════════════════════════════
   21. CONTACT
════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--jaune-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--rouge); }
.contact-info-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--texte);
}
.contact-info-val a:hover { color: var(--rouge); }

/* Carte OpenStreetMap */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  margin-top: 32px;
  border: 1px solid var(--gris-mid);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ════════════════════════════════════════════════════
   22. NOTIFICATIONS / TOAST
════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--noir);
  color: var(--blanc);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 3px solid #22c55e; }
.toast.error   { border-left: 3px solid var(--rouge); }
.toast svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   23. ANIMATIONS (intégration Motion.js)
════════════════════════════════════════════════════ */

/* Classes d'initialisation pour Motion.js */
[data-motion] {
  opacity: 0;
  transform: translateY(20px);
}
[data-motion="fade-left"]  { transform: translateX(-24px); }
[data-motion="fade-right"] { transform: translateX(24px); }
[data-motion="scale"]      { transform: scale(0.95); }
[data-motion="visible"] {
  opacity: 1;
  transform: none;
}

/* Effet hover sur les cartes de service */
.hover-lift {
  transition: transform var(--transition), box-shadow var(--transition);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ════════════════════════════════════════════════════
   24. UTILITAIRES
════════════════════════════════════════════════════ */

/* Visibilité */
.hidden   { display: none !important; }
.sr-only  {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Espacement */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Couleurs de fond */
.bg-noir       { background: var(--noir); }
.bg-jaune      { background: var(--jaune); }
.bg-rouge      { background: var(--rouge); }
.bg-gris-clair { background: var(--gris-clair); }
.bg-blanc      { background: var(--blanc); }

/* Bordures accentuées */
.border-top-jaune    { border-top: 3px solid var(--jaune); }
.border-left-rouge   { border-left: 4px solid var(--rouge); }
.border-left-jaune   { border-left: 4px solid var(--jaune); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }

/* ════════════════════════════════════════════════════
   25. LANGUE — MULTILINGUE
════════════════════════════════════════════════════ */
[lang-target] { display: none; }
[lang-target].lang-active { display: inherit; }

/* ════════════════════════════════════════════════════
   26. RESPONSIVE
════════════════════════════════════════════════════ */

/* ── Tablette large (≤ 1100px) ── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero-grid { gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablette (≤ 900px) ── */
@media (max-width: 900px) {
  :root {
    --section-py: 64px;
    --section-py-sm: 40px;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-tel   { display: none; }
  .nav-cta .btn { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 64px 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Calculateur */
  .calculateur { position: static; }

  /* Grilles */
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  :root {
    --section-py: 48px;
    --section-py-sm: 32px;
    --header-h: var(--header-h-mob);
  }

  body { padding-top: var(--header-h-mob); }

  .container { padding: 0 16px; }

  h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* Nav logo mobile */
  .nav-logo img { height: 44px; }
  .nav-inner { height: var(--header-h-mob); }

  /* Hero */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 16px; }

  /* Grilles */
  .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  #footer { padding: 48px 0 0; }

  /* Calculateur */
  .calculateur { padding: 28px 20px; }
  .calc-result-prix { font-size: 2.4rem; }

  /* Abonnements */
  .abo-card { padding: 28px 24px; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  /* Section header */
  .section-header { margin-bottom: 40px; }

  /* Toast */
  .toast { left: 16px; right: 16px; max-width: none; }
}

/* ── Très petit (≤ 400px) ── */
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-num { font-size: 1.8rem; }
  .abo-prix { font-size: 2.6rem; }
}

/* ════════════════════════════════════════════════════
   27. PRINT
════════════════════════════════════════════════════ */
@media print {
  #header, #footer, .nav-mobile, .btn, .hero-actions { display: none; }
  body { padding-top: 0; color: #000; }
  a { color: #000; }
  .section { padding: 24px 0; }
}

/* ════════════════════════════════════════════════════
   28. COMPOSANTS SPÉCIFIQUES — INDEX.HTML
════════════════════════════════════════════════════ */

/* ── NAV droite link ── */
.nav-links-r {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-links-r:hover { color: var(--jaune); background: rgba(255,204,0,0.08); }

/* ── Sélecteur de langue header ── */
.lang-switcher {
  display: flex;
  gap: 2px;
}
.lang-switcher button {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.lang-switcher button:hover,
.lang-switcher button.active {
  color: var(--jaune);
  border-color: rgba(255,204,0,0.35);
}

/* ── Barre de confiance ── */
.trust-bar {
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-bord);
  border-top: 1px solid var(--gris-bord);
  padding: 20px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.trust-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  flex-shrink: 0;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texte);
}
.trust-item svg { color: var(--rouge); flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 24px;
  background: var(--gris-bord);
  flex-shrink: 0;
}

/* ── Services grid (accueil) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card-home {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card-home:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,5,17,0.15);
}
.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--jaune-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rouge);
  margin-bottom: 4px;
  flex-shrink: 0;
}
.sc-icon-rouge { background: var(--rouge-light); }
.sc-icon svg { color: var(--rouge); }
.service-card-home h3 {
  font-size: 1.25rem;
  color: var(--noir);
}
.service-card-home p {
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}
.sc-prix {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--texte);
  white-space: nowrap;
  margin-top: 4px;
}
.sc-prix strong { color: var(--rouge); }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-top: 4px;
  transition: gap var(--transition-fast);
}
.sc-link:hover { gap: 10px; }
.sc-link svg { flex-shrink: 0; }

/* ── Pourquoi nous ── */
.why-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.07); }
.why-card-accent {
  background: rgba(255,204,0,0.04);
  border-color: rgba(255,204,0,0.15);
}
.why-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,204,0,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.5rem;
  color: var(--blanc);
  margin-bottom: 12px;
}
.why-card p { color: rgba(255,255,255,0.60); font-size: 0.92rem; }

/* ── Teaser abonnements ── */
.abo-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.abo-teaser-card {
  background: var(--blanc);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 2px solid rgba(0,0,0,0.07);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.abo-teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.abo-teaser-featured {
  background: var(--noir);
  border-color: var(--jaune);
}
.abo-teaser-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jaune);
  color: var(--noir);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.abo-teaser-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.abo-teaser-featured .abo-teaser-label { color: rgba(255,255,255,0.52); }
.abo-teaser-prix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--noir);
  line-height: 1;
  margin-bottom: 6px;
  white-space: nowrap;
}
.abo-teaser-featured .abo-teaser-prix { color: var(--jaune); }
.abo-teaser-prix span { font-size: 2.6rem; }
.abo-teaser-info {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
  white-space: nowrap;
}
.abo-teaser-featured .abo-teaser-info { color: rgba(255,255,255,0.48); }
.abo-teaser-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.abo-teaser-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--texte);
}
.abo-teaser-featured .abo-teaser-features li { color: rgba(255,255,255,0.78); }
.abo-teaser-features svg { color: var(--rouge); flex-shrink: 0; }
.abo-teaser-featured .abo-teaser-features svg { color: var(--jaune); }

/* ── Teaser convoyage ── */
.convoyage-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.convoyage-dests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.conv-dest {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 12px;
}
.conv-ville {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
}
.conv-prix {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--jaune);
  white-space: nowrap;
}
.convoyage-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.conv-badge-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.conv-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
}
.conv-badge-jaune { background: rgba(255,204,0,0.08); border-color: rgba(255,204,0,0.20); }
.conv-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1;
}
.conv-badge-jaune .conv-badge-num { color: var(--jaune); }
.conv-badge-txt {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.conv-icon-area {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.conv-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.6;
  max-width: 280px;
  text-align: center;
}

/* ── Google note badge ── */
.google-note-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--gris-bord);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--texte);
  background: var(--blanc);
}
.google-note-badge svg { color: var(--jaune); }

/* ── CTA final ── */
.cta-final {
  background: var(--rouge);
  padding: 80px 0;
}
.cta-final-inner { text-align: center; }
.cta-final-inner h2 {
  color: var(--blanc);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}
.cta-final-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer logo ── */
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════════════
   29. RESPONSIVE — COMPOSANTS SPÉCIFIQUES
════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .abo-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .convoyage-teaser-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .lang-switcher { display: none; }
  .nav-links-r { display: none; }
  .convoyage-teaser-grid { grid-template-columns: 1fr; }
  .convoyage-visual { display: none; }
  .convoyage-dests { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .abo-teaser-grid { grid-template-columns: 1fr; }
  .trust-bar { display: none; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .cta-final-actions { flex-direction: column; align-items: center; }
  .cta-final-actions .btn { width: 100%; max-width: 340px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   30. COMPOSANTS — SERVICES.HTML
════════════════════════════════════════════════════ */

/* Tabs navigation */
.services-tabs-bar {
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-bord);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-tabs-bar::-webkit-scrollbar { display: none; }
.services-tabs {
  display: flex;
  gap: 0;
  white-space: nowrap;
  padding: 0 4px;
}
.s-tab {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
}
.s-tab:hover { color: var(--rouge); border-bottom-color: var(--rouge); }

/* Layout 2 colonnes services */
.services-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.services-section-grid.reverse { direction: rtl; }
.services-section-grid.reverse > * { direction: ltr; }

/* Liste inclus */
.service-inclus {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.service-inclus li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--texte);
}
.service-inclus li svg { color: var(--rouge); flex-shrink: 0; }

.service-inclus-box {
  background: var(--gris-clair);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.service-inclus-box h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--texte);
}

/* Tarif card */
.tarif-card {
  background: var(--blanc);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
}
.tarif-card-dark {
  background: var(--noir);
  border-color: rgba(255,255,255,0.06);
}
.tarif-card-dark .tarif-ligne { border-bottom-color: rgba(255,255,255,0.06); }
.tarif-card-dark .tarif-prix { color: var(--jaune); }
.tarif-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.tarif-card-header h3 {
  font-size: 1.25rem;
  color: inherit;
}
.tarif-card-dark .tarif-card-header h3 { color: var(--blanc); }

/* Urgente badges */
.urgente-badges {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.urgente-badge {
  background: rgba(212,5,17,0.06);
  border: 1px solid rgba(212,5,17,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
}
.urgente-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--rouge);
  line-height: 1;
}
.urgente-badge-txt {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Process steps */
.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.process-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--noir);
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.process-step strong { font-size: 0.9rem; color: var(--texte); display: block; margin-bottom: 4px; }
.process-step p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* Scenarios déménagement */
.scenario-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--blanc);
  border: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 8px;
  gap: 12px;
}
.sc-scenario { font-weight: 600; font-size: 0.92rem; color: var(--texte); flex: 1; }
.sc-scenario-detail { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }
.sc-scenario-prix {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--rouge);
  white-space: nowrap;
}

/* Cartons Portugal */
.portugal-cartons {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  background: var(--gris-clair);
  border-radius: var(--radius-xl);
}
.carton-item { text-align: center; }
.carton-box {
  background: var(--blanc);
  border: 2px solid var(--gris-bord);
  border-radius: 4px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.carton-m  { width: 80px;  height: 72px;  }
.carton-l  { width: 100px; height: 90px;  }
.carton-xl { width: 120px; height: 110px; }
.carton-logo {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--rouge);
  letter-spacing: 0.1em;
}
.carton-label { font-size: 0.78rem; color: var(--texte); font-weight: 600; line-height: 1.4; }
.carton-label small { color: var(--muted); font-weight: 400; font-size: 0.68rem; }

/* Suppléments */
.supplements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.supplement-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.supplement-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.supplement-icon {
  width: 44px;
  height: 44px;
  background: var(--rouge-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rouge);
  margin-bottom: 14px;
}
.supplement-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 6px;
}
.supplement-prix {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--rouge);
  white-space: nowrap;
  margin-bottom: 6px;
}
.supplement-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive services */
@media (max-width: 900px) {
  .services-section-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-section-grid.reverse { direction: ltr; }
  .supplements-grid { grid-template-columns: repeat(2, 1fr); }
  .urgente-badges { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .supplements-grid { grid-template-columns: 1fr; }
  .services-tabs-bar { top: var(--header-h-mob); }
  .scenario-card { flex-wrap: wrap; }
  .portugal-cartons { gap: 10px; padding: 20px; }
}

/* ════════════════════════════════════════════════════
   31. COMPOSANTS — CONVOYAGE + ABONNEMENTS + PAGES
════════════════════════════════════════════════════ */

/* Tables de prix convoyage */
.prix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prix-table thead { background: var(--noir); }
.prix-table thead th {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jaune);
  padding: 14px 20px;
  text-align: left;
}
.prix-table tbody tr {
  border-bottom: 1px solid var(--gris-bord);
  transition: background var(--transition-fast);
}
.prix-table tbody tr:hover { background: var(--gris-clair); }
.prix-table tbody tr:last-child { border-bottom: none; }
.prix-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
  color: var(--texte);
}
.prix-table td:last-child {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--rouge);
  white-space: nowrap;
  text-align: right;
}

/* Abonnements tab switcher */
.abo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--gris-bord);
  padding-bottom: 0;
}
.abo-tab {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.abo-tab:hover, .abo-tab.active {
  color: var(--rouge);
  border-bottom-color: var(--rouge);
}

/* Abo panel */
.abo-panel { display: none; }
.abo-panel.active { display: block; }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--gris-bord);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--texte);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--rouge);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* À propos timeline responsive */
@media (max-width: 640px) {
  .timeline { padding-left: 20px; }
  .timeline-item::before { left: -26px; }
}

/* Contact form */
.contact-form-wrapper {
  background: var(--gris-clair);
  border-radius: var(--radius-xl);
  padding: 40px;
}
@media (max-width: 640px) {
  .contact-form-wrapper { padding: 24px 20px; }
}

/* Calculateur convoyage */
.calc-form-group {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
@media (max-width: 640px) {
  .calc-form-group { grid-template-columns: 1fr; }
}

