@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --y: #fdfd00;
  --y2: #ffff44;
  --y-dim: rgba(253,253,0,0.07);
  --y-glow: rgba(253,253,0,0.25);
  --y-border: rgba(253,253,0,0.14);
  --black: #000000;
  --off-black: #080808;
  --gray-dark: #111111;
  --gray-mid: #1a1a1a;
  --white: #ffffff;
  --muted: #666666;
  --dim: #3a3a3a;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* noise */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--y-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: var(--fd);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.nav-logo-text small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--y);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--y); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--y) !important;
  color: var(--black) !important;
  padding: 9px 22px;
  font-weight: 800 !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--y2) !important; transform: translateY(-1px); }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 68px; min-height: 100vh; }

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--y-dim);
  border-bottom: 1px solid var(--y-border);
  padding: 9px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.urgency-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.urgency-item strong { color: var(--y); }

.live-dot {
  width: 6px; height: 6px;
  background: var(--y);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fd);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn-xl { font-size: 19px; padding: 18px 48px; clip-path: polygon(13px 0%,100% 0%,calc(100% - 13px) 100%,0% 100%); }
.btn-lg { font-size: 16px; padding: 14px 36px; clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%); }
.btn-md { font-size: 13px; padding: 11px 26px; clip-path: polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%); }

.btn-yellow { background: var(--y); color: var(--black); box-shadow: 0 0 28px var(--y-glow); animation: glowPulse 3s ease-in-out infinite; }
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 4px 44px rgba(253,253,0,0.45); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--y); color: var(--y); }
.btn-dark { background: var(--black); color: var(--y); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,0.4); }

/* ── SECTION ── */
.section { padding: 88px 48px; }
.wrap { max-width: 1160px; margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }

.sec-label {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--y);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sec-label::after { content: ''; width: 44px; height: 1px; background: var(--y); opacity: 0.4; }

.sec-title {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(36px,5vw,64px);
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 52px;
}
.sec-title em { color: var(--y); font-style: normal; }

/* ── PROCESS STRIP ── */
.process-strip {
  background: var(--y);
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.process-step { display: flex; align-items: center; gap: 14px; flex: 1; max-width: 300px; justify-content: center; }
.step-num { font-family: var(--fd); font-size: 50px; font-weight: 900; color: rgba(0,0,0,0.1); line-height: 1; flex-shrink: 0; }
.step-text strong { font-family: var(--fd); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); display: block; }
.step-text span { font-size: 12px; color: rgba(0,0,0,0.55); font-weight: 500; }
.step-arrow { font-size: 18px; color: rgba(0,0,0,0.25); padding: 0 8px; flex-shrink: 0; }

/* ── FEATURE GRID ── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(253,253,0,0.05); border: 1px solid var(--y-border); }

.feat-card {
  background: var(--black);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--y); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.feat-card:hover { background: rgba(253,253,0,0.02); }
.feat-card:hover::before { transform: scaleX(1); }

.feat-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--y-dim); border: 1px solid var(--y-border); color: var(--y); margin-bottom: 20px; clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); }
.feat-title { font-family: var(--fd); font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── COUNTY PILLS ── */
.county-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 6px; margin-top: 44px; }

.county-card {
  background: var(--gray-dark);
  border: 1px solid rgba(253,253,0,0.08);
  padding: 20px 20px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.county-card:hover { border-color: var(--y); background: var(--y-dim); }
.county-card .c-name { font-family: var(--fd); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.county-card .c-seat { font-size: 12px; color: var(--muted); }
.county-card .c-anchor { position: absolute; top: 8px; right: 10px; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--y); }

/* ── FAQ ── */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; cursor: pointer; text-align: left; color: var(--white); font-family: var(--fd); font-size: 21px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; transition: color 0.2s; }
.faq-q:hover { color: var(--y); }
.faq-item.open .faq-q { color: var(--y); }
.faq-toggle { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--y-border); color: var(--y); font-size: 18px; flex-shrink: 0; clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%); }
.faq-a { display: none; padding: 0 0 24px; font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 680px; }
.faq-item.open .faq-a { display: block; }

/* ── BOTTOM CTA ── */
.bottom-cta { background: var(--y); padding: 88px 48px; text-align: center; position: relative; overflow: hidden; }
.bcta-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,0.05) 1px,transparent 1px); background-size: 44px 44px; pointer-events: none; }
.bcta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.bcta-headline { font-family: var(--fd); font-weight: 900; font-size: clamp(52px,9vw,104px); line-height: 0.88; text-transform: uppercase; color: var(--black); margin-bottom: 18px; }
.bcta-sub { font-size: 16px; color: rgba(0,0,0,0.55); font-weight: 500; margin-bottom: 36px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--off-black);
  border-top: 1px solid var(--y-border);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}
.footer-left { font-family: var(--fd); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; line-height: 1.7; }
.footer-left strong { color: var(--y); }
.footer-center { display: flex; gap: 20px; list-style: none; justify-content: center; flex-wrap: wrap; }
.footer-center a { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-center a:hover { color: var(--y); }
.footer-right { font-size: 12px; color: var(--dim); text-align: right; line-height: 1.8; }
.footer-right a { color: var(--y); text-decoration: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--gray-dark); padding: 64px 48px 52px; border-bottom: 1px solid var(--y-border); position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(253,253,0,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(253,253,0,0.02) 1px,transparent 1px); background-size: 52px 52px; pointer-events: none; }
.page-hero-glow { position: absolute; top: 50%; left: 0; transform: translate(-25%,-50%); width: 500px; height: 300px; background: radial-gradient(ellipse,rgba(253,253,0,0.07) 0%,transparent 70%); pointer-events: none; }

.page-hero-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.eyebrow { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--y); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--y); opacity: 0.5; }

/* ── SIDEBAR ── */
.start-layout { max-width: 1160px; margin: 0 auto; padding: 56px 48px; display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--gray-dark); border: 1px solid rgba(255,255,255,0.06); padding: 24px; position: relative; overflow: hidden; }
.sidebar-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--y); }
.sidebar-title { font-family: var(--fd); font-size: 13px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--y); margin-bottom: 14px; padding-left: 12px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 9px; padding-left: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.checklist li::before { content: '✓'; color: var(--y); font-weight: 700; flex-shrink: 0; }
.contact-block { display: flex; flex-direction: column; gap: 10px; padding-left: 12px; }
.contact-item { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--white); font-size: 13px; font-weight: 500; transition: color 0.2s; }
.contact-item:hover { color: var(--y); }
.contact-icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: var(--y-dim); border: 1px solid var(--y-border); color: var(--y); flex-shrink: 0; clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%); }

/* ── FORM WRAP ── */
.form-section-title { font-family: var(--fd); font-size: 12px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--y); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--y-border); }
.form-wrap { background: var(--gray-dark); border: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--y); }
.form-embed { width: 100%; border: none; display: block; min-height: 680px; }
.form-fallback { display: none; padding: 48px; text-align: center; }

/* ── SCHEDULE PAGE ── */
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.sched-card { background: var(--gray-dark); border: 1px solid rgba(255,255,255,0.06); padding: 36px 32px; position: relative; overflow: hidden; text-decoration: none; color: inherit; transition: border-color 0.25s, background 0.25s; }
.sched-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--y); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.sched-card:hover { border-color: var(--y-border); background: var(--y-dim); }
.sched-card:hover::before { transform: scaleX(1); }
.sched-card .sc-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--y); color: var(--black); margin-bottom: 20px; clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); }
.sched-card .sc-label { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--y); margin-bottom: 6px; }
.sched-card .sc-title { font-family: var(--fd); font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.sched-card .sc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.sched-embed-wrap { margin-top: 44px; background: var(--gray-dark); border: 1px solid rgba(255,255,255,0.06); position: relative; min-height: 500px; }
.sched-embed-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--y); }
.sched-fallback { padding: 64px 48px; text-align: center; }
.sched-fallback h3 { font-family: var(--fd); font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.sched-fallback p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }

/* ── PORTAL ── */
.portal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 44px; }
.portal-card { background: var(--gray-dark); border: 1px solid rgba(255,255,255,0.06); padding: 36px 32px; display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden; transition: border-color 0.25s, background 0.25s; text-decoration: none; color: inherit; }
.portal-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--y); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.portal-card:hover { border-color: var(--y-border); background: var(--y-dim); }
.portal-card:hover::before { transform: scaleX(1); }
.portal-card.primary { grid-column: span 2; flex-direction: row; align-items: center; gap: 28px; background: var(--y-dim); border-color: var(--y-border); }
.portal-card.primary::before { transform: scaleX(1); }
.pc-icon-y { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--y); color: var(--black); flex-shrink: 0; clip-path: polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%); }
.pc-icon-o { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--y-dim); border: 1px solid var(--y-border); color: var(--y); flex-shrink: 0; clip-path: polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%); }
.pc-label { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--y); margin-bottom: 4px; }
.pc-title { font-family: var(--fd); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.pc-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.pc-arrow { font-size: 24px; color: var(--y); flex-shrink: 0; }

/* info strip */
.info-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(253,253,0,0.04); border: 1px solid var(--y-border); margin-bottom: 44px; }
.info-cell { background: var(--black); padding: 24px; display: flex; align-items: center; gap: 14px; }
.info-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: var(--y-dim); border: 1px solid var(--y-border); color: var(--y); flex-shrink: 0; clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%); }
.info-text strong { font-family: var(--fd); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); display: block; margin-bottom: 2px; }
.info-text span, .info-text a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.info-text a:hover { color: var(--y); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes livePulse { 0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(253,253,0,0.4); } 50% { opacity:0.7; box-shadow:0 0 0 4px rgba(253,253,0,0); } }
@keyframes glowPulse { 0%,100% { box-shadow:0 0 28px var(--y-glow); } 50% { box-shadow:0 0 48px rgba(253,253,0,0.5); } }
@keyframes scrollAnim { 0%,100% { transform:scaleY(1); opacity:0.35; } 50% { transform:scaleY(1.3); opacity:0.7; } }

.anim-1 { animation: fadeUp 0.55s ease both; }
.anim-2 { animation: fadeUp 0.55s 0.08s ease both; }
.anim-3 { animation: fadeUp 0.55s 0.16s ease both; }
.anim-4 { animation: fadeUp 0.55s 0.24s ease both; }
.anim-5 { animation: fadeUp 0.55s 0.32s ease both; }
.anim-6 { animation: fadeUp 0.55s 0.4s ease both; }


/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE SYSTEM
   Breakpoints: 768px (tablet), 480px (phone)
═══════════════════════════════════════════ */

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 600;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  z-index: 490;
  flex-direction: column;
  padding: 32px 24px;
  border-top: 1px solid var(--y-border);
  overflow-y: auto;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  display: block;
}

.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--y); }

.nav-mobile-cta {
  background: var(--y) !important;
  color: var(--black) !important;
  padding: 18px 24px !important;
  margin-top: 16px;
  text-align: center;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  border-bottom: none !important;
  font-size: 22px !important;
}

/* Sticky mobile CTA bar at bottom */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--y);
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-sticky-cta a:active { opacity: 0.85; }

.mobile-sticky-cta .ms-bond {
  background: var(--y);
  color: var(--black);
}

.mobile-sticky-cta .ms-call {
  background: var(--gray-dark);
  color: var(--white);
  border-right: 1px solid var(--y-border);
}

/* ── TABLET (≤768px) ── */
@media (max-width: 768px) {

  /* Nav */
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Urgency bar — collapse to 2 items */
  .urgency-bar { padding: 8px 16px; gap: 12px; }
  .urgency-item:nth-child(n+3) { display: none; }

  /* Sections */
  .section { padding: 64px 24px; }
  .wrap { max-width: 100%; }
  .wrap-narrow { max-width: 100%; }

  /* Process strip */
  .process-strip {
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    align-items: flex-start;
  }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .process-step { max-width: 100%; width: 100%; }

  /* Feature grid → 2 columns */
  .feat-grid { grid-template-columns: repeat(2,1fr); }

  /* County grid → 2 columns */
  .county-grid { grid-template-columns: repeat(2,1fr); }

  /* Footer */
  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    text-align: center;
  }
  .footer-right { text-align: center; }
  .footer-center { justify-content: center; }

  /* Page hero inner — stack */
  .page-hero { padding: 48px 24px 40px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 28px; }

  /* Start layout — stack */
  .start-layout { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }

  /* Schedule grid — stack */
  .schedule-grid { grid-template-columns: 1fr; }

  /* Portal grid — primary full, rest 1 col */
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card.primary { flex-direction: column; }

  /* Info strip — stack */
  .info-strip { grid-template-columns: 1fr; }

  /* Bottom CTA */
  .bottom-cta { padding: 64px 24px 80px; }

  /* Show sticky mobile CTA */
  .mobile-sticky-cta { display: grid; }

  /* Add bottom padding so sticky bar doesn't cover content */
  .page-wrap { padding-bottom: 56px; }
}

/* ── PHONE (≤480px) ── */
@media (max-width: 480px) {

  /* Nav */
  .site-nav { padding: 0 16px; height: 60px; }
  .page-wrap { padding-top: 60px; }
  .nav-mobile-menu { top: 60px; }

  /* Urgency bar — single item */
  .urgency-bar { padding: 7px 16px; }
  .urgency-item:nth-child(n+2) { display: none; }
  .urgency-item:first-child strong { font-size: 10px; }

  /* Sections */
  .section { padding: 52px 16px; }

  /* Feature grid → 1 column on small phones */
  .feat-grid { grid-template-columns: 1fr; }

  /* County grid → 1 column */
  .county-grid { grid-template-columns: 1fr; }

  /* Buttons — full width on phone */
  .btn-xl { font-size: 17px; padding: 17px 28px; width: 100%; justify-content: center; }
  .btn-lg { font-size: 15px; padding: 14px 24px; width: 100%; justify-content: center; }

  /* Hero action buttons — stack */
  .hero-actions-wrap { flex-direction: column; width: 100%; }

  /* Stats bar — 2x2 grid on phone */
  .hero-stats-wrap {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 16px !important;
  }
  .hero-stat-div { display: none; }

  /* FAQ font size */
  .faq-q { font-size: 17px; padding: 20px 0; }

  /* Process strip */
  .process-strip { padding: 24px 16px; }
  .step-num { font-size: 36px; }

  /* Footer */
  .site-footer { padding: 28px 16px; }
  .footer-center { gap: 12px; }

  /* Page hero */
  .page-hero { padding: 40px 16px 32px; }

  /* Start layout */
  .start-layout { padding: 32px 16px; }

  /* Bottom CTA */
  .bottom-cta { padding: 52px 16px 80px; }
  .bcta-sub { font-size: 14px; }

  /* Mobile sticky CTA — slightly taller touch targets */
  .mobile-sticky-cta a { padding: 18px 10px; font-size: 14px; }
}

/* ── TOUCH TARGETS ── */
@media (hover: none) {
  /* Remove hover effects on touch devices, use active instead */
  .feat-card:hover { background: var(--black); }
  .feat-card:hover::before { transform: scaleX(0); }
  .feat-card:active { background: rgba(253,253,0,0.02); }
  .county-card:hover { border-color: rgba(253,253,0,0.08); background: var(--gray-dark); }
  .county-card:active { border-color: var(--y); background: var(--y-dim); }

  /* Bigger tap targets for links */
  .nav-mobile-menu a { min-height: 56px; display: flex; align-items: center; }
  .faq-q { min-height: 52px; }
}
