/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --blue:       #1B54F8;  /* primary — FixMyNet own blue */
  --blue-dk:    #1340C4;  /* hover / active */
  --blue-lt:    #EEF2FF;  /* tinted background */
  --green:      #1A7A4A;  /* success */
  --green-lt:   #EDFAF3;
  --red:        #D92B2B;  /* error */
  --red-lt:     #FEF0F0;
  --amber:      #B45309;  /* warning */
  --amber-lt:   #FFFBEB;
  --grey-50:    #F8F9FA;  /* page background */
  --grey-100:   #F1F3F5;  /* surface secondary */
  --grey-200:   #E9ECEF;  /* borders light */
  --grey-400:   #ADB5BD;  /* placeholder / disabled */
  --grey-600:   #6C757D;  /* secondary text */
  --grey-800:   #343A40;  /* body text */
  --grey-900:   #1A1D20;  /* headings */
  --white:      #FFFFFF;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey-800);
  background: var(--grey-50);
  min-height: 100vh;
}

/* ── ACCESSIBILITY ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  .slide-in  { animation: none !important; opacity: 1 !important; transform: none !important; }
  .ld-flash  { animation: none !important; opacity: 1 !important; }
  .prog-seg  { transition: none !important; }
  .speed-bar-fill { transition: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── SKIP LINK ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus { top: 0; }

/* ── STICKY HEADER ────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { display: block; }
.logo-text { color: var(--grey-900); }
.logo-text span { color: var(--blue); }
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--grey-600);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.header-nav a:hover { color: var(--grey-900); background: var(--grey-100); }
.header-free-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-lt);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid #9fcfb5;
  letter-spacing: .02em;
}

/* ── PAGE LAYOUT ──────────────────────────────────────────── */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ── STEP PROGRESS BAR ────────────────────────────────────── */
.step-progress {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 28px;
  padding-top: 32px;
}
.prog-seg {
  height: 4px;
  flex: 1;
  border-radius: 99px;
  background: var(--grey-200);
  transition: background .25s;
}
.prog-seg.done { background: var(--green); }
.prog-seg.on   { background: var(--blue); }
.prog-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-600);
  white-space: nowrap;
  margin-left: 8px;
}

/* ── NAV ROW ──────────────────────────────────────────────── */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  min-height: 36px;
}
.nav-back, .nav-restart {
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--grey-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}
.nav-back:hover, .nav-restart:hover { color: var(--grey-900); }
.nav-back:focus-visible, .nav-restart:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ── QUESTION ─────────────────────────────────────────────── */
.question-text {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--grey-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.question-sub {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.question-sub b { color: var(--grey-900); font-weight: 600; }

/* ── CALLOUT BOX — single standard style for all help text ─── */
.callout {
  background: var(--blue-lt);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--grey-800);
  line-height: 1.6;
}
.callout b { color: var(--grey-900); font-weight: 600; }
.callout.green { background: var(--green-lt); border-left-color: var(--green); }
.callout.amber { background: var(--amber-lt); border-left-color: var(--amber); }

/* ── ADDRESS BAR HINT ─────────────────────────────────────── */
.addr-bar-hint {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.addr-bar-hint-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.addr-bar-mock {
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.addr-bar-dots { display: flex; gap: 4px; flex-shrink: 0; }
.addr-bar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-200); }
.addr-bar-field {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--blue);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-900);
  letter-spacing: .02em;
}
.addr-bar-note {
  font-size: 0.83rem;
  color: var(--grey-600);
  line-height: 1.5;
}
.addr-bar-note b { color: var(--grey-900); font-weight: 600; }

/* ── LIGHT GUIDE ──────────────────────────────────────────── */
.light-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.light-row { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--grey-700); }
.light-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ld-green { background: #16a34a; }
.ld-red   { background: #dc2626; }
.ld-amber { background: #d97706; }
.ld-off   { background: var(--grey-200); border: 1px solid var(--grey-400); }
@keyframes flash { 0%,100%{opacity:1} 50%{opacity:.25} }
.ld-flash { background: #16a34a; animation: flash .9s infinite; }

/* ── WAN DIAGRAM ──────────────────────────────────────────── */
.wan-diagram {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.wan-diagram-label { font-size: 0.83rem; color: var(--grey-600); margin-bottom: 12px; font-weight: 500; }
.wan-ports { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 10px; }
.port-wrap { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.port { width: 34px; height: 24px; border-radius: 4px; border: 2px solid var(--grey-900); display: flex; align-items: center; justify-content: center; }
.port-wan { background: var(--green); border-color: var(--green); width: 38px; height: 28px; }
.port-lan { background: var(--grey-100); }
.port-label { font-size: 0.67rem; font-weight: 600; text-align: center; line-height: 1.3; }
.port-label.wan-lbl { color: var(--green); }
.port-label.lan-lbl { color: var(--grey-400); }
.wan-tip {
  font-size: 0.83rem;
  color: var(--grey-700);
  background: var(--green-lt);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 8px 12px;
  line-height: 1.5;
}
.wan-tip b { color: var(--grey-900); }

/* ── DHCP HELPER ──────────────────────────────────────────── */
.dhcp-helper { margin-bottom: 20px; }
.dhcp-tabs { display: flex; gap: 4px; margin-bottom: 10px; flex-wrap: wrap; }
.dhcp-tab {
  padding: 6px 14px;
  font-size: 0.83rem;
  font-weight: 500;
  border: 1.5px solid var(--grey-200);
  border-radius: 99px;
  cursor: pointer;
  background: var(--white);
  color: var(--grey-600);
  font-family: inherit;
  transition: background .12s, border-color .12s, color .12s;
}
.dhcp-tab:hover { background: var(--grey-100); border-color: var(--grey-400); }
.dhcp-tab.on { background: var(--blue); color: #fff; border-color: var(--blue); }
.dhcp-tab:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.dhcp-panel { display: none; font-size: 0.9rem; color: var(--grey-700); line-height: 1.65; background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: var(--radius-md); padding: 12px 16px; }
.dhcp-panel.on { display: block; }
.dhcp-panel b { color: var(--grey-900); font-weight: 600; }

/* ── OPTION BUTTONS ───────────────────────────────────────── */
.options { display: flex; flex-direction: column; gap: 10px; }
.option-btn {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--grey-900);
  line-height: 1.4;
  min-height: 56px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, background .15s, box-shadow .15s, transform .1s;
}
.option-btn .arrow {
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-left: 14px;
  font-weight: 700;
  transition: transform .15s;
}
.option-btn:hover {
  border-color: var(--blue);
  background: var(--blue-lt);
  box-shadow: var(--shadow-md);
}
.option-btn:hover .arrow { transform: translateX(3px); }
.option-btn:active { transform: scale(.99); }
.option-btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-color: var(--blue);
  background: var(--blue-lt);
}

/* ── MODEM GUIDE ──────────────────────────────────────────── */
.modem-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.modem-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.modem-card .modem-meta { font-size: 0.85rem; color: var(--grey-600); line-height: 1.5; }
.modem-card-rec { border-color: var(--blue); border-width: 2px; }
.price-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-lt);
  padding: 2px 9px;
  border-radius: 99px;
  letter-spacing: .02em;
}

/* ── INLINE WIDGETS ───────────────────────────────────────── */

/* Outage / address lookup — direct link buttons */
.outage-link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  text-decoration: none;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: background .15s;
  cursor: pointer;
  min-height: 44px;
}
.outage-link-btn:hover { background: var(--blue-lt); }
.outage-link-btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.outage-link-arrow { font-size: 1.1rem; margin-left: 10px; flex-shrink: 0; }
.addr-divider { font-size: 0.83rem; color: var(--grey-400); margin: 4px 0 16px; text-align: center; }

/* Speed test — external links */
.speed-links { margin-bottom: 18px; }
.speed-links-label {
  font-size: 0.88rem;
  color: var(--grey-600);
  margin-bottom: 12px;
  line-height: 1.5;
}
.speed-link-btn {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-decoration: none;
  color: var(--grey-900);
  margin-bottom: 10px;
  transition: border-color .15s, background .15s;
  cursor: pointer;
  min-height: 44px;
}
.speed-link-btn:hover { border-color: var(--blue); background: var(--blue-lt); }
.speed-link-btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.speed-link-name { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 2px; }
.speed-link-desc { font-size: 0.82rem; color: var(--grey-600); }
.speed-links-note { font-size: 0.82rem; color: var(--grey-600); margin-top: 6px; font-style: italic; }

/* ── OUTCOME SCREENS ──────────────────────────────────────── */
.outcome-wrap { text-align: center; padding: 32px 0 16px; }
.outcome-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.outcome-icon-wrap.good { background: var(--green-lt); color: var(--green); }
.outcome-icon-wrap.warn { background: var(--amber-lt); color: var(--amber); }
.outcome-icon-wrap.info { background: var(--grey-100); color: var(--grey-600); }
.outcome-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.outcome-body {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 99px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pill-good { background: var(--green-lt); color: var(--green); border: 1px solid #9fcfb5; }
.pill-warn { background: var(--amber-lt); color: var(--amber); border: 1px solid #fcd34d; }
.pill-info { background: var(--blue-lt); color: var(--blue); border: 1px solid #a5b4fc; }

/* Steps completed */
.steps-done {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 20px auto;
  max-width: 520px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.steps-done-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.step-done-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-700);
  padding: 5px 0;
  border-bottom: 1px solid var(--grey-100);
}
.step-done-row:last-child { border-bottom: none; }
.step-tick {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

/* Feedback row */
.feedback-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.feedback-btn {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 11px 22px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--grey-800);
  min-height: 44px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, background .15s;
}
.feedback-btn:hover { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); }
.feedback-btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.feedback-btn.primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.feedback-btn.primary:hover { background: var(--blue-dk); border-color: var(--blue-dk); }
.outage-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  min-height: 44px;
  box-shadow: var(--shadow-sm);
  transition: background .15s;
}
.outage-link:hover { background: var(--blue-lt); }

/* ── ISP HANDOFF ──────────────────────────────────────────── */
.isp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.isp-chip {
  border: 1.5px solid var(--grey-200);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--grey-800);
  min-height: 44px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, background .15s, color .15s;
}
.isp-chip:hover { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); }
.isp-chip.selected { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--shadow-md); }
.isp-chip:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.isp-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-top: 14px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--blue);
}
.isp-card-name { font-size: 0.78rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.isp-phone { font-size: 2rem; font-weight: 700; color: var(--grey-900); letter-spacing: -0.03em; margin: 4px 0; line-height: 1.1; }
.isp-hours { font-size: 0.85rem; color: var(--grey-600); margin-bottom: 6px; }
.isp-chat a { font-size: 0.9rem; color: var(--blue); text-decoration: none; font-weight: 500; }
.isp-chat a:hover { text-decoration: underline; }
.script-box { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: var(--radius-sm); padding: 12px 14px; margin-top: 14px; }
.script-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-600); margin-bottom: 6px; }
.script-text { font-size: 0.9rem; color: var(--grey-800); line-height: 1.65; font-style: italic; }
.copy-row { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; align-items: center; }
.copy-btn {
  border: 1.5px solid var(--grey-200);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--grey-700);
  min-height: 38px;
  transition: border-color .15s, background .15s;
}
.copy-btn:hover { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); }
.copy-btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.copied-msg { font-size: 0.85rem; color: var(--green); font-weight: 500; display: none; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes slideIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.slide-in { animation: slideIn .2s ease both; }

/* ── AD SLOT ──────────────────────────────────────────────── */
@media (min-width: 860px) {
  .page-inner { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start; }
  .ad-slot {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.83rem;
    color: var(--grey-400);
    text-align: center;
    padding: 20px;
    position: sticky;
    top: 80px;
    box-shadow: var(--shadow-sm);
  }
}
@media (max-width: 859px) { .ad-slot { display: none; } }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--grey-200);
  padding: 24px 20px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--grey-600);
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer a { color: var(--grey-600); text-decoration: none; }
.site-footer a:hover { color: var(--grey-900); text-decoration: underline; }

/* ── STATIC PAGES (privacy, about) ──────────────────────── */
.static-page {
  max-width: 680px;
  padding: 40px 0 60px;
}
.static-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.static-page h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-900);
  margin: 28px 0 8px;
}
.static-page p {
  font-size: 1rem;
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 12px;
}
.static-page a { color: var(--blue); }
.static-page a:hover { text-decoration: underline; }

/* ── LANDING PAGE STYLES ─────────────────────────────────────── */
/* Append these to the bottom of tool.css                         */

/* Single-column override for landing pages */
.lp-page {
  display: block !important;
  max-width: 680px;
  margin: 0 auto;
}

.lp-page .ad-slot {
  display: none;
}

.lp-hero {
  padding: 32px 0 8px;
}

.lp-h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--grey-900);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.lp-lead {
  font-size: 1.05rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 640px;
}

.lp-faqs {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}

.lp-faqs-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-900);
  margin: 0 0 20px;
}

.lp-faq {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-200);
}

.lp-faq:last-child {
  border-bottom: none;
}

.lp-faq h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-900);
  margin: 0 0 6px;
}

.lp-faq p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin: 0;
}
