/* =============================================
   NKY WORKERS COMP GUIDE — styles.css
   Aesthetic: Industrial / Utilitarian
   Palette: Steel blue, safety orange, near-black, warm white
   Fonts: Barlow Condensed (headlines) + Barlow (body)
   ============================================= */

:root {
  --ky-blue: #1a3a6e;
  --ky-blue-light: #2a5298;
  --oh-red: #b91c1c;
  --oh-red-light: #dc2626;
  --safety-orange: #f97316;
  --safety-orange-dark: #ea580c;
  --steel-dark: #0f1923;
  --steel-mid: #1c2b3a;
  --steel-light: #2d3f52;
  --warm-white: #f5f2ed;
  --off-white: #ede9e3;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #767676;
  --border: #d4cfc8;
  --border-dark: #b5b0a8;
  --ky-bg: #eef3fc;
  --oh-bg: #fef2f2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 4px;
  --radius-md: 8px;
}

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

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

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }

.section-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--safety-orange-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
  background: var(--steel-dark);
  border-bottom: 3px solid var(--safety-orange);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-block img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  margin-left: auto;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  background: var(--steel-dark);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ky-blue-light), var(--safety-orange), var(--oh-red-light));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.state-badge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.state-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
}

.state-badge.ky {
  background: var(--ky-blue);
  color: #fff;
  border: 1px solid var(--ky-blue-light);
}

.state-badge.oh {
  background: var(--oh-red);
  color: #fff;
  border: 1px solid var(--oh-red-light);
}

.state-divider {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--safety-orange);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: 1rem;
  max-width: 700px;
}

.hero h1 em {
  font-style: normal;
  color: var(--safety-orange);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--safety-orange);
  color: #fff;
  border-color: var(--safety-orange);
}

.btn-primary:hover {
  background: var(--safety-orange-dark);
  border-color: var(--safety-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249,115,22,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  flex-wrap: wrap;
}

.hero-alert strong { color: var(--safety-orange); }
.alert-icon { font-size: 1rem; }

/* =============================================
   TWO-STATE COMPARISON
   ============================================= */

.two-state {
  background: #fff;
}

.two-state h2 { margin-bottom: 0.5rem; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.compare-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.ky-card { border-top: 4px solid var(--ky-blue); }
.oh-card { border-top: 4px solid var(--oh-red); }

.compare-header {
  padding: 1rem 1.25rem 0.75rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.compare-flag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.25rem;
}

.ky-card .compare-flag { color: var(--ky-blue); }
.oh-card .compare-flag { color: var(--oh-red); }

.compare-agency {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table tr { border-bottom: 1px solid var(--border); }
.compare-table tr:last-child { border-bottom: none; }

.compare-table th {
  text-align: left;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  width: 42%;
  font-family: 'Barlow', sans-serif;
  background: rgba(0,0,0,0.015);
  vertical-align: top;
}

.compare-table td {
  padding: 0.6rem 1.25rem;
  color: var(--text-primary);
  vertical-align: top;
}

.compare-table strong { color: var(--safety-orange-dark); }

.compare-link {
  display: block;
  text-align: center;
  padding: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  transition: background 0.15s;
}

.ky-card .compare-link { color: var(--ky-blue); }
.oh-card .compare-link { color: var(--oh-red); }
.compare-link:hover { background: var(--warm-white); text-decoration: underline; }

.crossborder-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.65;
}

.note-icon { font-size: 1.3rem; flex-shrink: 0; }

/* =============================================
   FILING STEPS
   ============================================= */

.filing {
  background: var(--warm-white);
}

.filing h2 { margin-bottom: 1.5rem; }

.filing-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}

.tab-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
}

.tab-btn.active {
  color: var(--steel-dark);
  border-bottom-color: var(--safety-orange);
}

.tab-btn:hover:not(.active) {
  color: var(--text-primary);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--safety-orange);
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--off-white);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
  align-self: flex-start;
  -webkit-text-stroke: 2px var(--border-dark);
  text-stroke: 2px var(--border-dark);
}

.step-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--steel-dark);
}

.step-body p { font-size: 0.92rem; line-height: 1.65; color: var(--text-secondary); }

.step-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ky-blue);
  text-decoration: underline;
}

#oh-steps .step-link { color: var(--oh-red); }

.step-body a { color: var(--ky-blue); text-decoration: underline; }
#oh-steps .step-body a { color: var(--oh-red); }

/* =============================================
   CALCULATOR
   ============================================= */

.calc-section {
  background: var(--steel-mid);
  color: #fff;
}

.calc-section h2 { color: #fff; }
.calc-section .section-label { color: var(--safety-orange); }
.calc-section .section-intro { color: rgba(255,255,255,0.7); }

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.calc-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.calc-field label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.calc-field input,
.calc-field select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.15s;
}

.calc-field input::placeholder { color: rgba(255,255,255,0.35); }

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--safety-orange);
}

.calc-field select option { background: var(--steel-mid); }

.calc-btn {
  align-self: flex-start;
  width: 100%;
}

.calc-result {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  font-style: italic;
}

.result-output {
  width: 100%;
}

.result-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--safety-orange);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.result-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.result-details {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

.result-details strong { color: rgba(255,255,255,0.85); }

.calc-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-style: italic;
}

/* =============================================
   OFFICES
   ============================================= */

.offices-section {
  background: #fff;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.office-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.office-state-tag {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  color: #fff;
}

.office-state-tag.ky { background: var(--ky-blue); }
.office-state-tag.oh { background: var(--oh-red); }

.office-card h3 {
  font-size: 1rem;
  padding: 1rem 1rem 0.5rem;
  line-height: 1.3;
}

.office-details {
  padding: 0.5rem 1rem 0.75rem;
  flex: 1;
}

.office-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.office-row:last-child { border-bottom: none; }
.office-icon { flex-shrink: 0; width: 16px; }

.office-note {
  margin: 0 1rem 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #fffbeb;
  border-radius: var(--radius);
  border-left: 3px solid #f59e0b;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.office-link {
  display: block;
  text-align: center;
  padding: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  color: var(--ky-blue);
  transition: background 0.15s;
}

.office-link:hover { background: var(--warm-white); text-decoration: underline; }

/* =============================================
   CHECKLIST
   ============================================= */

.checklist-section {
  background: var(--warm-white);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.checklist-state {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid currentColor;
}

.ky-text { color: var(--ky-blue); }
.oh-text { color: var(--oh-red); }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.check-box {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--border-dark);
}

.checklist strong { color: var(--text-primary); }

.download-btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.15s;
}

.download-btn:hover {
  background: var(--steel-dark);
  color: #fff;
  border-color: var(--steel-dark);
}

/* =============================================
   INJURY SECTION
   ============================================= */

.injury-section {
  background: #fff;
}

.injury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.injury-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--warm-white);
  transition: box-shadow 0.15s;
}

.injury-card:hover {
  box-shadow: var(--shadow-md);
}

.injury-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.injury-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.injury-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.injury-card strong { color: var(--text-primary); }

/* =============================================
   FAQ
   ============================================= */

.faq-section {
  background: var(--warm-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
  user-select: none;
}

.faq-item summary:hover { background: var(--off-white); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--safety-orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0.75rem 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-body strong { color: var(--text-primary); }
.faq-body a { color: var(--ky-blue); text-decoration: underline; }

/* =============================================
   COUNTY CTA
   ============================================= */

.county-cta-section {
  background: var(--steel-dark);
  color: #fff;
}

.county-cta-section h2 { color: #fff; margin-bottom: 2rem; }
.county-cta-section .section-label { color: var(--safety-orange); }

.county-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.county-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.15s;
  cursor: pointer;
}

.county-card:hover:not(.coming) {
  background: rgba(255,255,255,0.1);
  border-color: var(--safety-orange);
  transform: translateY(-2px);
}

.county-card.coming { opacity: 0.5; cursor: default; }

.county-state {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.county-state.ky { background: var(--ky-blue); color: #fff; }
.county-state.oh { background: var(--oh-red); color: #fff; }

.county-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.county-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.coming-tag {
  display: inline-block;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--safety-orange);
  margin-left: 0.25rem;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--steel-dark);
  border-top: 3px solid rgba(255,255,255,0.05);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-logo .logo-main { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; }
.footer-tagline { font-family: 'Roboto Mono', monospace; font-size: 0.65rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer-nav a:hover { color: #fff; }

.footer-disclaimer {
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-disclaimer strong { color: rgba(255,255,255,0.6); }

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
}

.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .office-grid { grid-template-columns: 1fr 1fr; }
  .injury-grid { grid-template-columns: 1fr 1fr; }
  .county-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--steel-dark); padding: 1rem; border-bottom: 2px solid var(--safety-orange); z-index: 200; }
  .nav-toggle { display: block; }

  .compare-grid { grid-template-columns: 1fr; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
  .injury-grid { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: 1fr 1fr; }

  .hero { padding: 3rem 0 2.5rem; }
  .hero-cta-row { flex-direction: column; }

  .step { flex-direction: column; gap: 0.75rem; }
  .step-num { width: auto; text-align: left; font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .county-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 0.75rem; }
  .logo-sub { display: none; }
}
