/* ═══════════════════════════════════════════════════════
   EMMAÜS TECHNOLOGY — Styles (Thème Clair + Accents Dark)
   emmaus-technology.com
   ═══════════════════════════════════════════════════════ */

/* ─── CSS Variables / Design Tokens ─── */
:root {
  /* Primary brand colors */
  --roi: #1A1AE6;
  --electrique: #4D4DFF;
  --neon: #3D3DFF;
  --cyan: #00B8D4;
  --cyan-bright: #00D4FF;
  --succes: #00A878;
  --alerte: #FF6B35;
  --profond: #0D0D8A;

  /* Light theme (new) */
  --bg: #FFFFFF;
  --bg-soft: #F8F9FC;
  --bg-muted: #EFF2F7;
  --card-bg: #FFFFFF;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
  --shadow-brand: 0 8px 32px rgba(26, 26, 230, 0.15);

  /* Dark section tokens (kept for Hero & Footer) */
  --nuit: #05050F;
  --dark-surface: #0A0A1F;
  --dark-card: #14142B;
  --dark-border: #2A2A4A;
  --dark-text: #FFFFFF;
  --dark-text-muted: #94A3B8;

  /* Radius & motion */
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--roi); }

::selection { background: rgba(26, 26, 230, 0.2); color: var(--text-primary); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; border: 2px solid var(--bg-soft); }
::-webkit-scrollbar-thumb:hover { background: var(--roi); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { color: var(--text-secondary); }

.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-mono { font-family: 'Space Mono', monospace; }

/* ─── Material Icons ─── */
.material-icons, .material-icons-outlined, .material-icons-round {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}
.material-icons-outlined { font-family: 'Material Icons Outlined'; }
.material-icons-round { font-family: 'Material Icons Round'; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-padding { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ─── Gradient Text ─── */
.text-gradient {
  background: linear-gradient(135deg, var(--roi), var(--electrique), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn .material-icons { font-size: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--roi), var(--electrique));
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 26, 230, 0.3);
}

.btn-secondary {
  background: var(--bg);
  color: var(--roi);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--roi);
  color: var(--roi);
}

.btn-cyan {
  background: var(--cyan);
  color: #fff;
  font-weight: 700;
}
.btn-cyan:hover { box-shadow: 0 0 25px rgba(0, 184, 212, 0.35); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--text-primary); }

.btn-dark {
  background: var(--nuit);
  color: #fff;
}
.btn-dark:hover { background: var(--dark-card); transform: translateY(-1px); }

.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-full { width: 100%; }

/* ─── Badge ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-secondary);
}

.badge-glow {
  border-color: rgba(26, 26, 230, 0.2);
  background: rgba(26, 26, 230, 0.06);
  color: var(--roi);
  box-shadow: 0 2px 12px rgba(26, 26, 230, 0.1);
}

.badge-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulse 2s infinite;
}

.badge-primary { border-color: rgba(26,26,230,0.2); background: rgba(26,26,230,0.06); color: var(--roi); }
.badge-cyan { border-color: rgba(0,184,212,0.2); background: rgba(0,184,212,0.06); color: var(--cyan); }
.badge-success { border-color: rgba(0,168,120,0.2); background: rgba(0,168,120,0.08); color: var(--succes); }
.badge-alert { border-color: rgba(255,107,53,0.2); background: rgba(255,107,53,0.08); color: var(--alerte); }
.badge-dark { background: var(--nuit); color: #fff; border: none; }

/* ─── Cards ─── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}

.card:hover {
  border-color: rgba(26, 26, 230, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-dark {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--dark-text);
}
.card-dark:hover { border-color: var(--electrique); }

.card-holographic {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.card-holographic .glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 2;
}

/* ─── Input ─── */
.input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.25s var(--ease);
}

.input::placeholder { color: var(--text-muted); }
.input:focus { border-color: var(--roi); box-shadow: 0 0 0 3px rgba(26, 26, 230, 0.12); }

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

/* ─── Glass ─── */
.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

/* ─── Grid Layouts ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.35s var(--ease);
  padding: 16px 0;
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

/* Dark header when over hero (home page) */
.header.over-hero {
  background: transparent;
}
.header.over-hero .nav-link { color: rgba(255,255,255,0.75); }
.header.over-hero .nav-link:hover, .header.over-hero .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.header.over-hero .logo-text { color: #fff; }
.header.over-hero .hamburger span { background: #fff; }
/* When scrolled: always use white light background (override over-hero) */
.header.scrolled.over-hero {
  background: rgba(255, 255, 255, 0.92);
}
.header.scrolled.over-hero .nav-link { color: var(--text-secondary); }
.header.scrolled.over-hero .nav-link:hover,
.header.scrolled.over-hero .nav-link.active {
  color: var(--roi);
  background: rgba(26, 26, 230, 0.08);
}
.header.scrolled.over-hero .logo-text { color: var(--text-primary); }
.header.scrolled.over-hero .hamburger span { background: var(--text-primary); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 3px;
  box-shadow: var(--shadow-sm);
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; line-height: 1; color: var(--text-primary); transition: color 0.25s; }
.logo-sub { font-family: 'Space Mono', monospace; font-size: 9px; font-weight: 700; color: var(--roi); text-transform: uppercase; letter-spacing: 0.25em; }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active { background: rgba(26, 26, 230, 0.08); color: var(--roi); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--nuit);
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  transition: color 0.25s;
}
.mobile-menu-link:hover { color: var(--cyan-bright); }

/* ─── Hero Section (stays DARK for impact) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--nuit);
  color: #fff;
}

.hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,0.75); }

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,26,230,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0,212,255,0.12) 0%, transparent 50%);
  z-index: 1;
}

.hero-grid {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-content .badge { background: rgba(61, 61, 255, 0.15); color: #fff; border-color: rgba(77, 77, 255, 0.35); }

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

.hero-proof {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-top: 48px; font-size: 13px;
}

.hero-proof-item { display: flex; align-items: center; gap: 8px; }
.hero-proof-value { font-family: 'Space Mono', monospace; font-size: 22px; font-weight: 700; color: var(--cyan-bright); }
.hero-proof-label { color: rgba(255, 255, 255, 0.6); }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.scroll-indicator span {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--electrique), transparent);
  animation: pulse 2s infinite;
}

/* ─── Trust Bar ─── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}

.trust-bar-label {
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.trust-bar-track {
  display: flex;
  gap: 20px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-logo {
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.3s;
}
.trust-logo:hover {
  border-color: var(--roi);
  color: var(--roi);
  box-shadow: var(--shadow-sm);
}

.trust-fade-left, .trust-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}
.trust-fade-left { left: 0; background: linear-gradient(to right, var(--bg-soft), transparent); }
.trust-fade-right { right: 0; background: linear-gradient(to left, var(--bg-soft), transparent); }

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header p {
  margin: 12px auto 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
}

/* ─── Service Cards / Icons ─── */
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon .material-icons { font-size: 28px; }

/* ─── Showcase (home images) ─── */
.showcase-section {
  background: var(--bg-soft);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.showcase-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow-lg);
}
.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.showcase-card:hover img { transform: scale(1.05); }
.showcase-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 15, 0.1) 0%, rgba(5, 5, 15, 0.85) 85%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}
.showcase-card h3 { color: #fff; font-size: 22px; }
.showcase-card p { color: rgba(255, 255, 255, 0.85); font-size: 13px; margin-top: 6px; }

/* ─── Stats ─── */
.stats-section {
  background: var(--nuit);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.08), transparent 60%);
}

.stat-value {
  font-family: 'Space Mono', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cyan-bright);
  transition: text-shadow 0.15s;
}

.stat-value.glitch {
  text-shadow: 2px 0 #ff0000, -2px 0 var(--cyan-bright);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* Stats on light background (about page) */
.stats-light .stat-value { color: var(--roi); }
.stats-light .stat-label { color: var(--text-muted); }

/* ─── Testimonials ─── */
.testimonial-stars { display: flex; gap: 4px; justify-content: center; color: #f5b731; font-size: 18px; margin-bottom: 16px; }
.testimonial-stars .material-icons { font-size: 20px; }
.testimonial-text { font-size: 17px; color: var(--text-primary); line-height: 1.7; font-style: italic; max-width: 560px; margin: 0 auto; }
.testimonial-author { margin-top: 20px; }
.testimonial-dots { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.testimonial-dot {
  height: 8px; border-radius: 99px;
  border: none; cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dot.active { width: 24px; background: var(--roi); }
.testimonial-dot:not(.active) { width: 8px; background: var(--border-strong); }

/* ─── Portfolio ─── */
.filter-btn {
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--roi);
  border-color: var(--roi);
  color: #fff;
}

.project-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.project-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.card:hover .project-image img { transform: scale(1.06); }

.project-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
}

.project-results { display: flex; gap: 20px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.project-result-value { font-family: 'Space Mono', monospace; font-size: 18px; font-weight: 700; color: var(--roi); }
.project-result-label { font-size: 10px; color: var(--text-muted); }

.project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.project-tag {
  padding: 3px 9px;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: 10px;
  color: var(--text-secondary);
  background: var(--bg-soft);
}

/* ─── Pricing ─── */
.pricing-popular {
  border-color: var(--roi) !important;
  box-shadow: 0 12px 40px rgba(26, 26, 230, 0.15), 0 2px 8px rgba(26, 26, 230, 0.08) !important;
  transform: scale(1.02);
}
.pricing-popular:hover { transform: scale(1.03) translateY(-2px); }

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.pricing-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 168, 120, 0.12);
  color: var(--succes);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

/* ─── Contact Form ─── */
.form-progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.form-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
}
.form-step-num.active { background: var(--roi); color: #fff; box-shadow: 0 4px 12px rgba(26, 26, 230, 0.3); }
.form-step-num:not(.active) { border: 1px solid var(--border-strong); color: var(--text-muted); background: var(--bg); }
.form-step-line { flex: 1; height: 2px; margin: 0 8px; transition: background 0.3s; border-radius: 2px; }

.service-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  font-family: inherit;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  width: 100%;
}
.service-option:hover { border-color: var(--border-strong); }
.service-option.selected { border-color: var(--roi); background: rgba(26,26,230,0.04); }
.service-option .material-icons { font-size: 22px; color: var(--roi); }

/* ─── Team ─── */
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  position: relative;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Blog Card ─── */
.blog-image {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.card:hover .blog-image img { transform: scale(1.06); }

/* ─── Footer (kept DARK) ─── */
.footer {
  background: var(--nuit);
  color: var(--dark-text-muted);
  padding: 0;
  border-top: 1px solid var(--dark-border);
}
.footer h2, .footer h3, .footer h4 { color: #fff; }
.footer p { color: rgba(255, 255, 255, 0.6); }
.footer a { color: rgba(255, 255, 255, 0.6); }
.footer a:hover { color: var(--cyan-bright); }

.footer-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: #fff;
}

.footer-link {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { cursor: pointer; }

.footer .logo-text { color: #fff; }
.footer .logo-icon { background: rgba(255,255,255,0.08); }

.social-link {
  width: 34px; height: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 14px;
}
.social-link:hover {
  border-color: var(--cyan-bright);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: transform 0.3s;
  animation: scaleIn 0.5s ease-out 2.5s both;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float .pulse-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 3s infinite;
  opacity: 0.3;
}

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; z-index: 100;
  background: linear-gradient(90deg, var(--roi), var(--cyan));
  transition: width 50ms linear;
}

/* ─── Page Transition ─── */
.page-content { animation: fadeInUp 0.5s ease-out; }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.8); opacity: 0; }
}

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

/* ─── Reveal on Scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .hero-proof { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-section .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }
  .team-avatar { width: 80px; height: 80px; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 1; transform: none; }
}
