/* ==========================================================================
   Téléservices Multimédia — Avignon
   v2 — premium tech, bento, mesh gradient
   ========================================================================== */

:root {
  --bleu-nuit: #07111F;
  --noir-profond: #020617;
  --bleu-electrique: #007BFF;
  --cyan-lumineux: #00CFFF;
  --orange-accent: #FF7A00;
  --orange-soft: #FFB37A;
  --blanc: #FFFFFF;
  --gris-texte: #94A3B8;
  --gris-clair: #cbd5e1;
  --gris-card: rgba(255, 255, 255, 0.04);
  --gris-card-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(0, 207, 255, 0.4);
  --shadow-glow: 0 8px 40px rgba(0, 207, 255, 0.18);
  --shadow-orange: 0 8px 40px rgba(255, 122, 0, 0.25);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
  --gradient-primary: linear-gradient(135deg, #007BFF 0%, #00CFFF 100%);
  --gradient-warm: linear-gradient(135deg, #FF7A00 0%, #FFB37A 100%);
  --gradient-rainbow: linear-gradient(135deg, #007BFF 0%, #00CFFF 50%, #FF7A00 100%);
  --gradient-mesh: radial-gradient(circle at 20% 20%, rgba(0,123,255,.18), transparent 40%),
                   radial-gradient(circle at 80% 30%, rgba(0,207,255,.14), transparent 45%),
                   radial-gradient(circle at 50% 80%, rgba(255,122,0,.10), transparent 50%);
  --font-titre: 'Sora', 'Poppins', 'Montserrat', sans-serif;
  --font-texte: 'Inter', 'Open Sans', sans-serif;
  --max-width: 1320px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-texte);
  background: var(--noir-profond);
  color: var(--blanc);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Mesh BG fixe */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 0;
}

/* Grille discrète */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 207, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 207, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

h3 { font-size: 1.4rem; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-warm-text {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 207, 255, 0.1);
  border: 1px solid rgba(0, 207, 255, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan-lumineux);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-lumineux);
  box-shadow: 0 0 12px var(--cyan-lumineux);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.section-head .eyebrow {
  display: inline-flex;
}

.section-head p {
  color: var(--gris-texte);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-titre);
  transition: all 0.3s var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
  z-index: -1;
}

.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--blanc);
  box-shadow: 0 6px 24px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0, 207, 255, 0.55);
}

.btn-orange {
  background: var(--orange-accent);
  color: var(--blanc);
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.4);
}

.btn-orange:hover {
  transform: translateY(-2px);
  background: #ff8a1a;
  box-shadow: var(--shadow-orange);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--blanc);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe5a;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.btn-ghost {
  background: var(--gris-card);
  color: var(--blanc);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan-lumineux);
}

.btn-white {
  background: var(--blanc);
  color: var(--bleu-nuit);
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,.2); }

.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: var(--max-width);
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  transition: all 0.4s var(--transition);
}

.header.scrolled {
  background: rgba(2, 6, 23, 0.92);
  border-color: rgba(0, 207, 255, 0.25);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.55), 0 0 24px rgba(0, 207, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 18px;
  gap: 16px;
}

/* Logo texte */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.3s var(--transition);
}

.logo:hover { transform: translateY(-1px); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  padding: 4px 8px;
}

.logo-text strong {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.logo-text span {
  font-size: 0.65rem;
  color: var(--gris-clair);
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav a {
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gris-clair);
  border-radius: 100px;
  transition: all 0.3s var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--blanc);
  background: rgba(255, 255, 255, 0.08);
}

.nav a.active {
  color: var(--blanc);
  background: rgba(0, 207, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(0, 207, 255, 0.35);
}

.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.header-cta .btn { padding: 10px 18px; font-size: 0.85rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--gris-card);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
}

.menu-toggle svg { width: 20px; height: 20px; stroke: var(--blanc); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  background: var(--bleu-nuit);
  border-left: 1px solid var(--border-glass);
  padding: 100px 28px 40px;
  z-index: 999;
  transition: right 0.4s var(--transition);
  overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-glass);
  color: var(--blanc);
}

.mobile-menu a:hover { color: var(--cyan-lumineux); }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}

.menu-overlay.active { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero v2 - bold, asymmetric, dramatic
   ========================================================================== */
.hero {
  position: relative;
  padding: 150px 0 80px;
  overflow: hidden;
  min-height: clamp(640px, 92vh, 920px);
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1000px;
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 123, 255, 0.35), transparent 50%),
    radial-gradient(circle at 30% 60%, rgba(255, 122, 0, 0.2), transparent 50%),
    radial-gradient(circle at 70% 40%, rgba(0, 207, 255, 0.3), transparent 50%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: hero-glow-shift 12s ease-in-out infinite;
}

@keyframes hero-glow-shift {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .accent {
  display: block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gris-clair);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

/* Hero stat strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 24px;
}

.hero-stat {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--border-glass);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gris-texte);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual — phone showcase */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  width: 64%;
  aspect-ratio: 9/19;
  background: linear-gradient(145deg, #1a2540, #0a1424);
  border: 3px solid #2a3550;
  border-radius: 38px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 207, 255, 0.2),
    inset 0 0 0 2px rgba(255,255,255,0.05);
  overflow: hidden;
  animation: phone-float 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes phone-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-6deg); }
  50% { transform: translate(-50%, -52%) rotate(-4deg); }
}

.phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(0, 207, 255, 0.15), rgba(0, 123, 255, 0.05)),
    radial-gradient(circle at 50% 30%, rgba(0, 207, 255, 0.3), transparent 60%),
    linear-gradient(180deg, #07111F, #020617);
  display: flex;
  flex-direction: column;
  padding: 32px 18px 18px;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #020617;
  border-radius: 100px;
  z-index: 3;
}

.phone-screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 14px;
}

.phone-icon-big {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0, 207, 255, 0.6);
}

.phone-icon-big svg { width: 44px; height: 44px; color: white; }

.phone-status {
  font-family: var(--font-titre);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blanc);
  text-align: center;
}

.phone-status-sub {
  font-size: 0.75rem;
  color: var(--cyan-lumineux);
  text-align: center;
}

.phone-progress {
  width: 70%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.phone-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 70%;
  background: var(--gradient-primary);
  border-radius: 100px;
  animation: progress-slide 3s ease-in-out infinite;
}

@keyframes progress-slide {
  0% { width: 30%; }
  50% { width: 85%; }
  100% { width: 30%; }
}

/* Floating badges around phone */
.float-badge {
  position: absolute;
  background: rgba(7, 17, 31, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-deep);
  z-index: 3;
  animation: float-card 6s ease-in-out infinite;
}

.float-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(0, 207, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-badge .badge-icon svg { width: 16px; height: 16px; color: var(--cyan-lumineux); }

.float-badge.fb-1 { top: 8%; left: -8%; animation-delay: 0s; }
.float-badge.fb-2 { top: 18%; right: -10%; animation-delay: 1s; }
.float-badge.fb-3 { bottom: 22%; left: -10%; animation-delay: 2s; }
.float-badge.fb-4 { bottom: 8%; right: -6%; animation-delay: 1.5s; }

.float-badge.warm .badge-icon { background: rgba(255, 122, 0, 0.15); }
.float-badge.warm .badge-icon svg { color: var(--orange-accent); }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Decorative orb */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
  z-index: 1;
}

.hero-orb-1 {
  width: 240px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.4), transparent 70%);
  top: 5%;
  right: -20%;
  animation: orb-drift 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 200px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.3), transparent 70%);
  bottom: 10%;
  left: -15%;
  animation: orb-drift 12s ease-in-out infinite reverse;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* ==========================================================================
   Brand strip (logos marques)
   ========================================================================== */
.brand-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(7, 17, 31, 0.4);
  overflow: hidden;
}

.brand-strip-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--gris-texte);
  margin-bottom: 28px;
  font-weight: 600;
}

.brand-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.brand-marquee:hover .brand-track { animation-play-state: paused; }

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

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 100px;
  background: var(--gris-card);
  border: 1px solid var(--border-glass);
  transition: all 0.3s var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo:hover {
  border-color: var(--border-bright);
  background: rgba(0, 207, 255, 0.06);
  box-shadow: var(--shadow-glow);
}

.brand-logo span {
  font-family: var(--font-titre);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gris-clair);
  letter-spacing: 0.04em;
}

.brand-logo:hover span { color: var(--blanc); }

/* ==========================================================================
   Quick services bento
   ========================================================================== */
.bento-section {
  padding: 96px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}

.bento-card {
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  min-height: 180px;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 207, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-card:hover { transform: translateY(-4px); border-color: var(--border-bright); box-shadow: var(--shadow-glow); }
.bento-card:hover::before { opacity: 1; }

.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.row-2 { grid-row: span 2; }

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 207, 255, 0.2), rgba(0, 123, 255, 0.05));
  border: 1px solid rgba(0, 207, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.bento-icon svg { width: 26px; height: 26px; color: var(--cyan-lumineux); }

.bento-card.featured {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(0, 207, 255, 0.05));
  border-color: rgba(0, 207, 255, 0.3);
}

.bento-card.featured .bento-icon {
  background: var(--gradient-primary);
  border-color: transparent;
}

.bento-card.featured .bento-icon svg { color: white; }

.bento-card.warm {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), transparent);
  border-color: rgba(255, 122, 0, 0.2);
}

.bento-card.warm .bento-icon { background: rgba(255, 122, 0, 0.15); border-color: rgba(255, 122, 0, 0.3); }
.bento-card.warm .bento-icon svg { color: var(--orange-accent); }

.bento-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bento-card p {
  color: var(--gris-clair);
  font-size: 0.9rem;
  line-height: 1.55;
}

.bento-card .bento-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan-lumineux);
}

.bento-card.warm .bento-cta { color: var(--orange-accent); }

.bento-card .bento-cta::after {
  content: "→";
  transition: transform 0.3s;
}

.bento-card:hover .bento-cta::after { transform: translateX(4px); }

/* ==========================================================================
   Process steps
   ========================================================================== */
.process-section {
  background: linear-gradient(180deg, transparent, rgba(0, 123, 255, 0.04), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-bright), var(--border-bright), transparent);
}

.process-step {
  text-align: center;
  position: relative;
  background: rgba(2, 6, 23, 0.4);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px 22px 28px;
  transition: all 0.3s var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  background: rgba(7, 17, 31, 0.8);
}

.process-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--blanc);
  box-shadow: 0 8px 32px rgba(0, 207, 255, 0.4);
  position: relative;
  z-index: 2;
}

.process-step:nth-child(2) .process-num { background: linear-gradient(135deg, #00CFFF, #007BFF); }
.process-step:nth-child(3) .process-num { background: linear-gradient(135deg, #007BFF, #FF7A00); }
.process-step:nth-child(4) .process-num { background: var(--gradient-warm); }

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--gris-clair);
  font-size: 0.9rem;
}

/* ==========================================================================
   Pricing teaser
   ========================================================================== */
.pricing-table {
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-glass);
  transition: background 0.3s;
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(0, 207, 255, 0.04); }

.pricing-row.head {
  background: rgba(0, 123, 255, 0.1);
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gris-texte);
}

.pricing-row.head:hover { background: rgba(0, 123, 255, 0.1); }

.pricing-service {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.pricing-service .pricing-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 207, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-service .pricing-icon svg { width: 18px; height: 18px; color: var(--cyan-lumineux); }

.pricing-time {
  color: var(--gris-clair);
  font-size: 0.9rem;
}

.pricing-price {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cyan-lumineux);
}

.pricing-note {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gris-texte);
  font-style: italic;
}

/* ==========================================================================
   Quote Form
   ========================================================================== */
.quote-section {
  background:
    radial-gradient(ellipse at top, rgba(0, 207, 255, 0.06), transparent 50%),
    radial-gradient(ellipse at bottom, rgba(255, 122, 0, 0.04), transparent 50%);
}

.quote-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(7, 17, 31, 0.85);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-rainbow);
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-glass);
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.progress-step .step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bleu-nuit);
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s;
}

.progress-step.active .step-num {
  background: var(--gradient-primary);
  border-color: var(--cyan-lumineux);
  box-shadow: 0 0 20px rgba(0, 207, 255, 0.6);
}

.progress-step.done .step-num {
  background: var(--cyan-lumineux);
  border-color: var(--cyan-lumineux);
  color: var(--noir-profond);
}

.progress-step .step-label {
  font-size: 0.85rem;
  color: var(--gris-texte);
  font-weight: 500;
}

.progress-step.active .step-label { color: var(--blanc); }

.form-step { display: none; animation: slideIn 0.4s var(--transition); }
.form-step.active { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.choice-card {
  background: var(--gris-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.choice-card svg { width: 28px; height: 28px; color: var(--gris-texte); transition: color 0.3s; }

.choice-card:hover { border-color: var(--cyan-lumineux); background: rgba(0, 207, 255, 0.05); }

.choice-card.selected {
  background: rgba(0, 207, 255, 0.12);
  border-color: var(--cyan-lumineux);
  box-shadow: 0 0 24px rgba(0, 207, 255, 0.25);
}

.choice-card.selected svg { color: var(--cyan-lumineux); }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gris-clair);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--gris-card);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: var(--blanc);
  font-family: var(--font-texte);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-lumineux);
  background: rgba(0, 207, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 207, 255, 0.1);
}

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

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

.file-upload {
  display: block;
  background: var(--gris-card);
  border: 2px dashed var(--border-glass);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload:hover { border-color: var(--cyan-lumineux); background: rgba(0, 207, 255, 0.05); }
.file-upload svg { width: 32px; height: 32px; color: var(--cyan-lumineux); margin: 0 auto 8px; }
.file-upload p { font-size: 0.9rem; color: var(--gris-clair); }
.file-upload input[type="file"] { display: none; }

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
}

.form-actions .right-side { display: flex; gap: 12px; flex-wrap: wrap; }

.reassuring-text {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--gris-texte);
}

.reassuring-text::before { content: "🔒 "; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s var(--transition);
  overflow: hidden;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(0, 207, 255, 0.1);
  font-weight: 700;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.08);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #FFD700;
  font-size: 1.2rem;
}

.review-text {
  color: #d6dde8;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 1;
}

.author-info { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-name { font-weight: 600; font-size: 0.95rem; }
.author-date { font-size: 0.8rem; color: var(--gris-texte); }

.google-badge {
  background: rgba(66, 133, 244, 0.15);
  color: #4285F4;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Before/After
   ========================================================================== */
.before-after-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  background: var(--gris-card);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--gris-clair);
  transition: all 0.3s;
  font-weight: 500;
}

.tab-btn:hover { color: var(--blanc); border-color: var(--cyan-lumineux); }

.tab-btn.active {
  background: var(--gradient-primary);
  color: var(--blanc);
  border-color: transparent;
}

.before-after-container {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--bleu-nuit);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-deep);
}

.before-after-container .before-image,
.before-after-container .after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.before-after-container .after-image { clip-path: inset(0 0 0 50%); }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--cyan-lumineux);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 30px rgba(0, 207, 255, 0.7);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--noir-profond);
  box-shadow: 0 0 30px rgba(0, 207, 255, 0.7);
  z-index: 4;
  cursor: ew-resize;
  font-size: 1.1rem;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ba-label.before { left: 16px; color: var(--orange-accent); }
.ba-label.after { right: 16px; color: var(--cyan-lumineux); }

.ba-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.ba-text {
  text-align: center;
  margin-top: 24px;
  color: var(--gris-clair);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bleu-nuit);
  transition: transform 0.4s var(--transition);
  border: 1px solid var(--border-glass);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item:hover { transform: scale(1.02); border-color: var(--border-bright); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bleu-nuit), #0a1424);
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 207, 255, 0.2), transparent 60%);
}

.gallery-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--cyan-lumineux);
  opacity: 0.6;
  transition: transform 0.6s var(--transition);
  position: relative;
  z-index: 1;
}

.gallery-item:hover .gallery-placeholder svg { transform: scale(1.15); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 { font-size: 1.05rem; color: var(--blanc); }

.gallery-more { text-align: center; margin-top: 32px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ==========================================================================
   Why us + counters
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.why-card {
  background: var(--gris-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 207, 255, 0.35);
  flex-shrink: 0;
}

.why-icon svg { width: 28px; height: 28px; color: var(--blanc); }

.why-card:nth-child(2) .why-icon,
.why-card:nth-child(5) .why-icon { background: var(--gradient-warm); box-shadow: 0 6px 24px rgba(255, 122, 0, 0.35); }

.why-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.why-card p { color: var(--gris-clair); font-size: 0.92rem; }

.counters-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(0, 207, 255, 0.04));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 207, 255, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.counter-item {
  text-align: center;
  padding: 36px 16px;
  border-right: 1px solid var(--border-glass);
  position: relative;
}

.counter-item:last-child { border-right: none; }

.counter-value {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}

.counter-item:nth-child(2) .counter-value,
.counter-item:nth-child(4) .counter-value { background: var(--gradient-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.counter-label {
  font-size: 0.85rem;
  color: var(--gris-clair);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(0, 207, 255, 0.25); }
.faq-item.open { border-color: var(--cyan-lumineux); background: rgba(0, 207, 255, 0.05); }

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--blanc);
  font-family: var(--font-titre);
  gap: 16px;
}

.faq-question .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 207, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 1.3rem;
  color: var(--cyan-lumineux);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  background: var(--cyan-lumineux);
  color: var(--noir-profond);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 28px 22px; color: var(--gris-clair); line-height: 1.7; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.blog-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bleu-electrique), var(--cyan-lumineux));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card:nth-child(2) .blog-image { background: linear-gradient(135deg, #00CFFF, #007BFF); }
.blog-card:nth-child(3) .blog-image { background: linear-gradient(135deg, #007BFF, #FF7A00); }
.blog-card:nth-child(4) .blog-image { background: var(--gradient-warm); }

.blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.4));
}

.blog-image svg { width: 64px; height: 64px; color: var(--blanc); opacity: 0.5; z-index: 1; }

.blog-content {
  padding: 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.blog-category {
  background: rgba(0, 207, 255, 0.15);
  color: var(--cyan-lumineux);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-time { color: var(--gris-texte); }

.blog-card h3 { font-size: 1.1rem; margin-bottom: 12px; line-height: 1.3; }
.blog-card p { color: var(--gris-clair); font-size: 0.9rem; margin-bottom: 20px; flex: 1; }

.blog-cta { display: flex; flex-direction: column; gap: 8px; }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
}

.cta-banner-inner {
  background:
    linear-gradient(135deg, #007BFF 0%, #00CFFF 50%, #FF7A00 100%);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 123, 255, 0.3);
}

.cta-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15), transparent 50%);
}

.cta-banner-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><circle cx='50' cy='50' r='1' fill='white' opacity='0.15'/></svg>");
  background-size: 30px 30px;
  opacity: 0.3;
}

.cta-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-content h2 { color: var(--blanc); margin-bottom: 14px; }
.cta-content p { color: rgba(255, 255, 255, 0.95); margin-bottom: 32px; font-size: 1.1rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-list { list-style: none; margin-bottom: 28px; }

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-glass);
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 207, 255, 0.1);
  border: 1px solid rgba(0, 207, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; color: var(--cyan-lumineux); }

.contact-info-list strong {
  display: block;
  font-size: 0.82rem;
  color: var(--gris-texte);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-list span,
.contact-info-list a { font-size: 0.98rem; color: var(--blanc); font-weight: 500; }
.contact-info-list a:hover { color: var(--cyan-lumineux); }

.contact-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  min-height: 480px;
  position: relative;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 480px;
  filter: invert(0.92) hue-rotate(180deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--noir-profond);
  border-top: 1px solid var(--border-glass);
  padding: 64px 0 24px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand .logo-text { padding: 0; }
.footer-brand .logo-text strong { font-size: 1.3rem; }
.footer-brand .logo-text span { font-size: 0.7rem; }

.footer-brand p {
  color: var(--gris-texte);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 { font-size: 1rem; margin-bottom: 16px; color: var(--cyan-lumineux); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; color: var(--gris-texte); }
.footer-col a { color: var(--gris-texte); transition: color 0.3s; }
.footer-col a:hover { color: var(--blanc); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
  color: var(--gris-texte);
  font-size: 0.85rem;
}

/* ==========================================================================
   Mobile sticky bar + floating WA
   ========================================================================== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  z-index: 100;
  padding: 8px;
  gap: 6px;
  grid-template-columns: repeat(4, 1fr);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 10px;
  background: var(--gris-card);
  color: var(--blanc);
}

.mobile-bar a svg { width: 18px; height: 18px; }
.mobile-bar a.call { color: var(--cyan-lumineux); }
.mobile-bar a.wa { color: #25D366; }
.mobile-bar a.devis { color: var(--orange-accent); }

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 99;
  animation: wa-pulse 2s ease-in-out infinite;
}

.floating-whatsapp svg { width: 30px; height: 30px; color: var(--blanc); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.85); }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.18), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--gris-texte);
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: var(--cyan-lumineux); }

.page-hero h1, .page-hero p { position: relative; z-index: 1; }
.page-hero p { max-width: 720px; margin: 16px auto 32px; font-size: 1.1rem; color: var(--gris-clair); }
.page-hero .hero-buttons { justify-content: center; position: relative; z-index: 1; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn:not(.btn-orange):not(.btn-whatsapp) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 120px 0 56px; min-height: auto; }
  .hero-visual { max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-3, .bento-card.span-2 { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
  h2 { font-size: clamp(1.7rem, 6vw, 2.3rem); }
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 0.98rem; }
  .hero { padding: 100px 0 36px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .hero-visual { max-width: 240px; margin-top: 12px; }
  .float-badge.fb-1, .float-badge.fb-3 { left: -2px; }
  .float-badge.fb-2, .float-badge.fb-4 { right: -2px; }
  .header { top: 8px; width: calc(100% - 16px); border-radius: 60px; }
  .header-inner { padding: 8px 10px 8px 14px; gap: 8px; }
  .logo-text { padding: 2px 4px; }
  .logo-text strong { font-size: 0.95rem; }
  .logo-text span { font-size: 0.55rem; letter-spacing: 0.22em; }
  .header-cta { gap: 6px; }
  .header-cta .btn { padding: 8px 14px; font-size: 0.78rem; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-right: none; padding: 12px; border-bottom: 1px solid var(--border-glass); }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .quote-card { padding: 28px 20px; }
  .progress-step .step-label { font-size: 0.7rem; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .floating-whatsapp { display: none; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 70px; }
  .contact-buttons { grid-template-columns: 1fr; }
  .float-badge { font-size: 0.72rem; padding: 8px 12px; }
  .float-badge .badge-icon { width: 26px; height: 26px; }
  .float-badge .badge-icon svg { width: 13px; height: 13px; }
  .cta-banner-inner { padding: 40px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-3, .bento-card.span-2, .bento-card.row-2 { grid-column: span 1; grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { flex-direction: column; gap: 12px; }
  .counters-strip { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-right: none; border-bottom: 1px solid var(--border-glass); }
  .counter-item:nth-last-child(-n+2) { border-bottom: none; }
  .counter-item:nth-child(2n) { border-right: 1px solid var(--border-glass); }
  .counter-item:nth-child(2n) { border-right: none; }
  .pricing-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 18px; text-align: left; }
  .pricing-row.head { display: none; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero-visual { max-width: 280px; }
  .float-badge.fb-1, .float-badge.fb-3 { left: -10px; }
  .float-badge.fb-2, .float-badge.fb-4 { right: -10px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .header-cta .btn span { display: none; }
}

/* ==========================================================================
   Reviews marquee
   ========================================================================== */
.reviews-section { overflow: hidden; }

.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 36px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 80s linear infinite;
  padding: 12px 12px;
}

.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

.reviews-track .review-card {
  flex-shrink: 0;
  width: 380px;
  margin: 0;
}

@media (max-width: 600px) {
  .reviews-track .review-card { width: 86vw; }
  .reviews-track { animation-duration: 60s; }
}

/* ==========================================================================
   Repair photo marquee
   ========================================================================== */
.repair-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 24px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.repair-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
  padding: 8px 0;
}

.repair-marquee:hover .repair-track { animation-play-state: paused; }

.repair-card {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bleu-nuit);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: all 0.3s var(--transition);
}

.repair-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.repair-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .repair-card { width: 240px; height: 240px; }
  .repair-track { animation-duration: 45s; }
}

/* ==========================================================================
   Sub-page styles (service-card, section-title, blog-readable)
   ========================================================================== */
.section-title {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--gris-clair);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.services-section { padding: 80px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.service-card {
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 207, 255, 0.2), rgba(0, 123, 255, 0.06));
  border: 1px solid rgba(0, 207, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg { width: 26px; height: 26px; color: var(--cyan-lumineux); }

.service-card h3 {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
  color: var(--blanc);
}

.service-card p {
  color: var(--gris-clair);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.service-card .btn { align-self: flex-start; margin-top: 8px; }

.faq-section { padding: 80px 0; }

/* Legal pages (mentions / politique) — readable text */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(7, 17, 31, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--cyan-lumineux);
  margin: 28px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  color: var(--gris-clair);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.97rem;
}

.legal-content ul { padding-left: 22px; }

.legal-content a { color: var(--cyan-lumineux); }
.legal-content a:hover { text-decoration: underline; }

/* Section interne page-section neutral */
.page-section {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

/* Reviews section CTA spacing when carousel is outside container */
.reviews-section .reviews-cta { margin-top: 16px; }

/* Hide old before/after handle if any leftover */
.before-after-container { display: none; }

/* ==========================================================================
   Service slider (one service at a time, prev/next)
   ========================================================================== */
.service-slider {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.service-slider-track {
  position: relative;
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  min-height: 460px;
}

.service-slider-track::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-rainbow);
  z-index: 2;
}

.service-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 48px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
  pointer-events: none;
}

.service-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.service-slide-icon {
  width: 180px;
  height: 180px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0, 207, 255, 0.18), rgba(0, 123, 255, 0.05));
  border: 1px solid rgba(0, 207, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  box-shadow: 0 0 60px rgba(0, 207, 255, 0.15) inset;
}

.service-slide-icon svg {
  width: 88px;
  height: 88px;
  color: var(--cyan-lumineux);
}

.service-slide:nth-child(2n) .service-slide-icon {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 122, 0, 0.04));
  border-color: rgba(255, 122, 0, 0.35);
}

.service-slide:nth-child(2n) .service-slide-icon svg { color: var(--orange-accent); }

.service-slide-body { display: flex; flex-direction: column; justify-content: center; }

.service-slide-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(0, 207, 255, 0.12);
  border: 1px solid rgba(0, 207, 255, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-lumineux);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.service-slide h3 {
  font-family: var(--font-titre);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.service-slide p {
  color: var(--gris-clair);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-slide-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-slide-features li {
  position: relative;
  padding-left: 24px;
  color: var(--gris-clair);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-slide-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.5);
}

.service-slide-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

/* Controls */
.service-slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: rgba(7, 17, 31, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  color: var(--blanc);
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  border-color: var(--cyan-lumineux);
  background: rgba(0, 207, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.slider-next {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(0, 123, 255, 0.4);
}

.slider-next:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 10px 35px rgba(0, 207, 255, 0.55);
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gris-card);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.3s var(--transition);
  padding: 0;
}

.slider-dot:hover { border-color: var(--cyan-lumineux); }

.slider-dot.active {
  width: 28px;
  border-radius: 100px;
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.6);
}

/* Mobile slider */
@media (max-width: 768px) {
  .service-slider-track { min-height: 540px; }
  .service-slide {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 24px;
    text-align: left;
  }
  .service-slide-icon {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    margin: 0 auto;
  }
  .service-slide-icon svg { width: 56px; height: 56px; }
  .service-slide h3 { font-size: 1.4rem; text-align: center; }
  .service-slide-tag { align-self: center; }
  .service-slide-body { text-align: center; align-items: center; }
  .service-slide-features { align-self: stretch; }
  .service-slide-features li { text-align: left; }
  .service-slide-cta { justify-content: center; }
  .slider-btn { flex: 1; min-width: 140px; justify-content: center; padding: 12px 14px; font-size: 0.85rem; }
  .service-slider-controls { gap: 10px; }
  .slider-dots { order: -1; flex-basis: 100%; margin-bottom: 4px; }
}
