/* ════════════════════════════════════════════════════════════════
   MCO Facilities — design system
   Editorial dark · cyan accent · parallax + reveal animations
   ══════════════════════════════════════════════════════════════════ */

/* ─── tokens ─── */
:root {
  --bg:           #08090f;
  --bg-soft:      #0e1120;
  --bg-elev:      #131727;
  --line:         rgba(255, 255, 255, 0.08);
  --line-strong:  rgba(255, 255, 255, 0.16);

  --text:         #f3f5fa;
  --text-mute:    #8a93ad;
  --text-faint:   rgba(255, 255, 255, 0.45);

  --accent:       #5ee9d4;        /* mint-cyan */
  --accent-2:     #7c9bff;        /* electric blue */
  --accent-glow:  rgba(94, 233, 212, 0.35);

  --serif:        "Instrument Serif", "Times New Roman", serif;
  --sans:         "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:         "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px;

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  --pad-x: clamp(20px, 5vw, 80px);
  --max:   1360px;
}

/* ─── reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html, body { min-height: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { list-style: none; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

::selection { background: var(--accent); color: var(--bg); }

/* ────────────────────────────────────────────────────────────────
   BACKGROUND LAYERS (parallax)
   ──────────────────────────────────────────────────────────────── */
.bg-layer {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, #0c1024 0%, var(--bg) 55%) no-repeat;
}

.bg-grid {
  position: absolute; inset: -10% -10%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
  will-change: transform;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.bg-orb--1 { width: 520px; height: 520px; left: -10%; top: -8%;  background: radial-gradient(circle, var(--accent) 0%, transparent 65%); opacity: 0.32; }
.bg-orb--2 { width: 620px; height: 620px; right: -12%; top: 35%; background: radial-gradient(circle, var(--accent-2) 0%, transparent 65%); opacity: 0.28; }
.bg-orb--3 { width: 460px; height: 460px; left: 20%; top: 90%;   background: radial-gradient(circle, #ff7ab6 0%, transparent 65%); opacity: 0.18; }

.bg-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────────
   CURSOR (desktop only)
   ──────────────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .28s var(--ease), height .28s var(--ease), border-color .28s, background .28s;
  display: none;
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 60px; height: 60px; border-color: var(--accent); }
.cursor__dot {
  position: absolute; inset: 0;
  margin: auto;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body { cursor: none; }
  a, button, input, textarea, select, [data-tilt] { cursor: none; }
}

/* ────────────────────────────────────────────────────────────────
   NAV
   ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: backdrop-filter .3s, background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(8, 9, 15, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
  padding-block: 12px;
}
.nav__logo { color: var(--text); display: inline-flex; align-items: center; }
.nav__logo svg { transition: opacity .3s; }
.nav__logo:hover svg { opacity: 0.7; }

.nav__links {
  display: flex; gap: 32px;
  font-size: 14px;
  color: var(--text-mute);
}
.nav__links a {
  position: relative;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  transition: background .3s, border-color .3s, transform .3s;
}
.nav__cta:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: translateY(-1px); }
.nav__cta svg { transition: transform .3s; }
.nav__cta:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ────────────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 0 var(--accent-glow), 0 14px 40px -8px rgba(94, 233, 212, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px var(--accent-glow), 0 20px 55px -8px rgba(94, 233, 212, 0.55);
}
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ────────────────────────────────────────────────────────────────
   GENERAL
   ──────────────────────────────────────────────────────────────── */
.muted { color: var(--text-faint); }

.section {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  max-width: var(--max);
  margin-inline: auto;
  position: relative;
}
.section--dark {
  max-width: none;
  background:
    linear-gradient(to bottom, transparent, rgba(94, 233, 212, 0.03) 30%, transparent),
    var(--bg-soft);
  border-block: 1px solid var(--line);
}
.section--dark > * { max-width: var(--max); margin-inline: auto; }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(40px, 8vw, 96px);
}
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: ""; width: 28px; height: 1px; background: var(--accent);
}
.section__title {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 18ch;
}
.section__title span { display: block; }

/* ────────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(140px, 18vh, 220px) var(--pad-x) 80px;
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__inner { max-width: 1100px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(94, 233, 212, 0.18);
  animation: pulse 2s var(--ease-io) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(44px, 8vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin-bottom: 40px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: block; }

.hero__lede {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 56ch;
  margin-bottom: 48px;
}
.hero__lede strong { color: var(--text); font-weight: 500; }

.hero__actions {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 88px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 56px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 800px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 8px; }
.meta__num {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.meta__num sup { font-size: 0.5em; color: var(--accent); top: -0.6em; margin-left: 2px; }
.meta__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--pad-x);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: var(--line);
  position: relative; overflow: hidden;
}
.hero__scroll-line div {
  position: absolute; inset: 0;
  background: var(--accent);
  animation: scrollLine 2.4s var(--ease-io) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ────────────────────────────────────────────────────────────────
   MARQUEE
   ──────────────────────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}
.marquee__track {
  display: inline-flex;
  gap: 38px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}
.marquee__track span:nth-child(odd) { color: var(--text); }
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────────────────────
   EXPERTISE
   ──────────────────────────────────────────────────────────────── */
.expertise {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.expertise__lede {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text);
  font-weight: 400;
  position: sticky;
  top: 120px;
}
.expertise__pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.expertise__pillars li {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color .4s, background .4s, transform .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.expertise__pillars li::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px at var(--mx, 50%) var(--my, 0%), rgba(94, 233, 212, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.expertise__pillars li:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.expertise__pillars li:hover::before { opacity: 1; }
.pillar__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}
.expertise__pillars h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.expertise__pillars p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.5;
}
@media (max-width: 920px) {
  .expertise { grid-template-columns: 1fr; }
  .expertise__lede { position: static; }
}
@media (max-width: 540px) {
  .expertise__pillars { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────────────
   SERVICES
   ──────────────────────────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: minmax(0, auto);
  gap: 22px;
}
.service {
  position: relative;
  padding: 36px 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.005) 100%);
  transition: border-color .4s, background .4s, transform .6s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform-style: preserve-3d;
  min-height: 360px;
  will-change: transform;
}
.service.is-tilting { transition: border-color .4s, background .4s; }
.service::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px at var(--mx, 50%) var(--my, 50%), rgba(94, 233, 212, 0.10), transparent 55%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.service:hover { border-color: var(--line-strong); }
.service:hover::after { opacity: 1; }

.service--featured {
  grid-row: span 2;
  background:
    radial-gradient(800px at 0% 0%, rgba(94, 233, 212, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
  border-color: var(--line-strong);
  min-height: 520px;
}

.service__index {
  position: absolute;
  top: 22px; right: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: rgba(94, 233, 212, 0.08);
  border: 1px solid rgba(94, 233, 212, 0.16);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 6px;
  transition: transform .5s var(--ease), background .4s;
}
.service:hover .service__icon { transform: scale(1.06) rotate(-3deg); background: rgba(94, 233, 212, 0.14); }
.service__icon svg { width: 28px; height: 28px; }

.service h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 14ch;
}
.service--featured h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  max-width: 16ch;
}

.service > p {
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}

.service ul {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.service li {
  font-size: 14px;
  color: var(--text);
  position: relative;
  padding-left: 22px;
}
.service li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--accent);
}

.service__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 8px;
  align-self: flex-start;
  position: relative;
}
.service__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.service__link:hover::after { transform-origin: left; transform: scaleX(1); }
.service__link svg { transition: transform .35s var(--ease); }
.service__link:hover svg { transform: translateX(3px); }

@media (max-width: 920px) {
  .services { grid-template-columns: 1fr; }
  .service--featured { grid-row: auto; min-height: 0; }
  .service { min-height: 0; }
}

/* ────────────────────────────────────────────────────────────────
   MÉTHODE
   ──────────────────────────────────────────────────────────────── */
.method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.method::before {
  content: "";
  position: absolute;
  left: 5%; right: 5%;
  top: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 8%, var(--line-strong) 92%, transparent);
  z-index: 0;
}
.method li {
  position: relative;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .5s var(--ease), border-color .4s;
  z-index: 1;
}
.method li:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.method__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 6px;
}
.method h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.method p {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.55;
}
.method__tag {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 920px) {
  .method { grid-template-columns: 1fr; }
  .method::before { display: none; }
}

/* ────────────────────────────────────────────────────────────────
   RÉFÉRENCES
   ──────────────────────────────────────────────────────────────── */
.refs {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.refs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}
.refs__cell {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s, transform .35s var(--ease);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.refs__cell:nth-child(2n) { border-right: 0; }
.refs__cell:nth-last-child(-n+2) { border-bottom: 0; }
.refs__cell:hover { background: rgba(94, 233, 212, 0.04); }
.refs__cell .muted {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote {
  padding: 36px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(94, 233, 212, 0.05), rgba(124, 155, 255, 0.03));
  border: 1px solid var(--line);
  position: sticky; top: 120px;
}
.quote__mark {
  width: 36px; height: auto;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.7;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 22px;
}
.quote figcaption {
  display: flex; flex-direction: column;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.quote figcaption .muted { font-size: 11px; margin-top: 4px; }
@media (max-width: 920px) {
  .refs { grid-template-columns: 1fr; }
  .quote { position: static; }
}
@media (max-width: 540px) {
  .refs__grid { grid-template-columns: 1fr; }
  .refs__cell { border-right: 0; }
  .refs__cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .refs__cell:last-child { border-bottom: 0; }
}

/* ────────────────────────────────────────────────────────────────
   CONTACT
   ──────────────────────────────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact__form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--text);
  transition: border-color .3s, background .3s;
  width: 100%;
  resize: vertical;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: rgba(94, 233, 212, 0.04);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%238a93ad' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}
.field select option { background: var(--bg-soft); color: var(--text); }

.contact__info { display: grid; gap: 4px; }
.info-block {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-block:last-child { border-bottom: 0; }
.info-block__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.info-block__val {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  word-break: break-word;
}
a.info-block__val { transition: color .3s; }
a.info-block__val:hover { color: var(--accent); }
.info-block__sub {
  font-size: 13px;
  color: var(--text-mute);
}
.info-block--accent .info-block__lbl { color: var(--accent); }
.info-block--accent .info-block__val::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  margin-bottom: 2px;
  box-shadow: 0 0 0 4px rgba(94, 233, 212, 0.18);
  animation: pulse 2s var(--ease-io) infinite;
}

@media (max-width: 920px) {
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: clamp(48px, 8vw, 96px) var(--pad-x) 32px;
}
.footer__top {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer__nav h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__nav div { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__nav a { color: var(--text); transition: color .3s; }
.footer__nav a:hover { color: var(--accent); }
.footer__nav span { color: var(--text-mute); font-size: 13px; }
.footer__bottom {
  max-width: var(--max);
  margin-inline: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  color: var(--text-faint);
}
@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer__nav { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ──────────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__title .line span {
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
  transition-delay: calc(var(--idx, 0) * 120ms + 100ms);
  will-change: transform;
}
.hero__title .line.is-visible span,
[data-reveal].is-visible .line span { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title .line span { transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   ADDITIONS — multi-page architecture (services, contact, legal)
   ══════════════════════════════════════════════════════════════════ */

/* ─── NAV: services dropdown ─── */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; color: inherit;
  padding: 0;
  position: relative;
  transition: color .3s;
  color: var(--text-mute);
}
.nav__dropdown-trigger::after {
  content: ""; position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__dropdown-trigger:hover { color: var(--text); }
.nav__dropdown-trigger:hover::after,
.nav__dropdown-trigger.is-active::after { width: 100%; }
.nav__dropdown-trigger.is-active { color: var(--text); }
.nav__dropdown-trigger svg { transition: transform .3s; }
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px); left: -20px;
  width: 380px;
  padding: 12px;
  background: rgba(14, 17, 32, 0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  display: flex; flex-direction: column;
  gap: 4px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 14px;
  border-radius: var(--r-md);
  transition: background .3s;
  color: var(--text);
}
.nav__dropdown-menu a:hover { background: rgba(94, 233, 212, 0.06); }
.nav__dropdown-menu a.is-current { background: rgba(94, 233, 212, 0.08); }
.nav__dropdown-menu a > div { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nav__dropdown-menu a strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__dropdown-menu a span:not(.nav__dropdown-num) {
  font-size: 12px;
  color: var(--text-mute);
}
.nav__dropdown-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 2px;
}
@media (max-width: 820px) {
  .nav__dropdown-menu { display: none; }
}

.nav__cta.is-active { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* ─── HERO with photo ─── */
.hero--with-photo { position: relative; }
.hero--with-photo .hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero--with-photo .hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: contrast(1.06) saturate(0.85);
}
.hero--with-photo .hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(8,9,15,0.55), rgba(8,9,15,0.85) 70%),
    linear-gradient(180deg, rgba(8,9,15,0.4) 0%, rgba(8,9,15,0.2) 30%, rgba(8,9,15,0.5) 70%, var(--bg) 100%);
}
.hero--with-photo .hero__inner,
.hero--with-photo .hero__scroll { position: relative; z-index: 2; }

/* ─── PAGE-HERO (service / contact pages) ─── */
.page-hero {
  position: relative;
  padding: clamp(140px, 18vh, 200px) var(--pad-x) clamp(60px, 10vh, 100px);
  max-width: var(--max);
  margin-inline: auto;
  overflow: hidden;
}
.page-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.08) saturate(0.85);
}
.page-hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,15,0.3) 0%, rgba(8,9,15,0.5) 60%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8,9,15,0.55), transparent 70%);
}
.page-hero__inner {
  max-width: 880px;
  position: relative;
  z-index: 2;
}
.page-hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.page-hero__kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(94, 233, 212, 0.18);
  animation: pulse 2s var(--ease-io) infinite;
}
.page-hero__title {
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-bottom: 28px;
}
.page-hero__lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 56ch;
  margin-bottom: 36px;
}
.page-hero__lede strong { color: var(--text); font-weight: 500; }
.page-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.page-hero--compact { padding-bottom: 40px; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-mute); transition: color .3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* ─── SERVICE CARD with photo ─── */
.service__photo {
  position: absolute !important;
  inset: 0;
  z-index: 0 !important;
  overflow: hidden;
  pointer-events: none;
  border-radius: var(--r-lg);
}
.service__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  filter: saturate(0.85);
}
.service__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,15,0.4) 0%, rgba(8,9,15,0.92) 100%);
}
.service:hover .service__photo img { opacity: 0.45; transform: scale(1.04); }
.service > *:not(.service__photo) { position: relative; z-index: 2; }

/* Hide existing icon block on service cards now that photos are used */
.service .service__icon { display: none; }

/* ─── WHY GRID (3 cards) ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.why-grid__item {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  border-radius: var(--r-lg);
  transition: border-color .4s, transform .4s var(--ease);
}
.why-grid__item:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.why-grid__num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 22px;
  padding: 4px 10px;
  border: 1px solid rgba(94, 233, 212, 0.3);
  border-radius: 999px;
}
.why-grid__item h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.why-grid__item p {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.55;
}
@media (max-width: 920px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── SUB-SERVICES (offer detail grid) ─── */
.sub-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.sub-service {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-lg);
  transition: border-color .4s, background .4s, transform .4s var(--ease);
}
.sub-service:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-3px);
}
.sub-service__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(94, 233, 212, 0.08);
  border: 1px solid rgba(94, 233, 212, 0.16);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.sub-service__icon svg { width: 26px; height: 26px; }
.sub-service h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.sub-service p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
}
@media (max-width: 920px) { .sub-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sub-services { grid-template-columns: 1fr; } }

/* ─── CALLOUT (citable passage) ─── */
.callout {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px clamp(28px, 5vw, 64px);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(94, 233, 212, 0.06), rgba(124, 155, 255, 0.04));
  border: 1px solid var(--line);
  position: relative;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0; left: clamp(28px, 5vw, 64px);
  width: 40px; height: 1px;
  background: var(--accent);
}
.callout p {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text);
  font-weight: 400;
}
.callout em {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ─── SECTORS (use-case cards) ─── */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sector {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  border-radius: var(--r-md);
  transition: border-color .4s, background .4s, transform .4s var(--ease);
}
.sector:hover {
  border-color: var(--accent);
  background: rgba(94, 233, 212, 0.04);
  transform: translateY(-2px);
}
.sector h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.sector h3::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.sector p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
}
@media (max-width: 920px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sectors { grid-template-columns: 1fr; } }

/* ─── GALLERY (photo grid) ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s;
  filter: saturate(0.95) brightness(0.95);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,9,15,0.78) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery__item:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.gallery__item figcaption {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  display: flex; flex-direction: column;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  z-index: 2;
}
.gallery__item figcaption .muted { font-size: 11px; }
.gallery__item--lg { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
@media (max-width: 920px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--lg { grid-row: span 2; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--lg, .gallery__item--wide { grid-row: auto; grid-column: auto; }
}

/* ─── FAQ (accordion) ─── */
.faq {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.faq__item:hover { background: rgba(255, 255, 255, 0.012); }
.faq__item[open] { background: rgba(94, 233, 212, 0.025); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg {
  width: 20px; height: 20px;
  color: var(--text-mute);
  transition: transform .3s var(--ease), color .3s;
  flex-shrink: 0;
}
.faq__item[open] summary svg { transform: rotate(180deg); color: var(--accent); }
.faq__item summary:hover { color: var(--accent); }
.faq__body {
  padding: 0 4px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mute);
  max-width: 70ch;
}
.faq__body strong { color: var(--text); font-weight: 500; }

/* ─── RELATED (cross-link cards) ─── */
.related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.related__card {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color .4s, background .4s, transform .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.related__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px at var(--mx, 50%) var(--my, 50%), rgba(94, 233, 212, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.related__card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-3px);
}
.related__card:hover::after { opacity: 1; }
.related__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.related__card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.related__card p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.5;
  margin-bottom: 6px;
}
.related__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: auto;
}
@media (max-width: 920px) { .related { grid-template-columns: 1fr; } }

/* ─── CTA-BLOCK ─── */
.cta-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(94, 233, 212, 0.05), rgba(124, 155, 255, 0.03));
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(94, 233, 212, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-block .kicker { color: var(--accent); margin-bottom: 18px; }
.cta-block__title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 20px;
}
.cta-block__title span { display: block; }
.cta-block p {
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.55;
  max-width: 48ch;
}
.cta-block__actions {
  display: flex; flex-direction: column; gap: 12px;
  align-self: center;
  z-index: 1;
}
@media (max-width: 920px) {
  .cta-block { grid-template-columns: 1fr; }
  .cta-block__actions { flex-direction: row; flex-wrap: wrap; }
}

/* ─── CONTACT page additions ─── */
.contact__rgpd {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-faint);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.contact__rgpd a { color: var(--accent); border-bottom: 1px dashed currentColor; }

.zones {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.zones__main { position: sticky; top: 120px; }
.zones__main h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.zones__main p {
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.6;
}
.zones__cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.zones__cities li {
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .3s;
}
.zones__cities li:nth-child(2n) { border-right: 0; }
.zones__cities li:nth-last-child(-n+2) { border-bottom: 0; }
.zones__cities li:hover { background: rgba(94, 233, 212, 0.04); }
.zones__cities .muted {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
@media (max-width: 920px) {
  .zones { grid-template-columns: 1fr; }
  .zones__main { position: static; }
}
@media (max-width: 540px) {
  .zones__cities { grid-template-columns: 1fr; }
  .zones__cities li { border-right: 0; }
  .zones__cities li:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .zones__cities li:last-child { border-bottom: 0; }
}

/* ─── LEGAL page ─── */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(120px, 14vh, 180px) var(--pad-x) clamp(80px, 10vw, 140px);
}
.legal__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-bottom: 8px;
}
.legal__updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 56px;
}
.legal__article h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 48px;
  margin-bottom: 14px;
  color: var(--text);
}
.legal__article h2:first-child { margin-top: 0; }
.legal__article p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.legal__article p strong { color: var(--text); font-weight: 500; }
.legal__article a {
  color: var(--accent);
  border-bottom: 1px dashed currentColor;
  transition: color .3s;
}
.legal__article a:hover { color: var(--text); }

/* ─── PAGE-specific tweaks ─── */
.page--service .nav,
.page--contact .nav,
.page--legal .nav {
  background: rgba(8, 9, 15, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

/* ─── BANNER (full-bleed photo with text overlay) ─── */
.banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 14vh, 160px) var(--pad-x);
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.banner__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
}
.banner__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,15,0.92) 0%, rgba(8,9,15,0.65) 50%, rgba(8,9,15,0.4) 100%),
    linear-gradient(180deg, rgba(8,9,15,0.3) 0%, transparent 30%, transparent 70%, rgba(8,9,15,0.5) 100%);
}
.banner__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin-inline: auto;
}
.banner__content .kicker { color: var(--accent); margin-bottom: 28px; }
.banner__text {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text);
  max-width: 24ch;
}
.banner__text em {
  color: var(--accent);
}

/* ─── METHOD with photos ─── */
.method--with-photos li {
  padding: 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.method--with-photos .method__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.method--with-photos .method__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  filter: saturate(0.95) brightness(0.92);
}
.method--with-photos li:hover .method__media img { transform: scale(1.04); }
.method--with-photos .method__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,9,15,0.3) 100%);
  pointer-events: none;
}
.method--with-photos .method__num {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  background: rgba(8,9,15,0.85);
  backdrop-filter: blur(8px);
  margin-bottom: 0;
}
.method--with-photos h3,
.method--with-photos p,
.method--with-photos .method__tag {
  padding-inline: 28px;
}
.method--with-photos h3 { padding-top: 24px; }
.method--with-photos p { color: var(--text-mute); }
.method--with-photos .method__tag {
  margin-top: 16px;
  padding-bottom: 28px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin-inline: 28px;
}
.method--with-photos::before { display: none; }

/* ─── BG-LAYER tweak: orbs less aggressive on mobile ─── */
@media (max-width: 720px) {
  .bg-orb { opacity: 0.18 !important; filter: blur(60px); }
  .bg-grid { background-size: 48px 48px; }
  .bg-noise { opacity: 0.03; }
}

