/* ═══════════════════════════════════════════════════════════════════
   ORELANDS — secure-ai.css
   Shared stylesheet for the standalone capability pages
   (secure-ai-analytics.html, capability-statement.html).
   Design tokens are lifted verbatim from the homepage inline CSS so the
   new pages read as part of the original site. New components (in-page
   TOC, comparison + control tables, architecture diagram, stepper,
   assurance table, print rules) are added below the base layer.
   ═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS (identical to index.html) ─────────────────────────────── */
:root {
  --black: #080A0E;
  --navy: #0A0F1E;
  --dark: #0D1420;
  --panel: #111827;
  --border: #1E2D45;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #F0F4F8;
  --gray: #8A9BB0;
  --accent: #1A3A5C;
  --measure: 68ch;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── ACCESSIBILITY ────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

a:focus-visible,
button:focus-visible,
select:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ── NAV (matches homepage) ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(8,10,14,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-emblem {
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-emblem-inner { width: 14px; height: 14px; background: var(--gold); }
.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); line-height: 1.2;
}
.nav-brand span {
  display: block; font-size: 10px; font-weight: 400;
  letter-spacing: 0.25em; color: var(--gold);
}
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 10px 24px; text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── BUTTONS (matches homepage) ───────────────────────────────────── */
.btn-primary, .btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 36px; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-primary { color: var(--black); background: var(--gold); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { color: var(--white); border: 1px solid var(--border); font-weight: 600; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION PRIMITIVES ───────────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 20px;
}
.section-sub {
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: var(--gray); max-width: var(--measure);
}
.prose p { max-width: var(--measure); color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.prose p strong { color: var(--white); font-weight: 500; }

/* ── PAGE HERO (interior) ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 150px 60px 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(26,58,92,0.30) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 10%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #080A0E 0%, #0A0F1E 55%, #080C14 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,45,69,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,45,69,0.22) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 15%, transparent 80%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 920px; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.96; letter-spacing: 0.02em;
  color: var(--white); margin: 22px 0 26px;
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: var(--gray); max-width: 62ch; margin-bottom: 40px;
}
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray);
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ── LAYOUT WITH STICKY TOC ───────────────────────────────────────── */
.doc-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px;
}
.toc-mobile { display: none; }
.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  height: max-content;
}
.toc h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.toc ol { list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--gray); text-decoration: none;
  padding: 8px 0 8px 28px; position: relative;
  border-left: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute; left: 8px; top: 8px;
  font-size: 10px; color: var(--border);
}
.toc a:hover, .toc a.active { color: var(--gold); border-left-color: var(--gold); }
.toc a.active::before { color: var(--gold); }

.doc-main { min-width: 0; }
.doc-section { padding: 40px 0; border-top: 1px solid var(--border); }
.doc-section:first-child { border-top: none; padding-top: 0; }

/* ── COMPARISON TABLE (permitted / not permitted) ─────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
  border: 1px solid var(--border);
  background: var(--border);
}
.compare-col { background: var(--panel); padding: 8px; }
.compare-col h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px; display: flex; align-items: center; gap: 10px;
}
.compare-col.no h3 { color: #E4907A; }
.compare-col.yes h3 { color: var(--gold-light); }
.compare-col ul { list-style: none; }
.compare-col li {
  font-size: 14px; line-height: 1.6; color: var(--gray);
  padding: 14px 16px; border-top: 1px solid var(--border);
  display: flex; gap: 12px;
}
.compare-col li::before { flex-shrink: 0; font-weight: 700; }
.compare-col.no li::before { content: '\2715'; color: #E4907A; }
.compare-col.yes li::before { content: '\2713'; color: var(--gold); }
.compare-note {
  margin-top: 28px; padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--dark);
  font-size: 17px; line-height: 1.7; color: var(--white); font-weight: 300;
  max-width: var(--measure);
}

/* ── ARCHITECTURE DIAGRAM ─────────────────────────────────────────── */
.arch { margin: 36px 0; }
.arch svg { width: 100%; height: auto; display: block; }
.arch-caption {
  font-size: 13px; color: var(--gray); margin-top: 14px;
  text-align: center; letter-spacing: 0.02em;
}
/* SVG band styling driven by CSS so it stays theme-consistent */
.arch .band { fill: var(--panel); stroke: var(--border); }
.arch .band-label { fill: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.08em; }
.arch .band-desc { fill: var(--gray); font-family: 'Barlow', sans-serif; font-weight: 300; }
.arch .band-num { fill: var(--gold); font-family: 'Bebas Neue', sans-serif; }
.arch .boundary { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 8 6; }
.arch .boundary-label { fill: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.2em; }
.arch .egress { stroke: #E4907A; stroke-width: 2; }
.arch .egress-x { stroke: #E4907A; stroke-width: 3; }
.arch .egress-label { fill: #E4907A; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.12em; }

/* ── CONTROL-MAPPING TABLE ────────────────────────────────────────── */
.control-table { width: 100%; border-collapse: collapse; margin-top: 28px; font-size: 14px; }
.control-table caption { text-align: left; color: var(--gray); font-size: 13px; margin-bottom: 12px; }
.control-table th, .control-table td {
  text-align: left; vertical-align: top;
  padding: 16px 18px; border-bottom: 1px solid var(--border);
}
.control-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--gold-dim); background: var(--panel);
}
.control-table tbody th {
  font-weight: 600; color: var(--white); width: 20%;
  font-family: 'Barlow', sans-serif;
}
.control-table td { color: var(--gray); line-height: 1.6; }
.control-table td.ref {
  width: 26%; color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12.5px; letter-spacing: 0.03em;
}
.control-table tbody tr:hover { background: rgba(26,58,92,0.18); }

/* ── BASELINE CALLOUT ─────────────────────────────────────────────── */
.callout {
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: var(--dark);
  padding: 28px 32px;
  margin: 28px 0;
  max-width: var(--measure);
}
.callout p { color: var(--gray); font-size: 15.5px; line-height: 1.8; }
.callout p + p { margin-top: 16px; }
.callout strong { color: var(--white); font-weight: 500; }
.callout.caveat { border-left-color: var(--accent); }
.callout .callout-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 10px;
}

/* ── LIFECYCLE STEPPER ────────────────────────────────────────────── */
.stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 36px;
  position: relative;
}
.stepper::before {
  content: ''; position: absolute; top: 28px;
  left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.4;
}
.step { text-align: center; padding: 0 12px; }
.step-dot {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); position: relative; z-index: 2;
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gold);
}
.step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.step p { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ── TWO-COLUMN METHODS / APPLICATIONS ────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 28px; background: var(--border); border: 1px solid var(--border); }
.split-col { background: var(--panel); padding: 32px; }
.split-col h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.split-col ul { list-style: none; }
.split-col li {
  font-size: 14px; color: var(--gray); line-height: 1.6;
  padding: 10px 0 10px 20px; position: relative; border-top: 1px solid var(--border);
}
.split-col li:first-child { border-top: none; }
.split-col li::before { content: '\25B8'; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 12px; }
.outputs {
  margin-top: 2px; background: var(--dark); border: 1px solid var(--border);
  padding: 28px 32px;
}
.outputs h3 { color: var(--gold); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.12em; text-transform: uppercase; font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.outputs p { color: var(--gray); font-size: 15px; line-height: 1.75; max-width: var(--measure); }

/* ── ASSURANCE / STANDARDS ────────────────────────────────────────── */
.assurance-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 14.5px; }
.assurance-table th, .assurance-table td {
  text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--border); vertical-align: top;
}
.assurance-table thead th {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--gold-dim); background: var(--panel);
}
.assurance-table tbody th { color: var(--white); font-weight: 600; width: 34%; font-family: 'Barlow', sans-serif; }
.assurance-table td { color: var(--gray); }
.cc-not-held { color: var(--gray); font-style: italic; opacity: 0.8; }
.cc-held { color: var(--gold-light); font-style: normal; }

.standards-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; max-width: 760px; }
.std-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-dim); background: var(--gold-dim);
  padding: 7px 14px;
}
.standards-caption { font-size: 12.5px; color: var(--gray); margin-top: 14px; max-width: var(--measure); line-height: 1.6; }

/* ── SECURITY TILE GRID (also used on homepage) ───────────────────── */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 36px; }
.sec-tile {
  background: var(--panel); border: 1px solid var(--border);
  padding: 36px 32px; position: relative; overflow: hidden; transition: all 0.3s;
}
.sec-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.sec-tile:hover { background: var(--accent); border-color: var(--gold); }
.sec-tile:hover::before { transform: scaleX(1); }
.sec-tile .num {
  font-family: 'Bebas Neue', sans-serif; font-size: 40px;
  color: rgba(201,168,76,0.14); line-height: 1; margin-bottom: 16px;
}
.sec-tile h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); margin-bottom: 12px;
}
.sec-tile p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── ENGAGEMENT STEPS ─────────────────────────────────────────────── */
.engage { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 32px; }
.engage-step { padding: 0 24px; border-right: 1px solid var(--border); }
.engage-step:last-child { border-right: none; }
.engage-step .en-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--gold); line-height: 1; margin-bottom: 14px;
}
.engage-step h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.engage-step p { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ── CTA + FOOTER (match homepage) ────────────────────────────────── */
.cta-section {
  padding: 110px 60px; background: var(--navy); text-align: center;
  position: relative; overflow: hidden; border-top: 1px solid var(--border);
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: 0.03em; color: var(--white); margin-bottom: 18px; position: relative;
}
.cta-sub { font-size: 16px; color: var(--gray); margin-bottom: 40px; position: relative; max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-meta {
  position: relative; margin-top: 28px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray);
}
.cta-meta strong { color: var(--gold); font-weight: 700; }
.cta-actions { display: flex; justify-content: center; gap: 16px; position: relative; flex-wrap: wrap; }

footer {
  background: var(--navy); border-top: 1px solid var(--border); padding: 60px;
  position: relative; z-index: 1;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; border-bottom: 1px solid var(--border); margin-bottom: 40px; gap: 40px; flex-wrap: wrap; }
.footer-brand p { font-size: 13px; color: var(--gray); max-width: 280px; line-height: 1.7; margin-top: 16px; }
.footer-links h5 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--gray); letter-spacing: 0.05em; }
.footer-sam {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-dim); padding: 6px 14px;
}

/* ── MOTION ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .doc-wrap { grid-template-columns: 1fr; gap: 0; padding: 40px 24px; }
  .toc { display: none; }
  .toc-mobile {
    display: block; position: sticky; top: 72px; z-index: 50;
    background: var(--black); padding: 14px 0 18px; margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }
  .toc-mobile label {
    display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
    font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  }
  .toc-mobile select {
    width: 100%; background: var(--panel); color: var(--white);
    border: 1px solid var(--border); padding: 12px 14px;
    font-family: 'Barlow', sans-serif; font-size: 15px;
  }
  .sec-grid { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr 1fr 1fr; row-gap: 32px; }
  .stepper::before { display: none; }
  .engage { grid-template-columns: 1fr; }
  .engage-step { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
  .engage-step:last-child { border-bottom: none; }
}
@media (max-width: 760px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 24px 50px; }
  .compare, .split { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 70px 24px; }
  footer { padding: 44px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .control-table thead { display: none; }
  .control-table, .control-table tbody, .control-table tr, .control-table th, .control-table td { display: block; width: 100% !important; }
  .control-table tr { border: 1px solid var(--border); margin-bottom: 12px; padding: 6px; }
  .control-table tbody th { border-bottom: none; padding-bottom: 4px; }
  .control-table td { border-bottom: none; padding-top: 4px; }
  .control-table td.ref { padding-top: 10px; border-top: 1px dashed var(--border); }
  .control-table td::before {
    content: attr(data-label); display: block;
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
  }
}
@media (max-width: 400px) {
  .stepper { grid-template-columns: 1fr; }
  .stepper .step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-dot { margin: 0; }
}
