/* ============================================================
   PrenuptialAgreementForm.com — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;600;700&family=Courier+Prime:wght@400;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; font-weight: 400; color: #1a1a1a; background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: #1e4d3a; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5 { font-family: 'Libre Baskerville', serif; font-weight: 700; line-height: 1.25; color: #1a1a1a; }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 860px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: #1e4d3a !important;
  color: #d4edda !important;
  text-align: center;
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #fff !important;
  border-bottom: 2px solid #1e4d3a !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.65rem 1.5rem !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

.site-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: #1e4d3a !important;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: #fff !important;
  margin-right: 0.5rem;
}
.logo-text { font-family: 'Libre Baskerville', serif; font-size: 1rem; font-weight: 700; color: #1e4d3a !important; line-height: 1.2; }
.logo-text small { display: block; font-family: 'Lato', sans-serif; font-size: 0.6rem; font-weight: 700; color: #6b7280; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================
   MAIN NAV
   ============================================================ */
.main-nav { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
.main-nav a { font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; color: #374151; text-decoration: none; padding: 0.4rem 0.7rem; border-radius: 4px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.main-nav a:hover { background: #f0faf5; color: #1e4d3a; text-decoration: none; }

/* ============================================================
   NAV DROPDOWN — hidden until hover
   ============================================================ */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-btn { font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; color: #374151; background: none; border: none; padding: 0.4rem 0.7rem; border-radius: 4px; cursor: pointer; transition: background 0.15s; }
.nav-dropdown-btn:hover { background: #f0faf5; color: #1e4d3a; }

.nav-dropdown-content,
.nav-dropdown-menu {
  display: none !important;
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 220px; z-index: 200; padding: 0.5rem 0;
  max-height: 400px; overflow-y: auto;
}
.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:hover .nav-dropdown-menu { display: block !important; }
.nav-dropdown-content a,
.nav-dropdown-menu a { display: block !important; padding: 0.4rem 1rem; font-size: 0.82rem; color: #374151; white-space: nowrap; text-decoration: none; }
.nav-dropdown-content a:hover,
.nav-dropdown-menu a:hover { background: #f0faf5; color: #1e4d3a; }

/* ============================================================
   MOBILE MENU — hidden until toggled
   ============================================================ */
.mobile-menu-btn { display: none !important; background: none; border: 1px solid #d1d5db; border-radius: 4px; padding: 0.4rem 0.6rem; cursor: pointer; font-size: 1.1rem; color: #374151; align-items: center; justify-content: center; }
.mobile-nav { display: none !important; flex-direction: column; background: #fff; border-bottom: 2px solid #e5e7eb; padding: 0.75rem 1.5rem; gap: 0.1rem; }
.mobile-nav.open { display: flex !important; }
.mobile-nav a { font-size: 0.9rem; font-weight: 600; color: #374151; padding: 0.45rem 0; border-bottom: 1px solid #f3f4f6; text-decoration: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background-color: #1e4d3a !important;
  background-image: none !important;
  color: #fff !important;
  padding: 4rem 1.5rem 3.5rem;
  overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,77,58,0.92) 0%, rgba(10,40,28,0.85) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-title { font-family: 'Libre Baskerville', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: #fff !important; line-height: 1.15; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.6; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: #163a2b !important; padding: 1.25rem 1.5rem; }
.stats-grid { display: flex; gap: 2rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; justify-content: center; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Libre Baskerville', serif; font-size: 1.6rem; font-weight: 700; color: #e8a020 !important; display: block; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ============================================================
   INFO STRIP
   ============================================================ */
.info-strip { background: #fff; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; padding: 1.75rem 1.5rem; }
.info-strip-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
.info-strip-item { padding: 1rem 1.25rem; border-left: 3px solid #1e4d3a !important; background: #f8fdf9 !important; }
.info-strip-item strong { display: block; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #1e4d3a !important; margin-bottom: 0.25rem; }
.info-strip-item p { font-size: 0.88rem; color: #374151; margin: 0; line-height: 1.4; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary { display: inline-block; background: #e8a020 !important; color: #1a1a1a !important; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: background 0.15s; border: none; cursor: pointer; }
.btn-primary:hover { background: #d4911a !important; text-decoration: none; color: #1a1a1a !important; }
.btn-secondary { display: inline-block; background: transparent; color: #fff !important; font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 700; padding: 0.7rem 1.5rem; border-radius: 5px; text-decoration: none; border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }
.btn-green { display: inline-block; background: #1e4d3a; color: #fff; padding: 0.65rem 1.25rem; border-radius: 6px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: background 0.15s; }
.btn-green:hover { background: #163d2e; text-decoration: none; color: #fff; }
.btn-ghost { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.3); transition: background 0.15s; }
.btn-ghost:hover { background: rgba(255,255,255,0.25); text-decoration: none; color: #fff; }

/* ============================================================
   STATES SECTION
   ============================================================ */
.states-section { padding: 3rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.states-section h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.section-intro { color: #6b7280; font-size: 0.9rem; margin-bottom: 1.5rem; }
.legend { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding: 0.75rem 1rem; background: #f9fafb; border-radius: 6px; border: 1px solid #e5e7eb; }
.legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: #374151; }

.states-grid { display: grid !important; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)) !important; gap: 0.75rem !important; }

.state-card { display: block !important; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1rem; text-decoration: none; color: inherit; transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s; }
.state-card:hover { border-color: #1e4d3a; box-shadow: 0 4px 12px rgba(30,77,58,0.12); transform: translateY(-2px); text-decoration: none; }
.state-abbr { font-family: 'Courier Prime', monospace; font-size: 0.7rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; display: block; }
.state-name { font-family: 'Libre Baskerville', serif; font-size: 0.92rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.4rem; line-height: 1.2; display: block; }
.state-badges { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.state-cost { font-size: 0.75rem; color: #6b7280; font-weight: 600; display: block; }

/* ============================================================
   BADGES
   ============================================================ */
.badge, .state-badge { display: inline-block; font-size: 0.62rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.badge-cp, .state-badge.cp { background: #fef3c7 !important; color: #92400e !important; border: 1px solid #fde68a; }
.badge-upaa, .state-badge.upaa { background: #dbeafe !important; color: #1e40af !important; border: 1px solid #bfdbfe; }
.badge-state { background: #f0fdf4 !important; color: #166534 !important; border: 1px solid #bbf7d0; }

/* ============================================================
   RESOURCES SECTION
   ============================================================ */
.resources-section { padding: 2rem 1.5rem; max-width: 1200px; margin: 0 auto; border-top: 2px solid #f3f4f6; }
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 1rem; margin-top: 1rem; }
.resource-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1.25rem; transition: border-color 0.15s, box-shadow 0.15s; text-decoration: none; display: block; color: inherit; }
.resource-card:hover { border-color: #1e4d3a; box-shadow: 0 2px 8px rgba(30,77,58,0.1); text-decoration: none; }
.resource-card h3 { font-size: 0.9rem; margin: 0 0 0.4rem; }
.resource-card p { font-size: 0.82rem; color: #6b7280; margin: 0; }

/* ============================================================
   PAGE MAIN + INNER PAGE HERO
   ============================================================ */
.page-main { max-width: 1200px; margin: 0 auto; padding: 1.5rem 1.5rem 3rem; }
.breadcrumb { padding: 0.6rem 0; font-size: 0.78rem; color: #9ca3af; margin-bottom: 0.5rem; }
.breadcrumb a { color: #1e4d3a; }

.state-hero { background: linear-gradient(135deg, #1e4d3a 0%, #163a2b 100%) !important; color: #fff !important; padding: 2.5rem 2rem 2rem !important; border-radius: 8px !important; margin-bottom: 2rem !important; }
.state-hero h1 { color: #fff !important; font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 0.5rem; }
.state-hero-desc { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.6; }
.state-hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.meta-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); display: block; margin-bottom: 0.15rem; }
.meta-value { font-size: 0.88rem; font-weight: 700; color: #fff !important; }
.page-hero { background: linear-gradient(135deg, #1e4d3a 0%, #163a2b 100%) !important; color: #fff; padding: 2.5rem 2rem; border-radius: 8px; margin-bottom: 2rem; }
.page-hero h1 { color: #fff !important; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1rem; }

/* ============================================================
   CONTENT LAYOUT
   ============================================================ */
.content-wrap { display: flex; gap: 2.5rem; align-items: flex-start; }
.content-main { flex: 1; min-width: 0; }
.content-sidebar { width: 280px; flex-shrink: 0; }
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; padding: 2.5rem 0; align-items: start; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1.25rem; margin-bottom: 1.25rem; }
.sidebar-card h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; margin: 0 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid #f3f4f6; }
.sidebar-box { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1.25rem; margin-bottom: 1.25rem; }
.sidebar-box h3 { font-size: 0.95rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #1e4d3a; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-links a { font-size: 0.85rem; color: #1e4d3a; font-weight: 600; padding: 0.3rem 0; border-bottom: 1px solid #f9fafb; text-decoration: none; }
.sidebar-links a:hover { text-decoration: underline; }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.45rem 0; border-bottom: 1px solid #f3f4f6; font-size: 0.82rem; }
.sidebar-row:last-child { border-bottom: none; }
.sidebar-row .sr-label { color: #6b7280; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.sidebar-row .sr-value { font-weight: 600; color: #1a1a1a; text-align: right; }
.sidebar-row .sr-value.statute { font-family: 'Courier Prime', monospace; font-size: 0.78rem; color: #1e4d3a; }
.sidebar-row .sr-value.cost { color: #059669; }
.sidebar-table { width: 100%; font-size: 0.82rem; border-collapse: collapse; }
.sidebar-table tr { border-bottom: 1px solid #f3f4f6; }
.sidebar-table td { padding: 0.4rem 0; color: #374151; }
.sidebar-table .cost-value { font-weight: 700; color: #1e4d3a; text-align: right; }

/* ============================================================
   TABS
   ============================================================ */
.tabs { border-bottom: 2px solid #e5e7eb; display: flex; gap: 0; overflow-x: auto; }
.tab-btn { background: none; border: none; border-bottom: 3px solid transparent; padding: 0.75rem 1.25rem; font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700; color: #6b7280; cursor: pointer; white-space: nowrap; margin-bottom: -2px; transition: color 0.15s, border-color 0.15s; }
.tab-btn:hover { color: #1e4d3a; }
.tab-btn.active { color: #1e4d3a; border-bottom-color: #1e4d3a; }
.tab-pane { display: none; padding-top: 1.75rem; }
.tab-pane.active { display: block; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content-wrap { display: flex; gap: 2rem; width: 100%; align-items: flex-start; }
.tab-content-main { flex: 1; min-width: 0; }
.tab-sidebar { width: 280px; flex-shrink: 0; }

/* ============================================================
   LISTS & CONTENT
   ============================================================ */
.fact-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.fact-list li { padding: 0.5rem 0 0.5rem 1.25rem; position: relative; border-bottom: 1px solid #f3f4f6; font-size: 0.9rem; line-height: 1.5; }
.fact-list li::before { content: ''; position: absolute; left: 0; top: 0.9rem; width: 6px; height: 6px; background: #1e4d3a; border-radius: 50%; }
.fact-list li:last-child { border-bottom: none; }
.requirements-list { margin: 0 0 1.25rem 1.25rem; }
.requirements-list li { padding: 0.4rem 0; font-size: 0.9rem; line-height: 1.5; border-bottom: 1px solid #f3f4f6; }
.requirements-list li:last-child { border-bottom: none; }
.resource-links { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.resource-links li { padding: 0.4rem 0; border-bottom: 1px solid #f3f4f6; }
.resource-links li:last-child { border-bottom: none; }
.resource-links a { font-size: 0.88rem; color: #1e4d3a; font-weight: 600; }
.can-include-grid, .can-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.can-include, .can-box.yes { padding: 1.25rem; border-radius: 6px; background: #f0fdf4; border: 1px solid #bbf7d0; }
.can-include h4, .can-box.yes h4 { color: #166534; margin-top: 0; }
.cannot-include, .can-box.no { padding: 1.25rem; border-radius: 6px; background: #fff5f5; border: 1px solid #fecaca; }
.cannot-include h4, .can-box.no h4 { color: #991b1b; margin-top: 0; }
.can-include ul, .cannot-include ul { margin: 0.5rem 0 0 1.25rem; }
.can-include li, .cannot-include li { font-size: 0.85rem; margin-bottom: 0.3rem; }
.can-item { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.5rem; font-size: 0.85rem; color: #374151; }
.attorney-notice { background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 1rem 1.25rem; display: flex; gap: 0.75rem; align-items: flex-start; margin: 1.5rem 0; }
.attorney-notice p { font-size: 0.85rem; color: #92400e; line-height: 1.5; }
.attorney-note { background: #fffbeb; border: 1px solid #fde68a; border-left: 4px solid #e8a020; border-radius: 6px; padding: 1rem 1.25rem; margin: 1.25rem 0; font-size: 0.88rem; line-height: 1.55; color: #374151; }
.attorney-note strong, .attorney-notice strong { color: #92400e; font-weight: 700; }

/* FAQ */
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1rem 2rem 1rem 0; font-family: 'Libre Baskerville', serif; font-size: 1rem; font-weight: 700; color: #1a1a1a; cursor: pointer; position: relative; line-height: 1.4; transition: color 0.15s; }
.faq-question::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 300; color: #1e4d3a; }
.faq-question.open::after { content: '\2212'; }
.faq-question:hover { color: #1e4d3a; }
.faq-answer { display: none; padding: 0 0 1.25rem; font-size: 0.9rem; line-height: 1.65; color: #374151; }
.faq-answer.open { display: block; }

/* Cost Table */
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 1rem 0 1.5rem; }
.cost-table th { background: #1e4d3a !important; color: #fff !important; padding: 0.65rem 0.85rem; text-align: left; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.cost-table td { padding: 0.6rem 0.85rem; border-bottom: 1px solid #f3f4f6; color: #374151; }
.cost-table tr:nth-child(even) td { background: #f9fafb; }
.cost-table tr:hover td { background: #f0f4f2; }
.cost-table a { color: #1e4d3a; font-weight: 600; }
.cost-value { font-weight: 700; color: #1e4d3a; }

/* Steps */
.step { display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid #f3f4f6; }
.step:last-child { border-bottom: none; }
.step-num { width: 36px; height: 36px; background: #1e4d3a !important; color: #fff !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Libre Baskerville', serif; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.step-content h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-content p { font-size: 0.88rem; color: #374151; line-height: 1.6; }

/* State Nav */
.state-nav-bar { background: #f9fafb; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; padding: 0.75rem 1.5rem; overflow-x: auto; white-space: nowrap; margin-bottom: 1rem; }
.page-nav { display: flex; gap: 0.5rem; max-width: 1200px; margin: 0 auto; }
.page-nav a { font-size: 0.78rem; font-weight: 600; color: #6b7280; padding: 0.3rem 0.6rem; border-radius: 4px; white-space: nowrap; text-decoration: none; }
.page-nav a:hover { color: #1e4d3a; background: #f0faf5; }

/* Sample Doc */
.sample-doc { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 2rem; font-family: 'Courier Prime', monospace; font-size: 0.85rem; line-height: 1.7; margin: 1.5rem 0; }
.sig-block { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 1.5rem 0; }

/* Misc */
.card { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1.5rem; }
.card--hover:hover { border-color: #1e4d3a; box-shadow: 0 4px 12px rgba(30,77,58,0.1); }
.section { padding: 3rem 0; }
.section--alt { background: #f9fafb; }
.section--dark { background: #1e4d3a; color: #fff; }
.section-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
.section-subtitle { color: #6b7280; font-size: 0.95rem; margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #1a1a1a !important; color: #9ca3af !important; padding: 3rem 1.5rem 1.5rem !important; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto 2rem; }
.footer-col h4 { font-family: 'Lato', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff !important; margin-bottom: 0.75rem; }
.footer-col a { display: block; font-size: 0.82rem; color: #9ca3af; margin-bottom: 0.35rem; text-decoration: none; }
.footer-col a:hover { color: #d4edda; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 1.25rem; max-width: 1200px; margin: 0 auto; font-size: 0.78rem; color: #6b7280; line-height: 1.6; }
.footer-bottom p { margin-bottom: 0.4rem; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-green { color: #1e4d3a; }
.text-amber { color: #e8a020; }
.text-muted { color: #6b7280; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.font-mono { font-family: 'Courier Prime', monospace; }
.font-bold { font-weight: 700; }
.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}
.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}
.p-4{padding:1rem}.p-6{padding:1.5rem}
.rounded{border-radius:6px}.rounded-lg{border-radius:10px}
.border{border:1px solid #e5e7eb}
.bg-white{background:#fff}.bg-light{background:#f9fafb}.bg-green{background:#1e4d3a}
.shadow-sm{box-shadow:0 1px 4px rgba(0,0,0,0.08)}.shadow{box-shadow:0 4px 12px rgba(0,0,0,0.1)}
.w-full{width:100%}.block{display:block}.inline-block{display:inline-block}.hidden{display:none}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .hero-section { padding: 2.5rem 1.25rem 2rem; }
  .state-hero { padding: 1.75rem 1.25rem 1.5rem !important; }
  .page-main { padding: 1rem 1rem 2rem; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .states-grid { grid-template-columns: repeat(auto-fill,minmax(150px,1fr)) !important; }
  .can-include-grid, .can-grid { grid-template-columns: 1fr; }
  .content-wrap { flex-direction: column; }
  .content-sidebar { width: 100%; }
  .tab-content-wrap { flex-direction: column; }
  .tab-sidebar { width: 100%; }
  .info-strip-grid { grid-template-columns: 1fr 1fr; }
  .sig-block { grid-template-columns: 1fr; }
  .stats-grid { gap: 1.25rem; }
  .content-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .states-grid { grid-template-columns: repeat(2,1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stats-grid { justify-content: center; }
  .info-strip-grid { grid-template-columns: 1fr; }
}