/* ─────────────────────────────────────────────────────────
   Construction T. Leblanc — shared styles for service pages
   ───────────────────────────────────────────────────────── */

:root {
  --tl-black: #0a0a0a;
  --tl-ink:   #18181a;
  --tl-graphite: #2a2a2c;
  --tl-steel: #6b6b70;
  --tl-mute:  #a3a3a8;
  --tl-line:  #e5e5e3;
  --tl-paper: #f7f6f2;
  --tl-white: #ffffff;
  --tl-red:   #E11D2E;
  --tl-red-deep: #B0121F;
  --tl-red-glow: #ff3a4a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #ffffff; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter Tight', sans-serif; color: var(--tl-black); }
::selection { background: var(--tl-red); color: white; }

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

/* Buttons */
.tl-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.tl-btn-red { background: var(--tl-red); color: white; }
.tl-btn-red:hover { background: var(--tl-red-deep); transform: translateY(-1px); }
.tl-btn-ghost-light { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.tl-btn-ghost-light:hover { background: white; color: var(--tl-black); border-color: white; }
.tl-btn-ghost-dark { background: transparent; color: var(--tl-black); border-color: rgba(0,0,0,0.2); }
.tl-btn-ghost-dark:hover { background: var(--tl-black); color: white; }

/* Photo wrapper */
.tl-photo {
  position: relative;
  background-color: #1a1a1c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.tl-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.v2 { font-family: 'Inter Tight', sans-serif; color: var(--tl-black); background: white; }
.v2 *, .v2 *::before, .v2 *::after { box-sizing: border-box; }

/* Header */
.v2-hd {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--tl-line);
}
.v2-hd-logo img { height: 88px; width: auto; display: block; }
.v2-hd-nav { display: flex; gap: 36px; align-items: center; }
.v2-hd-nav > a, .v2-hd-dropdown > a {
  font-size: 14px; font-weight: 500;
  color: var(--tl-black); text-decoration: none;
  position: relative;
}
.v2-hd-nav > a::after, .v2-hd-dropdown > a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--tl-red);
  transition: width 0.3s;
}
.v2-hd-nav > a:hover::after, .v2-hd-dropdown > a:hover::after { width: 100%; }
.v2-hd-nav > a.is-current { color: var(--tl-red); }
.v2-hd-nav > a.is-current::after { width: 100%; }

/* Dropdown menu (used on Services in the header) */
.v2-hd-dropdown { position: relative; }
.v2-hd-dropdown > a {
  display: inline-flex; align-items: center; gap: 6px;
}
.v2-hd-dropdown .caret {
  font-size: 9px;
  display: inline-block;
  transition: transform 0.25s ease;
}
.v2-hd-dropdown:hover .caret,
.v2-hd-dropdown.open .caret { transform: rotate(180deg); }

.v2-hd-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px); left: -16px;
  min-width: 280px;
  background: var(--tl-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
  box-shadow: 0 16px 40px rgba(0,0,0,0.32);
}
.v2-hd-dropdown-menu::before {
  content: ""; position: absolute;
  top: -7px; left: 32px;
  width: 12px; height: 12px;
  background: var(--tl-black);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: rotate(45deg);
}
@media (hover: hover) {
  .v2-hd-dropdown:hover .v2-hd-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
}
.v2-hd-dropdown.open .v2-hd-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.v2-hd-dropdown-menu a {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.v2-hd-dropdown-menu a .v2-dd-lbl-wrap {
  display: flex; flex-direction: column; gap: 2px;
}
.v2-hd-dropdown-menu a .v2-dd-mini {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tl-red-glow);
  font-weight: 600;
}
.v2-hd-dropdown-menu a::after {
  content: "→"; color: var(--tl-red);
  font-size: 14px;
  transition: transform 0.2s, color 0.2s;
}
.v2-hd-dropdown-menu a:hover {
  background: var(--tl-red); color: white;
}
.v2-hd-dropdown-menu a:hover .v2-dd-mini { color: white; }
.v2-hd-dropdown-menu a:hover::after {
  color: white; transform: translateX(3px);
}
.v2-hd-dropdown-menu a.is-current {
  background: rgba(225,29,46,0.18);
  color: white;
}

.v2-hd-right { display: flex; align-items: center; gap: 12px; }
.v2-lang { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; }
.v2-lang span { padding: 4px 8px; cursor: pointer; color: var(--tl-mute); user-select: none; }
.v2-lang span.active { color: var(--tl-black); }
.v2-lang .sep { color: var(--tl-line); cursor: default; }

/* Mobile menu toggle */
.v2-hd-burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px; margin-left: 4px;
  color: var(--tl-black);
}
.v2-hd-burger svg { width: 24px; height: 24px; }

/* Service-page hero (shorter than home hero) */
.v2-hero-svc {
  position: relative;
  min-height: 64vh;
  color: white;
  padding: 88px 56px 72px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.v2-hero-svc::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.4) 30%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.25) 60%);
}
.v2-hero-svc-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-color: #0a0a0a;
}
.v2-hero-svc-crumb {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.v2-hero-svc-crumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.v2-hero-svc-crumb a:hover { color: white; }
.v2-hero-svc-crumb .sep { color: var(--tl-red); }
.v2-hero-svc-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tl-red-glow);
  margin-bottom: 24px;
}
.v2-hero-svc-eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--tl-red); }
.v2-hero-svc-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 1100px;
}
.v2-hero-svc-title .accent { color: var(--tl-red); }
.v2-hero-svc-sub {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 24px 0 0;
}
.v2-hero-svc-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* Quick facts strip directly below hero */
.v2-facts {
  background: var(--tl-black);
  color: white;
  padding: 28px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v2-fact { display: flex; align-items: baseline; gap: 12px; }
.v2-fact-num {
  font-size: 28px; font-weight: 700; color: var(--tl-red);
  letter-spacing: -0.02em;
}
.v2-fact-lbl { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; line-height: 1.3; }

/* Sections */
.v2-sect { padding: 120px 56px; }
.v2-sect-paper { background: var(--tl-paper); border-top: 1px solid var(--tl-line); border-bottom: 1px solid var(--tl-line); }
.v2-sect-dark { background: var(--tl-black); color: white; }
.v2-sect-dark .v2-sect-title { color: white; }
.v2-sect-dark .v2-sect-sub { color: rgba(255,255,255,0.7); }
.v2-sect-dark .v2-eyebrow { color: var(--tl-red-glow); }
.v2-sect-dark .v2-eyebrow::before { background: var(--tl-red-glow); }

.v2-sect-head {
  display: flex; justify-content: space-between; align-items: end; gap: 64px;
  margin-bottom: 64px;
}
.v2-sect-head-l { max-width: 720px; }
.v2-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--tl-red);
  display: flex; align-items: center; gap: 12px;
}
.v2-eyebrow::before { content: ""; height: 1px; background: var(--tl-red); width: 24px; }
.v2-sect-title {
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 20px 0 0;
}
.v2-sect-title .accent { color: var(--tl-red); }
.v2-sect-sub { font-size: 16px; line-height: 1.55; color: var(--tl-graphite); margin: 20px 0 0; max-width: 640px; }

/* Centered head variant */
.v2-sect-head--center { justify-content: center; text-align: center; }
.v2-sect-head--center .v2-sect-head-l { max-width: 780px; margin: 0 auto; }
.v2-sect-head--center .v2-eyebrow { justify-content: center; }
.v2-sect-head--center .v2-eyebrow::after { content: ""; height: 1px; background: var(--tl-red); width: 24px; }
.v2-sect-head--center .v2-sect-sub { margin-left: auto; margin-right: auto; }

/* What we do — features grid */
.v2-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--tl-line);
}
.v2-feat {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--tl-line);
  border-right: 1px solid var(--tl-line);
  padding-left: 32px;
}
.v2-feat:nth-child(3n) { border-right: none; }
.v2-feat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--tl-red);
  margin-bottom: 16px;
}
.v2-feat-t {
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.v2-feat-d {
  font-size: 15px; line-height: 1.55; color: var(--tl-steel);
  margin: 0;
}

/* For-who clientèle cards */
.v2-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.v2-who-card {
  position: relative;
  background-color: #efeeec;
  background-size: cover; background-position: center;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.v2-who-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 55%);
}
.v2-who-card-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  z-index: 2;
  color: white;
}
.v2-who-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tl-red-glow);
  margin-bottom: 8px;
}
.v2-who-card-t {
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.v2-who-card-d {
  font-size: 13px; color: rgba(255,255,255,0.78);
  margin-top: 6px; line-height: 1.4;
}

/* Mini gallery (placeholders ready) */
.v2-gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.v2-gal-card {
  position: relative;
  background-color: #efeeec;
  background-size: cover; background-position: center;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.v2-gal-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: white; color: var(--tl-black);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em;
  padding: 5px 9px;
  text-transform: uppercase;
  z-index: 2;
}
.v2-gal-card-cap {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(10,10,10,0.78); color: white;
  font-size: 12px; font-weight: 500;
  padding: 6px 10px;
  z-index: 2;
}

/* Before / After split for service pages */
.v2-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: white;
}
.v2-ba .ba-half {
  position: relative;
  aspect-ratio: 4/5;
  background-color: #efeeec;
  background-size: cover; background-position: center;
}
.ba-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(10,10,10,0.85); color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  padding: 6px 10px;
  text-transform: uppercase;
  z-index: 2;
}
.ba-label--after { background: var(--tl-red); }

/* Process steps (vertical) */
.v2-proc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.v2-proc-step {
  padding: 28px 24px;
  border: 1px solid var(--tl-line);
  background: white;
  position: relative;
}
.v2-proc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px; font-weight: 700;
  color: var(--tl-red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.v2-proc-t {
  font-size: 18px; font-weight: 600;
  margin: 16px 0 8px;
  letter-spacing: -0.01em;
}
.v2-proc-d {
  font-size: 14px; line-height: 1.5;
  color: var(--tl-steel);
  margin: 0;
}

/* Final CTA */
.v2-cta {
  padding: 96px 56px;
  background: var(--tl-paper);
  text-align: center;
  border-top: 1px solid var(--tl-line);
  border-bottom: 1px solid var(--tl-line);
}
.v2-cta h2 {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.v2-cta h2 .accent { color: var(--tl-red); }
.v2-cta p {
  font-size: 17px; color: var(--tl-graphite); margin-top: 16px;
  max-width: 520px; margin-inline: auto;
}
.v2-cta-row {
  display: flex; gap: 12px; justify-content: center; margin-top: 36px;
  flex-wrap: wrap; align-items: center;
}
.v2-cta-phone {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.v2-cta-phone-num {
  font-size: 32px; font-weight: 700; color: var(--tl-black);
  text-decoration: none; letter-spacing: -0.02em;
}
.v2-cta-phone-lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tl-steel); }

/* Norms strip */
.v2-norms {
  padding: 56px 56px 48px;
  background: #ffffff;
  border-top: 1px solid var(--tl-line);
  border-bottom: 1px solid var(--tl-line);
  text-align: center;
}
.v2-norms-inner { max-width: 1100px; margin: 0 auto; }
.v2-norms-title {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--tl-graphite);
  margin: 0 auto 32px;
  text-align: center;
}
.v2-norms-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.v2-norm-logo { display: flex; align-items: center; justify-content: center; height: 48px; }
.v2-norm-logo img { height: 100%; width: auto; max-width: 100%; object-fit: contain; display: block; filter: grayscale(0.15); transition: filter 0.3s ease; }
.v2-norm-logo:hover img { filter: grayscale(0); }
.v2-norms-rbq {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--tl-line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tl-mute);
}
.v2-norms-rbq .num { color: var(--tl-graphite); font-weight: 600; margin-left: 6px; }

/* Footer */
.v2-ft { background: var(--tl-black); color: white; padding: 80px 56px 32px; }
.v2-ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.v2-ft-logo img { height: 44px; display: block; }
.v2-ft-tag { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 20px; line-height: 1.5; max-width: 320px; }
.v2-ft-h { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 16px; font-weight: 600; }
.v2-ft-list a, .v2-ft-list p { display: block; font-size: 14px; color: rgba(255,255,255,0.85); text-decoration: none; margin: 0 0 8px; }
.v2-ft-list a:hover { color: var(--tl-red-glow); }
.v2-ft-rbq { margin-top: 16px !important; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.5) !important; }
.v2-ft-bot {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 16px;
}

/* ─── 48h Express promo (used on home + on Réparations express page) ─── */
.v2-express {
  background: linear-gradient(120deg, #0a0a0a 0%, #18181a 60%, #2a0a0e 100%);
  color: white;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v2-express::after {
  content: ""; position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(225,29,46,0.4) 0%, rgba(225,29,46,0) 70%);
  pointer-events: none;
}
.v2-express-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
}
.v2-express-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tl-red-glow);
  background: rgba(225,29,46,0.12);
  border: 1px solid rgba(225,29,46,0.32);
  padding: 8px 14px;
  margin-bottom: 24px;
}
.v2-express-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--tl-red); animation: v2pulse 1.8s infinite;
}
@keyframes v2pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:0.5; transform: scale(1.3); } }
.v2-express-title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}
.v2-express-title .accent { color: var(--tl-red); }
.v2-express-sub {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 20px 0 0;
  max-width: 560px;
}
.v2-express-fine {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  max-width: 560px;
}
.v2-express-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.v2-express-r {
  display: flex; flex-direction: column; gap: 12px;
}
.v2-express-bullet {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.v2-express-bullet-icon {
  width: 36px; height: 36px;
  background: var(--tl-red); color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
}
.v2-express-bullet-t { font-size: 15px; font-weight: 600; }
.v2-express-bullet-d { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; line-height: 1.4; }

/* Contact section */
.v2-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.v2-contact-form {
  background: var(--tl-paper);
  padding: 48px;
  border: 1px solid var(--tl-line);
}
.v2-form-grid { display: grid; gap: 16px; }
.v2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2-input, .v2-textarea, .v2-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--tl-line);
  background: white;
  font: inherit; font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.v2-input:focus, .v2-textarea:focus, .v2-select:focus { border-color: var(--tl-red); }
.v2-textarea { min-height: 120px; resize: vertical; }
.v2-form-grid .tl-btn { width: 100%; justify-content: center; }
.v2-contact-info { display: flex; flex-direction: column; gap: 24px; }
.v2-info-card {
  padding: 24px;
  border: 1px solid var(--tl-line);
  display: flex; gap: 16px; align-items: flex-start;
}
.v2-info-icon {
  width: 44px; height: 44px;
  background: var(--tl-black); color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.v2-info-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.v2-info-lbl { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tl-steel); }
.v2-info-val { font-size: 18px; font-weight: 600; color: var(--tl-black); text-decoration: none; margin-top: 4px; display: block; }
.v2-info-val.sm { font-size: 15px; }
.v2-info-val.mono { font-family: 'JetBrains Mono', monospace; font-size: 15px; }

[hidden] { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
  .v2-hd-nav { display: none; }
  .v2-hd-burger { display: inline-flex; }
  .v2-facts { grid-template-columns: repeat(2, 1fr); }
  .v2-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-feat:nth-child(3n) { border-right: 1px solid var(--tl-line); }
  .v2-feat:nth-child(2n) { border-right: none; }
  .v2-who-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-gal-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-proc { grid-template-columns: repeat(2, 1fr); }
  .v2-express-wrap { grid-template-columns: 1fr; gap: 40px; }
  .v2-contact-wrap { grid-template-columns: 1fr; }
  .v2-ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .v2-hd { padding: 12px 24px; }
  .v2-hd-logo img { height: 60px; }
  .v2-hero-svc { padding: 64px 24px 56px; min-height: 56vh; }
  .v2-facts { padding: 24px; grid-template-columns: 1fr; gap: 16px; }
  .v2-sect { padding: 80px 24px; }
  .v2-feat-grid { grid-template-columns: 1fr; }
  .v2-feat, .v2-feat:nth-child(3n), .v2-feat:nth-child(2n) { border-right: none; padding-left: 0; padding-right: 0; }
  .v2-who-grid { grid-template-columns: 1fr; }
  .v2-gal-grid { grid-template-columns: 1fr; }
  .v2-proc { grid-template-columns: 1fr; }
  .v2-ba { grid-template-columns: 1fr; }
  .v2-express { padding: 56px 24px; }
  .v2-cta { padding: 64px 24px; }
  .v2-cta-phone { flex-direction: column; gap: 8px; }
  .v2-cta-phone-num { font-size: 26px; }
  .v2-contact-form { padding: 32px 24px; }
  .v2-form-row { grid-template-columns: 1fr; }
  .v2-ft { padding: 64px 24px 24px; }
  .v2-ft-grid { grid-template-columns: 1fr; gap: 32px; }
  .v2-sect-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
  .v2-norms { padding: 40px 24px 32px; }
  .v2-norms-logos { gap: 36px; }
  .v2-norm-logo { height: 40px; }
}

/* Mobile slide-out menu panel */
.v2-mob-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,0.96);
  color: white;
  display: none;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.v2-mob-menu.open { display: flex; }
.v2-mob-menu-close {
  position: absolute; top: 20px; right: 24px;
  background: transparent; border: 0; color: white;
  font-size: 28px; cursor: pointer; padding: 8px;
  line-height: 1;
}
.v2-mob-menu-section { margin-bottom: 28px; }
.v2-mob-menu-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tl-red);
  margin-bottom: 16px;
}
.v2-mob-menu a {
  display: block;
  font-size: 18px; font-weight: 500;
  color: white;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.v2-mob-menu a:hover { color: var(--tl-red-glow); }

/* ─────────────────────────────────────────────────────────
   Conversion components — added for max quote requests
   ───────────────────────────────────────────────────────── */

/* Floating "Soumission gratuite" button — always visible bottom-right */
.tl-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: var(--tl-red);
  color: white;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(225, 29, 46, 0.32), 0 4px 12px rgba(0,0,0,0.16);
  transition: all 0.22s ease;
  cursor: pointer;
}
.tl-fab:hover {
  background: var(--tl-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(225, 29, 46, 0.42), 0 6px 16px rgba(0,0,0,0.2);
}
.tl-fab svg { width: 16px; height: 16px; flex: none; }
.tl-fab .tl-fab-pulse {
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  position: relative;
  flex: none;
}
.tl-fab .tl-fab-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: tlFabPulse 2s ease-out infinite;
}
@keyframes tlFabPulse {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (max-width: 700px) {
  .tl-fab { bottom: 16px; right: 16px; padding: 14px 18px; font-size: 12px; }
  .tl-fab span:not(.tl-fab-pulse) { display: inline; }
}

/* Mini-CTA banner — slim, between sections */
.tl-mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 56px;
  background: var(--tl-black);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tl-mini-cta-text {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  margin: 0;
}
.tl-mini-cta-text .accent { color: var(--tl-red-glow); font-style: italic; }
.tl-mini-cta-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 800px) {
  .tl-mini-cta { padding: 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Premium "Soumission 24 h" strip — above the fold, near top */
.tl-premium-strip {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1c 100%);
  color: white;
  padding: 56px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.tl-premium-strip::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(225,29,46,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.tl-premium-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.tl-premium-strip-l { position: relative; }
.tl-premium-strip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tl-red-glow);
  margin-bottom: 16px;
}
.tl-premium-strip-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--tl-red-glow);
  border-radius: 50%;
  position: relative;
}
.tl-premium-strip-eyebrow .dot::after {
  content: "";
  position: absolute; inset: -4px;
  border: 1px solid var(--tl-red-glow);
  border-radius: 50%;
  animation: tlFabPulse 2s ease-out infinite;
}
.tl-premium-strip-t {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
}
.tl-premium-strip-t .accent { color: var(--tl-red-glow); font-style: italic; }
.tl-premium-strip-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
  max-width: 540px;
  line-height: 1.5;
}
.tl-premium-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.tl-premium-strip-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.tl-ps-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  backdrop-filter: blur(8px);
}
.tl-ps-card-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--tl-red-glow);
  margin-bottom: 4px;
}
.tl-ps-card-t {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.35;
}
@media (max-width: 800px) {
  .tl-premium-strip { padding: 40px 24px; }
  .tl-premium-strip-inner { grid-template-columns: 1fr; gap: 32px; }
}
