:root {
  --ink: #002349;
  --ink-deep: #00172f;
  --ink-soft: #0a3c68;
  --gold: #d8b457;
  --gold-light: #f3dc8c;
  --paper: #ececea;
  --paper-light: #f7f6f1;
  --white: #fff;
  --muted: #5f6c70;
  --line: rgba(0, 35, 73, .18);
  --max: 1280px;
  --gutter: clamp(22px, 3vw, 44px);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--ink-deep); }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 1000;
  background: var(--gold); color: var(--ink-deep); padding: 12px 18px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; pointer-events: none;
  padding: clamp(12px, 2vw, 24px) clamp(16px, 3vw, 42px) 0;
  color: var(--white); animation: nav-enter .7s cubic-bezier(.2,.8,.2,1) both;
}
.site-header.scrolled,
.site-header.menu-open {
  background: transparent; box-shadow: none;
}
.header-inner {
  pointer-events: auto; width: min(960px, 100%); min-height: 72px; margin: auto;
  padding: 12px 24px; display: grid; grid-template-columns: 130px 1fr 110px;
  align-items: center; gap: 18px; border: 1px solid rgba(216,180,87,.22);
  border-radius: 999px; background: rgba(0,35,73,.82); backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0,23,47,.18);
  transition: width .28s, padding .28s, gap .28s, background .28s;
}
.site-header.scrolled .header-inner { width: min(768px, 80%); padding: 10px 18px; gap: 12px; background: rgba(0,35,73,.94); }
.brand { width: 112px; height: 46px; display: flex; align-items: center; }
.brand img { width: 108px; height: auto; }
.desktop-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.desktop-nav a, .footer-nav a, .legal-nav a {
  position: relative; font-size: 13px; letter-spacing: .03em;
}
.desktop-nav a {
  padding: 9px 12px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.05);
  border: 1px solid transparent; border-radius: 999px; font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink-deep); background: var(--gold-light); transform: translateY(-1px); }
.desktop-nav a::after { display: none; }
.footer-nav a::after, .legal-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px;
  height: 1px; background: var(--gold); transition: right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after,
.footer-nav a:hover::after, .legal-nav a:hover::after { right: 0; }
.header-action { justify-self: end; min-height: 34px; padding: 0 14px; color: var(--ink-deep); background: var(--gold-light); border-color: var(--gold-light); border-radius: 999px; }
.header-action:hover { color: var(--ink-deep); background: var(--gold); }
.menu-toggle {
  display: none; width: 40px; height: 40px; padding: 0;
  border: 0; border-radius: 999px; background: var(--gold-light); color: var(--ink-deep);
}
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: currentColor; transition: .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel {
  pointer-events: auto; display: none; position: fixed; top: calc(74px + clamp(12px, 2vw, 24px));
  left: 50%; width: min(760px, calc(100% - clamp(32px, 6vw, 84px))); height: auto;
  padding: 0; overflow: hidden; transform: translateX(-50%);
  border: 1px solid rgba(216,180,87,.2); border-radius: 24px;
  background: rgba(0,35,73,.97); color: white; z-index: 101;
}
.mobile-panel.open { display: flex; flex-direction: column; }
.mobile-panel a { padding: 14px 16px; border-bottom: 1px solid rgba(216,180,87,.11); color: var(--gold-light); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-panel a:last-child { border-bottom: 0; }
.mobile-panel .eyebrow { display:block; color: var(--gold-light); margin: 0; font-size: 11px; }
.mobile-panel .eyebrow::before { display:none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  min-height: 48px; padding: 0 22px; border: 1px solid currentColor;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: color .25s, background .25s, transform .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: var(--ink-deep); background: var(--gold); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-light { color: white; background: transparent; }
.btn-light:hover { color: var(--ink-deep); background: white; }
.btn-dark { color: white; background: var(--ink-deep); border-color: var(--ink-deep); }

.hero {
  min-height: 100svh; position: relative; overflow: hidden; color: white; background: var(--ink-deep);
}
.hero-bg { position:absolute; inset:0; background-image: linear-gradient(rgba(0,23,47,.54),rgba(0,23,47,.54)), url("hero-aura.jpg"); background-position:center; background-size:cover; animation:hero-image-enter 1.6s cubic-bezier(.2,.8,.2,1) both; }
.hero-grid {
  position: absolute; inset: 0; opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 86px 86px; transform: perspective(600px) rotateX(58deg) scale(1.45) translateY(29%);
  transform-origin: bottom center; mask-image: linear-gradient(transparent 18%, black 92%);
}
.hero-skyline { position: absolute; right: -3%; bottom: 0; width: 58%; height: 74%; opacity: .38; }
.tower { position: absolute; bottom: 0; border: 1px solid rgba(243,220,140,.38); background: linear-gradient(180deg, rgba(216,180,87,.08), rgba(0,35,73,.08)); }
.tower::after { content:""; position:absolute; inset:14px; background: repeating-linear-gradient(0deg, transparent 0 25px, rgba(243,220,140,.22) 26px 27px); }
.tower-a { right: 8%; width: 28%; height: 74%; clip-path: polygon(15% 0,85% 0,100% 100%,0 100%); }
.tower-b { right: 36%; width: 18%; height: 50%; }
.tower-c { right: 57%; width: 13%; height: 34%; }
.hero-content {
  position: relative; z-index: 2; width: 100%; min-height: calc(100svh - 86px);
  padding: calc(64px + clamp(12px, 2vw, 24px)) clamp(16px,3vw,42px) 0;
  display: grid; place-content: center; justify-items: center; text-align: center;
}
.hero-copy { display:grid; justify-items:center; gap:14px; max-width: 960px; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin: 0 0 18px;
  font-size: 11px; font-weight: 650; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow::before { content:""; width: 28px; height: 1px; background: currentColor; }
.hero .eyebrow, .page-hero .eyebrow { color: var(--gold-light); }
.hero-kicker { margin:0; padding:7px 12px; color:white; background:rgba(0,35,73,.38); border:1px solid rgba(216,180,87,.35); border-radius:999px; font-size:10px; letter-spacing:.12em; text-transform:uppercase; animation:hero-rise .65s .18s cubic-bezier(.2,.8,.2,1) both; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin: 0; max-width: 15ch; font-size: clamp(2.4rem, 6vw, 5.7rem);
  line-height: 1.03; font-weight: 500; letter-spacing: -.04em;
  animation:hero-rise .8s .3s cubic-bezier(.2,.8,.2,1) both;
}
.hero-lede { max-width: 600px; margin: 16px auto 20px; color: rgba(255,255,255,.94); font-size: clamp(12px,1.1vw,16px); line-height: 1.55; animation:hero-rise .7s .48s cubic-bezier(.2,.8,.2,1) both; }
.hero-actions { display: flex; flex-wrap:wrap; justify-content:center; gap: 10px; margin-top: 0; animation:hero-rise .7s .64s cubic-bezier(.2,.8,.2,1) both; }
.hero-actions .btn { min-height:38px; padding:0 18px; border-radius:999px; font-size:10px; }
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: 44px;
}
.hero-scroll-cue { position:absolute; z-index:2; left:50%; bottom:18px; transform:translateX(-50%); display:inline-flex; flex-direction:column; align-items:center; gap:6px; color:rgba(255,255,255,.88); font-size:9px; letter-spacing:.18em; text-transform:uppercase; animation:hero-rise .6s .88s cubic-bezier(.2,.8,.2,1) both; }
.hero-scroll-cue span { opacity:.85; }
.hero-scroll-cue i { width:28px; height:28px; display:grid; place-items:center; color:var(--gold-light); border:1px solid rgba(216,180,87,.45); border-radius:999px; font-style:normal; font-size:18px; line-height:1; animation:hero-scroll-bounce 1.8s ease-in-out infinite; }
@keyframes hero-scroll-bounce { 0%,100%{opacity:.7;transform:translateY(0)} 50%{opacity:1;transform:translateY(6px)} }
@keyframes hero-rise { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes hero-image-enter { from{opacity:.25;transform:scale(1.06)} to{opacity:1;transform:scale(1)} }
@keyframes nav-enter { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:none} }
.hero-mark { width: 190px; opacity: .88; }

.section { padding: clamp(74px, 8vw, 112px) var(--gutter); }
.container { width: min(var(--max), 100%); margin: auto; }
.section-head { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: 60px; align-items: end; margin-bottom: 56px; }
.section h2, .page-content h2 { font-size: clamp(38px, 4.2vw, 64px); line-height: 1.03; letter-spacing: -.035em; font-weight: 500; margin-bottom: 0; }
.section-copy { color: var(--muted); line-height: 1.75; font-size: 17px; }
.section-copy p:last-child { margin-bottom: 0; }
.section-lead { color:var(--ink); font-size:clamp(18px,2vw,24px); line-height:1.45; }
.paper { background: var(--paper); }
.paper-light { background: var(--paper-light); }
.dark { color: white; background: var(--ink-deep); }
.dark .section-copy { color: rgba(255,255,255,.7); }
.gold-band { background: var(--gold); color: var(--ink-deep); }

.intro-layout { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); gap: clamp(48px,7vw,110px); align-items: start; }
.intro-layout h2 { font-size: clamp(46px,5.1vw,78px); }
.intro-side { padding-top: 10px; }
.section-intro { padding-top:96px; padding-bottom:28px; }
.section-intro .intro-layout { grid-template-columns:minmax(0,1.05fr) minmax(300px,.95fr); }
.section-intro .intro-layout h2 { max-width:760px; font-size:clamp(42px,5vw,64px); }
.trust-section { padding-top:20px; padding-bottom:56px; }
.narrative-section { padding-top:72px; padding-bottom:56px; }
.value-section { padding-top:16px; padding-bottom:64px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 5px; }

.trust-row { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 32px 26px 30px 0; border-right: 1px solid var(--line); }
.stat:not(:first-child) { padding-left: 26px; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--ink); font-size: clamp(38px,4vw,62px); font-weight: 500; letter-spacing: -.045em; }
.stat span { display: block; margin-top: 9px; color: var(--muted); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }

.narrative { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.1); }
.narrative article { min-height: 520px; padding: clamp(40px,5vw,76px); background: var(--paper-light); color: var(--ink); display: flex; flex-direction: column; justify-content: space-between; }
.narrative article:nth-child(2) { background: var(--ink-soft); color: white; }
.narrative h3 { font-size: clamp(34px,3.6vw,54px); line-height: 1.08; letter-spacing: -.035em; font-weight: 500; max-width: 600px; }
.narrative article:nth-child(2) h3 { color: var(--gold-light); }
.narrative p { font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 620px; }
.narrative article:nth-child(2) p { color: rgba(255,255,255,.72); }

.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.feature { padding: 34px 26px 10px 0; border-right: 1px solid var(--line); }
.feature:not(:first-child) { padding-left: 26px; }
.feature:last-child { border-right: 0; }
.feature .number { display:block; margin-bottom: 64px; color: var(--gold); font-size: 12px; }
.feature h3 { font-size: 21px; line-height: 1.2; font-weight: 550; }
.feature p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 80px 120px minmax(260px,.9fr) minmax(300px,1.1fr) 28px;
  gap: 22px; align-items: center; padding: 35px 0; border-bottom: 1px solid var(--line);
  transition: padding .3s, background .3s;
}
.service-row:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.48); }
.service-row .num, .service-row .tag { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.service-row h3 { margin: 0; font-size: clamp(25px,2.5vw,37px); line-height: 1.05; font-weight: 500; letter-spacing: -.025em; }
.service-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }
.service-row .arrow { font-size: 24px; transition: transform .25s; }
.service-row:hover .arrow { transform: translate(4px,-4px); }

.sector-marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sector-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.sector-track span { padding: 19px 34px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; border-right: 1px solid var(--line); }
@keyframes marquee { to { transform: translateX(-50%); } }

.cta-layout { display: grid; grid-template-columns: minmax(0,1.25fr) auto; align-items: end; gap: 50px; }
.cta-layout h2 { font-size: clamp(45px,5.6vw,82px); max-width: 900px; }
.cta-layout p { margin: 22px 0 0; max-width: 720px; line-height: 1.65; }

.site-footer { background: var(--ink-deep); color: white; padding: 74px var(--gutter) 28px; }
.footer-top { display: grid; grid-template-columns: minmax(270px,1.2fr) repeat(3,minmax(130px,.6fr)); gap: 50px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand img { width: 230px; }
.footer-brand p { max-width: 430px; color: rgba(255,255,255,.6); line-height: 1.65; font-size: 14px; }
.footer-col h3 { color: var(--gold-light); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.footer-nav a { color: rgba(255,255,255,.74); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-top: 26px; color: rgba(255,255,255,.45); font-size: 11px; }
.legal-nav { display: flex; gap: 22px; }

.page-hero { min-height: 72svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; padding: 170px var(--gutter) 76px; color: white; background: var(--ink-deep); }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 15%, rgba(216,180,87,.18), transparent 28%), linear-gradient(125deg,#00172f,#0a3c68); }
.page-hero::after { content:""; position:absolute; width:620px; height:620px; right:-130px; bottom:-350px; border:1px solid rgba(243,220,140,.34); border-radius:50%; box-shadow: 0 0 0 90px rgba(243,220,140,.03), 0 0 0 180px rgba(243,220,140,.025); }
.page-hero-inner { position:relative; z-index:2; width:min(var(--max),100%); margin:auto; }
.page-hero h1 { max-width: 1030px; margin:0; font-size:clamp(52px,6.4vw,92px); line-height:1; font-weight:500; letter-spacing:-.045em; }
.page-hero p { max-width:700px; margin:25px 0 0; color:rgba(255,255,255,.72); font-size:18px; line-height:1.6; }

.page-content { padding: clamp(70px,8vw,110px) var(--gutter); }
.content-grid { width:min(var(--max),100%); margin:auto; display:grid; grid-template-columns:270px minmax(0,820px); gap:clamp(50px,8vw,120px); justify-content:space-between; }
.content-aside { position:sticky; top:112px; align-self:start; }
.content-aside .eyebrow { color:var(--gold); }
.content-aside nav { display:flex; flex-direction:column; margin-top:24px; border-top:1px solid var(--line); }
.content-aside nav a { padding:13px 0; border-bottom:1px solid var(--line); color:var(--muted); font-size:13px; }
.content-aside nav a:hover { color:var(--ink); padding-left:7px; }
.prose-section { scroll-margin-top:100px; padding-bottom:66px; margin-bottom:66px; border-bottom:1px solid var(--line); }
.prose-section:last-child { border-bottom:0; margin-bottom:0; padding-bottom:0; }
.prose-section h2 { margin-bottom:24px; }
.prose-section h3 { margin:34px 0 12px; color:var(--gold); font-size:23px; line-height:1.25; font-weight:650; }
.prose-section p { color:#344a52; font-size:17px; line-height:1.82; }
.prose-section .lead { color:var(--ink); font-size:22px; line-height:1.6; }
.styled-list { list-style:none; padding:0; margin:24px 0 0; }
.styled-list li { position:relative; padding:16px 0 16px 34px; border-top:1px solid var(--line); color:#344a52; line-height:1.65; }
.styled-list li::before { content:"↗"; position:absolute; left:0; color:var(--gold); }
.styled-list strong { color:var(--ink); }
.steps { counter-reset:steps; border-top:1px solid var(--line); }
.step { counter-increment:steps; display:grid; grid-template-columns:90px 1fr; gap:28px; padding:34px 0; border-bottom:1px solid var(--line); }
.step::before { content:"0" counter(steps); color:var(--gold); font-size:13px; font-weight:700; }
.step h3 { margin:0 0 10px; color:var(--ink); font-size:30px; font-weight:500; }
.step p { margin:0; }
.sector-cards { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); }
.sector-card { min-height:360px; padding:38px; display:flex; flex-direction:column; justify-content:space-between; background:var(--paper-light); transition:background .3s,color .3s; }
.sector-card:hover { background:var(--ink-soft); color:white; }
.sector-card .num { color:var(--gold); font-size:12px; }
.sector-card h2 { font-size:38px; }
.sector-card p { color:var(--muted); line-height:1.65; }
.sector-card:hover p { color:rgba(255,255,255,.68); }
.pill-line { display:flex; flex-wrap:wrap; gap:9px; margin-top:22px; }
.pill { padding:8px 11px; border:1px solid var(--line); color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.05em; }

.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:clamp(45px,7vw,100px); }
.contact-details { padding-right:30px; }
.contact-details h2 { font-size:clamp(38px,4.2vw,60px); margin-bottom:24px; }
.contact-details p { color:var(--muted); line-height:1.7; }
.contact-list { margin-top:40px; border-top:1px solid var(--line); }
.contact-item { padding:18px 0; border-bottom:1px solid var(--line); }
.contact-item small { display:block; color:var(--gold); font-size:10px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:6px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.field input, .field select, .field textarea { width:100%; border:0; border-bottom:1px solid var(--line); border-radius:0; padding:14px 2px; color:var(--ink); background:transparent; outline:0; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--gold); }
.field textarea { min-height:110px; resize:vertical; }
.form-status { grid-column:1/-1; min-height:22px; color:var(--ink-soft); font-size:13px; }

[data-reveal] { opacity:0; transform:translateY(22px); transition:opacity .75s ease, transform .75s ease; }
[data-reveal].visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns:1fr auto; }
  .desktop-nav, .header-action { display:none; }
  .menu-toggle { display:block; }
  .hero-skyline { width:82%; opacity:.28; }
  .section-head, .intro-layout, .content-grid, .contact-grid { grid-template-columns:1fr; }
  .section-head { gap:24px; }
  .trust-row, .feature-grid { grid-template-columns:1fr 1fr; }
  .stat:nth-child(2), .feature:nth-child(2) { border-right:0; }
  .stat:nth-child(-n+2), .feature:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .narrative { grid-template-columns:1fr; }
  .service-row { grid-template-columns:52px 88px 1fr 28px; }
  .service-row p { grid-column:3/4; }
  .content-aside { position:static; }
  .content-aside nav { display:grid; grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { height:auto; padding:12px 16px 0; }
  .header-inner { min-height:62px; padding:8px 14px; grid-template-columns:1fr auto; }
  .site-header.scrolled .header-inner { width:min(100%, 540px); padding:8px 14px; }
  .brand, .brand img { width:100px; }
  .mobile-panel { top:84px; width:calc(100% - 32px); border-radius:20px; }
  .hero-bg { background-position:58% center; }
  .hero-content { min-height:calc(100svh - 70px); padding:calc(62px + 24px) 20px 46px; }
  .hero-copy { gap:11px; }
  .hero h1 { max-width:13ch; font-size:clamp(2rem,8.5vw,3.2rem); letter-spacing:-.035em; }
  .page-hero h1 { letter-spacing:-.035em; }
  .hero-lede { margin:12px auto 15px; font-size:clamp(13px,3.4vw,15px); }
  .hero-actions { align-items:center; flex-direction:row; }
  .hero-actions .btn { width:auto; min-height:36px; padding:0 14px; }
  .section { padding-left:22px; padding-right:22px; }
  .trust-row, .feature-grid, .sector-cards, .form-grid { grid-template-columns:1fr; }
  .stat, .stat:not(:first-child), .feature, .feature:not(:first-child) { padding:25px 0; border-right:0; border-bottom:1px solid var(--line); }
  .stat:last-child, .feature:last-child { border-bottom:0; }
  .feature .number { margin-bottom:25px; }
  .narrative article { min-height:440px; padding:36px 26px; }
  .service-row { grid-template-columns:42px 1fr 24px; gap:14px; }
  .service-row .tag { grid-column:2; }
  .service-row h3 { grid-column:2; }
  .service-row p { grid-column:2/4; }
  .service-row .arrow { grid-column:3; grid-row:1/4; }
  .cta-layout { grid-template-columns:1fr; align-items:start; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
  .page-hero { min-height:66svh; padding:140px 22px 55px; }
  .page-content { padding-left:22px; padding-right:22px; }
  .content-aside nav { grid-template-columns:1fr; }
  .step { grid-template-columns:44px 1fr; gap:14px; }
  .step h3 { font-size:25px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  [data-reveal] { opacity:1; transform:none; }
}
