/* ================================================================
   PCBReview.io — V3 Stylesheet
   Direction: High-end engineering SaaS (Linear / Vercel / Oxide)
   Theme: Pure white + near-black + electric blue accent
   Fonts: Instrument Serif (display) + Geist Sans (body) + Geist Mono
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600&display=swap');

/* ── Geist Mono via CDN ── */
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Surface */
  --white:       #FFFFFF;
  --off-white:   #F9F9F8;
  --surface-1:   #F4F4F2;
  --surface-2:   #EBEBEA;

  /* Ink */
  --ink-1:       #0D0D0D;
  --ink-2:       #3D3D3D;
  --ink-3:       #717171;
  --ink-4:       #A0A0A0;

  /* Borders */
  --line:        #E4E4E2;
  --line-2:      #CFCFCD;

  /* Accent — electric blue */
  --blue:        #0057FF;
  --blue-dim:    #0044CC;
  --blue-tint:   rgba(0, 87, 255, 0.06);
  --blue-border: rgba(0, 87, 255, 0.2);

  /* Semantic */
  --green:       #16A34A;
  --green-tint:  #F0FDF4;
  --amber:       #B45309;
  --amber-tint:  #FFFBEB;
  --red:         #DC2626;
  --red-tint:    #FEF2F2;

  /* Typography */
  --serif:  'Instrument Serif', 'Georgia', serif;
  --sans:   'Geist', 'Helvetica Neue', sans-serif;
  --mono:   'Geist Mono', 'Courier New', monospace;

  /* Layout */
  --max-w: 1100px;
  --nav-h: 60px;

  /* Radius */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 10px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-hover: 0 2px 4px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.07);

  /* Transitions */
  --ease: 0.18s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink-1);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
p { color: var(--ink-2); line-height: 1.7; }
p + p { margin-top: 0.9rem; }

/* ── Typography scale ─────────────────────────────────────────── */

/* Display — Instrument Serif italic for the hero headline only */
.t-display {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}
.t-display em {
  font-style: italic;
  color: var(--ink-3);
}

/* Section headings */
.t-h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}
.t-h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-1);
  line-height: 1.3;
}

/* Eyebrow labels */
.t-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Body sizes */
.t-body-lg { font-size: 1.05rem; line-height: 1.7; color: var(--ink-2); }
.t-body     { font-size: 0.9375rem; line-height: 1.7; color: var(--ink-2); }
.t-body-sm  { font-size: 0.8125rem; line-height: 1.65; color: var(--ink-3); }
.t-mono     { font-family: var(--mono); font-size: 0.8rem; }

/* ── Layout helpers ───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.s-xl  { padding-top: 112px; padding-bottom: 112px; }
.s-lg  { padding-top: 88px;  padding-bottom: 88px;  }
.s-md  { padding-top: 64px;  padding-bottom: 64px;  }
.s-sm  { padding-top: 48px;  padding-bottom: 48px;  }

.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.col-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.col-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── Divider ──────────────────────────────────────────────────── */
.hr { height: 1px; background: var(--line); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--ink-1);
  color: var(--white);
}
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dim); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink-3); color: var(--ink-1); }

.btn-lg { padding: 0.75rem 1.6rem; font-size: 0.9375rem; }

/* ── Tags / Badges ────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.tag-blue  { background: var(--blue-tint);  color: var(--blue);  border: 1px solid var(--blue-border); }
.tag-green { background: var(--green-tint); color: var(--green); border: 1px solid rgba(22,163,74,0.2); }
.tag-amber { background: var(--amber-tint); color: var(--amber); border: 1px solid rgba(180,83,9,0.2); }
.tag-red   { background: var(--red-tint);   color: var(--red);   border: 1px solid rgba(220,38,38,0.2); }
.tag-grey  { background: var(--surface-1);  color: var(--ink-3); border: 1px solid var(--line); }

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.card:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow-hover);
}
.card-flat {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}

/* ── NAV ──────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
#nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--mono);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.nav-logo .logo-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 0.8125rem;
  color: var(--ink-3);
  font-weight: 400;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink-1);
  background: var(--surface-1);
}
.nav-right { display: flex; align-items: center; gap: 8px; }

/* Hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-ham span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink-1);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 28px 1.5rem;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.9375rem; color: var(--ink-2); }

/* ── PAGE HEADER (inner pages) ─────────────────────────────────── */
.page-hdr {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.page-hdr .t-label { margin-bottom: 12px; }
.page-hdr .t-h2   { margin-bottom: 14px; }
.page-hdr .sub    { max-width: 580px; font-size: 1.05rem; color: var(--ink-3); }

/* Breadcrumb */
.breadcrumb {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--ink-4); }
.breadcrumb a:hover { color: var(--ink-2); }
.breadcrumb .sep { color: var(--line-2); }

/* ── CODE BLOCKS (review report style) ─────────────────────────── */
.code-block {
  background: var(--ink-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.775rem;
  line-height: 1.9;
}
.code-block-bar {
  background: #1A1A1A;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cb-dot { width: 9px; height: 9px; border-radius: 50%; }
.cb-dot.r  { background: #FF5F57; }
.cb-dot.y  { background: #FEBC2E; }
.cb-dot.g  { background: #28C840; }
.cb-title  { font-size: 0.67rem; color: rgba(255,255,255,0.25); margin: 0 auto; }
.code-block-body { padding: 18px 20px; }
.cl      { color: rgba(255,255,255,0.2); }
.cl .ok  { color: #4ADE80; }
.cl .wn  { color: #FBBF24; }
.cl .er  { color: #F87171; }
.cl .cm  { color: rgba(255,255,255,0.2); font-style: italic; }
.cl .ky  { color: #93C5FD; }

/* ── CHECKLIST ──────────────────────────────────────────────────── */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── PRICING ────────────────────────────────────────────────────── */
.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pricing-col {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-col.featured { background: var(--ink-1); }
.pricing-col.featured * { color: rgba(255,255,255,0.7) !important; }
.pricing-col.featured .p-name,
.pricing-col.featured h3,
.pricing-col.featured .p-cta { color: #fff !important; }
.pricing-col.featured .p-divider { background: rgba(255,255,255,0.08) !important; }
.pricing-col.featured .p-row { border-bottom-color: rgba(255,255,255,0.06) !important; }
.pricing-col.featured .btn-ghost {
  border-color: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}
.pricing-col.featured .btn-ghost:hover {
  border-color: rgba(255,255,255,0.5) !important;
}
.p-name {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  margin-bottom: 10px;
}
.pricing-col h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink-1);
  margin-bottom: 8px;
}
.p-desc {
  font-size: 0.84rem;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.p-divider { height: 1px; background: var(--line); margin-bottom: 1.25rem; }
.p-rows { flex: 1; margin-bottom: 1.5rem; }
.p-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ink-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.p-row:last-child { border-bottom: none; }
.p-row::before { content: '✓'; color: var(--green); font-size: 0.72rem; flex-shrink: 0; margin-top: 2px; }
.p-row.na { opacity: 0.3; }
.p-row.na::before { content: '—'; color: var(--ink-4); }

/* ── PROCESS STEPS ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step-item {
  padding: 2rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.step-item:last-child { border-right: none; }
.step-num {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: block;
}
.step-item h3 { margin-bottom: 8px; font-size: 0.9375rem; }
.step-item p  { font-size: 0.84rem; }
.step-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 12px; }

/* ── STAT ROW ───────────────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-cell {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ink-1);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.67rem;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CTA BANNER ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--ink-1);
  border-radius: var(--r-lg);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band .t-h2  { color: #fff; }
.cta-band p      { color: rgba(255,255,255,0.5); margin-top: 8px; }
.cta-band-btns   { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 1rem;
}
.faq-q span.q-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-1);
}
.faq-toggle {
  width: 22px; height: 22px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all var(--ease);
}
.faq-item.open .faq-toggle {
  background: var(--ink-1);
  border-color: var(--ink-1);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.7;
  max-width: 680px;
}
.faq-item.open .faq-a { display: block; }

/* ── FINDING CARDS ──────────────────────────────────────────────── */
.finding-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--ease);
}
.finding-card:hover { box-shadow: var(--shadow-hover); }
.finding-head {
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.finding-body { padding: 1.25rem 1.5rem; }
.finding-body p { font-size: 0.875rem; color: var(--ink-3); margin-bottom: 12px; }
.finding-fix {
  background: var(--off-white);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 0.73rem;
  color: var(--ink-3);
  line-height: 1.5;
}
.finding-fix strong { color: var(--green); font-style: normal; }

/* ── CONTACT FORM ───────────────────────────────────────────────── */
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 9px 12px;
  color: var(--ink-1);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-4); }
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#formSuccess { display: none; text-align: center; padding: 2.5rem 0; }
.success-check {
  width: 48px; height: 48px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
#footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
  background: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 10px; }
.footer-brand p { font-size: 0.83rem; color: var(--ink-4); max-width: 240px; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  margin-bottom: 12px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { font-size: 0.84rem; color: var(--ink-3); transition: color var(--ease); }
.footer-col a:hover { color: var(--ink-1); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-family: var(--mono);
  font-size: 0.67rem;
  color: var(--ink-4);
  margin: 0;
}

/* ── INLINE LINK ────────────────────────────────────────────────── */
.link { color: var(--blue); transition: opacity var(--ease); }
.link:hover { opacity: 0.75; }

/* ── SECTION SEPARATOR LINE ─────────────────────────────────────── */
.section-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.section-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-wrap { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-col { border-bottom: 1px solid var(--line); }
  .pricing-col:last-child { border-bottom: none; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--line); }
  .stat-cell:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; padding: 2.25rem 2rem; }
  .cta-band-btns { width: 100%; }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .s-xl { padding-top: 52px; padding-bottom: 52px; }
  .s-lg { padding-top: 44px; padding-bottom: 44px; }
  .s-md { padding-top: 32px; padding-bottom: 32px; }
  .col-2, .col-3, .col-4 { grid-template-columns: 1fr; }
  /* Hero two-col grid */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:3fr 2fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 3fr 2fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 2fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 2fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:2fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 2fr 1fr"] { grid-template-columns: 1fr !important; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid var(--line); }
  .step-item:last-child { border-bottom: none; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-ham { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .finding-head { flex-wrap: wrap; gap: 6px; }
  .page-hdr { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 36px; }
  /* Hero trust row: 2 cols */
  .container > div > div[style*="display:flex;align-items:center;gap:32px"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  /* Hide the dividers in trust row on mobile */
  .container > div > div[style*="display:flex;align-items:center;gap:32px"] > div[style*="width:1px"] {
    display: none !important;
  }
  .t-display { font-size: clamp(1.8rem, 7.5vw, 2.8rem); }
  .t-h2 { font-size: clamp(1.35rem, 5vw, 1.9rem); }
  .cta-band { padding: 1.75rem; gap: 1.25rem; }
  .cta-band-btns { flex-direction: column; }
  .cta-band-btns .btn { justify-content: center; width: 100%; }
  .section-line { margin-bottom: 24px; }
  .container { padding: 0 18px; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .t-display { font-size: 1.75rem; }
  .pricing-wrap { max-width: 100%; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.8rem; }
  .stat-cell { padding: 1.25rem 0.75rem; }
  .btn-lg { padding: 0.65rem 1.25rem; font-size: 0.875rem; }
  .tag { font-size: 0.63rem; padding: 2px 6px; }
  /* Who-it's-for chips: stack on 2 per row */
  [style*="display:flex;flex-wrap:wrap;gap:8px;margin-bottom:40px"] > span {
    flex: 1 1 calc(50% - 4px);
    min-width: 130px;
  }
}

