/* =========================================================
   МЦДС · B2B Minimal Corporate
   Inspired by Maersk / DHL / Siemens / Allianz
   Light theme, structural, infographic-first
   ========================================================= */

:root {
  /* Palette */
  --ink: #0B1220;
  --ink-2: #1F2A3B;
  --muted: #5A6478;
  --muted-2: #8A93A4;
  --line: #E4E7ED;
  --line-2: #F0F2F5;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --bg-tint: #EEF2F8;

  /* Brand accent — single, restrained */
  --brand: #0B3D91;       /* deep corporate blue */
  --brand-2: #1E5BC6;     /* hover */
  --signal: #C8102E;      /* used sparingly, only for callouts */
  --gold: #B8975A;        /* almost never */

  /* Type */
  --font-sans: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Spacing */
  --container: 1280px;
  --gutter: 24px;
  --radius: 4px;

  /* Shadow — subtle */
  --shadow-1: 0 1px 2px rgba(11, 18, 32, 0.04);
  --shadow-2: 0 4px 16px rgba(11, 18, 32, 0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   HEADER · top utility bar + main nav (Maersk style)
   ========================================================= */

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.topbar__left { display: flex; gap: 24px; }
.topbar__left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__left .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.topbar__right { display: flex; gap: 18px; }
.topbar__right button {
  background: none; border: 0; color: inherit;
  font: inherit; cursor: pointer;
  padding: 4px 6px; border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.topbar__right button:hover { color: #fff; }
.topbar__right button.is-active { color: #fff; background: rgba(255,255,255,0.08); }

.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s;
}
.header.is-scrolled { box-shadow: var(--shadow-1); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  border-radius: 2px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__abbr {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo__sub { font-size: 11px; color: var(--muted); letter-spacing: 0.01em; }

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--brand); background: var(--bg-soft); }

.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  transition: background 0.2s;
}
.cta:hover { background: var(--brand-2); }
.cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.cta--ghost:hover { background: var(--bg-soft); border-color: var(--ink); }
.cta--light {
  background: #fff;
  color: var(--ink);
}
.cta--light:hover { background: var(--line-2); }

.burger { display: none; }

/* =========================================================
   HERO · large photo, structural overlay
   ========================================================= */

.hero {
  position: relative;
  min-height: 640px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(11,18,32,0.85) 0%, rgba(11,18,32,0.55) 50%, rgba(11,18,32,0.25) 100%);
}
.hero__container {
  position: relative; z-index: 1;
  padding: 96px 0 72px;
}
.hero__breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__breadcrumb::before {
  content: ""; width: 28px; height: 1px; background: rgba(255,255,255,0.4);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 920px;
  color: #fff;
}
.hero__title em {
  font-style: normal;
  color: #fff;
  border-bottom: 3px solid var(--signal);
  padding-bottom: 2px;
}
.hero__lead {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0 0 28px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  max-width: 720px;
}
.hero__trust li {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 7px 12px 7px 26px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}
.hero__trust li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal, #C8102E);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.18);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 80px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 32px;
}
.hero__stat { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.12); }
.hero__stat:last-child { border-right: 0; }
.hero__stat:not(:first-child) { padding-left: 24px; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.hero__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

/* =========================================================
   TICKER · subtle marquee under hero
   ========================================================= */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 48s linear infinite;
  padding-left: 48px;
}
.ticker__item { display: inline-flex; align-items: center; gap: 8px; }
.ticker__item .dot { width: 4px; height: 4px; background: var(--signal); border-radius: 50%; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS · base
   ========================================================= */

.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #fff; }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.section--dark .section__head { border-bottom-color: rgba(255,255,255,0.12); }
.section__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.section--dark .section__label { color: rgba(255,255,255,0.65); }
.section__label::before {
  content: ""; width: 24px; height: 1px; background: var(--brand);
}
.section--dark .section__label::before { background: rgba(255,255,255,0.5); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  color: var(--ink);
}
.section--dark .section__title { color: #fff; }
.section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.section--dark .section__lead { color: rgba(255,255,255,0.78); }

/* =========================================================
   ABOUT · 4-pillar grid
   ========================================================= */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.2s;
}
.pillar:hover { background: var(--bg-soft); }
.pillar__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 16px 0 10px;
}
.pillar__text { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: start;
}
.about-grid p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin: 0 0 16px; }
.about-grid p:first-child { font-size: 19px; color: var(--ink); }

/* =========================================================
   SERVICES · split layout, image + text
   ========================================================= */

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service {
  display: grid;
  grid-template-columns: 100px 1fr 1.6fr 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.2s;
}
.service:hover { background: var(--bg-soft); }
.service__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.service__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.service__text { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.service__tags { display: flex; flex-direction: column; gap: 6px; }
.service__tags span {
  font-size: 13px;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
}
.service__tags span::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px; background: var(--brand);
}

/* =========================================================
   IMAGE STRIP · documentary photography section
   ========================================================= */

.imgstrip {
  position: relative;
  height: 480px;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.imgstrip img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6);
}
.imgstrip__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(11,18,32,0.85) 0%, rgba(11,18,32,0.4) 60%, transparent 100%);
}
.imgstrip__content { max-width: 600px; color: #fff; }
.imgstrip__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.imgstrip__label::before { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,0.5); }
.imgstrip__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.imgstrip__lead { font-size: 17px; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.55; }

/* =========================================================
   GEO · network map, schematic Maersk-style
   ========================================================= */

.geo {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.geo__intro h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
}
.geo__intro p { font-size: 15px; color: var(--muted); margin: 0 0 16px; line-height: 1.6; }
.geo__legend { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.geo__legend-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-2); }
.geo__legend-item .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.geo__legend-item .dot--blue { background: var(--brand); }
.geo__legend-item .dot--red { background: var(--signal); }
.geo__legend-item .line { width: 24px; height: 1px; background: var(--brand); }

.geo__map {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.geo__map svg { width: 100%; height: auto; display: block; }

/* Map flow animation */
.route { fill: none; stroke: var(--brand); stroke-width: 1.2; stroke-dasharray: 4 4; opacity: 0.5; }
.route-flow {
  fill: none; stroke: var(--brand); stroke-width: 2;
  stroke-dasharray: 8 200; stroke-dashoffset: 0;
  animation: flow 8s linear infinite;
}
@keyframes flow {
  to { stroke-dashoffset: -208; }
}

/* =========================================================
   PROJECTS · table-style listing
   ========================================================= */

.projects {
  border-top: 1px solid var(--line);
}
.project-row {
  display: grid;
  grid-template-columns: 80px 200px 1fr 200px 120px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.2s, padding-left 0.2s;
  cursor: default;
}
.project-row:hover { background: var(--bg-soft); padding-left: 16px; padding-right: 16px; }
.project-row__year {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.project-row__type {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.project-row__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--ink);
}
.project-row__desc { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.project-row__city { font-size: 14px; color: var(--ink-2); }
.project-row__arrow {
  text-align: right;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}
.project-row:hover .project-row__arrow { color: var(--brand); transform: translateX(4px); }

/* =========================================================
   SCIENCE · dark section, technical
   ========================================================= */

.research {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.research__item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.research__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.research__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 16px 0 10px;
  color: #fff;
}
.research__text { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.6; margin: 0; }

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-grid--info {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.contact-info { font-size: 15px; }
.contact-info__row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
}
.contact-info__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}
.contact-info__value { color: var(--ink); }
.contact-info__value strong { font-weight: 600; }

.form { display: grid; gap: 18px; }
.form__field {
  display: flex; flex-direction: column;
  gap: 6px;
}
.form__field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__field input,
.form__field textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.08);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form button {
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  justify-self: start;
  transition: background 0.2s;
}
.form button:hover { background: var(--brand-2); }
.form__msg {
  display: none;
  padding: 14px 16px;
  background: #ECFDF5;
  border-left: 3px solid #10B981;
  font-size: 14px;
  color: #065F46;
}
.form.is-sent .form__msg { display: block; }

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand p { margin: 16px 0 0; max-width: 320px; line-height: 1.55; }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.footer__bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  transition: color 0.15s;
}
.footer__bottom a:hover { color: #fff; }
.footer__legal {
  padding-top: 14px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* =========================================================
   Reveal on scroll
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .service { grid-template-columns: 60px 1fr 1.4fr; }
  .service__tags { grid-column: 2 / -1; flex-direction: row; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
  .service__tags span::before { display: none; }
  .service__tags span { padding-left: 0; padding-right: 16px; border-right: 1px solid var(--line); padding: 0 14px 0 0; }
  .geo { grid-template-columns: 1fr; }
  .project-row { grid-template-columns: 60px 1fr 80px; gap: 16px; }
  .project-row__type, .project-row__city { display: none; }
  .research { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  :root { --gutter: 16px; }
  .header__inner { height: 60px; }
  .nav, .header__cta { display: none; }
  .burger {
    display: flex; flex-direction: column; gap: 4px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .burger span { width: 22px; height: 1.5px; background: var(--ink); }
  .topbar__left { gap: 12px; font-size: 11px; }
  .topbar__left span:nth-child(2) { display: none; }
  .hero { min-height: auto; }
  .hero__container { padding: 56px 0 48px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding-top: 20px; }
  .hero__stat { padding: 0 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
  .hero__stat:not(:first-child) { padding-left: 12px; }
  .hero__stat-num { font-size: 28px; }
  .section { padding: 64px 0; }
  .pillars { grid-template-columns: 1fr; }
  .service { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .imgstrip { height: 360px; }
  .imgstrip__overlay { padding: 0 16px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* ==========================================================
   SERVICES PAGE
   ========================================================== */

.nav a.is-active { color: var(--ink); }
.nav a.is-active::after {
  content: ""; display: block; height: 2px; background: var(--brand);
  margin-top: 4px;
}

.page-hero {
  padding: 56px 0 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs span:nth-child(2) { color: var(--line); }

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 32px;
}
.page-hero__eyebrow {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display, "Inter Tight", Inter, sans-serif);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.page-hero__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 460px;
  margin: 0;
}
.page-hero__chips {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.page-hero__chips a {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  background: var(--bg);
  transition: border-color .2s, color .2s, background .2s;
}
.page-hero__chips a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.srv-block { padding: 96px 0; }
.srv-block--alt { background: var(--bg-soft); }
.srv-block__head {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.srv-block__num {
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brand);
}
.srv-block__title {
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 16px;
}
.srv-block__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.srv-card {
  background: var(--bg);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 28px;
  position: relative;
}
.srv-block--alt .srv-card { background: var(--bg-soft); }
.srv-card__num {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 12px;
}
.srv-card__title {
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.srv-card__list {
  list-style: none; padding: 0; margin: 0;
}
.srv-card__list li {
  position: relative;
  padding: 10px 0 10px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.srv-card__list li:last-child { border-bottom: 0; }
.srv-card__list li::before {
  content: "—";
  position: absolute; left: 0; top: 10px;
  color: var(--brand);
  font-weight: 600;
}

.srv-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.srv-meta > div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.srv-meta > div:last-child { border-right: 0; }
.srv-meta > div:first-child { padding-left: 0; }
.srv-meta__l {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.srv-meta__v {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

/* PROCESS */
.process {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process__step {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  transition: background .25s;
}
.process__step:hover { background: var(--bg-soft); }
.process__num {
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.process__title {
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
}
.process__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  position: relative;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--brand);
  transition: transform .25s;
  font-weight: 400;
  line-height: 1;
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item p {
  padding: 0 48px 24px 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* SRV CTA */
.srv-cta {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
}
.srv-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.srv-cta .section__label { color: rgba(255,255,255,0.6); }
.srv-cta__title {
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 12px 0 0;
}
.srv-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* RESPONSIVE — services page */
@media (max-width: 960px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero__lead { max-width: 100%; }
  .srv-block { padding: 64px 0; }
  .srv-block__head { grid-template-columns: 56px 1fr; gap: 20px; margin-bottom: 36px; }
  .srv-block__num { font-size: 44px; }
  .srv-grid { grid-template-columns: 1fr; }
  .srv-meta { grid-template-columns: 1fr; }
  .srv-meta > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .srv-meta > div:last-child { border-bottom: 0; }
  .process { grid-template-columns: 1fr; }
  .srv-cta__inner { grid-template-columns: 1fr; }
  .srv-cta__actions { justify-content: flex-start; }
}
@media (min-width: 961px) and (max-width: 1100px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
}
