/* ============================================================
   JunkCarLaw.pages.dev — Stylesheet
   Aesthetic: Municipal utilitarian — like a DMV manual reimagined
   by a good designer. Authoritative, legible, no-nonsense.
   Font: Syne (headers) + IBM Plex Sans (body)
   Colors: Deep charcoal, safety orange, off-white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

:root {
  --charcoal:   #1a1c20;
  --charcoal2:  #2a2d33;
  --orange:     #e85c0d;
  --orange-lt:  #f57c42;
  --orange-bg:  #fff4ee;
  --off-white:  #f5f3ef;
  --mid-gray:   #8a8d94;
  --border:     #d8d5cf;
  --text:       #1a1c20;
  --text-light: #5c5f66;
  --green:      #1a7a4a;
  --red:        #c0392b;
  --yellow:     #f0b429;

  --sans: 'IBM Plex Sans', sans-serif;
  --display: 'Syne', sans-serif;

  --max-w: 1140px;
  --radius: 4px;
  --shadow: 0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
}

/* ── UTILITY ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: .35em; }

strong { font-weight: 600; }
em { font-style: italic; }

.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-light { color: var(--text-light); }

.tag {
  display: inline-block;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--orange);
  color: #fff;
}

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
  background: var(--charcoal);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.site-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.site-logo .logo-accent { color: var(--orange); }
.site-logo .logo-dot { display: inline-block; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; margin: 0 2px; }

.site-nav { display: flex; gap: 4px; }
.site-nav a {
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #b0b4bc;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.site-nav a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 6px 14px !important;
}
.nav-cta:hover { background: var(--orange-lt) !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: .2s;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  background: var(--charcoal2);
  padding: 8px 0;
  font-size: .78rem;
  color: var(--mid-gray);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li::after { content: '›'; margin-left: 6px; }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: #8a8d94; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li:last-child { color: #c8cad0; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(232,92,13,.08) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-label {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead {
  font-size: 1.15rem;
  color: #b8bbc4;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); text-decoration: none; color: #fff; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); text-decoration: none; color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; text-decoration: none; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }

/* ── SECTION SHELL ────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-alt { background: #fff; }
.section-dark { background: var(--charcoal); color: #fff; }

.section-header { margin-bottom: 40px; }
.section-header .overline {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-light); max-width: 560px; }

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .15s, box-shadow .15s;
}
.card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.card-link { text-decoration: none; display: block; color: inherit; }
.card-link:hover { text-decoration: none; }
.card-link:hover .card-title { color: var(--orange); }

.card-icon {
  width: 40px; height: 40px;
  background: var(--orange-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.card-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  transition: color .15s;
}
.card-desc { font-size: .9rem; color: var(--text-light); }

/* ── GRID LAYOUTS ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }

/* ── STATE GRID ───────────────────────────────────────────── */
.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
.state-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  transition: all .15s;
  gap: 8px;
}
.state-card:hover { border-color: var(--orange); background: var(--orange-bg); color: var(--orange); text-decoration: none; }
.state-card .state-arrow { color: var(--mid-gray); font-size: .8rem; }
.state-card:hover .state-arrow { color: var(--orange); }

/* ── INFO BOXES ───────────────────────────────────────────── */
.info-box {
  border-left: 4px solid var(--orange);
  background: var(--orange-bg);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.info-box.green { border-color: var(--green); background: #edfaf3; }
.info-box.red { border-color: var(--red); background: #fdf0ef; }
.info-box.yellow { border-color: var(--yellow); background: #fffbea; }
.info-box p { margin-bottom: .5em; }
.info-box p:last-child { margin-bottom: 0; }
.info-box strong { font-family: var(--display); }

/* ── STAT BOXES ───────────────────────────────────────────── */
.stat-row { display: flex; gap: 20px; margin: 32px 0; flex-wrap: wrap; }
.stat-box {
  flex: 1;
  min-width: 150px;
  background: var(--charcoal);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
}
.stat-number { font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--orange); }
.stat-label { font-size: .82rem; color: #8a8d94; margin-top: 4px; }

/* ── RULE TABLE ───────────────────────────────────────────── */
.rule-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: 24px 0; }
.rule-table th {
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 16px;
  background: var(--charcoal);
  color: #c8cad0;
  border-bottom: 2px solid var(--orange);
}
.rule-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.rule-table tr:nth-child(even) td { background: var(--off-white); }
.rule-table tr:hover td { background: var(--orange-bg); }
.rule-table .pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}
.pill-strict { background: #fdf0ef; color: var(--red); }
.pill-moderate { background: #fffbea; color: #854d0e; }
.pill-lenient { background: #edfaf3; color: var(--green); }

/* ── STEPS ────────────────────────────────────────────────── */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: .9rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-num::before { content: counter(step); }
.step-body h4 { margin-bottom: 6px; }
.step-body p { color: var(--text-light); font-size: .93rem; margin: 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: color .15s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon { flex-shrink: 0; font-size: 1.2rem; color: var(--orange); transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 16px; color: var(--text-light); font-size: .93rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── DISCLAIMER ───────────────────────────────────────────── */
.disclaimer {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .82rem;
  color: var(--text-light);
  margin: 32px 0 0;
  line-height: 1.6;
}
.disclaimer strong { color: var(--text); }

/* ── ARTICLE LAYOUT ───────────────────────────────────────── */
.article-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; padding-top: 40px; padding-bottom: 64px; }
.article-body h2 { margin: 2em 0 .6em; }
.article-body h3 { margin: 1.6em 0 .5em; }
.article-body p { margin-bottom: 1.1em; }
.article-body ul, .article-body ol { margin-bottom: 1.1em; }

.sidebar { position: sticky; top: 80px; }
.sidebar-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-box h4 { font-family: var(--display); margin-bottom: 12px; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); }
.sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.sidebar-box ul li { border-bottom: 1px solid var(--border); }
.sidebar-box ul li:last-child { border-bottom: none; }
.sidebar-box ul li a { display: block; padding: 8px 0; font-size: .88rem; color: var(--text); text-decoration: none; }
.sidebar-box ul li a:hover { color: var(--orange); }

/* ── TOOL ─────────────────────────────────────────────────── */
.tool-wrap {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 40px;
  margin: 40px 0;
}
.tool-wrap h2 { color: #fff; margin-bottom: 8px; }
.tool-wrap .tool-subtitle { color: #8a8d94; margin-bottom: 28px; }

.tool-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #c8cad0;
}
.form-group select, .form-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--charcoal2);
  border: 1px solid #3a3d45;
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--sans);
  font-size: .95rem;
  appearance: none;
  cursor: pointer;
  transition: border-color .15s;
}
.form-group select:focus, .form-group input:focus {
  outline: none;
  border-color: var(--orange);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tool-result {
  background: var(--charcoal2);
  border: 1px solid #3a3d45;
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
  display: none;
}
.tool-result.visible { display: block; }
.result-state-name { font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.result-situation { font-size: .85rem; color: var(--orange); font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .04em; }
.result-rule {
  background: rgba(232,92,13,.12);
  border-left: 3px solid var(--orange);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 16px;
}
.result-rule .rule-value { font-family: var(--display); font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.result-rule .rule-desc { font-size: .85rem; color: #b0b4bc; margin-top: 2px; }
.result-steps { margin: 0; padding: 0; list-style: none; }
.result-steps li {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid #3a3d45;
  font-size: .9rem; color: #c8cad0;
  align-items: flex-start;
}
.result-steps li:last-child { border-bottom: none; }
.result-steps .step-n {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--orange); color: #fff;
  border-radius: 50%; font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.result-link { display: block; margin-top: 16px; font-size: .88rem; color: var(--orange-lt); }

/* ── CONTACT STRIP ────────────────────────────────────────── */
.contact-strip {
  background: var(--orange);
  padding: 16px 0;
  text-align: center;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
}
.contact-strip a { color: #fff; text-decoration: underline; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: #8a8d94; padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .site-logo { margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #c8cad0;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .85rem; color: #8a8d94; text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2a2d33; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; }
.footer-bottom a { color: #8a8d94; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/*
  ANALYTICS — activate after deployment
  
  
  
  
*/

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .article-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--charcoal2); padding: 16px; gap: 4px; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 40px 0 36px; }
  .section { padding: 40px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tool-wrap { padding: 24px 20px; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── PAGE-SPECIFIC ────────────────────────────────────────── */
.page-header {
  background: var(--charcoal);
  padding: 40px 0;
  color: #fff;
}
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p { color: #8a8d94; max-width: 600px; }

.content-block { padding: 48px 0; }
.content-block + .content-block { border-top: 1px solid var(--border); }

.toc {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.toc h4 { font-family: var(--display); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc li { font-size: .88rem; margin-bottom: 6px; }
.toc a { color: var(--text); }
.toc a:hover { color: var(--orange); }

.highlight-box {
  background: var(--charcoal);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--radius);
  margin: 32px 0;
  border-left: 4px solid var(--orange);
}
.highlight-box h3 { color: #fff; margin-bottom: 8px; }
.highlight-box p { color: #b0b4bc; margin: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.checklist li.no::before { content: '✗'; color: var(--red); }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ── HERO EXTENDED ────────────────────────────────────────── */
.hero-text { margin-bottom: 32px; }
.hero-text h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.hero-text p { color: #b0b4bc; font-size: 1.1rem; max-width: 600px; margin-bottom: 24px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; border-top: 1px solid #3a3d45; padding-top: 28px; }
.hero-stat { text-align: center; }
.hs-num { display: block; font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hs-num small { font-size: 1rem; }
.hs-label { display: block; font-size: .75rem; color: #8a8d94; margin-top: 4px; line-height: 1.3; }

/* ── TOOL WIDGET (homepage inline) ────────────────────────── */
.tool-widget { background: var(--charcoal2); border: 1px solid #3a3d45; border-radius: 6px; padding: 28px; }
.tool-widget .form-row { margin-bottom: 20px; }
.tool-widget label { display: block; font-family: var(--display); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #8a8d94; margin-bottom: 8px; }
.tool-widget select { width: 100%; background: var(--charcoal); border: 1px solid #3a3d45; color: #fff; padding: 12px 14px; border-radius: 4px; font-family: var(--sans); font-size: .95rem; }
.tool-widget select:focus { outline: none; border-color: var(--orange); }
.result-situation { font-size: .82rem; color: #8a8d94; margin-bottom: 16px; }
.result-link { display: inline-block; color: var(--orange-lt); font-size: .88rem; margin-top: 16px; text-decoration: none; }
.result-link:hover { color: #fff; }

@media (max-width: 600px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-text h1 { font-size: 1.8rem; }
}
