:root {
  --bg: #050E1E;
  --fg: #D6E8F5;
  --fg-dim: #7AA8C9;
  --accent: #E89C0F;
  --accent-dim: rgba(232, 156, 15, 0.15);
  --surface: #0A1E36;
  --surface-2: #0D2240;
  --border: rgba(58, 106, 154, 0.25);
  --text-muted: #4A7A9E;
  --section-pad: 80px 40px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(5, 14, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon { width: 28px; height: 28px; }

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.5px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-canvas {
  width: 100%;
  height: 100%;
}

.grid-svg {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

/* Accent bar at top of hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 156, 15, 0.3);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-lede {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-pills {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

.pill:first-child { border-radius: 3px 0 0 3px; }
.pill:last-child { border-radius: 0 3px 3px 0; }

.pill-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ── Process ── */
.process {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--fg-dim);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  position: relative;
}

.process-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.process-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.process-icon svg {
  width: 100%;
  height: 100%;
}

.process-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.55;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 60px;
}

.process-arrow svg {
  width: 20px;
  height: 20px;
}

/* ── Chiffres ── */
.chiffres {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 60px;
}

.chiffres-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.chiffre-item {
  text-align: center;
  flex: 1;
}

.chiffre-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.chiffre-label {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

.chiffre-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
}

/* ── Zones ── */
.zones {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zones-left .section-title { max-width: 420px; }
.zones-left .section-desc { max-width: 420px; margin-bottom: 28px; }

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-tag {
  font-size: 12px;
  color: var(--fg-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 2px;
}

.paca-map {
  margin-bottom: 28px;
}

.paca-map svg {
  width: 100%;
  height: auto;
}

.zones-cities {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.city-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.city-name {
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
}

.city-dist {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Closing ── */
.closing {
  padding: 120px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 36px;
}

.closing-icon svg { width: 100%; height: 100%; }

.closing-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-dim);
  margin-bottom: 44px;
}

.closing-cta {
  display: inline-block;
  padding: 20px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.closing-contact-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.closing-contact-email {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

/* ── Footer ── */
.footer {
  padding: 36px 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon-sm { width: 24px; height: 24px; }

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--fg-dim);
}

.footer-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.footer-meta { text-align: right; }
.footer-services {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-sep { color: var(--border); }
.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }
  .hero-grid-bg { display: none; }
  .hero-content { max-width: 100%; }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-arrow { display: none; }
  .chiffres { padding: 40px 24px; }
  .chiffres-inner { flex-direction: column; gap: 24px; }
  .chiffre-divider { width: 80px; height: 1px; }
  .zones {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  .closing { padding: 80px 24px; }
  .footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .footer-services { justify-content: flex-start; }
  .nav-bar { padding: 14px 24px; }
  .nav-tagline { display: none; }
}