@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0a1a2b;
  --navy-2: #060f18;
  --panel: #0f2439;
  --steel: #3d5c7a;
  --steel-light: #8ea9c2;
  --line: #e4e9ee;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --ink: #131d27;
  --ink-soft: #53616d;
  --accent: #f0a92b;
  --accent-2: #ff7a35;
  --accent-dark: #b9781a;
  --glow: rgba(240,169,43,.30);
  --maxw: 1140px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sh-sm: 0 1px 3px rgba(10,26,43,.07);
  --sh-md: 0 10px 30px rgba(10,26,43,.10);
  --sh-lg: 0 30px 70px rgba(10,26,43,.20);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); line-height: 1.65; background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }

/* ---------- Reveal on scroll (JS-guarded) ---------- */
body.has-reveal [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
body.has-reveal [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ---------- Display type ---------- */
h1, h2, h3, .display { font-family: var(--display); font-weight: 700; line-height: 1.03; letter-spacing: .4px; }
.eyebrow, .section-eyebrow { font-family: var(--display); text-transform: uppercase; letter-spacing: 3px; font-weight: 600; }

/* ---------- Header / Nav ---------- */
header.site { background: rgba(8,20,33,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #fff; position: sticky; top: 0; z-index: 60; border-bottom: 1px solid rgba(255,255,255,.06); transition: background .3s, box-shadow .3s; }
header.site.scrolled { background: rgba(6,15,24,.95); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 70px; flex-wrap: wrap; gap: 8px; }
.brand-mark { display: flex; align-items: baseline; gap: 9px; text-decoration: none; color: #fff; }
.brand-mark .name { font-family: var(--display); font-weight: 800; font-size: 1.4rem; letter-spacing: 1.2px; }
.brand-mark .inc { font-family: var(--display); font-size: .72rem; color: var(--accent); text-transform: uppercase; letter-spacing: 2.5px; }
nav.main { display: flex; gap: 2px; flex-wrap: wrap; }
nav.main a { position: relative; font-family: var(--display); text-transform: uppercase; letter-spacing: 1.2px; color: #b9c6d3; text-decoration: none; font-size: 1rem; font-weight: 500; padding: 9px 14px; border-radius: 4px; transition: color .18s; }
nav.main a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
nav.main a:hover { color: #fff; }
nav.main a:hover::after { transform: scaleX(1); }
nav.main a.active { color: #fff; }
nav.main a.active::after { transform: scaleX(1); }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(155deg, #0a1a2b 0%, #0d2136 55%, #143659 100%); color: #fff; padding: 108px 0 96px; overflow: hidden; isolation: isolate; }
.hero::before { /* blueprint grid */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(115deg, #000 25%, transparent 80%);
  mask-image: linear-gradient(115deg, #000 25%, transparent 80%);
}
.hero::after { /* amber glow */
  content: ""; position: absolute; z-index: -1; width: 760px; height: 760px; right: -220px; top: -320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,169,43,.30) 0%, rgba(255,122,53,.12) 40%, transparent 68%);
  filter: blur(10px); animation: floatGlow 14s ease-in-out infinite;
}
@keyframes floatGlow { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,50px) scale(1.08); } }
.hero-grid { display: grid; grid-template-columns: 1.3fr .95fr; gap: 54px; align-items: center; }
.hero .eyebrow { color: var(--accent); font-size: .82rem; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px; }
.hero .eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; text-shadow: 0 2px 40px rgba(0,0,0,.3); }
.hero h1 .amber { color: transparent; background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; }
.hero p.lede { margin-top: 22px; font-size: 1.2rem; color: #d0dbe6; max-width: 52ch; line-height: 1.6; }
.hero .cta-row { margin-top: 36px; display: flex; gap: 15px; flex-wrap: wrap; }

/* spec card — glass w/ glow + technical brackets */
.spec-card { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 30px 30px 24px; backdrop-filter: blur(6px); box-shadow: var(--sh-lg); }
.spec-card::before, .spec-card::after { content: ""; position: absolute; width: 18px; height: 18px; border: 2px solid var(--accent); }
.spec-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; border-radius: 14px 0 0 0; }
.spec-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; border-radius: 0 0 14px 0; }
.spec-card .sc-title { font-family: var(--display); text-transform: uppercase; letter-spacing: 2.5px; font-size: .78rem; color: var(--accent); margin-bottom: 18px; }
.spec-card .sc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.09); gap: 12px; }
.spec-card .sc-k { color: #a9b8c6; font-size: .88rem; }
.spec-card .sc-v { font-family: var(--display); font-weight: 600; font-size: 1.08rem; text-align: right; letter-spacing: .5px; color: #fff; }
.spec-card .sc-status { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: .82rem; color: #cfe0d3; }
.spec-card .dot { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.55); } 70% { box-shadow: 0 0 0 9px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }

/* ---------- Buttons ---------- */
.btn { font-family: var(--display); text-transform: uppercase; letter-spacing: 1.4px; display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 600; font-size: 1.04rem; padding: 15px 30px; border-radius: 6px; border: 2px solid transparent; cursor: pointer; transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .18s, background .18s, border-color .18s; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #23150a; box-shadow: 0 10px 26px var(--glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px var(--glow); }
.btn-ghost { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-3px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--steel); transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Sections ---------- */
section { padding: 84px 0; position: relative; }
section.alt { background: var(--bg-alt); }
.section-eyebrow { color: var(--accent-dark); font-size: .8rem; margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--accent); display: inline-block; }
h2.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 12px; line-height: 1.02; }
.section-intro { color: var(--ink-soft); max-width: 66ch; font-size: 1.12rem; margin-bottom: 42px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Problem band ---------- */
.problem { background: radial-gradient(120% 140% at 80% 0%, #123152 0%, #0a1a2b 55%, #060f18 100%); color: #e7edf3; overflow: hidden; }
.problem::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(circle at 80% 10%, #000, transparent 70%); mask-image: radial-gradient(circle at 80% 10%, #000, transparent 70%); }
.problem .wrap { position: relative; }
.problem h2 { color: #fff; }
.problem .section-eyebrow { color: var(--accent); }
.pain-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.1); }
.pain-list li { position: relative; padding: 18px 18px 18px 40px; color: #c4d0dc; font-size: 1.06rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.pain-list li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
.pain-list li::before { content: ""; position: absolute; left: 14px; top: 25px; width: 8px; height: 8px; background: var(--accent-2); transform: rotate(45deg); }
.problem .turn { margin-top: 34px; font-size: 1.28rem; color: #fff; font-weight: 500; max-width: 62ch; line-height: 1.5; }
.problem .turn strong { color: var(--accent); font-weight: 600; }

/* ---------- Steps (the plan) — connected timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; position: relative; }
.step { position: relative; padding: 34px 28px 30px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--sh-sm); transition: transform .25s, box-shadow .25s; overflow: hidden; }
.step::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step-num { counter-increment: step; font-family: var(--display); font-weight: 800; font-size: 3rem; color: var(--accent); line-height: 1; opacity: .28; position: absolute; top: 18px; right: 22px; }
.step-num::before { content: "0" counter(step); }
.step-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, rgba(240,169,43,.16), rgba(255,122,53,.1)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-icon svg { width: 26px; height: 26px; stroke: var(--accent-dark); }
.step h3 { color: var(--navy); font-size: 1.5rem; text-transform: uppercase; margin: 0 0 8px; }
.step p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: linear-gradient(135deg, #0d2136, #0a1a2b); border-radius: 16px; overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.06); }
.stats .stat { padding: 40px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); position: relative; }
.stats .stat:last-child { border-right: none; }
.stats .stat .num { font-family: var(--display); font-weight: 800; font-size: 2.5rem; letter-spacing: .5px; background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats .stat .lbl { font-size: .86rem; color: #b7c4d1; margin-top: 6px; letter-spacing: .3px; }

/* ---------- Capability list ---------- */
.cap-list { columns: 2; column-gap: 48px; list-style: none; }
.cap-list li { break-inside: avoid; padding: 14px 0 14px 34px; position: relative; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 1.05rem; transition: padding-left .2s; }
.cap-list li:hover { padding-left: 40px; }
.cap-list li::before { content: ""; position: absolute; left: 4px; top: 20px; width: 14px; height: 8px; border-left: 2.5px solid var(--accent-dark); border-bottom: 2.5px solid var(--accent-dark); transform: rotate(-45deg); }
.cap-list li b { font-family: var(--display); text-transform: uppercase; letter-spacing: .6px; font-weight: 600; font-size: 1.12em; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--sh-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: #d2dbe4; }
.card-media { margin: -30px -30px 22px; height: 190px; overflow: hidden; border-radius: 14px 14px 0 0; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-media img { transform: scale(1.06); }
.card-icon { width: 48px; height: 48px; border-radius: 11px; background: linear-gradient(135deg, rgba(240,169,43,.16), rgba(255,122,53,.1)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; stroke: var(--accent-dark); }
.card h3 { color: var(--navy); font-size: 1.45rem; text-transform: uppercase; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card ul { margin: 14px 0 0 2px; color: var(--ink-soft); font-size: .98rem; list-style: none; }
.card ul li { padding: 6px 0 6px 22px; position: relative; }
.card ul li::before { content: ""; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }

/* ---------- Callout ---------- */
.callout { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--accent); border-radius: 10px; padding: 26px 30px; font-size: 1.05rem; box-shadow: var(--sh-sm); }
.callout.warn { border-left-color: var(--steel); }
.callout strong { color: var(--navy); font-family: var(--display); text-transform: uppercase; letter-spacing: .6px; }

/* ---------- Data table ---------- */
.data-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--sh-sm); }
.data-table th, .data-table td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 1rem; }
.data-table th { background: linear-gradient(135deg, #0d2136, #0a1a2b); color: #fff; font-family: var(--display); text-transform: uppercase; letter-spacing: .6px; font-weight: 500; width: 38%; }
.data-table tr:last-child td, .data-table tr:last-child th { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-alt); }
.data-table td code { background: var(--bg-alt); padding: 3px 8px; border-radius: 5px; font-size: .92em; color: var(--accent-dark); font-weight: 600; }

/* ---------- Past performance ---------- */
.pp-lead { font-family: var(--display); text-transform: uppercase; letter-spacing: 2px; color: var(--navy); font-size: 1.2rem; font-weight: 700; margin: 40px 0 20px; display: flex; align-items: center; gap: 14px; }
.pp-lead::after { content: ""; flex: 1; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); }
.pp { display: grid; grid-template-columns: 180px 1fr; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-bottom: 20px; box-shadow: var(--sh-sm); transition: transform .25s, box-shadow .25s; }
.pp:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.pp .pp-meta { background: linear-gradient(150deg, #0d2136, #0a1a2b); color: #fff; padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.pp .pp-meta .val { font-family: var(--display); font-weight: 800; font-size: 1.9rem; background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pp .pp-meta .type { font-size: .82rem; color: var(--steel-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }
.pp .pp-body { padding: 28px; }
.pp .pp-body h3 { color: var(--navy); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 8px; }
.pp .pp-body p { color: var(--ink-soft); font-size: 1rem; }
.pp .pp-body .dur { font-family: var(--display); text-transform: uppercase; font-size: .84rem; color: var(--steel); font-weight: 600; letter-spacing: .8px; margin-top: 12px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info dt { font-family: var(--display); text-transform: uppercase; font-weight: 600; color: var(--navy); margin-top: 20px; font-size: .84rem; letter-spacing: 1.2px; }
.contact-info dd { color: var(--ink-soft); font-size: 1.12rem; }
form.contact { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--sh-md); }
form.contact label { font-family: var(--display); text-transform: uppercase; letter-spacing: .8px; display: block; font-size: .84rem; font-weight: 600; color: var(--navy); margin: 16px 0 6px; }
form.contact input, form.contact textarea, form.contact select { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px; font-size: 1rem; font-family: var(--body); background: var(--bg-alt); transition: border-color .2s, box-shadow .2s, background .2s; }
form.contact input:focus, form.contact textarea:focus, form.contact select:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--glow); }
form.contact textarea { min-height: 130px; resize: vertical; }

/* ---------- CTA / promise band ---------- */
.promise { position: relative; background: linear-gradient(135deg, #0a1a2b, #123456); color: #fff; text-align: center; padding: 88px 0; overflow: hidden; isolation: isolate; }
.promise::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, transparent 72%); mask-image: radial-gradient(circle at 50% 40%, #000, transparent 72%); }
.promise::after { content: ""; position: absolute; z-index: -1; width: 620px; height: 620px; left: 50%; top: 60%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(240,169,43,.22), transparent 65%); }
.promise h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; text-transform: uppercase; max-width: 24ch; margin: 0 auto 14px; }
.promise p { color: #cdd8e3; max-width: 58ch; margin: 0 auto; font-size: 1.12rem; }

/* ---------- Footer ---------- */
footer.site { background: var(--navy-2); color: #93a5b6; padding: 60px 0 32px; font-size: .92rem; border-top: 3px solid var(--accent); }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
footer.site h4 { font-family: var(--display); color: #fff; font-size: .88rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
footer.site a { color: #93a5b6; text-decoration: none; display: block; margin-bottom: 7px; transition: color .18s; }
footer.site a:hover { color: var(--accent); }
footer.site .legal { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: .82rem; color: #6a7c8d; }
footer.site .codes { font-family: ui-monospace, "SF Mono", Menlo, monospace; color: #c1cedb; font-size: .82rem; line-height: 1.9; }
footer.site .codes a { display: inline; color: #c1cedb; }
footer.site .codes a:hover { color: var(--accent); }

/* ---------- Hero photo backdrop ---------- */
.hero .hero-photo { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; }
.hero .hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(9,22,36,.97) 0%, rgba(10,26,43,.9) 42%, rgba(11,34,57,.62) 100%); }

/* ---------- Scope gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--sh-md); border: 1px solid var(--line); }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.tile:hover img { transform: scale(1.07); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,15,24,.9) 0%, rgba(6,15,24,.35) 40%, rgba(6,15,24,0) 68%); }
.tile .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 20px 22px; color: #fff; }
.tile .cap b { font-family: var(--display); text-transform: uppercase; letter-spacing: .6px; font-size: 1.25rem; display: block; line-height: 1.05; }
.tile .cap span { color: #c8d4e0; font-size: .86rem; }
.tile .cap::before { content: ""; display: block; width: 30px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); margin-bottom: 10px; }
.gallery-note { margin-top: 22px; color: var(--ink-soft); font-size: 1rem; }
.gallery-note b { font-family: var(--display); text-transform: uppercase; letter-spacing: .5px; color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 60px 0; }
  .hero { padding: 76px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:nth-child(2) { border-right: none; }
  .stats .stat:nth-child(1), .stats .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .steps, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .cap-list { columns: 1; }
  .pain-list { grid-template-columns: 1fr; }
  .pain-list li:nth-child(odd) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; }
  .pp { grid-template-columns: 1fr; }
  .pp .pp-meta { flex-direction: row; align-items: baseline; gap: 14px; }
}
