@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-ext-400-normal.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-ext-500-normal.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-ext-600-normal.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Colors */
  --color-onyx-canvas: #171721;
  --color-graphite-card: #1e1e2a;
  --color-obsidian-button: #272735;
  --color-slate-border: #70707d;
  --color-mist-border: #e2e3ed;
  --color-ash-text: #c3c3cc;
  --color-ivory-text: #ededf3;
  --color-cobalt: #5266eb;
  --color-cobalt-hover: #4457d6;
  --color-pure-white: #ffffff;

  /* Typography */
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-56: 56px;
  --spacing-72: 72px;
  --spacing-112: 112px;
  --spacing-128: 128px;

  /* Layout */
  --page-max-width: 1200px;
  --section-gap: 72px;
  --card-padding: 32px;

  /* Radius */
  --radius-cards: 12px;
  --radius-pill: 32px;
  --radius-nav: 40px;

  --nav-height: 84px;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--color-onyx-canvas);
  color: var(--color-ivory-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

section[id] { scroll-margin-top: var(--nav-height); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-ivory-text);
}

h1 { font-size: 65px; line-height: 1.1; font-weight: 600; }
h2 { font-size: 42px; line-height: 1.15; letter-spacing: 0.01em; }
h3 { font-size: 21px; line-height: 1.3; font-weight: 600; }

.eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cobalt);
  margin-bottom: var(--spacing-16);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--cobalt {
  background: var(--color-cobalt);
  color: var(--color-pure-white);
}
.btn--cobalt:hover { background: var(--color-cobalt-hover); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-ivory-text);
  color: var(--color-ivory-text);
}
.btn--ghost:hover { background: rgba(237, 237, 243, 0.08); }
/* Over the photograph a transparent button can land on bright sky */
.hero .btn--ghost { background: rgba(13, 13, 20, 0.45); }
.hero .btn--ghost:hover { background: rgba(13, 13, 20, 0.65); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; padding: 14px 24px; }
.btn--phone { gap: 10px; font-variant-numeric: tabular-nums; }
.btn--phone svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 24px 0;
}
.nav__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 20px;
  border-radius: var(--radius-nav);
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled .nav__inner {
  background: rgba(23, 23, 33, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(237,237,243,0.06);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--color-ivory-text);
}
.nav__logo {
  width: 28px; height: 28px;
  color: var(--color-ivory-text);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 10px 18px;
  border-radius: var(--radius-nav);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ivory-text);
  transition: background 0.2s ease;
}
.nav__links a:hover { background: rgba(237, 237, 243, 0.08); }
.nav__right { display: flex; align-items: center; gap: var(--spacing-12); }

/* Always-visible call button — the emergency path must never be a menu away */
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-nav);
  border: 1px solid rgba(237, 237, 243, 0.22);
  color: var(--color-ivory-text);
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav__phone:hover {
  background: rgba(237, 237, 243, 0.08);
  border-color: rgba(237, 237, 243, 0.45);
}
.nav__phone svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
}
.nav__toggle span {
  width: 20px; height: 1.6px;
  background: var(--color-ivory-text);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    url('../assets/hero-workspace.jpg') center bottom / cover no-repeat,
    var(--color-onyx-canvas);
}
/* WebP where the browser takes it: same picture, a third of the bytes */
@supports (background-image: image-set(url("x.webp") type("image/webp"))) {
  .hero {
    background-image: image-set(
      url('../assets/hero-workspace.webp') type('image/webp'),
      url('../assets/hero-workspace.jpg') type('image/jpeg')
    );
  }
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(13, 13, 20, 0.55), transparent 72%),
    linear-gradient(180deg,
      rgba(23, 23, 33, 0.62) 0%,
      rgba(23, 23, 33, 0.22) 30%,
      rgba(23, 23, 33, 0.04) 58%,
      rgba(23, 23, 33, 0.55) 88%,
      var(--color-onyx-canvas) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 110px 24px 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__content .eyebrow { color: var(--color-ash-text); }
.hero h1 {
  color: var(--color-pure-white);
  font-size: clamp(32px, 5.2vw, 56px);
  margin-bottom: var(--spacing-24);
}
.hero__sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-ash-text);
  max-width: 560px;
  margin-bottom: var(--spacing-24);
}
.hero__actions {
  display: flex;
  gap: var(--spacing-16);
  flex-wrap: wrap;
  justify-content: center;
}
.hero__trust {
  font-size: 13px;
  color: var(--color-ivory-text);
  letter-spacing: 0.01em;
  margin-bottom: var(--spacing-32);
  text-shadow: 0 1px 3px rgba(10, 10, 17, 0.95), 0 2px 18px rgba(10, 10, 17, 0.9);
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 44px;
  border: 1px solid rgba(237,237,243,0.35);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  border-radius: 2px;
  background: var(--color-ivory-text);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translateY(0); }
  60% { opacity: 0.2; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Sections */
.section { padding: var(--section-gap) 24px; position: relative; }
.section__inner { max-width: var(--page-max-width); margin: 0 auto; position: relative; }
.section__head { max-width: 680px; margin: 0 auto var(--spacing-56); text-align: center; }
.section__head .eyebrow { display: block; }
.section__head h2 { text-wrap: balance; }
.section__sub { font-size: 18px; line-height: 1.55; color: var(--color-ash-text); margin-top: var(--spacing-16); }

/* An ambient wash keeps the long dark scroll from reading as flat black. */
#services::before,
#preuves::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(82, 102, 235, 0.07), transparent 70%);
  pointer-events: none;
}

/* Grid */
.grid { display: grid; gap: var(--spacing-24); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Card */
.card {
  background: var(--color-graphite-card);
  border: 1px solid rgba(237, 237, 243, 0.07);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
}

/* Service card — the four pillars carry the offer, so they get the weight */
.pillars .card { padding: var(--spacing-40); }
.service-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #23232f, var(--color-graphite-card) 60%);
  border-color: rgba(237, 237, 243, 0.10);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 102, 235, 0.55);
  box-shadow: 0 0 0 1px rgba(82, 102, 235, 0.18), 0 18px 40px -24px rgba(82, 102, 235, 0.55);
}
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--color-cobalt), #3d4bbd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-24);
}
.service-card__icon svg {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--color-pure-white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 24px;
  letter-spacing: 0.015em;
  margin-bottom: var(--spacing-16);
  text-wrap: balance;
}
.service-card p { color: var(--color-ash-text); font-size: 16px; line-height: 1.6; }

/* Practical terms under the offer — read as facts, not as another row of cards */
.coverage {
  margin-top: var(--spacing-40);
  padding-top: var(--spacing-32);
  border-top: 1px solid rgba(237, 237, 243, 0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-32);
}
.coverage__item dt {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ivory-text);
  margin-bottom: var(--spacing-8);
}
.coverage__item dd { font-size: 14px; line-height: 1.6; color: var(--color-ash-text); }

.hp {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Placeholders the client still has to fill before publication */
.todo {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
  color: #e0b96a;
  background: rgba(224, 185, 106, 0.10);
  border: 1px dashed rgba(224, 185, 106, 0.35);
  border-radius: 4px;
  padding: 1px 6px;
  white-space: nowrap;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-72);
  align-items: center;
}
.split__text h2 { margin-bottom: var(--spacing-20); }
.split__text .section__sub { margin-top: 0; margin-bottom: var(--spacing-32); }

/* Capacity — text beside the figures that back it */
.section--capacity {
  border-top: 1px solid rgba(237, 237, 243, 0.07);
  border-bottom: 1px solid rgba(237, 237, 243, 0.07);
  background: linear-gradient(180deg, rgba(30, 30, 42, 0.5), rgba(23, 23, 33, 0));
}
.capacity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-72);
  align-items: center;
}
.capacity h2 { margin-bottom: var(--spacing-24); text-wrap: balance; }
.capacity__text p { color: var(--color-ash-text); font-size: 17px; line-height: 1.6; }
.capacity__rule {
  margin-top: var(--spacing-24);
  padding-left: var(--spacing-20);
  border-left: 2px solid var(--color-cobalt);
  color: var(--color-ivory-text) !important;
  font-size: 16px !important;
}

.figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(237, 237, 243, 0.07);
  border: 1px solid rgba(237, 237, 243, 0.07);
  border-radius: var(--radius-cards);
  overflow: hidden;
}
.figure {
  background: var(--color-graphite-card);
  padding: var(--spacing-24);
}
.figure dt {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-ivory-text);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--spacing-8);
}
.figure dd { font-size: 14px; line-height: 1.5; color: var(--color-ash-text); }

/* Proofs — a claim, its scope, and what it means for the reader */
.proofs { display: flex; flex-direction: column; gap: var(--spacing-24); }
.proof {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: var(--spacing-40);
  row-gap: 0;
  padding: var(--spacing-32) 0;
  border-top: 1px solid rgba(237, 237, 243, 0.10);
}
.proof__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-slate-border);
  padding-top: 4px;
}
.proof__claim {
  grid-column: 2;
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-ivory-text);
}
.proof__claim strong { font-weight: 600; color: var(--color-pure-white); }
.proof__scope {
  grid-column: 2;
  margin-top: var(--spacing-16);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-slate-border);
}
.proof__translation {
  grid-column: 2;
  margin-top: var(--spacing-20);
  padding: var(--spacing-16) var(--spacing-20);
  background: rgba(82, 102, 235, 0.07);
  border-left: 2px solid var(--color-cobalt);
  border-radius: 0 var(--radius-cards) var(--radius-cards) 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ash-text);
}
.proof__translation span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cobalt);
  margin-bottom: 6px;
}

/* Urgent path, stated once, directly under the hero */
.urgence {
  border-bottom: 1px solid rgba(237, 237, 243, 0.07);
  background: linear-gradient(180deg, rgba(82, 102, 235, 0.10), rgba(82, 102, 235, 0.03));
  padding: var(--spacing-20) 24px;
}
.urgence__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-16);
  text-align: center;
}
.urgence svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--color-cobalt);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.urgence p { font-size: 16px; color: var(--color-ivory-text); }
.urgence a {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  border-bottom: 1px solid rgba(237, 237, 243, 0.35);
  transition: border-color 0.2s ease;
}
.urgence a:hover { border-color: var(--color-ivory-text); }

/* The one line that answers the objection, so it closes the method loudly */
.pledge {
  margin-top: var(--spacing-56);
  padding: var(--spacing-40) var(--spacing-32);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-20);
  border-radius: var(--radius-cards);
  background: linear-gradient(135deg, var(--color-cobalt), #3a46b8);
}
.pledge svg {
  width: 40px; height: 40px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--color-pure-white);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pledge__claim {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-pure-white);
  text-wrap: balance;
}

/* Method — a real sequence, so the steps are numbered and connected */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-24);
  list-style: none;
}
.step {
  padding: var(--spacing-32);
  border-radius: var(--radius-cards);
  background: linear-gradient(160deg, #23232f, var(--color-graphite-card) 60%);
  border: 1px solid rgba(237, 237, 243, 0.10);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 102, 235, 0.55);
  box-shadow: 0 0 0 1px rgba(82, 102, 235, 0.18), 0 18px 40px -24px rgba(82, 102, 235, 0.55);
}
.step__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-cobalt), #3d4bbd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-pure-white);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--spacing-20);
}
.step h3 { font-size: 21px; margin-bottom: var(--spacing-12); }
.step p { font-size: 15px; line-height: 1.6; color: var(--color-ash-text); }

/* Contact */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-24);
  margin-top: var(--spacing-32);
}
.contact-info__item { display: flex; flex-direction: column; gap: 4px; }
.contact-info__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-slate-border);
}
.contact-info__item a,
.contact-info__item span:not(.contact-info__label) {
  font-size: 16px;
  line-height: 1.45;
  color: var(--color-ivory-text);
}
.contact-info__item a:hover { color: var(--color-cobalt); }

/* Calling is the intended path, so the number gets the weight of a heading */
.callout {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-32);
  padding: var(--spacing-24) var(--spacing-32);
  border-radius: var(--radius-cards);
  background: rgba(82, 102, 235, 0.10);
  border: 1px solid rgba(82, 102, 235, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.callout:hover {
  background: rgba(82, 102, 235, 0.17);
  border-color: rgba(82, 102, 235, 0.65);
}
.callout__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cobalt);
  margin-bottom: var(--spacing-12);
}
.callout__label svg { width: 14px; height: 14px; fill: currentColor; }
.callout__number {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--color-pure-white);
  font-variant-numeric: tabular-nums;
}
.callout__hours { margin-top: 6px; font-size: 14px; color: var(--color-ash-text); }

.form-head h3 { font-size: 19px; margin-bottom: 6px; }
.form-head p { font-size: 14px; line-height: 1.5; color: var(--color-ash-text); }

.contact-form { display: flex; flex-direction: column; gap: var(--spacing-20); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; color: var(--color-ash-text); }
.field input, .field textarea {
  background: var(--color-obsidian-button);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--color-ivory-text);
  padding: 14px 20px;
  transition: border-color 0.2s ease;
  resize: none;
}
.field textarea { border-radius: 20px; }
.field input::placeholder, .field textarea::placeholder { color: var(--color-slate-border); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-cobalt);
}
.form-status {
  font-size: 14px;
  color: var(--color-ash-text);
  min-height: 20px;
}
.form-status.success { color: var(--color-cobalt); }
.form-status.error { color: #e0b96a; }
.form-status__link {
  color: var(--color-ivory-text);
  border-bottom: 1px solid rgba(237, 237, 243, 0.45);
  white-space: nowrap;
}
.form-status__link:hover { border-color: var(--color-ivory-text); }
.contact-form button[disabled] { opacity: 0.6; cursor: progress; }

/* Legal page — read start to finish, so a single measured column */
.nav--solid .nav__inner {
  background: rgba(23, 23, 33, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.legal { padding: 160px 24px var(--section-gap); }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(34px, 5vw, 49px); line-height: 1.15; margin-bottom: var(--spacing-24); }
.legal__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-ash-text);
  padding-bottom: var(--spacing-40);
  border-bottom: 1px solid rgba(237, 237, 243, 0.10);
}
.legal__block { padding-top: var(--spacing-40); }
.legal__block h2 { font-size: 24px; margin-bottom: var(--spacing-20); }
.legal__block p {
  color: var(--color-ash-text);
  line-height: 1.65;
  margin-bottom: var(--spacing-16);
}
.legal__block p:last-child { margin-bottom: 0; }
.legal__block a { color: var(--color-ivory-text); border-bottom: 1px solid rgba(237, 237, 243, 0.35); }
.legal__block a:hover { border-color: var(--color-ivory-text); }

.legal__list { display: flex; flex-direction: column; }
.legal__list > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--spacing-20);
  padding: var(--spacing-16) 0;
  border-top: 1px solid rgba(237, 237, 243, 0.07);
}
.legal__list > div:first-child { border-top: none; padding-top: 0; }
.legal__list dt { font-size: 14px; color: var(--color-slate-border); }
.legal__list dd { color: var(--color-ivory-text); line-height: 1.55; }

.legal__back { margin-top: var(--spacing-56); }
.legal__back a { color: var(--color-ash-text); font-size: 15px; }
.legal__back a:hover { color: var(--color-ivory-text); }

@media (max-width: 640px) {
  .legal { padding: 120px 20px var(--spacing-56); }
  .legal__list > div { grid-template-columns: 1fr; gap: 4px; }
}

/* Footer */
.footer {
  background: var(--color-onyx-canvas);
  border-top: 1px solid rgba(237, 237, 243, 0.08);
  padding: var(--spacing-72) 24px var(--spacing-32);
}
.footer__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--spacing-40);
  padding-bottom: var(--spacing-56);
}
.footer__brand p {
  margin-top: var(--spacing-16);
  color: var(--color-ash-text);
  font-size: 14px;
  max-width: 240px;
}
.footer__col { display: flex; flex-direction: column; gap: var(--spacing-12); }
.footer__title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-slate-border);
  margin-bottom: var(--spacing-8);
}
.footer__col a { font-size: 15px; color: var(--color-ash-text); transition: color 0.2s ease; }
.footer__col a:hover { color: var(--color-ivory-text); }
.footer__bottom {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-top: var(--spacing-32);
  border-top: 1px solid rgba(237, 237, 243, 0.08);
}
.footer__bottom p { font-size: 13px; color: var(--color-slate-border); }

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 49px; }
  h2 { font-size: 32px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .pillars .card { padding: var(--spacing-32); }
  .split { grid-template-columns: 1fr; gap: var(--spacing-40); }
  .capacity { grid-template-columns: 1fr; gap: var(--spacing-40); }
  .coverage { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-24); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-40) var(--spacing-24); }
  .proof { grid-template-columns: 1fr; column-gap: 0; }
  .proof__label { padding-bottom: var(--spacing-12); }
  .proof__label, .proof__claim, .proof__scope, .proof__translation { grid-column: 1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__phone span { display: none; }
  .nav__phone { padding: 9px 12px; }
  .nav__toggle { display: flex; }
  .nav.menu-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: calc(100% + 8px);
    left: 24px;
    right: 24px;
    background: rgba(23, 23, 33, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 12px;
  }
  .nav.menu-open .nav__links a { padding: 14px 18px; }
}

@media (max-width: 640px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero {
    background-size: auto 132%;
    background-position: center 18%;
  }
  .hero__content { padding: 90px 20px 250px; }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .pillars .card { padding: 24px; }
  .service-card h3 { font-size: 21px; }
  .section { padding: 56px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: var(--spacing-32); }
  .contact-info { grid-template-columns: 1fr; }
  .callout { padding: 20px 24px; }
  .callout__number { font-size: 28px; }
  .card { padding: 24px; }
  .figures { grid-template-columns: 1fr; }
  .coverage { grid-template-columns: 1fr; gap: var(--spacing-20); }
  .figure { padding: 20px; }
  .figure dt { font-size: 26px; }
  .steps { grid-template-columns: 1fr; gap: var(--spacing-40); }
  .proof__claim { font-size: 17px; }
  .urgence__inner { flex-direction: column; gap: var(--spacing-12); }
  .urgence p { font-size: 15px; }
  .pledge { padding: 24px 20px; }
  .pledge__claim { font-size: 20px; }
  .proof { padding: var(--spacing-24) 0; }
  .todo { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
}
