:root {
  --ink: #0a1420;
  --ink-soft: #46536b;
  --navy: #081629;
  --navy-2: #0c1f3a;
  --accent: #14b8a6;
  --accent-strong: #0d9488;
  --accent-soft: rgba(20, 184, 166, 0.12);
  --sky: #38bdf8;
  --sky-soft: rgba(56, 189, 248, 0.12);
  --line: #e6ebf2;
  --surface: #f5f7fa;
  --white: #ffffff;
  --danger: #b33939;
  --radius: 14px;
  --maxw: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); }

/* ---------- Nav ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--sky));
  display: grid; place-items: center; color: #04141b;
}
.brand .mark svg { width: 16px; height: 16px; }
.brand small { display: block; font-weight: 500; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); }
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.92rem;
  padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #03201d; box-shadow: 0 8px 20px -8px rgba(20,184,166,0.6); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-ghost:hover { border-color: #c9d2df; background: var(--surface); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #eef2f7; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.nav-cta { padding: 9px 16px; font-size: 0.88rem; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; width: 40px; height: 40px; cursor: pointer; }
.menu-btn svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1100px 500px at 80% -10%, rgba(20,184,166,0.18), transparent 60%),
              radial-gradient(900px 500px at 10% 110%, rgba(56,189,248,0.14), transparent 55%),
              var(--navy);
  color: #eaf2f9; position: relative; overflow: hidden;
}
.hero .grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(900px 600px at 50% 20%, #000 30%, transparent 75%);
          mask-image: radial-gradient(900px 600px at 50% 20%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; padding: 96px 0 88px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--accent); background: var(--accent-soft);
  padding: 7px 13px; border-radius: 999px; margin-bottom: 26px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(20,184,166,0.2); }
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem); line-height: 1.06; letter-spacing: -0.025em;
  font-weight: 800; max-width: 16ch;
}
.hero h1 .accent { color: var(--accent); }
.hero .sub {
  margin-top: 22px; font-size: clamp(1.02rem, 2vw, 1.2rem); color: #b6c4d6;
  max-width: 58ch; line-height: 1.65;
}
.hero .sub strong { color: #eaf2f9; font-weight: 600; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-foot {
  margin-top: 56px; display: flex; gap: 34px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-foot .item { display: flex; gap: 10px; align-items: flex-start; color: #b6c4d6; font-size: 0.9rem; }
.hero-foot .item svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--accent); margin-top: 2px; }
.hero-foot .item b { display: block; color: #eaf2f9; font-weight: 600; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.kicker {
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-strong); font-weight: 500; margin-bottom: 14px;
}
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.02em; line-height: 1.12; font-weight: 800; }
.lede { color: var(--ink-soft); font-size: 1.06rem; margin-top: 16px; max-width: 62ch; }
.sec-head { max-width: 780px; margin-bottom: 48px; }

/* Problem */
.problem { background: var(--surface); }
.problem .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.problem .copy h2 { max-width: 18ch; }
.problem .copy p { color: var(--ink-soft); margin-top: 16px; }
.shift {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 20px 40px -30px rgba(8,22,41,0.35);
}
.shift .row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.shift .row:last-child { border-bottom: 0; }
.shift .from, .shift .to { flex: 1; }
.shift .lbl { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.shift .from { color: #b33939; font-weight: 600; text-decoration: line-through; text-decoration-color: rgba(179,57,57,0.4); }
.shift .to { color: var(--accent-strong); font-weight: 600; }
.shift .arrow { color: var(--ink-soft); font-family: var(--mono); }

/* Services */
.services { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  background: var(--white); transition: transform .15s, box-shadow .15s, border-color .15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -28px rgba(8,22,41,0.4); border-color: #d6dee9; }
.card .icon {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-strong); margin-bottom: 18px;
}
.card .icon svg { width: 20px; height: 20px; }
.card h3 { font-size: 1.08rem; letter-spacing: -0.01em; margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: 0.94rem; }
.card .tag { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 0.7rem; color: var(--accent-strong); background: var(--accent-soft); padding: 4px 9px; border-radius: 6px; }

/* Why us */
.why { background: var(--navy); color: #eaf2f9; }
.why .kicker { color: var(--accent); }
.why .lede { color: #b6c4d6; }
.why .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 8px; }
.why-item {
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius); padding: 26px;
  background: rgba(255,255,255,0.025);
}
.why-item .num { font-family: var(--mono); color: var(--accent); font-size: 0.82rem; margin-bottom: 12px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
.why-item p { color: #b6c4d6; font-size: 0.95rem; }

/* Process */
.process { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step .n {
  font-family: var(--mono); font-weight: 500; color: var(--accent-strong);
  font-size: 0.8rem; display: inline-block; margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }
.step .time { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 0.72rem; color: var(--ink-soft); background: var(--surface); padding: 4px 9px; border-radius: 6px; }

/* Audience */
.audience { background: var(--white); }
.audience .grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink); background: var(--white);
}
.chip b { color: var(--accent-strong); }
.aside { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.aside h3 { font-size: 1.1rem; margin-bottom: 14px; }
.aside ul { list-style: none; }
.aside li { display: flex; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; color: var(--ink-soft); }
.aside li:last-child { border-bottom: 0; }
.aside li svg { width: 17px; height: 17px; color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.aside li b { color: var(--ink); }

/* About */
.about { background: var(--navy-2); color: #eaf2f9; }
.about .kicker { color: var(--accent); }
.about-inner { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; }
.avatar {
  width: 72px; height: 72px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--sky));
  display: grid; place-items: center; font-weight: 700; font-size: 1.5rem; color: #04141b;
}
.about p { color: #b6c4d6; margin-top: 14px; max-width: 70ch; font-size: 1.02rem; }
.about .name { font-size: 1.3rem; font-weight: 700; color: #fff; }

/* Contact */
.contact { background: var(--surface); }
.contact .box {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px; text-align: center; max-width: 720px; margin: 0 auto;
  box-shadow: 0 30px 60px -40px rgba(8,22,41,0.5);
}
.contact .box h2 { max-width: 20ch; margin: 0 auto; }
.contact .box p { color: var(--ink-soft); margin: 16px auto 28px; max-width: 46ch; }
.contact .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact .email { font-family: var(--mono); font-size: 0.95rem; color: var(--ink); margin-top: 20px; }

/* Footer */
footer { background: var(--navy); color: #8aa0b8; padding: 44px 0; font-size: 0.86rem; }
.foot { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: flex-start; }
.foot .brand { color: #eaf2f9; }
.foot .brand small { color: #8aa0b8; }
.foot .disc { max-width: 62ch; line-height: 1.6; }
.foot .disc strong { color: #b6c4d6; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ ASSESSMENT WIZARD ============ */
.page-hero { padding: 64px 0 40px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.02em; line-height: 1.1; font-weight: 800; max-width: 24ch; }
.page-hero .sub { margin-top: 18px; color: var(--ink-soft); font-size: 1.05rem; max-width: 62ch; }

.wizard { background: var(--surface); padding: 0 0 96px; }
.wizard-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; box-shadow: 0 30px 70px -45px rgba(8,22,41,0.5);
}
.wiz-progress {
  display: flex; gap: 4px; padding: 18px 28px; border-bottom: 1px solid var(--line);
  align-items: center; background: var(--white);
}
.wiz-progress .step {
  flex: 1; display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.02em;
  color: var(--ink-soft); padding: 0; background: none; border: none;
}
.wiz-progress .step .dot {
  width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-weight: 600; font-size: 0.72rem;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
  transition: all .2s;
}
.wiz-progress .step.done .dot { background: var(--accent); border-color: var(--accent); color: #03201d; }
.wiz-progress .step.current .dot { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-strong); }
.wiz-progress .step.current { color: var(--ink); font-weight: 600; }
.wiz-progress .bar { flex: 0 0 22px; height: 1px; background: var(--line); }
.wiz-progress .step:last-child .bar { display: none; }

.wiz-body { padding: 36px 32px 32px; min-height: 380px; }
.wiz-step { display: none; }
.wiz-step.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wiz-step h3 { font-size: 1.45rem; letter-spacing: -0.015em; margin-bottom: 8px; }
.wiz-step .hint { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 26px; max-width: 56ch; }

.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option-grid.three { grid-template-columns: repeat(3, 1fr); }
.option {
  display: flex; align-items: center; gap: 12px; text-align: left;
  border: 1px solid var(--line); border-radius: 12px; padding: 15px 16px;
  background: var(--white); cursor: pointer; font-family: var(--font);
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.option:hover { border-color: #c9d2df; background: var(--surface); }
.option .box {
  width: 20px; height: 20px; border-radius: 6px; flex: 0 0 auto;
  border: 2px solid #c9d2df; display: grid; place-items: center; transition: all .15s;
}
.option .box svg { width: 12px; height: 12px; color: #eaf2f9; opacity: 0; }
.option.selected { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 3px rgba(20,184,166,0.12); }
.option.selected .box { background: var(--accent); border-color: var(--accent); }
.option.selected .box svg { opacity: 1; }
.option .swatch { width: 12px; height: 12px; border-radius: 4px; flex: 0 0 auto; }
.option .opt-meta { display: block; font-size: 0.78rem; color: var(--ink-soft); font-weight: 400; margin-top: 2px; }

.wiz-nav { display: flex; justify-content: space-between; gap: 12px; padding: 18px 32px; border-top: 1px solid var(--line); background: var(--white); }
.wiz-nav .spacer { flex: 1; }

/* Before/after diagram */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ba-panel {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--white);
}
.ba-panel .ba-head {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid var(--line); background: var(--surface);
}
.ba-panel .ba-head .tagdot { width: 9px; height: 9px; border-radius: 50%; }
.ba-panel.before .ba-head { color: var(--ink-soft); }
.ba-panel.after { border-color: rgba(56,189,248,0.4); }
.ba-panel.after .ba-head { color: #0c4a6e; background: var(--accent-soft); }
.ba-panel .ba-body { padding: 10px 8px 6px; }
.ba-panel .ba-note { padding: 10px 18px 16px; font-size: 0.84rem; color: var(--ink-soft); border-top: 1px solid var(--line); min-height: 58px; }
.diagram { width: 100%; height: auto; display: block; }
.diagram text { font-family: var(--font); }
.diagram .node-box { fill: var(--white); stroke: var(--line); stroke-width: 1.4; }
.diagram .node-label { font-size: 12px; font-weight: 600; fill: var(--ink); }
.diagram .node-sub { font-size: 9.5px; fill: var(--ink-soft); }
.diagram .flow { fill: none; stroke-width: 2.2; stroke-dasharray: 7 5; animation: dashmove 1.1s linear infinite; }
.diagram .flow.static { stroke-dasharray: none; animation: none; opacity: 0.85; }
@keyframes dashmove { to { stroke-dashoffset: -12; } }
.diagram .arrow-head { stroke-linecap: round; }

/* Result */
.result { display: none; }
.result.show { display: block; animation: fadeIn .4s ease; }
.result-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  background: var(--surface); margin-bottom: 20px;
}
.result-card .rc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.result-card .rc-head .badge {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-strong); background: var(--accent-soft); padding: 5px 11px; border-radius: 999px; font-weight: 600;
}
.result-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.result-card p { color: var(--ink-soft); font-size: 0.95rem; }
.change-list { list-style: none; display: grid; gap: 10px; }
.change-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; color: var(--ink-soft); }
.change-list li svg { width: 17px; height: 17px; color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.change-list li b { color: var(--ink); }

/* Forms */
.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font-family: var(--font); font-size: 0.95rem;
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20,184,166,0.12); }
.field .req { color: var(--danger); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }
.submit-msg { margin-top: 14px; font-weight: 600; display: none; }
.submit-msg.ok { display: block; color: var(--accent-strong); }
.submit-msg.err { display: block; color: var(--danger); }

/* ============ RESOURCES / GUIDE PAGES ============ */
.resource-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.resource-card {
  display: block; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  background: var(--white); transition: transform .15s, box-shadow .15s, border-color .15s;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -28px rgba(8,22,41,0.4); border-color: #d6dee9; }
.resource-card .vendor {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; font-weight: 600;
  color: var(--ink-soft); text-transform: uppercase; margin-bottom: 12px;
}
.resource-card .vendor .swatch { width: 11px; height: 11px; border-radius: 3px; }
.resource-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.resource-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 14px; }
.resource-card .more { color: var(--accent-strong); font-weight: 600; font-size: 0.88rem; }

.guide-hero { background: var(--navy); color: #eaf2f9; padding: 60px 0 44px; }
.guide-hero .kicker { color: var(--accent); }
.guide-hero h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: -0.02em; font-weight: 800; max-width: 24ch; }
.guide-hero .sub { color: #b6c4d6; margin-top: 16px; max-width: 64ch; font-size: 1.04rem; }
.guide-hero .vrow { display: flex; align-items: center; gap: 10px; margin-top: 26px; }
.guide-hero .vswatch { width: 14px; height: 14px; border-radius: 4px; }

.guide-body { padding: 64px 0 88px; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.own-panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.own-panel h3 { font-size: 1.02rem; margin-bottom: 12px; }
.own-panel ul { list-style: none; }
.own-panel li { display: flex; gap: 9px; padding: 8px 0; font-size: 0.93rem; color: var(--ink-soft); }
.own-panel li::before { content: "•"; color: var(--accent); flex: 0 0 auto; }
.own-panel.gsa { background: var(--accent-soft); border-color: rgba(56,189,248,0.35); }
.own-panel.gsa h3 { color: #0c4a6e; }
.own-panel.vendor h3 { color: var(--ink); }

.guide-step { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 14px; background: var(--white); }
.guide-step h4 { font-size: 1.02rem; margin-bottom: 8px; }
.guide-step h4 .sn { font-family: var(--mono); color: var(--accent-strong); font-weight: 600; margin-right: 8px; font-size: 0.86rem; }
.guide-step p { color: var(--ink-soft); font-size: 0.93rem; }
.callout {
  border-left: 3px solid var(--accent); background: var(--accent-soft);
  padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 22px 0; font-size: 0.93rem; color: var(--ink);
}
.callout b { color: var(--accent-strong); }
.src-link { font-family: var(--mono); font-size: 0.85rem; }
.src-link a { color: var(--accent-strong); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .why .grid { grid-template-columns: 1fr; }
  .problem .grid, .audience .grid { grid-template-columns: 1fr; }
  .resource-cards { grid-template-columns: 1fr 1fr; }
  .before-after, .guide-grid { grid-template-columns: 1fr; }
  .option-grid, .option-grid.three { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line); padding: 20px 24px; gap: 18px;
  }
  .wiz-progress .step .lbl { display: none; }
  .wiz-progress .bar { display: none; }
}
@media (max-width: 560px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .resource-cards { grid-template-columns: 1fr; }
  .hero-inner { padding: 64px 0 60px; }
  .page-hero { padding: 48px 0 28px; }
  section { padding: 60px 0; }
  .wiz-body { padding: 26px 20px 24px; }
  .wiz-nav { padding: 16px 20px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .diagram .flow { animation: none; }
}
