/* ============================================
   EXPRESS DEPANNAGE - Premium Design
   ============================================ */

:root {
  --primary: #0066ff;
  --primary-dark: #0047b3;
  --accent: #ff6b00;
  --accent-glow: rgba(255, 107, 0, 0.4);
  --dark: #09090b;
  --dark-card: #131316;
  --dark-border: rgba(255,255,255,0.06);
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --white: #fafafa;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--primary);
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   CURSOR GLOW (desktop only)
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: all 0.4s var(--ease);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav.scrolled {
  padding: 0.5rem 0;
  background: rgba(9, 9, 11, 0.95);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.4s var(--ease-spring);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

.logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-text em {
  font-style: normal;
  color: var(--accent);
}

.mobile-lang {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-lang button {
  padding: 0.65rem 1.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.mobile-lang button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Desktop nav links */
.nav-links-desktop {
  display: flex;
  gap: 0.25rem;
}

.nav-links-desktop a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.nav-links-desktop a:hover,
.nav-links-desktop a.active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile fullscreen menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  z-index: 100;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.5rem;
  padding: 0.8rem 2rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.mobile-menu a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 3px;
  position: relative;
  cursor: pointer;
}

.lang-option {
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  position: relative;
  z-index: 2;
  transition: color 0.3s var(--ease);
  user-select: none;
}

.lang-option.active {
  color: white;
}

.lang-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: transform 0.3s var(--ease-spring);
}

.lang-toggle[data-active="nl"] .lang-slider {
  transform: translateX(100%);
}

/* CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.nav-cta-pulse {
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Menu button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  position: relative;
  z-index: 102;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.menu-btn span:nth-child(1) { width: 100%; }
.menu-btn span:nth-child(2) { width: 75%; }
.menu-btn span:nth-child(3) { width: 100%; }

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO - Split layout avec marquee intégré
   ============================================ */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Partie gauche : texte */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem clamp(2rem, 5vw, 5rem) 4rem;
  position: relative;
  z-index: 3;
}

/* Partie droite : image */
.hero-bg {
  position: relative;
  overflow: hidden;
}

/* Marquee prend toute la largeur en bas */
.hero > .marquee {
  grid-column: 1 / -1;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Gradient sur l'image pour fondu vers la partie texte */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, rgba(9, 9, 11, 0.3) 40%, rgba(9, 9, 11, 0.1) 100%);
}

/* Grille subtile sur la partie image */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Orbs (sur la partie image) */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  background: rgba(0, 102, 255, 0.2);
  animation: orb-float 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: 0;
  left: -20%;
  background: rgba(255, 107, 0, 0.15);
  animation: orb-float 15s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 30%;
  background: rgba(0, 102, 255, 0.1);
  animation: orb-float 10s ease-in-out infinite 3s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Floating pills sur l'image */
.hero-pills {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 4rem;
  left: 25%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-badge i {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 1.5rem;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #ffb347 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Primary hero button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: none;
  cursor: pointer;
}

.btn-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-hero:hover .btn-hero-bg {
  opacity: 1;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost i {
  animation: bounce-down 2s ease-in-out infinite;
  font-size: 0.8rem;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Floating pills */
.hero-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.pill i { font-size: 0.7rem; color: var(--accent); }

.pill-1 { top: 15%; left: 10%; animation: pill-float 7s ease-in-out infinite; }
.pill-2 { top: 35%; right: 8%; animation: pill-float 9s ease-in-out infinite 1s; }
.pill-3 { bottom: 30%; left: 15%; animation: pill-float 8s ease-in-out infinite 2s; }
.pill-4 { bottom: 12%; right: 12%; animation: pill-float 10s ease-in-out infinite 3s; }

@keyframes pill-float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-8px, -12px); }
  50% { transform: translate(4px, 8px); }
  75% { transform: translate(-4px, -4px); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: white;
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { top: -40%; }
  100% { top: 100%; }
}

/* ============================================
   MARQUEE - collé au bas du hero
   ============================================ */
.marquee {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.marquee-track .dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-dark {
  background: var(--gray-100);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 6px;
}

.section-header h2,
.expertise-left h2,
.contact-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
}

/* ============================================
   BENTO GRID SERVICES
   ============================================ */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bento-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: default;
}

.bento-card:hover {
  border-color: rgba(0, 102, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* Glow on hover */
.bento-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover .bento-glow {
  opacity: 1;
}

/* Bento card avec mini image */
.bento-with-img {
  padding: 0;
  overflow: hidden;
}

.bento-with-img .bento-mini-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.bento-with-img .bento-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.bento-with-img:hover .bento-mini-img img {
  transform: scale(1.08);
}

.bento-with-img .bento-icon,
.bento-with-img h3,
.bento-with-img p {
  padding: 0 2rem;
}

.bento-with-img .bento-icon {
  margin-top: 1.5rem;
}

.bento-with-img p {
  padding-bottom: 2rem;
}

/* Bento large - Électricité */
.bento-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.06);
  padding: 0;
  overflow: hidden;
}

.bento-large:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.bento-large .bento-glow {
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.06), transparent);
}

.bento-large h3 { color: white; }
.bento-large p { color: rgba(255, 255, 255, 0.5); }

.bento-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.bento-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.7);
}

.bento-large:hover .bento-card-img img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.bento-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bento-wide {
  grid-column: span 2;
}

.bento-row {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.bento-row-item {
  flex: 1;
  padding: 2rem;
}

.bento-row-img {
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
}

.bento-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.bento-wide:hover .bento-row-img img {
  transform: scale(1.08);
}

.bento-wide {
  padding: 0;
  overflow: hidden;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s var(--ease-spring);
}

.bento-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.bento-large .bento-icon {
  background: rgba(255, 107, 0, 0.12);
  width: 56px;
  height: 56px;
}

.bento-large .bento-icon i {
  color: var(--accent);
  font-size: 1.4rem;
}

.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(-5deg);
}

.bento-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.bento-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 107, 0, 0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1rem;
}

/* ============================================
   EXPERTISE
   ============================================ */
.expertise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.expertise-left p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: 1.5rem;
  line-height: 1.8;
}

.expertise-image {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 280px;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s var(--ease);
}

.expertise-image:hover img {
  transform: scale(1.04);
}

.expertise-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
  border-radius: 0 2px 2px 0;
}

.expertise-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 107, 0, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.expertise-card:hover::before {
  transform: scaleY(1);
}

.expertise-card-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.expertise-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.expertise-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   ZONE
   ============================================ */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.zone-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.zone-circle {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 255, 0.12);
}

.zone-ring-1 {
  width: 100%;
  height: 100%;
  animation: zone-pulse 4s ease-in-out infinite;
}

.zone-ring-2 {
  width: 70%;
  height: 70%;
  border-color: rgba(0, 102, 255, 0.18);
  animation: zone-pulse 4s ease-in-out infinite 0.5s;
}

.zone-ring-3 {
  width: 40%;
  height: 40%;
  border-color: rgba(0, 102, 255, 0.25);
  animation: zone-pulse 4s ease-in-out infinite 1s;
}

@keyframes zone-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.6; }
}

.zone-pin {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
  position: relative;
  z-index: 2;
}

.zone-pin i {
  color: white;
  font-size: 1.3rem;
}

.zone-address {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.zone-address i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.zone-address strong {
  font-weight: 600;
}

.zone-communes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.commune-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.3s var(--ease);
}

.commune-chip i {
  font-size: 0.65rem;
  color: #22c55e;
}

.commune-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 102, 255, 0.03);
}

.commune-chip.highlight {
  background: var(--dark);
  color: white;
  border-color: transparent;
  font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.faq-left .section-tag { margin-bottom: 1rem; }

.faq-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.faq-left p {
  color: var(--gray-500);
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.08);
  transition: all 0.4s var(--ease);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 540px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-left .section-tag { margin-bottom: 1rem; }

.contact-left p {
  color: var(--gray-500);
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-mini-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s var(--ease);
}

a.contact-mini-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.cmc-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cmc-icon i {
  color: var(--primary);
  font-size: 1rem;
}

.contact-mini-card small {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}

.contact-mini-card strong {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Form */
.contact-form {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--gray-100);
  outline: none;
  transition: all 0.3s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.form-field label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--gray-400);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.25s var(--ease);
  background: transparent;
  padding: 0 0.25rem;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: -0.55rem;
  left: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: white;
  letter-spacing: 0.03em;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit span, .btn-submit i {
  position: relative;
  z-index: 1;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.footer-nav a:hover {
  color: var(--accent);
  transform: translateX(3px);
  display: inline-block;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services-bento [data-reveal]:nth-child(2) { transition-delay: 0.05s; }
.services-bento [data-reveal]:nth-child(3) { transition-delay: 0.1s; }
.services-bento [data-reveal]:nth-child(4) { transition-delay: 0.15s; }
.services-bento [data-reveal]:nth-child(5) { transition-delay: 0.2s; }
.services-bento [data-reveal]:nth-child(6) { transition-delay: 0.25s; }
.services-bento [data-reveal]:nth-child(7) { transition-delay: 0.3s; }
.services-bento [data-reveal]:nth-child(8) { transition-delay: 0.35s; }

.expertise-right [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.expertise-right [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet --- */
@media (max-width: 1024px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-row: span 1;
  }

  .bento-wide {
    grid-column: span 2;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {

  /* NAV MOBILE */
  .nav-links-desktop {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .lang-toggle {
    display: none;
  }

  .nav-cta {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
  .nav-cta-pulse { display: none; }

  /* HERO MOBILE */
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 6.5rem 1.5rem 2.5rem;
    order: 1;
  }

  .hero-bg {
    height: 250px;
    order: 2;
  }

  .hero-image::after {
    background: linear-gradient(to bottom, var(--dark) 0%, rgba(9,9,11,0.2) 30%, rgba(9,9,11,0.5) 100%);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-scroll { display: none; }

  /* SECTIONS MOBILE */
  .section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: span 1;
  }

  .bento-row {
    flex-direction: column;
  }

  .bento-row-img {
    width: 100%;
    height: 160px;
  }

  .bento-with-img .bento-mini-img {
    height: 140px;
  }

  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .zone-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .zone-circle {
    width: 200px;
    height: 200px;
  }

  .zone-communes {
    justify-content: center;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .marquee-track span {
    font-size: 0.75rem;
  }
}

/* --- Small mobile --- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 6rem 1.25rem 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .bento-card {
    padding: 1.5rem;
  }

  .bento-card-body {
    padding: 1.5rem;
  }

  .section-header h2,
  .expertise-left h2,
  .contact-left h2,
  .faq-left h2 {
    font-size: 1.8rem;
  }

  .expertise-card {
    padding: 1.5rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}
