/* ============================================================
   FLEX MOTORS — Premium luxury dark theme
   Design system, animations, responsive
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --bg: #07070a;
  --bg-elev: #0e0e12;
  --bg-card: #131318;
  --bg-card-2: #1a1a20;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f5f7;
  --text-2: #b8b8c0;
  --text-3: #6a6a78;

  --accent: #00d4ff;       /* electric cyan-blue — covering Flex Motors */
  --accent-hover: #4de8ff;
  --accent-glow: rgba(0, 212, 255, 0.4);
  --accent-soft: rgba(0, 212, 255, 0.10);
  --accent-line: rgba(255, 30, 166, 0.4);

  --accent-2: #ffe600;     /* jaune covering */
  --accent-3: #4dffd9;     /* cyan menthe covering */
  --accent-2-soft: rgba(255, 230, 0, 0.1);
  --accent-3-soft: rgba(77, 255, 217, 0.1);

  --gold: #d4af37;
  --whatsapp: #25D366;

  /* Type */
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Sizing */
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  /* Container */
  --container: 1280px;
  --pad: clamp(20px, 5vw, 80px);

  /* Easing */
  --ease: cubic-bezier(0.7, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== AMG / BRABUS STRUCTURAL REFINEMENTS ===== */
:root {
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.8);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,0.08) inset, 0 40px 80px -30px rgba(0,0,0,0.9);
  --rule: 1px solid rgba(255,255,255,0.06);
}

/* ===== TYPOGRAPHY ===== */
.section-title, .hero-title, .cta-title, .route-title, .split-title { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; line-height: 0.95; }
.section-title em, .hero-title em, .cta-title em, .route-title em, .split-title em, .why-card h3 em {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 350;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  letter-spacing: -0.025em;
}
em { font-style: italic; font-family: 'Fraunces', serif; font-weight: 350; }

/* ===== CUSTOM FLAGS ===== */
.flag {
  display: inline-block;
  width: 22px; height: 16px;
  border-radius: 3px;
  overflow: hidden;
  vertical-align: middle;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 2px 6px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.flag-fr { background: linear-gradient(to right, #0055A4 33.33%, #fff 33.33%, #fff 66.66%, #EF4135 66.66%); }
.flag-gb {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'><clipPath id='t'><path d='M30 15h30v15zV0H0v15zh30v15zV0h-30v15z'/></clipPath><path fill='%23012169' d='M0 0h60v30H0z'/><path stroke='%23fff' stroke-width='6' d='M0 0l60 30M60 0L0 30'/><path stroke='%23C8102E' stroke-width='4' clip-path='url(%23t)' d='M0 0l60 30M60 0L0 30'/><path stroke='%23fff' stroke-width='10' d='M30 0v30M0 15h60'/><path stroke='%23C8102E' stroke-width='6' d='M30 0v30M0 15h60'/></svg>");
  background-size: cover; background-position: center;
}

/* ===== Language switcher ===== */
.lang-switcher { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-2); font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; cursor: pointer; transition: all 0.25s var(--ease);
}
.lang-toggle:hover { color: var(--text); border-color: var(--border-strong); }
.lang-toggle svg { width: 14px; height: 14px; }
.lang-current { text-transform: uppercase; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 160px; background: var(--bg-card-2); border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 6px; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 100; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}
.lang-switcher.open .lang-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lang-menu button {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px; font-size: 13px;
  color: var(--text-2); transition: all 0.2s var(--ease); text-align: left;
}
.lang-menu button .flag { margin: 0; }
.lang-menu button:hover { background: var(--bg-card); color: var(--text); }
.lang-menu button.active { background: var(--accent-soft); color: var(--accent); }

/* ===== RTL support (Arabic) ===== */
html[dir="rtl"] body { font-family: 'Noto Sans Arabic', 'Inter', sans-serif; }
html[dir="rtl"] .nav-link span:first-child,
html[dir="rtl"] .stat-num em,
html[dir="rtl"] .pc-price em,
html[dir="rtl"] .ticker-msg { unicode-bidi: plaintext; }
html[dir="rtl"] .hero-title em,
html[dir="rtl"] .section-title em,
html[dir="rtl"] .cta-title em { font-style: italic; }
html[dir="rtl"] .hero-photo { right: auto; left: 0;
  mask-image: linear-gradient(to right, black 0%, black 30%, transparent 95%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 30%, transparent 95%);
}
html[dir="rtl"] .nav-link span:first-child { margin-left: 6px; margin-right: 0; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .float-whatsapp { right: auto; left: 24px; }
html[dir="rtl"] .float-pulse { right: auto; left: 0; }
html[dir="rtl"] .hero-ticker { right: auto; left: 32px; flex-direction: row-reverse; }
html[dir="rtl"] .scroll-line::after { animation-direction: reverse; }
html[dir="rtl"] .marquee-track { direction: ltr; }
@media (max-width: 1024px) {
  html[dir="rtl"] .float-whatsapp { left: 16px; }
}
.flag-es {
  background:
    linear-gradient(to bottom, #AA151B 0, #AA151B 25%, transparent 25%, transparent 75%, #AA151B 75%),
    #F1BF00;
}
.flag-es::after {
  content: ''; position: absolute; left: 4px; top: 5px; width: 5px; height: 6px;
  background: linear-gradient(135deg, #AD1519, #C8102E);
  border-radius: 1px;
}
.flag-ma { background: #C1272D; display: inline-flex; align-items: center; justify-content: center; }
.flag-ma::after {
  content: '★'; color: transparent;
  font-size: 9px;
  -webkit-text-stroke: 0.8px #006233;
  line-height: 1;
}
.flag-pair { display: inline-flex; align-items: center; gap: 6px; }
.flag-pair .flag-arrow { color: var(--accent); font-weight: 700; font-size: 12px; line-height: 1; }
.flag-lg .flag { width: 32px; height: 22px; border-radius: 4px; }
.flag-lg .flag-ma::after { font-size: 13px; -webkit-text-stroke: 1px #006233; }
.flag-lg .flag-es::after { left: 6px; top: 7px; width: 6px; height: 8px; }

/* ===== UTILITY ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section + .section { padding-top: 0; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), #ff6a3d);
  z-index: 1001; transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--accent);
}

/* ===== NOISE OVERLAY ===== */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== LOADER ===== */
.loader { position: fixed; inset: 0; background: var(--bg); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s var(--ease), visibility 0.6s; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-text { font-family: var(--font-display); font-size: clamp(40px, 8vw, 80px); letter-spacing: 0.05em; color: var(--text); display: flex; gap: 4px; justify-content: center; }
.loader-text span { display: inline-block; opacity: 0; transform: translateY(20px); animation: loaderLetter 0.6s var(--ease) forwards; }
.loader-text span:nth-child(1) { animation-delay: 0.05s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.15s; }
.loader-text span:nth-child(4) { animation-delay: 0.2s; }
.loader-text span:nth-child(5) { animation-delay: 0.25s; color: var(--accent); }
.loader-text span:nth-child(6) { animation-delay: 0.3s; }
.loader-text span:nth-child(7) { animation-delay: 0.35s; }
.loader-text span:nth-child(8) { animation-delay: 0.4s; }
.loader-text span:nth-child(9) { animation-delay: 0.45s; }
.loader-text span:nth-child(10) { animation-delay: 0.5s; }
.loader-text span:nth-child(11) { animation-delay: 0.55s; }
@keyframes loaderLetter { to { opacity: 1; transform: translateY(0); } }
.loader-bar { width: clamp(200px, 30vw, 320px); height: 2px; background: var(--border); margin: 24px auto 0; overflow: hidden; }
.loader-progress { height: 100%; background: var(--accent); transform-origin: left; transform: scaleX(0); animation: loaderBar 1.4s var(--ease) 0.5s forwards; }
@keyframes loaderBar { to { transform: scaleX(1); } }

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [data-magnetic], summary, .radio-card, .check-card, .tab, .gallery-item, .float-whatsapp { cursor: none; }
  .cursor { position: fixed; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: transform 0.15s var(--ease), background 0.2s; mix-blend-mode: difference; }
  .cursor-follow { position: fixed; width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50%; pointer-events: none; z-index: 9997; transform: translate(-50%, -50%); transition: transform 0.4s var(--ease), border-color 0.3s, width 0.3s, height 0.3s; }
  body.cursor-hover .cursor { transform: translate(-50%, -50%) scale(0.4); background: var(--text); }
  body.cursor-hover .cursor-follow { transform: translate(-50%, -50%) scale(1.6); border-color: var(--accent); }
}
@media (hover: none) { .cursor, .cursor-follow { display: none; } }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px var(--pad); transition: all 0.4s var(--ease); }
.nav.scrolled { padding: 12px var(--pad); background: rgba(7,7,10,0.7); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; color: var(--text); }
.logo-img { height: 32px; width: auto; transition: transform 0.4s var(--ease); }
.logo:hover .logo-img { transform: scale(1.04); }
.logo-icon { width: 32px; height: auto; color: var(--accent); transition: transform 0.4s var(--ease); }
.logo:hover .logo-icon { transform: translateX(4px) rotate(-3deg); }
.logo-text { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.03em; line-height: 1; }
.logo-text em { font-style: normal; color: var(--accent); }
.logo-footer .logo-img { height: 36px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--text-2); border-radius: 100px; transition: all 0.3s var(--ease); display: flex; align-items: center; gap: 6px; }
.nav-link span { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); transition: color 0.3s; }
.nav-link:hover { color: var(--text); background: var(--bg-card); }
.nav-link:hover span { color: var(--accent); }

.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; background: var(--accent); color: #fff; border-radius: 100px; font-size: 13px; font-weight: 600; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta::before { content: ''; position: absolute; inset: 0; background: var(--accent-hover); transform: translateY(100%); transition: transform 0.3s var(--ease); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover { box-shadow: 0 8px 28px var(--accent-glow); transform: translateY(-1px); }
.nav-cta > * { position: relative; z-index: 1; }

.nav-burger { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text); transition: 0.3s; }
.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); }

@media (max-width: 1024px) {
  .nav-links { position: fixed; inset: 0; background: rgba(7,7,10,0.96); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; gap: 24px; opacity: 0; visibility: hidden; transition: 0.4s; }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-link { font-size: 24px; padding: 12px 28px; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; padding-top: 170px; padding-bottom: 40px; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero-glow { position: absolute; width: 800px; height: 800px; border-radius: 50%; filter: blur(120px); opacity: 0.4; }
.hero-glow:nth-child(2) { background: radial-gradient(circle, var(--accent) 0%, transparent 70%); top: -200px; left: -200px; animation: glowDrift 18s ease-in-out infinite; }
.hero-glow.hero-glow-2 { background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%); bottom: -200px; right: -200px; opacity: 0.3; animation: glowDrift 22s ease-in-out infinite reverse; }

.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  pointer-events: none; opacity: 0.35;
  mask-image: linear-gradient(to left, black 0%, black 30%, transparent 95%);
  -webkit-mask-image: linear-gradient(to left, black 0%, black 30%, transparent 95%);
  animation: heroPhotoZoom 14s ease-in-out infinite alternate;
}
@keyframes heroPhotoZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.85) contrast(1.1); }
@media (max-width: 1024px) {
  .hero-photo { width: 100%; opacity: 0.18; mask-image: linear-gradient(to top, black 30%, transparent 90%); -webkit-mask-image: linear-gradient(to top, black 30%, transparent 90%); }
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(80px, 60px); }
}

.hero-marquee {
  position: absolute; top: 100px; left: 0; right: 0;
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0;
  background: rgba(255,255,255,0.02);
}
.marquee-track { display: flex; flex-wrap: nowrap; align-items: center; gap: 48px; white-space: nowrap; width: max-content; animation: marquee 40s linear infinite; font-family: var(--font-display); font-size: 18px; letter-spacing: 0.1em; color: var(--text-2); }
.marquee-track > span { display: inline-block; flex: 0 0 auto; }
.marquee-track .dot:nth-child(4n) { color: var(--accent); }
.marquee-track .dot:nth-child(4n+2) { color: var(--accent-2); }
.marquee-track .dot:nth-child(4n+6), .marquee-track .dot:nth-child(4n) { color: var(--accent-3); }
.marquee-track .dot { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-content { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); width: 100%; position: relative; z-index: 2; }

/* ===== HERO SIDE EDITORIAL ===== */
.hero-side {
  position: absolute; left: 24px; top: 0; bottom: 0; width: 80px;
  z-index: 3; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 100px 0 100px;
  border-right: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--text-3); text-transform: uppercase;
}
.hero-side-top { display: flex; flex-direction: column; gap: 4px; padding-left: 4px; }
.hero-side-label { color: var(--text-3); font-size: 9px; }
.hero-side-year { color: var(--accent); font-size: 14px; font-family: var(--font-display); letter-spacing: 0.05em; }
.hero-side-vert {
  writing-mode: vertical-rl; transform: rotate(180deg);
  align-self: center; font-size: 9px; letter-spacing: 0.4em;
  color: var(--text-2); opacity: 0.7;
  animation: vertText 1.4s var(--ease) 1.5s both;
}
@keyframes vertText { from { opacity: 0; transform: rotate(180deg) translateY(20px); } to { opacity: 0.7; transform: rotate(180deg); } }
.hero-side-bottom { padding-left: 4px; }
.coord-block { display: flex; flex-direction: column; gap: 4px; font-size: 9px; }
.coord-tag { color: var(--text-2); }
.coord-name { color: var(--accent); font-weight: 700; margin-top: 6px; font-size: 10px; }
@media (max-width: 1024px) { .hero-side { display: none; } }

/* ===== HERO TICKER ===== */
.hero-ticker {
  position: absolute; bottom: 32px; right: 32px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  background: rgba(20,20,25,0.6); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
  color: var(--text-2);
  animation: tickerSlide 1s var(--ease) 2s both;
}
@keyframes tickerSlide { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.ticker-dot { width: 8px; height: 8px; background: var(--accent-3); border-radius: 50%; box-shadow: 0 0 10px var(--accent-3); animation: tickerPulse 1.5s ease-in-out infinite; }
.ticker-label { color: var(--accent-2) !important; }
@keyframes tickerPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.ticker-label { color: var(--accent); font-weight: 700; letter-spacing: 0.1em; font-size: 10px; }
.ticker-msg { color: var(--text); transition: opacity 0.4s; }
@media (max-width: 700px) { .hero-ticker { right: 16px; bottom: 80px; padding: 8px 14px; font-size: 10px; } .ticker-msg { display: none; } }

/* ===== HERO DATE / ISSUE ===== */
.hero-date {
  position: absolute; bottom: 32px; left: var(--pad); z-index: 4;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; color: var(--text-3); text-transform: uppercase;
  animation: heroSideFade 1s var(--ease) 1.8s both;
}
.hd-issue { color: var(--accent); font-weight: 700; }
.hd-date { color: var(--text-2); font-size: 14px; font-family: var(--font-display); letter-spacing: 0.05em; }
.hd-time { color: var(--text-3); }
@keyframes heroSideFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1024px) { .hero-date { left: 24px; } }
@media (max-width: 600px) { .hero-date { display: none; } }

/* ===== LETTER SPLIT ===== */
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line[data-split] .word {
  display: inline-block; white-space: nowrap; overflow: hidden;
  vertical-align: top;
}
.hero-title .line[data-split] .char {
  display: inline-block;
  transform: translateY(110%) rotate(2deg); opacity: 0;
  transition: transform 0.9s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.6s var(--ease);
  will-change: transform, opacity;
}
.hero-title .line[data-split].in .char { transform: translateY(0) rotate(0); opacity: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--text-2); letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 32px;
}
.dot-pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; position: relative; }
.dot-pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--accent); opacity: 0.4; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.5); opacity: 0.6; } 100% { transform: scale(2); opacity: 0; } }

.hero-title { font-size: clamp(56px, 11vw, 180px); margin-bottom: 32px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .accent { color: var(--accent); }
/* Use the global premium Fraunces italic for hero-title em (defined at line ~72) */

.hero-sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--text-2); max-width: 680px; margin-bottom: 40px; line-height: 1.5; }
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 80px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 28px; border-radius: 100px; font-size: 14px; font-weight: 600; letter-spacing: 0.01em; transition: all 0.3s var(--ease); position: relative; overflow: hidden; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--accent-hover), var(--accent-3)); transform: translateY(101%); transition: transform 0.4s var(--ease); }
.btn-primary:hover { box-shadow: 0 14px 40px var(--accent-glow); transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); transform: translateY(-2px); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4); transform: translateY(-2px); background: #1ab14f; }

.btn-large { padding: 20px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===== HERO STATS ===== */
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 32px; padding-top: 40px; border-top: 1px solid var(--border); max-width: 800px; }
.nav-link-cta { display: none; } /* Hidden by default; only shown in mobile open menu */
.stat-num { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); line-height: 1; color: var(--text); display: flex; align-items: baseline; gap: 2px; }
.stat-num em { color: var(--accent-2); font-style: normal; font-size: 0.6em; margin-left: 4px; }
.stat-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; font-weight: 500; }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2; }
.hero-scroll span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-3); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--text-2), transparent); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -30px; left: 0; right: 0; height: 30px; background: linear-gradient(to bottom, transparent, var(--accent-3)); animation: scrollLine 2.5s ease-in-out infinite; }
@keyframes scrollLine { 0% { top: -30px; } 100% { top: 60px; } }

/* ===== SECTION HEAD ===== */
.section { position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 80px; position: relative; z-index: 2; }
.section-head-left { text-align: left; margin: 0 0 60px; }
.section-tag { display: inline-block; padding: 6px 14px; border: 1px solid var(--border); border-radius: 100px; font-family: var(--font-mono); font-size: 11px; color: var(--text-2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); }
.section-title { font-size: clamp(40px, 7vw, 96px); margin-bottom: 20px; }
.section-title em { color: var(--accent); }
.section-sub { font-size: clamp(15px, 1.4vw, 18px); color: var(--text-2); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.section-head-left .section-sub { margin: 0; }

/* ===== GHOST NUMBERS ===== */
.ghost-num {
  position: absolute; top: 5%; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: clamp(180px, 28vw, 420px);
  line-height: 1; color: rgba(255,255,255,0.025);
  pointer-events: none; z-index: 0;
  letter-spacing: -0.04em;
  user-select: none;
}
@media (max-width: 700px) { .ghost-num { font-size: 200px; opacity: 0.6; } }

/* ===== SERVICES (photo cards premium) ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative; aspect-ratio: 4 / 5; min-height: 440px;
  border-radius: var(--radius); overflow: hidden; isolation: isolate;
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), border-color 0.4s;
  background: var(--bg-card);
  cursor: pointer;
}
.service-card[data-vehicle]:focus-visible,
.service-card[data-scroll-target]:focus-visible,
.price-card[data-vehicle]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.price-card[data-vehicle] { cursor: pointer; transition: transform 0.2s var(--ease), border-color 0.3s, background 0.3s; }
.price-card[data-vehicle]:active { transform: scale(0.98); }

/* Google reviews badge under section title */
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; margin-top: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-base); font-size: 13.5px;
  color: var(--text-2);
  letter-spacing: 0.005em;
  transition: transform 0.2s var(--ease), border-color 0.3s, color 0.3s, background 0.3s;
  text-decoration: none;
}
.google-badge:hover { border-color: var(--accent); color: var(--text); transform: translateY(-1px); background: var(--bg-card-2); }
.google-badge strong { color: #ffe600; font-family: var(--font-base); font-weight: 700; letter-spacing: 0.01em; }
.google-badge svg:last-child { color: var(--text-3); transition: color 0.3s, transform 0.3s; }
.google-badge:hover svg:last-child { color: var(--accent); transform: translate(2px, -2px); }
@media (max-width: 768px) {
  .google-badge { padding: 8px 14px; font-size: 12.5px; gap: 8px; }
  .google-badge svg:first-child { width: 16px; height: 16px; }
}
@keyframes rcPulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft); transform: translateY(0); }
  40%      { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.32); transform: translateY(-2px); }
}
.radio-card.rc-pulse { animation: rcPulse 0.7s ease-in-out 2; }
.service-photo { position: absolute; inset: 0; z-index: 0; transform: translateZ(0); }
.service-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.9) brightness(0.7);
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); }
.service-card:hover .service-photo img { transform: scale(1.08); filter: saturate(1.05) brightness(0.85); }
.service-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; padding: 28px;
  background: linear-gradient(180deg, rgba(7,7,10,0) 0%, rgba(7,7,10,0.35) 50%, rgba(7,7,10,0.95) 100%);
}
.service-num {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; color: var(--accent-3);
  letter-spacing: 0.18em; font-weight: 700;
  padding: 5px 10px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px; backdrop-filter: blur(8px); background: rgba(7,7,10,0.4);
}
.service-card:nth-child(2) .service-num { color: var(--accent-2); }
.service-card:nth-child(3) .service-num { color: var(--accent); }
.service-card:nth-child(4) .service-num { color: var(--accent-3); }
.service-card:nth-child(5) .service-num { color: var(--accent-2); }
.service-card:nth-child(6) .service-num { color: var(--accent); }

.service-card h3 {
  font-family: var(--font-display); font-size: clamp(38px, 4vw, 60px);
  font-weight: 700; line-height: 0.95; letter-spacing: 0;
  margin-top: auto; margin-bottom: 14px; color: #fff;
}
.service-card h3 em { font-family: var(--font-display); color: var(--accent); font-style: normal; }
.service-card:nth-child(2) h3 em { color: var(--accent-2); }
.service-card:nth-child(3) h3 em { color: var(--accent-3); }
.service-card:nth-child(4) h3 em { color: var(--accent); }
.service-card:nth-child(5) h3 em { color: var(--accent-2); }
.service-card:nth-child(6) h3 em { color: var(--accent-3); }

.service-card p {
  color: rgba(255,255,255,0.78); font-size: 13.5px; line-height: 1.55;
  margin-bottom: 18px;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin-bottom 0.4s;
}
.service-card:hover p { max-height: 140px; opacity: 1; }
.service-card p strong { color: #fff; font-weight: 600; }
.service-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.14);
}
.service-meta .from {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.14em; text-transform: uppercase;
}
.service-meta .price {
  font-family: var(--font-display); font-size: 32px; color: #fff;
  letter-spacing: 0.02em;
}
.service-arrow {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(8px); background: rgba(7,7,10,0.4);
}
.service-arrow svg { width: 14px; height: 14px; color: #fff; transition: transform 0.4s; }
.service-card:hover .service-arrow { background: var(--accent); border-color: var(--accent); transform: rotate(-12deg); }
.service-card:hover .service-arrow svg { transform: translate(2px, -2px); }
.service-card:nth-child(2):hover .service-arrow { background: var(--accent-2); border-color: var(--accent-2); }
.service-card:nth-child(2):hover .service-arrow svg { color: #000; }
.service-card:nth-child(3):hover .service-arrow { background: var(--accent-3); border-color: var(--accent-3); }
.service-card:nth-child(3):hover .service-arrow svg { color: #000; }
.service-card:nth-child(5):hover .service-arrow { background: var(--accent-2); border-color: var(--accent-2); }
.service-card:nth-child(5):hover .service-arrow svg { color: #000; }
.service-card:nth-child(6):hover .service-arrow { background: var(--accent-3); border-color: var(--accent-3); }
.service-card:nth-child(6):hover .service-arrow svg { color: #000; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .service-card { min-height: 380px; } }
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { aspect-ratio: 4 / 3.2; min-height: 320px; }
  .service-card p { max-height: 90px; opacity: 1; margin-bottom: 14px; }
  .service-overlay { padding: 22px; }
  .service-card h3 { font-size: 38px; }
}

/* ===== SHOWCASE STRIP ===== */
.showcase { padding: 40px 0 80px; overflow: hidden; }
.showcase-marquee { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.showcase-track { display: flex; gap: 16px; animation: showcaseMarquee 90s linear infinite; padding-left: 16px; }
.showcase-track:hover { animation-play-state: paused; }
@keyframes showcaseMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.showcase-item {
  flex: 0 0 380px; aspect-ratio: 4/3; position: relative;
  border-radius: var(--radius); overflow: hidden; margin: 0;
  background: var(--bg-card); transform: translateZ(0);
}
.showcase-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.showcase-item:hover img { transform: scale(1.05) translateZ(0); }
.showcase-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 18px 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
@media (max-width: 600px) { .showcase-item { flex: 0 0 240px; } }

/* ===== ROUTES ===== */
.routes-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: stretch; }
.map-wrap { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; aspect-ratio: 800 / 760; min-height: 720px; }
.route-map { width: 100%; height: 100%; display: block; }
.city circle:nth-child(2) { transform-origin: center; animation: cityPulse 2.5s ease-in-out infinite; }
@keyframes cityPulse { 0%, 100% { r: 6; } 50% { r: 8; } }

.routes-list { display: flex; flex-direction: column; gap: 16px; }
.route-card { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s var(--ease); cursor: pointer; }
.route-card:hover, .route-card.active { border-color: var(--accent); background: linear-gradient(135deg, var(--bg-card), rgba(255,45,45,0.04)); }
.route-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.route-flags { font-size: 18px; }
.route-time { font-family: var(--font-mono); font-size: 11px; padding: 4px 10px; background: var(--bg-card-2); border-radius: 100px; color: var(--text-2); letter-spacing: 0.05em; }
.route-title { font-family: var(--font-display); font-size: 32px; margin-bottom: 12px; letter-spacing: 0.02em; }
.route-desc { color: var(--text-2); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.route-stops { display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: center; font-size: 12px; color: var(--text-3); margin-bottom: 16px; font-family: var(--font-mono); }
.route-stops .arrow { color: var(--accent); }
.route-from { display: flex; align-items: baseline; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.route-from span { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.route-from strong { font-family: var(--font-display); font-size: 28px; color: var(--text); }

@media (max-width: 1024px) {
  .routes-wrap { grid-template-columns: 1fr; gap: 32px; }
  .map-wrap { aspect-ratio: 800 / 760; min-height: 640px; max-width: 720px; margin: 0 auto; }
}

/* ===== TARIFS ===== */
/* AMG-inspired tabs : underline indicator, refined spacing */
.tarifs-tabs {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px; padding: 0;
  border-bottom: 1px solid var(--border);
  max-width: max-content; margin-left: auto; margin-right: auto;
  position: relative;
}
.tab {
  padding: 18px 28px; border-radius: 0; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-3); transition: color 0.3s var(--ease);
  display: flex; align-items: center; gap: 10px;
  position: relative; background: transparent;
}
.tab-flags { font-size: 16px; }
.tab::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: -1px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.tab:hover { color: var(--text-2); }
.tab.active { color: var(--text); }
.tab.active::after { transform: scaleX(1); }
@media (max-width: 700px) { .tab { padding: 14px 16px; font-size: 11px; } }

.tarifs-panel { display: none; }
.tarifs-panel.active { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.price-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--bg-card-2); }
.price-card.featured { background: linear-gradient(135deg, var(--bg-card), rgba(255,45,45,0.08)); border-color: rgba(255,45,45,0.3); }
.pc-icon {
  width: 64px; height: 64px; margin-bottom: 16px;
  border-radius: 12px; overflow: hidden;
  position: relative; transform: translateZ(0);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.pc-icon img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
  image-rendering: -webkit-optimize-contrast;
}
.pc-icon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,30,166,0) 0%, rgba(255,30,166,0.12) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.price-card:hover .pc-icon { transform: translateY(-3px); border-color: var(--accent); }
.price-card:hover .pc-icon img { transform: scale(1.12); }
.price-card:hover .pc-icon::after { opacity: 1; }
.price-card.featured .pc-icon { border-color: var(--accent); }
.pc-name { font-size: 14px; color: var(--text-2); margin-bottom: 16px; font-weight: 500; }
.pc-price { font-family: var(--font-display); font-size: 56px; color: var(--text); line-height: 1; }
.pc-price em { font-size: 0.5em; color: var(--accent); font-style: normal; margin-left: 2px; }
.pc-badge { position: absolute; top: 16px; right: 16px; background: var(--accent-2); color: #000; padding: 4px 10px; border-radius: 100px; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.price-card-info { background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card)); }
.pc-list { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-top: 8px; }

.tarifs-note { text-align: center; margin-top: 32px; font-size: 12px; color: var(--text-3); font-family: var(--font-mono); }

@media (max-width: 900px) { .tarifs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tarifs-grid { grid-template-columns: 1fr; } .pc-price { font-size: 44px; } }

/* ===== WHY ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 36px 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); position: relative; transition: all 0.3s var(--ease); }
.why-card:hover { background: var(--bg-card-2); border-color: var(--border-strong); transform: translateY(-4px); }
.why-num { position: absolute; top: 28px; right: 32px; font-family: var(--font-mono); font-size: 11px; color: var(--accent-2); letter-spacing: 0.1em; font-weight: 700; }
.why-icon { width: 48px; height: 48px; color: var(--accent); margin-bottom: 24px; }
.why-card:nth-child(2) .why-icon { color: var(--accent-3); }
.why-card:nth-child(3) .why-icon { color: var(--accent-2); }
.why-card:nth-child(4) .why-icon { color: var(--accent); }
.why-card:nth-child(5) .why-icon { color: var(--accent-3); }
.why-card:nth-child(6) .why-icon { color: var(--accent-2); }
.why-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.3; }
.why-card h3 em { color: var(--accent); }
.why-card p { color: var(--text-2); font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== DEVIS / CALCULATOR ===== */
.devis-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.devis-form { display: flex; flex-direction: column; gap: 32px; }
.form-step { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.form-label { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; margin-bottom: 18px; color: var(--text-2); }
.form-label > span:first-child {
  flex: 0 0 26px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #07070a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.form-label > span:nth-child(2) {
  flex: 1; min-width: 0;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
}

.radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.radio-grid-2 { grid-template-columns: repeat(3, 1fr); }
.radio-card { padding: 16px 12px; background: var(--bg-card-2); border: 1.5px solid var(--border); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.25s var(--ease); position: relative; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.radio-card:has(input:checked) { background: var(--accent-soft); border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.rc-icon {
  width: 56px; height: 56px; margin-bottom: 10px;
  border-radius: 10px; overflow: hidden;
  position: relative; transform: translateZ(0);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.rc-icon img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.4s;
  filter: saturate(0.85);
  image-rendering: -webkit-optimize-contrast;
}
.radio-card:has(input:checked) .rc-icon { border-color: var(--accent); transform: scale(1.05); }
.radio-card:has(input:checked) .rc-icon img { filter: saturate(1.1); }
.rc-name { font-size: 12px; font-weight: 500; color: var(--text); }
.route-radio { padding: 18px 14px; }
.rc-flag { font-size: 18px; margin-bottom: 6px; }
.rc-route { font-size: 13px; font-weight: 600; }

.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.check-card { padding: 14px 16px; background: var(--bg-card-2); border: 1.5px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: space-between; transition: all 0.25s var(--ease); position: relative; }
.check-card input { position: absolute; opacity: 0; pointer-events: none; }
.check-card:hover { border-color: var(--border-strong); }
.check-card:has(input:checked) { background: var(--accent-soft); border-color: var(--accent); }
.check-name { font-size: 13px; font-weight: 500; }
.check-info { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); padding: 3px 8px; background: var(--bg); border-radius: 100px; }
.check-card:has(input:checked) .check-info { background: var(--accent); color: #fff; }

.devis-result { position: sticky; top: 100px; }
.result-card { padding: 32px; background: linear-gradient(135deg, var(--bg-card), var(--bg-card-2)); border: 1px solid var(--border-strong); border-radius: var(--radius); position: relative; overflow: hidden; }
.result-card::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.result-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.result-price { font-family: var(--font-display); font-size: clamp(64px, 8vw, 96px); line-height: 1; margin-bottom: 8px; color: var(--text); }
.result-price em { font-size: 0.5em; color: var(--accent); font-style: normal; margin-left: 4px; }
.result-detail { font-size: 14px; color: var(--text-2); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

.result-breakdown { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; min-height: 80px; }
.bd-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; }
.bd-row span:first-child { color: var(--text-2); }
.bd-row span:last-child { color: var(--text); font-weight: 500; }
.bd-row.bd-total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 8px; font-weight: 600; }
.bd-row.bd-total span:last-child { color: var(--accent); font-size: 16px; }

.result-info { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.result-note {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.5;
  padding: 10px 12px;
  margin: 0 0 14px;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 10px;
  letter-spacing: 0.005em;
}
.info-item { font-size: 12px; color: var(--text-2); }

@media (max-width: 1024px) {
  .devis-wrap { grid-template-columns: 1fr; }
  .devis-result { position: static; }
}
@media (max-width: 600px) {
  .radio-grid, .radio-grid-2, .checkbox-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== SPLIT SECTION ===== */
.split-section { padding: 0 0 clamp(80px, 12vw, 160px); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card { padding: 48px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.split-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--accent-3); margin-bottom: 20px; text-transform: uppercase; font-weight: 700; }
.split-card:nth-child(2) .split-tag { color: var(--accent-2); }
.split-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); line-height: 1; margin-bottom: 20px; }
.split-title em { color: var(--accent); }
.split-desc { color: var(--text-2); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.split-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.split-list li { padding-left: 28px; position: relative; color: var(--text-2); font-size: 14px; line-height: 1.6; }
.split-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 16px; height: 2px; background: var(--accent-3); }
.split-card:nth-child(2) .split-list li::before { background: var(--accent-2); }
.split-list strong { color: var(--text); }
.split-prices { display: flex; flex-wrap: wrap; gap: 8px; }
.split-prices span { padding: 6px 12px; background: var(--bg-card-2); border: 1px solid var(--border); border-radius: 100px; font-family: var(--font-mono); font-size: 12px; color: var(--text-2); }
.split-warning { display: flex; gap: 14px; padding: 16px; background: rgba(255, 45, 45, 0.06); border: 1px solid rgba(255, 45, 45, 0.2); border-radius: var(--radius-sm); }
.split-warning span { font-size: 24px; }
.split-warning p { font-size: 13px; color: var(--text-2); line-height: 1.5; margin: 0; }

@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; } .split-card { padding: 32px; } }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  background: var(--bg-card);
  transform: translateZ(0);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,0) 50%, rgba(7,7,10,0.6) 100%);
  opacity: 0.5; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; background: linear-gradient(180deg, rgba(255,45,45,0.1) 0%, rgba(7,7,10,0.85) 100%); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  filter: saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.06) translateZ(0); filter: saturate(1.15); }
.gallery-item .gallery-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transform: scale(0.8); transition: 0.4s var(--ease);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-item .gallery-zoom svg { width: 16px; height: 16px; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px 18px;
  font-size: 13px; font-weight: 600; color: #fff;
  transform: translateY(8px); opacity: 0; transition: 0.4s var(--ease);
  z-index: 2;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.gallery-caption::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--accent);
  margin-bottom: 8px;
}
.gallery-item:nth-child(3n+1) .gallery-caption::before { background: var(--accent); }
.gallery-item:nth-child(3n+2) .gallery-caption::before { background: var(--accent-2); }
.gallery-item:nth-child(3n) .gallery-caption::before { background: var(--accent-3); }

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } .gallery-wide { grid-column: span 2; } }

/* ===== TESTIMONIALS ===== */
.testimonials { padding-bottom: clamp(80px, 12vw, 120px); overflow: hidden; }
.testimonials-marquee { overflow: hidden; padding: 20px 0; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.testimonials-track { display: flex; gap: 20px; animation: tMarquee 60s linear infinite; padding-left: 20px; }
.testimonials-track:hover { animation-play-state: paused; }
@keyframes tMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial {
  flex: 0 0 380px; padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
}
.t-stars { color: var(--accent-2); font-size: 14px; letter-spacing: 0.1em; }
.testimonial p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; flex: 1; }
.t-author { display: flex; flex-direction: column; padding-top: 14px; border-top: 1px solid var(--border); }
.t-author strong { font-size: 14px; color: var(--text); }
.t-author span { font-size: 12px; color: var(--text-3); margin-top: 2px; }
@media (max-width: 600px) {
  .testimonial { flex: 0 0 calc(100vw - 60px); max-width: 340px; padding: 22px; min-height: 200px; }
  .testimonials-track { padding-left: 24px; gap: 12px; }
}

/* ===== FAQ ===== */
.faq-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: clamp(16px, 1.4vw, 18px); font-weight: 500; color: var(--text);
  list-style: none; padding-right: 8px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--accent); transition: transform 0.3s var(--ease), background 0.3s, color 0.3s; width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-item[open] summary::after { background: var(--accent-2); color: #000; border-color: var(--accent-2); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding-top: 16px; color: var(--text-2); font-size: 15px; line-height: 1.7; max-width: 600px; }
.faq-answer strong { color: var(--text); }

@media (max-width: 900px) { .faq-container { grid-template-columns: 1fr; gap: 32px; } }

/* ===== CTA ===== */
.cta { position: relative; overflow: hidden; padding: clamp(80px, 14vw, 200px) 0; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.4; }
.cta-glow:nth-child(1) { background: radial-gradient(circle, var(--accent), transparent 70%); top: -100px; left: -100px; }
.cta-glow.cta-glow-2 { background: radial-gradient(circle, var(--accent-3), transparent 70%); bottom: -100px; right: -100px; opacity: 0.3; }
.cta-glow:nth-child(3) { background: radial-gradient(circle, var(--accent-2), transparent 70%); top: 50%; left: 50%; opacity: 0.2; transform: translate(-50%, -50%); animation: glowDrift 18s ease-in-out infinite; }
.cta-container { text-align: center; position: relative; z-index: 1; max-width: 900px; }
.cta-tag { display: inline-block; padding: 6px 14px; border: 1px solid var(--border); border-radius: 100px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--text-2); margin-bottom: 28px; text-transform: uppercase; }
.cta-title { font-size: clamp(48px, 8vw, 120px); margin-bottom: 32px; line-height: 0.95; }
.cta-title span { display: block; }
.cta-title em { color: var(--accent); }
.cta-sub { font-size: clamp(15px, 1.4vw, 18px); color: var(--text-2); max-width: 600px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.cta-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin: 0 auto; padding-top: 40px; border-top: 1px solid var(--border); }
.meta-item { display: flex; flex-direction: column; gap: 6px; }
.meta-item strong { font-family: var(--font-display); font-size: 22px; color: var(--text); letter-spacing: 0.02em; }
.meta-item span { font-size: 13px; color: var(--text-3); }

@media (max-width: 600px) { .cta-meta { grid-template-columns: 1fr; gap: 24px; } }

/* ===== FOOTER ===== */
.footer { padding: 80px 0 0; border-top: 1px solid var(--border); background: var(--bg-elev); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.footer-brand { max-width: 360px; }
.logo-footer { margin-bottom: 16px; }
.footer-brand p { color: var(--text-2); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-2); transition: all 0.3s var(--ease); }
.footer-socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; color: var(--text); letter-spacing: 0.02em; }
.footer-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-note { font-size: 13px; color: var(--text-3); margin-top: 12px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px var(--pad); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
}
.float-whatsapp svg { width: 28px; height: 28px; }
.float-whatsapp:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(37,211,102,0.6); }
.float-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--whatsapp); opacity: 0.5; animation: floatPulse 2s ease-out infinite; z-index: -1; }
@keyframes floatPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
.hero [data-reveal] { transition-delay: 0s; }

.hero-tag[data-reveal].in { transition-delay: 0.05s; }
.hero-title .line[data-reveal]:nth-child(1).in { transition-delay: 0.15s; }
.hero-title .line[data-reveal]:nth-child(2).in { transition-delay: 0.25s; }
.hero-title .line[data-reveal]:nth-child(3).in { transition-delay: 0.35s; }
.hero-sub[data-reveal].in { transition-delay: 0.5s; }
.hero-actions[data-reveal].in { transition-delay: 0.65s; }
.hero-stats[data-reveal].in { transition-delay: 0.8s; }

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-stats { gap: 24px; }
  .float-whatsapp { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* ===== SELECTION ===== */
::selection { background: var(--accent); color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card-2); border-radius: 100px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== A11Y ===== */
@media (prefers-reduced-motion: reduce) {
  /* Disable only flashy/looping decorative animations, keep informational marquees + reveal */
  .hero-glow, .float-pulse, .dot-pulse::after, .ticker-dot, .hero-photo { animation: none !important; }
  .truck-marker { animation: none !important; }
  /* Keep marquees running (they're tickers, not decoration) */
  .marquee-track { animation: marquee 40s linear infinite !important; }
  .testimonials-track { animation: tMarquee 60s linear infinite !important; }
  .showcase-track { animation: showcaseMarquee 90s linear infinite !important; }
}

/* ============================================================
   ====== MOBILE COMPREHENSIVE OVERRIDES (≤ 768px) ======
   Cleanup, fixes, redesign for phones
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad: 18px; }

  /* ------ Tap targets : everything clickable ≥ 44px ------ */
  a, button, .nav-link, .nav-cta, .btn, .tab,
  .radio-card, .check-card, summary, .gallery-item,
  .lang-toggle, [data-lang-btn] { min-height: 44px; -webkit-tap-highlight-color: rgba(255,30,166,0.15); }

  body { overflow-x: hidden; }

  /* ------ NAV : burger menu propre ------ */
  .nav { padding: 14px 16px; }
  .nav.scrolled { padding: 10px 16px; }
  .nav-inner { gap: 8px; }
  .logo-text { font-size: 16px; letter-spacing: 0.04em; }
  .logo-img, .logo-icon { height: 24px; width: auto; }

  .nav-links {
    position: fixed; inset: 0; height: 100dvh;
    background: linear-gradient(180deg, rgba(7,7,10,0.98), rgba(15,7,12,0.98));
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 12px; padding: 80px 24px 32px;
    opacity: 0; visibility: hidden; transform: translateY(-20px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link {
    width: 100%; max-width: 320px; padding: 16px 24px !important;
    font-size: 18px !important; justify-content: space-between;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
  }
  .nav-link span { font-size: 11px !important; }

  .nav-burger { display: flex !important; z-index: 102; }
  .nav-cta { display: none !important; }
  .lang-switcher { z-index: 102; }
  .lang-toggle { padding: 6px 10px; font-size: 11px; gap: 6px; }
  .lang-current { font-size: 11px; }
  .lang-toggle .flag { width: 16px; height: 12px; }

  /* WhatsApp CTA inside the mobile menu (real <a> for tappability) */
  .nav-link-cta {
    display: none;
    padding: 14px 24px !important; margin-top: 12px;
    background: var(--accent); color: #07070a !important; border-radius: 14px;
    font-weight: 700; font-size: 14px; width: 100%; max-width: 320px;
    text-align: center; letter-spacing: 0.01em;
    align-items: center !important; justify-content: center; gap: 10px;
    border: none !important;
    transition: transform 0.15s, box-shadow 0.2s;
  }
  .nav-link-cta:hover, .nav-link-cta:active { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0, 212, 255, 0.32); }
  .nav-link-cta svg { flex-shrink: 0; }
  .nav-link-cta span:first-of-type { display: none; }
  .nav-links.open .nav-link-cta { display: flex; }

  /* ------ HERO : tighten, no overflow ------ */
  .hero { min-height: 100dvh; padding: 90px 0 32px; }
  .hero-photo {
    display: block;
    width: 100%; height: 60%;
    bottom: 0; top: auto;
    opacity: 0.32;
    mask-image: linear-gradient(to top, black 25%, transparent 95%);
    -webkit-mask-image: linear-gradient(to top, black 25%, transparent 95%);
  }
  .hero-photo img { object-position: center 30%; }
  .hero-content { padding: 0 18px; max-width: 100%; position: relative; z-index: 2; }
  .hero-tag { font-size: 10px; padding: 6px 12px; margin-bottom: 18px; }
  .hero-title { font-size: clamp(40px, 12vw, 64px) !important; line-height: 0.95; letter-spacing: -0.02em; }
  .hero-title .line em, .hero-title em { font-size: 0.85em; }
  .hero-sub { font-size: 14.5px; line-height: 1.55; margin: 16px 0 24px; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; padding: 14px 20px; font-size: 14px; }
  .hero-stats { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); max-width: 100% !important; }
  .hero-stat { padding: 0; }
  .hero-stat strong { font-size: 22px !important; }
  .hero-stat span { font-size: 11px !important; }
  .hero-marquee { display: none !important; }
  .hero-scroll, .hero-side, .hero-vert, .hero-date, .hero-ticker, .hero-corner-tag { display: none !important; }
  .hero-bg .hero-grid { opacity: 0.4; }

  /* ------ Sections padding tightened ------ */
  .section { padding: 56px 0 !important; }
  .section + .section { padding-top: 56px !important; }
  .section-head { margin-bottom: 32px; }
  .section-tag { font-size: 10px; letter-spacing: 0.12em; padding: 5px 12px; margin-bottom: 14px; }
  .section-title { font-size: clamp(28px, 8vw, 40px) !important; line-height: 1.05; letter-spacing: -0.015em; margin-bottom: 14px; }
  .section-sub { font-size: 14.5px; max-width: 100%; line-height: 1.55; }
  .ghost-num { display: none; }
  .container { padding: 0 18px; }

  /* ------ Marquee top bar ------ */
  .marquee-bar { font-size: 11px; }
  .marquee-track { animation-duration: 25s !important; }

  /* ------ SERVICES : 2 colonnes propres + cards compactes ------ */
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .service-card { aspect-ratio: auto !important; min-height: 220px !important; padding: 0 !important; border-radius: 16px; cursor: pointer; overflow: hidden; }
  .service-card:active { transform: scale(0.98); transition: transform 0.15s; }
  .service-card .service-overlay { padding: 14px !important; }
  .service-card .service-num { font-size: 11px !important; margin-bottom: 6px !important; }
  .service-card .service-overlay h3 { font-size: 18px !important; margin-bottom: 4px !important; }
  .service-card .service-overlay p { font-size: 11.5px !important; line-height: 1.4; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .service-card .service-meta { margin-top: 8px !important; padding-top: 8px !important; }
  .service-card .service-meta .from { font-size: 10px !important; }
  .service-card .service-meta .price { font-size: 16px !important; }
  .service-card .service-arrow { width: 28px !important; height: 28px !important; }
  .service-card .sc-icon { width: 56px !important; height: 56px !important; margin-bottom: 12px !important; }
  .service-card h3 { font-size: 15px !important; margin-bottom: 6px !important; }
  .service-card p { font-size: 12px !important; line-height: 1.45; -webkit-line-clamp: 4; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .service-card .sc-from { font-size: 10px !important; padding-top: 10px !important; margin-top: 10px !important; }
  .service-card .sc-from strong { font-size: 13px !important; }

  /* ------ Showcase ticker (top of services) ------ */
  .showcase-track { animation-duration: 40s !important; }
  .showcase-item { flex: 0 0 200px !important; }

  /* ------ ROUTES section : map + cards stack ------ */
  .routes-wrap { grid-template-columns: 1fr !important; gap: 20px; }
  .map-wrap { aspect-ratio: 800 / 760 !important; min-height: 0 !important; max-width: 100%; padding: 14px !important; }
  .route-card { padding: 18px !important; }
  .route-title { font-size: 22px !important; line-height: 1.1; margin-bottom: 8px !important; }
  .route-desc { font-size: 13px !important; line-height: 1.5; margin-bottom: 12px !important; }
  .route-stops { font-size: 11px !important; }
  .route-from strong { font-size: 22px !important; }

  /* ------ TARIFS : tabs scrollable + grid clean + CENTERED CONTENT ------ */
  .tarifs-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap !important; padding: 4px; gap: 4px !important; scroll-snap-type: x mandatory; justify-content: flex-start !important; }
  .tarifs-tabs::-webkit-scrollbar { display: none; }
  .tab { white-space: nowrap; padding: 10px 14px !important; font-size: 11px !important; flex-shrink: 0; scroll-snap-align: start; }
  .tab-flags { font-size: 10px; }
  .tarifs-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .price-card {
    padding: 18px 12px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
  }
  .price-card .pc-icon { width: 64px !important; height: 64px !important; margin: 0 auto 10px !important; }
  .price-card .pc-name { font-size: 12.5px !important; line-height: 1.3; min-height: 32px; text-align: center; margin-bottom: 10px !important; }
  .price-card .pc-price { font-size: 30px !important; line-height: 1; text-align: center; }
  .price-card .pc-price em { font-size: 0.55em !important; }
  .price-card-info {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
  .price-card-info .pc-name { text-align: center; }
  .price-card-info .pc-list { font-size: 12px !important; line-height: 1.55; text-align: left; max-width: 320px; margin: 0 auto; padding-left: 18px; }

  /* ------ WHY : grid 2 cols then 1 ------ */
  .why-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .why-card { padding: 18px !important; min-height: 0; }
  .why-num { font-size: 11px !important; margin-bottom: 12px !important; }
  .why-icon { width: 38px !important; height: 38px !important; margin-bottom: 12px !important; }
  .why-icon svg { width: 22px; height: 22px; }
  .why-card h3 { font-size: 14px !important; margin-bottom: 6px !important; }
  .why-card p { font-size: 12px !important; line-height: 1.45; }

  /* ------ DEVIS : grids responsive + tap-friendly ------ */
  .devis-wrap { grid-template-columns: 1fr !important; gap: 16px; }
  .form-step { padding: 18px !important; border-radius: 16px; }
  .form-label { font-size: 13px !important; margin-bottom: 14px !important; gap: 10px !important; }
  .form-label > span:first-child { flex: 0 0 24px !important; width: 24px !important; height: 24px !important; font-size: 12px !important; }
  .form-label > span:nth-child(2) { font-size: 13.5px !important; }
  .radio-grid, .radio-grid-2 { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .radio-card { padding: 14px 10px !important; min-height: 96px; cursor: pointer; }
  .radio-card:active { transform: scale(0.97); }
  .rc-icon { width: 48px !important; height: 48px !important; margin-bottom: 8px !important; }
  .rc-name { font-size: 11.5px !important; line-height: 1.2; }
  .route-radio { padding: 14px 12px !important; min-height: 80px; }
  .rc-flag { font-size: 14px !important; margin-bottom: 4px !important; }
  .rc-route { font-size: 11.5px !important; }
  .checkbox-grid { grid-template-columns: 1fr !important; }
  .check-card { padding: 14px 14px !important; }
  .check-name { font-size: 13px !important; }
  .check-info { font-size: 10px !important; padding: 3px 8px !important; }
  .devis-result { position: static !important; }
  .result-card { padding: 22px !important; }
  .result-price { font-size: 56px !important; }
  .result-info { gap: 6px; }

  /* ------ STOCKAGE/DEMARCHES split ------ */
  .split-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .split-card { padding: 22px !important; }
  .split-tag { font-size: 10px !important; }
  .split-title { font-size: 22px !important; }
  .split-desc { font-size: 13.5px !important; }
  .split-list li { font-size: 13px !important; padding: 8px 0 !important; }
  .split-prices { gap: 6px !important; flex-wrap: wrap; }
  .split-prices span { font-size: 11px !important; padding: 4px 10px !important; }
  .split-warning { padding: 12px !important; gap: 10px !important; }
  .split-warning p { font-size: 12px !important; }

  /* ------ GALERIE : grid 2 cols, restored editorial composition ------ */
  .gallery-grid { grid-template-columns: 1fr 1fr !important; grid-auto-rows: 170px !important; gap: 8px !important; }
  .gallery-tall { grid-column: span 1 !important; grid-row: span 2 !important; }
  .gallery-wide { grid-column: span 2 !important; grid-row: span 1 !important; }
  .gallery-caption { font-size: 11px !important; padding: 10px !important; }

  /* ------ TÉMOIGNAGES : SWIPEABLE scroll-snap (override marquee) ------ */
  .testimonials-marquee { overflow-x: auto; mask-image: none !important; -webkit-mask-image: none !important; padding: 4px 0 12px !important; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-padding-left: 18px; scroll-padding-right: 18px; }
  .testimonials-marquee::-webkit-scrollbar { display: none; }
  .testimonials-track { animation: none !important; padding: 0 18px 0 18px !important; gap: 12px !important; width: max-content; }
  .testimonial { flex: 0 0 calc(100vw - 56px) !important; max-width: 320px !important; min-height: 180px !important; padding: 18px !important; scroll-snap-align: start; }
  .testimonial:last-child { margin-right: 18px; }
  .testimonial p { font-size: 13.5px !important; }
  .t-stars { font-size: 13px !important; }
  .t-author strong { font-size: 13px !important; }
  .t-author span { font-size: 11px !important; }

  /* ------ FAQ : full width column ------ */
  .faq-container { grid-template-columns: 1fr !important; gap: 22px !important; }
  .section-head-left { text-align: left; }
  .faq-item { padding: 16px 0 !important; }
  .faq-item summary { font-size: 14.5px !important; gap: 12px; }
  .faq-answer { font-size: 13.5px !important; line-height: 1.55; padding-top: 10px; }

  /* ------ CTA contact ------ */
  .cta-tag { font-size: 10px !important; }
  .cta-title { font-size: clamp(28px, 9vw, 44px) !important; line-height: 1.05; }
  .cta-sub { font-size: 14px !important; padding: 0 12px; }
  .cta-actions { flex-direction: column; gap: 10px; padding: 0 8px; }
  .cta-actions .btn { width: 100%; }
  .cta-meta { grid-template-columns: 1fr !important; gap: 14px !important; padding-top: 28px !important; text-align: center; }
  .cta-meta .meta-item { padding: 0; display: flex; flex-direction: column; align-items: center; gap: 2px; }
  .cta-meta strong { font-size: 14px !important; letter-spacing: 0.02em; }
  .cta-meta span { font-size: 12px !important; color: var(--text-3); }

  /* ------ FOOTER ------ */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; padding: 48px 0 24px !important; }
  .footer-brand { text-align: left; }
  .footer-brand p { font-size: 13px !important; max-width: 100%; }
  .footer-col h4 { font-size: 12px !important; margin-bottom: 14px !important; }
  .footer-col a, .footer-col p { font-size: 13px !important; padding: 4px 0 !important; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 18px 0 28px !important; align-items: flex-start; text-align: left; }
  .footer-bottom p { font-size: 11px !important; }
  .footer-legal { flex-wrap: wrap; gap: 12px !important; }
  .footer-legal a { font-size: 11px !important; }

  /* ------ Float WhatsApp ------ */
  .float-whatsapp { width: 52px !important; height: 52px !important; bottom: 16px !important; right: 16px !important; }
  .float-whatsapp svg { width: 24px; height: 24px; }

  /* ------ Cookie banner mobile ------ */
  .cookie-banner { left: 8px !important; right: 8px !important; bottom: 8px !important; padding: 14px !important; flex-direction: column !important; gap: 10px !important; align-items: stretch !important; }
  .cookie-banner-actions { flex-direction: row; gap: 6px; width: 100%; }
  .cookie-banner-actions button { flex: 1; padding: 10px !important; font-size: 12px !important; }
}

/* ============== EXTRA SMALL (≤ 380px = SE / petits Android) ============== */
@media (max-width: 380px) {
  .hero-title { font-size: 36px !important; }
  .section-title { font-size: 26px !important; }
  .services-grid, .why-grid, .tarifs-grid { grid-template-columns: 1fr !important; }
  .hero-stats { grid-template-columns: 1fr 1fr !important; }
  .testimonial { flex: 0 0 calc(100vw - 48px) !important; }
  .gallery-grid { grid-auto-rows: 120px !important; }
}

/* ============== TOUCH DEVICES ANY SIZE : remove hover artifacts ============== */
@media (hover: none) {
  .service-card:hover, .why-card:hover, .price-card:hover,
  .route-card:hover, .gallery-item:hover, .radio-card:hover,
  .check-card:hover { transform: none !important; }
  /* Active state replaces hover */
  .service-card:active, .why-card:active, .price-card:active,
  .radio-card:active { transform: scale(0.98); transition: transform 0.15s; }
}
