:root {
  --ink: #17120f;
  --navy: #15100d;
  --blue: #a86420;
  --aqua: #f0dcc0;
  --paper: #f5efe4;
  --cream: #fbf7ef;
  --muted: #5f554d;
  --line: #ded3c4;
  --green: #2f6f64;
  --gold: #b8792a;
  --white: #fff;
  --max: 1180px;
  --radius: 12px;
  --shadow: 0 24px 80px rgba(16, 24, 40, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 239, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 231, 236, .8);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.03em;
  font-size: 17px;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--navy), #2b1d13);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: inset 0 -8px 18px rgba(184, 121, 42, .28), 0 10px 22px rgba(23,18,15,.12);
}

.links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 650;
}

.links a {
  text-decoration: none;
  color: #4e463f;
  transition: color .15s;
}

.links a:hover { color: var(--ink); }

.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.lang a,
.lang span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 999px;
  text-decoration: none;
  color: #6a5d53;
}

.lang .active {
  background: var(--navy);
  color: #fff;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: .2s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(168, 100, 32, .24);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(168, 100, 32, .32);
}

.btn.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.btn.secondary:hover { border-color: #c0c5ce; }

/* ── HERO ─────────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: 56px;
  align-items: center;
}

.hero-main { min-width: 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, #f0dcc0 0, #efe5d8 42%, transparent 70%);
  opacity: .7;
  z-index: -1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 650;
  color: #4e463f;
  margin-bottom: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 111, 100, .18);
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 24px;
  max-width: 680px;
}

.hero-copy {
  font-size: 18px;
  line-height: 1.6;
  color: #4e463f;
  max-width: 600px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.proof div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 92px;
  padding: 16px 16px 15px 18px;
  border: 1px solid rgba(222,211,196,.9);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 28px rgba(16,24,40,.06);
}

.proof div::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.proof strong {
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 850;
  color: var(--blue);
}

.proof span {
  font-size: 14px;
  line-height: 1.42;
  font-weight: 650;
  color: var(--ink);
}

.brief-card {
  position: relative;
  border: 1px solid rgba(168, 100, 32, .18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
  box-shadow: var(--shadow);
  padding: 30px;
  overflow: hidden;
}

.brief-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 8%, rgba(184,121,42,.18), transparent 38%);
  pointer-events: none;
}

.brief-card > * { position: relative; }

.brief-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(168,100,32,.22);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brief-card h2 {
  margin: 0 0 20px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.brief-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.brief-row span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.brief-row strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.brief-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.brief-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

/* ── SECTIONS ─────────────────────────────────────── */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--white);
}

.section-head {
  margin-bottom: 48px;
}

.section-head > div { margin-bottom: 16px; }

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 750;
  color: var(--blue);
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 0;
  max-width: 720px;
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}

/* ── SERVICES GRID ────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  transition: box-shadow .2s, border-color .2s;
}

.card:hover {
  border-color: #c0c5ce;
  box-shadow: 0 8px 28px rgba(16, 24, 40, .08);
}

.card.dark {
  background: linear-gradient(135deg, var(--navy), #2b1d13);
  color: #fff;
  border-color: transparent;
}

.card.dark p { color: rgba(255, 255, 255, .75); }
.card.dark li { color: rgba(255, 255, 255, .65); }

.card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -.015em;
}

.card p {
  font-size: 15px;
  line-height: 1.55;
  color: #4e463f;
  margin: 0 0 14px;
}

.card ul {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  color: #5f554d;
  line-height: 1.7;
}

.card li { margin-bottom: 2px; }

/* ── OUTPUTS ──────────────────────────────────────── */
.outputs-section {
  padding: 54px 0;
  background: var(--navy) !important;
  color: #fff;
}

.outputs-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: center;
}

.outputs-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.outputs-panel p {
  margin: 0;
  color: rgba(255,255,255,.72);
  max-width: 560px;
}

.outputs-section .eyebrow { color: #f4d19a; }

.outputs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.outputs-grid span {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  padding: 10px 14px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 750;
}



/* ── PROJECT FOOTPRINT VISUAL ─────────────────────── */
.footprint-section { background: var(--cream); }

.footprint-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.footprint-visual {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(47,111,100,.16), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(168,100,32,.13), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(47,111,100,.12), transparent 30%),
    linear-gradient(135deg, #fffaf4, #f8efe3);
  box-shadow: 0 18px 55px rgba(16,24,40,.08);
  overflow: hidden;
}

.footprint-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(222,211,196,.72);
  border-radius: 22px;
  pointer-events: none;
}

.footprint-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.footprint-visual .flow { fill: none; stroke: url(#flowLine); stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 10 12; }
.footprint-visual .flow-two { stroke-opacity: .78; }
.footprint-visual .flow-three { stroke: rgba(47,111,100,.22); stroke-dasharray: 2 10; }
.footprint-visual .hub { fill: rgba(47,111,100,.10); stroke: rgba(47,111,100,.35); stroke-width: 1.5; }
.footprint-visual .node { fill: var(--blue); stroke: #fff; stroke-width: 4; filter: drop-shadow(0 10px 16px rgba(168,100,32,.22)); }

.orbit-card {
  position: absolute;
  z-index: 2;
  width: min(220px, 28vw);
  border: 1px solid rgba(222,211,196,.9);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 38px rgba(16,24,40,.10);
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}

.orbit-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.orbit-card strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.35; }
.orbit-card em { display: block; margin-top: 8px; color: var(--muted); font-style: normal; font-size: 13px; }
.orbit-card-main {
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 260px;
  text-align: center;
  border-color: rgba(47,111,100,.28);
  background: rgba(255,255,255,.96);
}
.orbit-card-main span { color: var(--copper); font-size: 44px; letter-spacing: -.04em; margin: 0 0 2px; text-transform: none; }
.orbit-card-a { left: 7%; top: 14%; }
.orbit-card-b { right: 7%; top: 14%; }
.orbit-card-c { left: 8%; bottom: 13%; }
.orbit-card-d { right: 8%; bottom: 13%; }

.operation-countries {
  border: 1px solid rgba(222,211,196,.9);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  padding: 16px 18px;
  box-shadow: 0 10px 28px rgba(16,24,40,.05);
}

.operation-countries strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.country-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.country-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(47,111,100,.16);
  border-radius: 999px;
  background: #fffaf4;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  padding: 8px 11px;
}

/* ── PROOF STRIP / SOCIAL PROOF ───────────────────── */
.proof-strip {
  padding: 34px 0;
  background: #fff !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}

.proof-strip strong {
  display: block;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

.proof-strip p {
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.logo-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: #4e463f;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
  filter: grayscale(1);
}

/* ── PROJECT REFERENCES / NOTES ───────────────────── */
.project-grid,
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card,
.note-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

section:nth-child(even) .project-card,
section:nth-child(even) .note-card {
  background: var(--cream);
}

.project-card span,
.note-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.project-card h3,
.note-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -.018em;
}

.project-card p,
.note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

/* ── OPERATOR / TEAM PANEL ────────────────────────── */
.operator-panel {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 24px;
  padding: 32px;
  border: 1px solid rgba(168,100,32,.22);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, #f7ead7);
  box-shadow: 0 18px 50px rgba(16,24,40,.08);
}

.operator-mark {
  width: 150px;
  height: 150px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #2b1d13);
  color: #f4d19a;
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -.05em;
  box-shadow: inset 0 -18px 40px rgba(184,121,42,.24);
}

.operator-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.operator-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ── USE CASES ────────────────────────────────────── */
.usecase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

section:nth-child(even) .quote,
section:nth-child(even) .card {
  background: var(--cream);
}

section:nth-child(even) .card.dark {
  background: linear-gradient(135deg, var(--navy), #2b1d13);
  color: #fff;
}

section:nth-child(even) .card.dark p { color: rgba(255, 255, 255, .82); }
section:nth-child(even) .card.dark li { color: rgba(255, 255, 255, .74); }

.quote strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.quote p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ── ABOUT / TIMELINE ─────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.timeline-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.timeline-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}


/* ── TRUST / AUTHORITY ────────────────────────────── */
.trust-section {
  background: var(--navy) !important;
  color: #fff;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 44px;
  align-items: start;
}

.trust-copy h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 18px;
  max-width: 520px;
}

.trust-copy p {
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

.trust-section .eyebrow { color: #f4d19a; }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.trust-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .12);
}

.trust-grid article span {
  grid-row: span 2;
  color: #f4d19a;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.trust-grid article strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.trust-grid article p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ── METHOD / STEPS ───────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step .num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2b1d13);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

.step h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}

.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 740px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

section:nth-child(even) .faq details {
  background: var(--cream);
}

.faq summary {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 24px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #5f554d;
  margin: 0;
}

/* ── CONTACT ──────────────────────────────────────── */
.panel-wrap {
  max-width: 560px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.form { display: flex; flex-direction: column; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-size: 13px;
  font-weight: 700;
  color: #4e463f;
}

.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(168, 100, 32, .12);
}

.field textarea { resize: vertical; }

.hp { position: absolute; left: -9999px; opacity: 0; }

.status {
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
}

.status.ok { color: var(--green); }
.status.err { color: #b42318; }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.footer strong {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0 0;
}

.footer .legal {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  margin-top: 12px;
}

/* ── MOBILE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-inner { height: 60px; }

  .links { gap: 12px; }

  .links > a:not(.btn),
  .links .btn { display: none; }

  .lang { display: flex; }

  .hero { padding: 56px 0 48px; }

  .hero-grid { grid-template-columns: 1fr; gap: 30px; }

  .brief-card { padding: 24px; border-radius: 18px; }

  .hero h1 { font-size: 32px; }

  .hero-copy { font-size: 16px; }

  section { padding: 56px 0; }

  .grid { grid-template-columns: 1fr; }

  .usecase { grid-template-columns: 1fr; }

  .proof-strip-inner,
  .footprint-panel,
  .project-grid,
  .notes-grid,
  .operator-panel { grid-template-columns: 1fr; }

  .logo-strip { justify-content: flex-start; }

  .operator-mark { width: 112px; height: 112px; border-radius: 22px; font-size: 36px; }

  .operator-panel { padding: 24px; }

  .outputs-panel { grid-template-columns: 1fr; gap: 22px; }

  .timeline { grid-template-columns: 1fr; }

  .trust-panel { grid-template-columns: 1fr; gap: 28px; }

  .trust-grid article { grid-template-columns: 42px 1fr; padding: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .proof { grid-template-columns: 1fr; gap: 12px; }


  .operation-countries { padding: 14px 15px; border-radius: 16px; }
  .country-chip-list { gap: 7px; }
  .country-chip-list span { min-height: 28px; font-size: 12px; padding: 7px 9px; }

  .footprint-visual {
    min-height: 0;
    padding: 18px;
    display: grid;
    gap: 12px;
    overflow: visible;
  }

  .footprint-visual::before,
  .footprint-visual svg { display: none; }

  .orbit-card,
  .orbit-card-main,
  .orbit-card-a,
  .orbit-card-b,
  .orbit-card-c,
  .orbit-card-d {
    position: static;
    transform: none;
    width: auto;
    text-align: left;
  }

  .orbit-card {
    padding: 14px 15px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(16,24,40,.07);
  }

  .orbit-card-main {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
  }

  .orbit-card-main span {
    grid-row: span 2;
    font-size: 38px;
    margin: 0;
  }

  .orbit-card-main em { margin-top: 2px; }

  .step { flex-direction: column; gap: 12px; }
}

/* ── SCROLLBAR ────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: #c0c5ce; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #98a2b3; }
