/* =============================================
   InjuryClaimNKY — styles.css
   Aesthetic: Refined legal editorial
   Fonts: Playfair Display (headings) + Source Sans 3 (body)
   ============================================= */

:root {
  --navy: #1a2744;
  --navy-mid: #243158;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --red-alert: #c0392b;
  --yellow-alert: #d4820a;
  --cream: #f9f6f0;
  --cream-mid: #f0ebe1;
  --white: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-light: #7a7a9a;
  --border: #ddd8cc;
  --border-light: #eeead8;
  --success: #1e6b4a;
  --shadow-sm: 0 1px 4px rgba(26,39,68,.08);
  --shadow-md: 0 4px 20px rgba(26,39,68,.12);
  --shadow-lg: 0 12px 48px rgba(26,39,68,.16);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --section-pad: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', Georgia, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
em { font-style: italic; color: var(--gold); }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--gold); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--cream); }
.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-county {
  display: inline-block;
  margin-top: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .18s;
}
.btn-county:hover { background: var(--gold-light); color: var(--navy); }
.btn-urgent {
  display: inline-block;
  background: var(--red-alert);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s;
}
.btn-urgent:hover { background: #a93226; color: var(--white); }
.btn-calc {
  width: 100%;
  margin-top: 8px;
  font-size: 1rem;
  padding: 14px;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { text-decoration: none; flex-shrink: 0; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-text span { color: var(--gold); }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  flex-wrap: wrap;
}
.main-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); }
.nav-cta { flex-shrink: 0; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3560 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.hero .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.hero .btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }
.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 28px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(201,168,76,.3);
  box-shadow: var(--shadow-lg);
}

/* ─── URGENCY BAR ─── */
.urgency-bar {
  background: #7b1414;
  padding: 16px 0;
  border-bottom: 2px solid #5a0e0e;
}
.urgency-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.urgency-icon { font-size: 1.4rem; flex-shrink: 0; }
.urgency-text {
  color: #fff;
  font-size: 0.93rem;
  line-height: 1.5;
  flex: 1;
}
.urgency-text strong { color: #ffcc66; }

/* ─── COUNTY GRID ─── */
.county-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.county-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  background: var(--white);
}
.county-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.county-card-header {
  padding: 24px 28px 20px;
  position: relative;
}
.county-card-header.boone { background: linear-gradient(135deg, #1a2744, #243158); }
.county-card-header.kenton { background: linear-gradient(135deg, #1e3a52, #265a7a); }
.county-card-header.campbell { background: linear-gradient(135deg, #2a1f3d, #3d2f5c); }
.county-card-header.hamilton { background: linear-gradient(135deg, #1a3322, #24512e); }
.county-card-header h3 { color: var(--white); font-size: 1.45rem; margin-bottom: 4px; }
.county-seat { color: rgba(255,255,255,.7); font-size: 0.82rem; letter-spacing: .02em; margin: 0; }
.county-state-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.county-state-badge.ohio { background: #c8102e; color: var(--white); }
.county-card-body { padding: 24px 28px 28px; }
.county-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 20px;
}
.county-info-item { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: 0.72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); }
.info-val { font-size: 0.88rem; color: var(--text-primary); font-weight: 500; }
.info-val a { color: var(--navy); }
.alert-red { color: var(--red-alert); font-weight: 700; }
.alert-yellow { color: var(--yellow-alert); font-weight: 700; }
.county-notes { background: var(--cream); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 4px; }
.county-notes h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; font-family: 'Source Sans 3', sans-serif; }
.county-notes ul { padding-left: 18px; }
.county-notes li { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 6px; }
.county-notes li:last-child { margin-bottom: 0; }

/* ─── CASE TYPES ─── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.case-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.case-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.case-card p { font-size: 0.9rem; color: var(--text-secondary); }
.case-detail {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── HOW IT WORKS ─── */
.steps-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.steps-list { list-style: none; }
.step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  width: 2px;
  bottom: 0;
  background: var(--border);
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-body p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.fee-sidebar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.fee-sidebar h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.fee-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.fee-table th { text-align: left; padding: 8px 0; color: rgba(255,255,255,.6); font-size: 0.75rem; letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.15); }
.fee-table td { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.fee-table tr:last-child td { border-bottom: none; }
.fee-note { font-size: 0.82rem; color: rgba(255,255,255,.65); margin-top: 14px; line-height: 1.55; }
.ky-oh-compare { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; }
.ky-oh-compare h4 { color: var(--gold); font-size: 0.85rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; font-family: 'Source Sans 3', sans-serif; }
.ky-oh-compare p { font-size: 0.83rem; color: rgba(255,255,255,.75); line-height: 1.55; }

/* ─── CALCULATOR ─── */
.calculator-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.calc-field { margin-bottom: 20px; }
.calc-field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.calc-field input, .calc-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  transition: border-color .15s;
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--navy); }
.calc-field small { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.calc-result { display: flex; align-items: flex-start; }
.result-placeholder { font-size: 0.95rem; color: var(--text-light); align-self: center; font-style: italic; }
.result-card { width: 100%; }
.result-card h4 { color: var(--navy); margin-bottom: 8px; }
.result-range {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--success);
  margin-bottom: 4px;
  line-height: 1.1;
}
.result-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
.result-breakdown { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-bottom: 14px; }
.result-breakdown td { padding: 7px 0; border-bottom: 1px solid var(--border-light); }
.result-breakdown td:last-child { text-align: right; font-weight: 600; }
.result-breakdown .fault-row td { color: var(--red-alert); }
.result-breakdown .net-row td { font-weight: 700; color: var(--success); font-size: 0.95rem; }
.result-disclaimer { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.result-blocked { background: #fff3f3; border: 1.5px solid #fbc4c4; border-radius: var(--radius-md); padding: 20px; }
.result-blocked h4 { color: var(--red-alert); margin-bottom: 8px; }
.result-blocked p { font-size: 0.88rem; color: var(--text-secondary); }
.calc-warn { color: var(--yellow-alert); font-size: 0.9rem; }

/* ─── CHECKLIST ─── */
.checklist-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.checklist-column h3 { font-size: 1.05rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-bottom: 1px solid var(--border-light);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 1rem;
  top: 7px;
}
.download-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.download-cta h3 { color: var(--white); margin-bottom: 8px; }
.download-cta p { color: rgba(255,255,255,.75); font-size: 0.9rem; margin: 0; flex: 1; }
.download-cta .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--navy); white-space: nowrap; flex-shrink: 0; }
.download-cta .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 0 20px 0;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-body p { margin-bottom: 0.75em; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong { color: var(--text-primary); }

/* ─── DISCLAIMER ─── */
.disclaimer-section {
  background: var(--cream-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.disclaimer-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
  font-family: 'Source Sans 3', sans-serif;
}
.disclaimer-section p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; max-width: 900px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { font-size: 1.3rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.55); margin-top: 12px; line-height: 1.6; }
.footer-nav h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: rgba(255,255,255,.65); font-size: 0.88rem; text-decoration: none; transition: color .15s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── COUNTY PAGE SPECIFICS (shared) ─── */
.county-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0 48px;
  border-bottom: 3px solid var(--gold);
}
.county-hero-inner { display: flex; flex-direction: column; gap: 8px; }
.county-hero .back-link { color: rgba(255,255,255,.6); font-size: 0.85rem; text-decoration: none; margin-bottom: 4px; display: inline-block; }
.county-hero .back-link:hover { color: var(--gold); }
.county-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.county-hero .county-hero-sub { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 700px; margin-top: 10px; }
.county-hero .sol-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,.25);
  border: 1px solid rgba(192,57,43,.5);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.88rem;
  color: #ff9999;
  margin-top: 16px;
}

/* Attorney listing cards */
.attorney-grid { display: flex; flex-direction: column; gap: 20px; }
.attorney-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.attorney-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.attorney-firm { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.attorney-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .02em;
}
.tag.primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.attorney-details { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }
.attorney-details strong { color: var(--text-primary); }
.attorney-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.attorney-phone { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); text-decoration: none; display: block; text-align: right; }
.attorney-phone:hover { color: var(--gold); }
.badge-free { font-size: 0.75rem; font-weight: 700; background: #e8f5ee; color: var(--success); border: 1px solid #b8dfc9; padding: 3px 10px; border-radius: 99px; }

/* County info box */
.county-info-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
}
.county-info-box h3 { color: var(--gold); margin-bottom: 16px; font-size: 1.05rem; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.info-row { display: flex; flex-direction: column; gap: 2px; }
.info-row .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.5); }
.info-row .val { font-size: 0.9rem; color: var(--white); font-weight: 500; }
.info-row .val a { color: var(--gold-light); }
.info-row .val.danger { color: #ff9999; }

/* Two-col county layout */
.county-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.county-sidebar { position: sticky; top: 100px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .county-layout { grid-template-columns: 1fr; }
  .county-sidebar { position: static; }
  .steps-layout { grid-template-columns: 1fr; }
  .fee-sidebar { position: static; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .county-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .calculator-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --section-pad: 56px; }
  .main-nav { display: none; }
  .case-grid { grid-template-columns: 1fr; }
  .checklist-layout { grid-template-columns: 1fr; }
  .download-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .county-info-row { grid-template-columns: 1fr; }
  .attorney-card { grid-template-columns: 1fr; }
  .attorney-cta { align-items: flex-start; }
  .attorney-phone { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .urgency-inner { flex-wrap: wrap; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .info-grid { grid-template-columns: 1fr; }
  .county-info-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .county-info-row { grid-template-columns: 1fr; }
}
