/* ============================================================
   PRESTIGE TRANSPORT v3 — Light theme (Futurlog style)
   Fond #f0f4ff · Jaune #F5A800 · Texte #0a0a0a · Footer #0d1117
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #f0f4ff;
  --bg2:       #ffffff;
  --bg-footer: #0d1117;
  --accent:    #F5A800;
  --accent2:   #e6930a;
  --text:      #0a0a0a;
  --text2:     #374151;
  --muted:     #6b7280;
  --border:    rgba(0,0,0,0.08);
  --border2:   rgba(0,0,0,0.13);
  --shadow:    0 4px 24px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.14);
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --spring:    cubic-bezier(0.32,0.72,0,1);
  --bounce:    cubic-bezier(0.34,1.56,0.64,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 9999;
  background: var(--accent); color: var(--text); font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 8px; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── UTILS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); background: rgba(245,168,0,0.10);
  border: 1px solid rgba(245,168,0,0.25);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.section-h {
  font-size: clamp(32px,5vw,52px); font-weight: 900;
  letter-spacing: -2px; line-height: 1.05; color: var(--text); text-wrap: balance;
}
.section-sub {
  font-size: 17px; color: var(--muted); margin-top: 16px;
  line-height: 1.75; max-width: 520px;
}
.section-header { margin-bottom: 60px; text-align: center; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--text); font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 100px; text-decoration: none;
  transition: all 0.35s var(--spring); border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 20px rgba(245,168,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,168,0,0.45); }
.btn-primary:active { transform: scale(0.98); }
.btn-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--bounce);
}
.btn-primary:hover .btn-icon { transform: translateX(3px) scale(1.1); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: #fff; font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 100px; text-decoration: none;
  transition: all 0.3s var(--spring); border: none; cursor: pointer; font-family: inherit;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  border: 1.5px solid var(--border2); transition: all 0.3s var(--spring);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(245,168,0,0.06); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 16px 24px;
  transition: background 0.4s var(--spring), box-shadow 0.4s var(--spring);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-text { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: 0.3px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text2);
  text-decoration: none; padding: 8px 14px; border-radius: 10px;
  transition: all 0.2s var(--spring);
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--text);
  font-weight: 700; font-size: 14px;
  padding: 10px 22px; border-radius: 100px; text-decoration: none;
  transition: all 0.3s var(--spring); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,168,0,0.28);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,168,0,0.4); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.35s var(--spring); transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: flex; position: fixed; inset: 0; z-index: 199;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--spring), visibility 0.3s 0.3s;
}
.nav-overlay.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.3s var(--spring), visibility 0s 0s;
}
.nav-overlay a {
  font-size: 28px; font-weight: 800; color: var(--text);
  text-decoration: none; letter-spacing: -1px;
  opacity: 0; transform: translateY(16px);
  transition: transform 0.45s var(--spring), opacity 0.45s var(--spring), color 0.2s;
}
.nav-overlay.open a { opacity: 1; transform: translateY(0); }
.nav-overlay.open a:nth-child(1) { transition-delay: 0.04s; }
.nav-overlay.open a:nth-child(2) { transition-delay: 0.08s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.12s; }
.nav-overlay.open a:nth-child(4) { transition-delay: 0.16s; }
.nav-overlay.open a:nth-child(5) { transition-delay: 0.20s; }
.nav-overlay.open a:nth-child(6) { transition-delay: 0.24s; }
.nav-overlay a:hover { color: var(--accent); }
.nav-overlay .nav-cta-mobile {
  background: var(--accent); color: var(--text) !important;
  padding: 16px 40px; border-radius: 100px;
  font-size: 18px !important; margin-top: 8px;
}

/* ── 3D CUBE ── */
.cube-wrap {
  display: flex; justify-content: center;
  margin-bottom: 48px;
}
.cube-scene {
  width: 64px; height: 64px;
  perspective: 280px;
}
.cube {
  width: 64px; height: 64px;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 10s linear infinite;
}
@keyframes cubeRotate {
  from { transform: rotateX(-22deg) rotateY(0deg); }
  to   { transform: rotateX(-22deg) rotateY(360deg); }
}
.cube-face {
  position: absolute; width: 64px; height: 64px;
  border: 2px solid var(--accent);
  background: rgba(245,168,0,0.03);
}
.cube-face.front  { transform: rotateY(0deg)   translateZ(32px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(32px); }
.cube-face.right  { transform: rotateY(90deg)  translateZ(32px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(32px); }
.cube-face.top    { transform: rotateX(90deg)  translateZ(32px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(32px); }

/* footer cube (larger) */
.cube-scene.lg { width: 96px; height: 96px; perspective: 420px; }
.cube-scene.lg .cube { width: 96px; height: 96px; }
.cube-scene.lg .cube-face {
  width: 96px; height: 96px;
  border-color: rgba(245,168,0,0.5);
}
.cube-scene.lg .cube-face.front  { transform: rotateY(0deg)   translateZ(48px); }
.cube-scene.lg .cube-face.back   { transform: rotateY(180deg) translateZ(48px); }
.cube-scene.lg .cube-face.right  { transform: rotateY(90deg)  translateZ(48px); }
.cube-scene.lg .cube-face.left   { transform: rotateY(-90deg) translateZ(48px); }
.cube-scene.lg .cube-face.top    { transform: rotateX(90deg)  translateZ(48px); }
.cube-scene.lg .cube-face.bottom { transform: rotateX(-90deg) translateZ(48px); }

/* ── HERO ── */
#hero {
  min-height: 100dvh;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245,168,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-title {
  font-size: clamp(48px,9vw,100px);
  font-weight: 900; letter-spacing: -4px; line-height: 0.95;
  margin-bottom: 28px; max-width: 900px; text-wrap: balance;
}
.hero-title .word { display: inline-block; opacity: 0; transform: translateY(28px); }
.hero-title .word.visible { animation: wordIn 0.6s var(--spring) forwards; }
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(16px,2.5vw,22px); font-weight: 700;
  color: var(--text); margin-bottom: 16px;
}
.hero-body {
  font-size: 17px; color: var(--muted); max-width: 520px;
  margin: 0 auto 40px; line-height: 1.75;
}
.hero-ctas {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s var(--spring) 1.2s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeUp 0.6s var(--spring) 1.8s forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── NETWORK SVG SECTION ── */
#network {
  background: var(--bg);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.network-container {
  max-width: 700px; margin: 0 auto;
  position: relative; text-align: center;
}
.network-svg-wrap {
  position: relative; width: 100%; max-width: 600px;
  margin: 0 auto; aspect-ratio: 1;
}
.network-svg { width: 100%; height: 100%; }
.net-line {
  stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 6 4;
  fill: none; opacity: 0.5;
  stroke-dashoffset: 100;
  animation: dashMove 3s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset: 0; } }
.net-line.d1 { animation-delay: 0s; }
.net-line.d2 { animation-delay: 0.5s; }
.net-line.d3 { animation-delay: 1s; }
.net-line.d4 { animation-delay: 1.5s; }
.net-line.d5 { animation-delay: 2s; }
.net-line.d6 { animation-delay: 2.5s; }

/* Floating notification */
.net-notif {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text2);
  box-shadow: var(--shadow-md); white-space: nowrap;
  animation: notifFloat 4s ease-in-out infinite;
}
@keyframes notifFloat {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(-8px)}
}
.notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: notifDot 1.5s ease-in-out infinite;
}
@keyframes notifDot { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,0.2)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0.1)} }

/* ── MARQUEE ── */
#marquee-section {
  background: var(--bg2);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label {
  text-align: center; font-size: 14px; color: var(--muted);
  margin-bottom: 24px; font-weight: 500;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 40px; font-size: 14px; font-weight: 600;
  color: var(--text2); white-space: nowrap;
  border-right: 1px solid var(--border);
}
.marquee-item .m-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(245,168,0,0.1); border: 1px solid rgba(245,168,0,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.marquee-stars { color: var(--accent); font-size: 13px; }

/* ── PROBLÈME ── */
#probleme {
  background: var(--bg); padding: 96px 0;
  position: relative;
}
.probleme-title-gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
  padding-bottom: 6px;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
  max-width: 720px; margin: 48px auto;
}
.problem-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--spring);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(245,168,0,0.1); border: 1px solid rgba(245,168,0,0.2);
  display: flex; align-items: center; justify-content: center;
}
.problem-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.problem-text span { font-size: 13px; color: var(--muted); }
.probleme-cta { text-align: center; margin-top: 16px; }
.probleme-cta p { font-size: 19px; font-weight: 800; margin-bottom: 24px; color: var(--text); }

/* ── COMMENT ÇA MARCHE ── */
#features { background: var(--bg2); }
.features-top-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.features-bottom-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.feat-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow);
  overflow: hidden; position: relative;
}
.feat-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.feat-card-title {
  font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 20px; line-height: 1.3;
}
.feat-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Card 1 — Step diagram */
.step-diagram {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 24px;
}
.step-item {
  display: flex; align-items: flex-start; gap: 16px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute; left: 19px; top: 40px;
  width: 2px; height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.step-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,168,0,0.12); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--accent);
}
.step-label { padding-top: 8px; }
.step-label strong { display: block; font-size: 14px; font-weight: 700; }
.step-label span { font-size: 12px; color: var(--muted); }
.step-item { margin-bottom: 32px; }

/* Card 2 — Map interface */
.map-card-ui {
  margin-top: 20px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg2);
}
.map-ui-bar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 10px 14px; display: flex; align-items: center; gap: 8px;
}
.map-ui-dot { width: 10px; height: 10px; border-radius: 50%; }
.map-body {
  height: 160px; position: relative;
  background: linear-gradient(135deg, #e8eef8 0%, #dde6f5 50%, #e4ecf7 100%);
  overflow: hidden;
}
/* Grid lines for map feel */
.map-body::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(100,130,180,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,130,180,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-pin {
  position: absolute; top: 40%; left: 30%;
  animation: pinMove 4s ease-in-out infinite;
}
@keyframes pinMove {
  0%  { left: 20%; top: 60%; }
  33% { left: 50%; top: 30%; }
  66% { left: 70%; top: 55%; }
  100%{ left: 20%; top: 60%; }
}
.map-route {
  position: absolute; inset: 0;
  opacity: 0.4;
}
.map-status {
  padding: 12px 14px; display: flex; flex-direction: column; gap: 8px;
}
.map-status-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.map-status-item.done { color: #16a34a; }
.map-status-item.pending { color: var(--muted); }
.map-status-item.active { color: var(--accent); }

/* Card 3 — Service icons */
.service-icons-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 20px;
}
.svc-icon-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; color: var(--text2);
  transition: all 0.25s var(--spring);
}
.svc-icon-item:hover { border-color: rgba(245,168,0,0.3); color: var(--text); }
.svc-icon-item .si { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(245,168,0,0.1); display: flex; align-items: center; justify-content: center; }

/* Card 4 — Chat */
.chat-ui {
  margin-top: 20px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg2);
}
.chat-bar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
}
.chat-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.chat-name { font-size: 13px; font-weight: 700; }
.chat-status { font-size: 11px; color: #16a34a; }
.chat-messages { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
  max-width: 75%; font-size: 13px; line-height: 1.5;
  padding: 10px 14px; border-radius: 16px;
}
.chat-msg.from-user {
  background: #f0f4ff; color: var(--text);
  border-bottom-left-radius: 4px; align-self: flex-start;
}
.chat-msg.from-us {
  background: var(--accent); color: var(--text);
  border-bottom-right-radius: 4px; align-self: flex-end;
  font-weight: 600;
}
.chat-time { font-size: 10px; color: var(--muted); text-align: right; margin-top: 4px; }

/* ── TÉMOIGNAGES ── */
#temoignages { background: var(--bg); }
.google-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 20px;
  margin-bottom: 40px; box-shadow: var(--shadow);
}
.google-badge-stars { color: var(--accent); font-size: 16px; }
.google-badge-text { font-size: 14px; font-weight: 700; color: var(--text); }
.temoignages-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px;
}
.temoignage-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--spring);
}
.temoignage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tem-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; }
.tem-text { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tem-author { display: flex; align-items: center; gap: 12px; }
.tem-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,168,0,0.15); border: 2px solid rgba(245,168,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--accent);
}
.tem-name { font-size: 14px; font-weight: 700; }
.tem-loc { font-size: 12px; color: var(--muted); }

/* ── CTA SECTION ── */
#cta-mid {
  background: var(--accent);
  padding: 80px 24px; text-align: center;
}
#cta-mid .cta-title { font-size: clamp(28px,4vw,44px); font-weight: 900; color: var(--text); letter-spacing: -2px; margin-bottom: 24px; }
#cta-mid .cta-sub { font-size: 15px; color: rgba(10,10,10,0.65); font-weight: 500; margin-top: 20px; }

/* ── ZONES ── */
#zones { background: var(--bg2); }
.zones-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 48px;
}
.zone-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  text-decoration: none; color: inherit;
  transition: all 0.3s var(--spring);
  display: flex; flex-direction: column; gap: 6px;
}
.zone-card:hover {
  border-color: rgba(245,168,0,0.4); transform: translateY(-4px);
  box-shadow: var(--shadow-md); background: var(--bg2);
}
.zone-num { font-size: 36px; font-weight: 900; color: var(--accent); letter-spacing: -2px; line-height: 1; }
.zone-name { font-size: 15px; font-weight: 700; color: var(--text); }
.zone-cities { font-size: 12px; color: var(--muted); line-height: 1.5; }
.zone-arrow { margin-top: 8px; opacity: 0; transform: translateX(-4px); transition: all 0.25s var(--spring); }
.zone-card:hover .zone-arrow { opacity: 1; transform: translateX(0); }

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; font-family: inherit;
  font-size: 16px; font-weight: 700; color: var(--text); text-align: left;
}
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--muted);
  transition: transform 0.3s var(--spring);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--spring), padding 0.3s;
  font-size: 15px; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 24px 20px; }

/* ── FOOTER ── */
footer {
  background: var(--bg-footer);
  padding: 80px 24px 32px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top-center {
  text-align: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 56px;
}
.footer-top-center .cube-wrap { margin-bottom: 32px; }
.footer-tagline {
  font-size: clamp(24px,4vw,36px); font-weight: 800;
  color: #fff; letter-spacing: -1.5px; line-height: 1.2; margin-bottom: 8px;
}
.footer-tagline2 {
  font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 480px; margin: 0 auto;
}
.footer-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer-logo-text { font-size: 15px; font-weight: 800; color: #fff; }
.footer-slogan { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 220px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--accent); }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 56px; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── REVEALS ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }

/* ── FOCUS STATES ── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-top-grid, .features-bottom-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  section { padding: 72px 0; }
  .hero-title { letter-spacing: -2.5px; }
  .problem-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(2,1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-dark, .btn-outline { width: 100%; justify-content: center; }
  .zones-grid { grid-template-columns: repeat(2,1fr); }
  .features-top-grid, .features-bottom-grid { grid-template-columns: 1fr; }
}

/* ── ZONE PAGES (v3) ── */
.zone-page-hero {
  padding: 140px 24px 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.zone-page-hero-inner { max-width: 1160px; margin: 0 auto; }
.zone-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); text-decoration: none;
  margin-bottom: 24px; transition: color 0.2s;
}
.zone-breadcrumb:hover { color: var(--text); }
.zone-page-hero h1 {
  font-size: clamp(36px,6vw,72px); font-weight: 900;
  letter-spacing: -3px; line-height: 1.0; margin-bottom: 20px; color: var(--text);
}
.zone-page-hero h1 .accent { color: var(--accent); }
.zone-page-hero p { font-size: 18px; color: var(--muted); max-width: 540px; line-height: 1.7; margin-bottom: 36px; }
.zone-cities-section { padding: 72px 0; background: var(--bg2); }
.zone-cities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 40px; }
.zone-city-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 18px; font-size: 14px; font-weight: 600; color: var(--text2);
  text-decoration: none;
  transition: all 0.25s var(--spring);
}
.zone-city-item:hover { border-color: rgba(245,168,0,0.3); color: var(--text); box-shadow: var(--shadow); }
.zone-cta-section { padding: 72px 0; background: var(--bg); text-align: center; }
@media (max-width: 768px) {
  .zone-cities-grid { grid-template-columns: repeat(2,1fr); }
  .zone-page-hero { padding: 120px 20px 60px; }
}

/* ── SERVICE PAGES (v3) ── */
.service-hero {
  padding: 140px 24px 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.service-hero-inner { max-width: 800px; margin: 0 auto; }
.service-steps-section { padding: 80px 0; background: var(--bg2); }
.service-steps { max-width: 600px; margin: 0 auto; }
.service-tarif-section { padding: 72px 0; background: var(--bg); text-align: center; }
.tarif-card {
  display: inline-block; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 56px; box-shadow: var(--shadow-md);
  text-align: center;
}
.tarif-from { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.tarif-price { font-size: 56px; font-weight: 900; color: var(--accent); letter-spacing: -3px; line-height: 1; }
.tarif-desc { font-size: 14px; color: var(--muted); margin-top: 8px; }
.service-cta-section { padding: 72px 0; background: var(--accent); text-align: center; }

/* ── CITY/VILLE PAGES LAYOUT ── */
.city-layout-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .city-layout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .city-layout-grid > aside {
    display: none;
  }
}

/* ── DEVIS FORM RESPONSIVE ── */
.devis-inner-pad { padding: 44px 40px; }
.devis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) {
  .devis-inner-pad { padding: 24px 18px; }
  .devis-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE GLOBAL FIXES ── */
@media (max-width: 480px) {
  #hero { padding-top: 100px; padding-left: 18px; padding-right: 18px; }
  .hero-title { letter-spacing: -2px; }
  .net-notif { font-size: 11px; padding: 8px 14px; max-width: calc(100vw - 40px); white-space: normal; text-align: center; }
  .container { padding: 0 18px; }
  section { padding: 60px 0; }
}
