/* DivorceGuideNKY — Editorial Legal Authority
   Palette: Deep Navy #0f1b2d, Teal Accent #1a7a6e, Warm White #f5f0e8, 
   Text #2a2a2a, Gold accent #c49a2a
   Fonts: Playfair Display (headings) + Source Serif 4 (body)
*/

:root {
  --navy: #0f1b2d;
  --navy-mid: #1a2e45;
  --teal: #1a7a6e;
  --teal-light: #22a090;
  --teal-pale: #e6f4f2;
  --gold: #c49a2a;
  --gold-light: #f0e4b0;
  --cream: #f5f0e8;
  --warm-white: #fdfbf7;
  --text: #2a2a2a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e2ddd4;
  --ky-blue: #003f87;
  --oh-red: #bb2020;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 8px rgba(15,27,45,0.08);
  --shadow-md: 0 4px 20px rgba(15,27,45,0.12);
  --shadow-lg: 0 8px 40px rgba(15,27,45,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 700; }

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

address { font-style: normal; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--teal);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 36px; width: auto; display: none; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--teal-light); }

.main-nav {
  display: flex;
  gap: 4px;
}
.main-nav a {
  color: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-family: 'Source Serif 4', serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.15s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: clamp(420px, 60vh, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,18,30,0.92) 0%,
    rgba(15,27,45,0.75) 55%,
    rgba(26,122,110,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 720px;
}
.hero-label {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.hero-meta .separator { opacity: 0.4; }
.verified-badge { color: #6ee7b7; font-weight: 600; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.btn-secondary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-mid); color: #fff; text-decoration: none; }
.btn-sm { padding: 7px 16px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── STATE STRIP ── */
.state-strip {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.state-toggle {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.state-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 14px 24px;
}
.state-card strong { display: block; color: #fff; font-size: 1.1rem; }
.state-card span { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.state-flag { font-size: 1.5rem; }
.state-vs { color: rgba(255,255,255,0.4); font-size: 1.1rem; font-style: italic; }
.state-note {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto;
}
.state-note em { color: var(--gold-light); font-style: normal; font-weight: 600; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section:nth-child(even) { background: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── COUNTY GRID ── */
.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.county-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.county-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.county-card.featured {
  border-color: var(--teal);
  border-width: 2px;
}
.county-card-header {
  background: var(--navy);
  padding: 20px 22px 16px;
  position: relative;
}
.county-card-header h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.county-card-header h3 a { color: #fff; }
.county-card-header h3 a:hover { color: var(--teal-light); }
.county-seat { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.county-state-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 999px;
}
.ky-badge { background: var(--ky-blue); color: #fff; }
.oh-badge { background: var(--oh-red); color: #fff; }

.county-card-body { padding: 20px 22px; flex: 1; }
.office-block { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.office-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 8px; }
.office-block address { font-size: 0.9rem; color: var(--text); line-height: 1.5; margin-bottom: 8px; }
.office-phone { margin-bottom: 8px; }
.office-phone a { color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.office-hours { font-size: 0.85rem; color: var(--text-muted); }
.hours-note { display: block; color: var(--text-light); font-size: 0.8rem; margin-top: 2px; }

.county-details { display: flex; flex-direction: column; gap: 8px; }
.detail-row { display: flex; justify-content: space-between; align-items: start; gap: 12px; font-size: 0.875rem; }
.detail-label { color: var(--text-muted); flex-shrink: 0; }
.detail-value { font-weight: 600; text-align: right; }

.ohio-alert {
  margin-top: 16px;
  background: #fff5f5;
  border-left: 4px solid var(--oh-red);
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.ohio-alert em { font-style: normal; font-weight: 700; }

.county-card-link {
  display: block;
  background: var(--teal-pale);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 14px 22px;
  text-decoration: none;
  border-top: 1px solid #cce8e4;
  transition: background 0.15s;
}
.county-card-link:hover { background: var(--teal); color: #fff; text-decoration: none; }

.ohio-card .county-card-link { background: #fff0f0; color: var(--oh-red); border-color: #f5c6c6; }
.ohio-card .county-card-link:hover { background: var(--oh-red); color: #fff; }

/* ── LEGAL AID BOX ── */
.aid-box {
  display: flex;
  gap: 20px;
  align-items: start;
  background: var(--gold-light);
  border: 1px solid #d4b86a;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.aid-icon { font-size: 2rem; flex-shrink: 0; }
.aid-content { font-size: 0.95rem; line-height: 1.7; }
.aid-content strong { display: block; margin-bottom: 6px; font-size: 1rem; }

/* ── PROCESS SECTION ── */
.process-section { background: var(--warm-white); }
.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 20px;
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.tab-btn:hover { color: var(--teal); }
.tab-content.hidden { display: none; }

.process-steps { list-style: none; display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.35;
  flex-shrink: 0;
  width: 52px;
  line-height: 1;
  padding-top: 4px;
}
.step-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-body p { color: var(--text); margin-bottom: 10px; }
.step-body ul { padding-left: 20px; margin-bottom: 10px; color: var(--text); }
.step-body ul li { margin-bottom: 4px; }
.form-list { columns: 2; }
@media (max-width: 540px) { .form-list { columns: 1; } }
.step-tip {
  background: var(--teal-pale);
  border-left: 3px solid var(--teal);
  padding: 10px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* TIMELINE */
.timeline-bar {
  margin-top: 40px;
  padding: 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.timeline-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.timeline-track {
  display: flex;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
}
.tl-item {
  background: var(--teal);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tl-item:nth-child(2) { background: #156b61; }
.tl-item:nth-child(3) { background: var(--navy-mid); }
.tl-item:nth-child(4) { background: var(--gold); }
.tl-item span { font-size: 0.8rem; font-weight: 700; color: #fff; }
.tl-item small { font-size: 0.7rem; color: rgba(255,255,255,0.65); }

/* OHIO TRACKS */
.ohio-vs-box { margin-bottom: 40px; }
.ohio-vs-box h3 { margin-bottom: 20px; }
.ohio-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .ohio-tracks { grid-template-columns: 1fr; } }
.track-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.track-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.track-who { font-size: 0.85rem; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.track-card ul { padding-left: 18px; font-size: 0.9rem; margin-bottom: 14px; }
.track-card ul li { margin-bottom: 6px; }
.track-tip { background: var(--cream); font-size: 0.83rem; padding: 10px 12px; border-radius: var(--radius); color: var(--text-muted); }

/* ── FORMS SECTION ── */
.forms-section { background: var(--cream); }
.fee-table-wrap { overflow-x: auto; margin-bottom: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
}
.fee-table thead { background: var(--navy); }
.fee-table th {
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}
.fee-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr:hover td { background: var(--teal-pale); }
.fee-table .ohio-row td { background: #fff8f8; }
.fee-table .ohio-row:hover td { background: #ffecec; }
.badge-ky, .badge-oh {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.badge-ky { background: var(--ky-blue); color: #fff; }
.badge-oh { background: var(--oh-red); color: #fff; }

.forms-download h3 { font-size: 1.2rem; margin-bottom: 18px; }
.form-links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.form-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-decoration: none;
  transition: all 0.15s;
  box-shadow: var(--shadow);
}
.form-link-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.form-link-card strong { display: block; color: var(--navy); margin-bottom: 3px; }
.form-link-card span { font-size: 0.85rem; color: var(--text-muted); }
.flc-icon { font-size: 1.6rem; flex-shrink: 0; }

/* CHECKLIST */
.checklist-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.checklist-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  padding: 18px 24px;
}
.checklist-icon { font-size: 1.5rem; }
.checklist-header strong { color: #fff; flex: 1; display: block; }
.checklist-header span { color: rgba(255,255,255,0.6); font-size: 0.85rem; display: block; }
.checklist-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) { .checklist-items { grid-template-columns: 1fr; } }
.cl-col { padding: 22px 24px; border-right: 1px solid var(--border); }
.cl-col:last-child { border-right: none; }
.cl-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 12px; }
.cl-col ul { list-style: none; padding: 0; }
.cl-col ul li {
  font-size: 0.875rem;
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.cl-col ul li:last-child { border-bottom: none; }
.cl-col ul li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ── CALCULATOR ── */
.calculator-section { background: var(--warm-white); }
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) { .calc-wrapper { grid-template-columns: 1fr; } }
.calc-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calc-group { display: flex; flex-direction: column; gap: 6px; }
.calc-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-group select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a7a6e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color 0.15s;
}
.calc-group select:focus { outline: none; border-color: var(--teal); }

.calc-result {
  background: var(--navy);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-placeholder {
  color: rgba(255,255,255,0.35);
  font-style: italic;
  text-align: center;
  padding: 40px 24px;
}
.calc-result-inner { width: 100%; padding: 28px; }
.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.calc-total-row.subtotal { border-bottom: 2px solid var(--teal); padding-bottom: 16px; margin-bottom: 16px; }
.calc-total-row.grand { font-size: 1.1rem; font-weight: 700; color: #fff; border: none; }
.calc-total-row.grand .calc-amount { color: var(--gold); font-size: 1.4rem; font-family: 'Playfair Display', serif; }
.calc-amount { font-weight: 600; color: #fff; }
.calc-note-text {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin-top: 20px;
  line-height: 1.5;
}
.calc-disclaimer {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── FAQ ── */
.faq-section { background: var(--cream); }
.faq-grid { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: #fff; border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-q:hover { background: var(--teal-pale); }
.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-a.open { display: block; }

/* ── DISCLAIMER ── */
.disclaimer-section { background: #fff3cd; border-top: 1px solid #f0d070; padding: 28px 0; }
.disclaimer-box { font-size: 0.85rem; color: #5a4a00; line-height: 1.65; }
.disclaimer-box strong { color: #3a3000; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand .logo-text { font-size: 1.4rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav strong { color: rgba(255,255,255,0.9); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.15s; }
.footer-nav a:hover { color: var(--teal-light); text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 99;
  }
  .main-nav.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .hero-content { max-width: 100%; }
  .county-grid { grid-template-columns: 1fr; }
  .form-list { columns: 1; }
  .timeline-track { flex-direction: column; }
  .tl-item { width: 100% !important; flex-direction: row; align-items: center; justify-content: space-between; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .checklist-items { grid-template-columns: 1fr; }
  .cl-col { border-right: none; border-bottom: 1px solid var(--border); }
  .cl-col:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .aid-box { flex-direction: column; }
  .state-toggle { flex-direction: column; align-items: stretch; }
  .state-vs { text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  h1 { font-size: 1.9rem; }
  .hero-cta-row { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .process-step { flex-direction: column; gap: 10px; }
  .step-number { font-size: 1.4rem; width: auto; }
}
