/* ═══════════════════════════════════════
   LOUIS AUTOMOBILE — style.css
═══════════════════════════════════════ */

/* TOKENS */
:root {
  --bd: #060f20;
  --b1: #0a1b38;
  --b2: #0e2a52;
  --bl: #2e7fd4;
  --or: #e8620a;
  --oh: #ff7b28;
  --op: rgba(232,98,10,.12);
  --wh: #f0eee9;
  --gr: #7a8fa8;
  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Inter', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
  --ease2: cubic-bezier(.34,1.56,.64,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bd);
  color: var(--wh);
  font-family: var(--fb);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bd); }
::-webkit-scrollbar-thumb { background: var(--or); border-radius: 3px; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  transition: background .4s, border-color .4s;
}
#navbar.scrolled {
  background: rgba(6,15,32,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,98,10,.2);
}
.logo {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--wh);
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 10000;
  position: relative;
}
.logo-box {
  width: 34px; height: 34px;
  background: var(--or);
  border-radius: 7px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo-box svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; }
.logo span { color: var(--or); }

/* Desktop nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gr);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--or);
  transition: width .3s var(--ease);
}
.nav-menu a:hover { color: var(--wh); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  background: var(--or) !important;
  color: #fff !important;
  padding: .38rem 1rem !important;
  border-radius: 5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--oh) !important; color: #fff !important; }

/* Burger — mobile only */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10000;
  position: relative;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--wh);
  transition: .3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,15,32,.98);
  z-index: 9000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wh);
  transition: color .2s;
}
.nav-overlay a:hover { color: var(--or); }

/* ═══════════════════════════════════════
   HERO — VIDEO BG
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,15,32,.55) 0%,
    rgba(6,15,32,.4) 50%,
    rgba(10,27,56,1) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 5vw 80px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  border: 1px solid rgba(232,98,10,.35);
  background: rgba(232,98,10,.08);
  padding: .42rem 1.1rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240,238,233,.75);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .6s .2s var(--ease) forwards;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--or);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,98,10,.8); }
  70%  { box-shadow: 0 0 0 9px rgba(232,98,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,98,10,0); }
}
.hero-title {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: .92;
  color: var(--wh);
  opacity: 0;
  animation: fadeUp .7s .35s var(--ease) forwards;
}
.hero-title .stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--or);
}
.hero-sub {
  margin: 1.6rem auto 0;
  max-width: 540px;
  font-size: clamp(.92rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--gr);
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp .7s .5s var(--ease) forwards;
}
.hero-btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .65s var(--ease) forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gr);
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--or), transparent);
  animation: scanLine 2s ease-in-out infinite;
}
@keyframes scanLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp { from { opacity:0; transform: translateY(26px); } to { opacity:1; transform: none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .82rem 1.9rem;
  border-radius: 6px;
  font-family: var(--fb);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease2), box-shadow .25s;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.07);
  transform: translateX(-101%);
  transition: transform .3s var(--ease);
}
.btn:hover::after { transform: translateX(0); }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--or); color: #fff; box-shadow: 0 4px 22px rgba(232,98,10,.38); }
.btn-primary:hover { box-shadow: 0 8px 34px rgba(232,98,10,.55); }
.btn-ghost { background: transparent; color: var(--wh); border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--or); color: var(--or); }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats {
  background: var(--b1);
  padding: 3.8rem 5vw;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 7rem);
  flex-wrap: wrap;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: clamp(-3.5rem, -2.5vw, -1rem);
  top: 50%; transform: translateY(-50%);
  height: 36px; width: 1px;
  background: rgba(255,255,255,.08);
}
.stat-num {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--or);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gr);
  margin-top: .35rem;
}

/* ═══════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════ */
section { padding: 100px 5vw; }
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: .85rem;
}
.sec-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--or); }
.sec-title {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1;
  color: var(--wh);
  margin-bottom: 1.1rem;
}
.sec-title em { color: var(--or); font-style: normal; }
.sec-desc { color: var(--gr); max-width: 510px; font-size: .92rem; line-height: 1.72; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
#services { background: var(--b1); }
.services-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.svc-card {
  background: rgba(255,255,255,.026);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s;
  cursor: default;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(232,98,10,.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(232,98,10,.3); }
.svc-card:hover::before { opacity: 1; }
.svc-num {
  position: absolute;
  top: .8rem; right: 1.4rem;
  font-family: var(--fh);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  user-select: none;
}
.svc-icon {
  width: 50px; height: 50px;
  background: var(--op);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: background .3s;
}
.svc-card:hover .svc-icon { background: rgba(232,98,10,.22); }
.svc-icon svg { width: 24px; height: 24px; stroke: var(--or); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svc-title { font-family: var(--fh); font-weight: 700; font-size: 1.4rem; letter-spacing: .04em; color: var(--wh); margin-bottom: .85rem; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.svc-list li { display: flex; align-items: baseline; gap: .52rem; font-size: .86rem; color: var(--gr); transition: color .2s; }
.svc-list li:hover { color: var(--wh); }
.svc-list li::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--or); flex-shrink: 0; margin-bottom: 1px; }

/* CAR DIAGRAM */
.car-block {
  grid-column: 1 / -1;
  background: rgba(10,27,56,.65);
  border: 1px solid rgba(46,127,212,.2);
  border-radius: 16px;
  padding: 2.8rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.8rem;
  margin-top: .5rem;
}
.car-block-title { font-family: var(--fh); font-weight: 700; font-size: 1.2rem; letter-spacing: .08em; color: var(--bl); text-transform: uppercase; }
.car-svg { width: 100%; max-width: 720px; }
.car-legend { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
.leg { display: flex; align-items: center; gap: .4rem; font-size: .76rem; color: var(--gr); }
.leg-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════
   PIECES
═══════════════════════════════════════ */
#pieces { background: var(--bd); overflow: hidden; }
#pieces::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle at top right, rgba(232,98,10,.06), transparent 65%);
  pointer-events: none;
}
#pieces { position: relative; }
.pieces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 1.1rem;
  margin-top: 2.8rem;
}
.piece-card {
  background: rgba(255,255,255,.028);
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 12px;
  padding: 1.7rem 1.4rem;
  text-align: center;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.piece-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.piece-card:hover { transform: translateY(-5px); background: rgba(232,98,10,.055); border-color: rgba(232,98,10,.22); }
.piece-card:hover::after { transform: scaleX(1); }
.piece-card svg { width: 36px; height: 36px; stroke: var(--or); stroke-width: 1.55; fill: none; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto .9rem; display: block; }
.piece-name { font-weight: 600; font-size: .9rem; color: var(--wh); margin-bottom: .28rem; }
.piece-desc { font-size: .75rem; color: var(--gr); }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
#process { background: var(--b1); }
.process-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-track {
  position: absolute;
  top: 44px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or) 20%, var(--or) 80%, transparent);
  overflow: hidden;
}
.process-track::after {
  content: '';
  position: absolute; inset-y: 0;
  left: -40%; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  animation: trackShimmer 3s infinite;
}
@keyframes trackShimmer { to { left: 140%; } }
.pstep { text-align: center; padding: 0 .8rem; position: relative; z-index: 1; }
.pstep-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--b1);
  border: 2px solid var(--or);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  box-shadow: 0 0 0 8px rgba(232,98,10,.05), 0 0 28px rgba(232,98,10,.12);
  transition: transform .3s var(--ease2), box-shadow .3s;
}
.pstep-circle:hover { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(232,98,10,.07), 0 0 38px rgba(232,98,10,.28); }
.pstep-circle svg { width: 28px; height: 28px; stroke: var(--or); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pstep-n { font-family: var(--fh); font-size: .65rem; font-weight: 700; color: rgba(232,98,10,.55); letter-spacing: .1em; margin-top: 3px; }
.pstep-title { font-weight: 700; font-size: .92rem; color: var(--wh); margin-bottom: .45rem; }
.pstep-desc { font-size: .78rem; color: var(--gr); line-height: 1.6; }

/* ═══════════════════════════════════════
   WHY
═══════════════════════════════════════ */
#why { background: var(--bd); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2.8rem;
}
.why-card {
  border-radius: 14px; padding: 1.9rem;
  background: linear-gradient(145deg, rgba(14,42,82,.45), rgba(6,15,32,.65));
  border: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s;
}
.why-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,10,.07), transparent 70%);
  transition: transform .4s var(--ease);
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(232,98,10,.2); }
.why-card:hover::before { transform: scale(2.4); }
.why-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--op); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-icon svg { width: 22px; height: 22px; stroke: var(--or); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.why-title { font-weight: 700; font-size: .92rem; color: var(--wh); margin-bottom: .45rem; }
.why-desc { font-size: .8rem; color: var(--gr); line-height: 1.62; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
#temoignages { background: var(--b1); }
.testi-wrap { overflow: hidden; position: relative; margin-top: 3rem; }
.testi-wrap::before, .testi-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.testi-wrap::before { left: 0; background: linear-gradient(90deg, var(--b1), transparent); }
.testi-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--b1), transparent); }
.testi-inner {
  display: flex; gap: 1.4rem;
  width: max-content;
  animation: scrollTesti 30s linear infinite;
}
.testi-inner:hover { animation-play-state: paused; }
@keyframes scrollTesti { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card {
  width: 295px; flex-shrink: 0;
  background: rgba(255,255,255,.026);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 14px; padding: 1.5rem;
}
.testi-stars { color: var(--or); font-size: .85rem; letter-spacing: 2px; margin-bottom: .75rem; }
.testi-text { font-size: .82rem; color: var(--gr); line-height: 1.65; font-style: italic; margin-bottom: .9rem; }
.testi-author { font-size: .78rem; font-weight: 600; color: var(--wh); }
.testi-car { font-size: .7rem; color: var(--or); margin-top: .1rem; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
#contact { background: var(--bd); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem;
  margin-top: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.c-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1.1rem; border-radius: 11px;
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .3s, background .3s;
}
.c-item:hover { border-color: rgba(232,98,10,.2); background: rgba(232,98,10,.04); }
.c-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--op); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.c-icon svg { width: 20px; height: 20px; stroke: var(--or); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.c-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--or); margin-bottom: .2rem; }
.c-val { font-weight: 600; color: var(--wh); font-size: .9rem; }
.c-val a { color: inherit; transition: color .2s; }
.c-val a:hover { color: var(--or); }
.cform { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-size: .7rem; font-weight: 600; color: var(--gr); display: block; margin-bottom: .38rem; letter-spacing: .06em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; padding: .82rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: 8px;
  color: var(--wh); font-family: var(--fb); font-size: .88rem;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
input::placeholder, textarea::placeholder { color: rgba(122,143,168,.5); }
input:focus, select:focus, textarea:focus {
  border-color: var(--or);
  background: rgba(232,98,10,.05);
  box-shadow: 0 0 0 3px rgba(232,98,10,.1);
}
select option { background: var(--b1); }
textarea { resize: vertical; min-height: 125px; }
.form-success { padding: .85rem 1.1rem; border-radius: 8px; background: rgba(39,174,96,.09); border: 1px solid rgba(39,174,96,.28); color: #6fcf97; font-weight: 600; font-size: .88rem; }
.form-error   { padding: .85rem 1.1rem; border-radius: 8px; background: rgba(235,87,87,.09); border: 1px solid rgba(235,87,87,.28); color: #eb8282; font-weight: 600; font-size: .88rem; }

/* ═══════════════════════════════════════
   MAP
═══════════════════════════════════════ */
.map-zone { background: var(--b1); padding: 3.2rem 5vw; }
.map-box {
  max-width: 920px; margin: 1.4rem auto 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(6,15,32,.55);
  height: 260px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .9rem;
  position: relative;
}
.map-ring {
  position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--or);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: mapPing 2.5s infinite;
}
@keyframes mapPing {
  0%   { box-shadow: 0 0 0 0 rgba(232,98,10,.8); }
  70%  { box-shadow: 0 0 0 40px rgba(232,98,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,98,10,0); }
}
.map-label { font-size: .78rem; color: var(--gr); text-align: center; position: relative; z-index: 1; line-height: 1.6; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #030a15;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 2.8rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.4rem;
}
.foot-logo { font-family: var(--fh); font-size: 1.4rem; font-weight: 900; color: var(--wh); }
.foot-logo span { color: var(--or); }
.foot-copy { font-size: .75rem; color: var(--gr); }
.foot-links { display: flex; gap: 1.4rem; }
.foot-links a { font-size: .77rem; color: var(--gr); transition: color .2s; }
.foot-links a:hover { color: var(--or); }

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  /* Cacher le menu desktop, montrer burger */
  .nav-menu { display: none; }
  .burger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .process-wrap { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-track { display: none; }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .stat + .stat::before { display: none; }
  .foot-links { flex-wrap: wrap; justify-content: center; }
}
