/* NevadaAttorneyFinder.com — Shared Stylesheet */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --navy:       #1A2B5E;
  --navy-dark:  #111E45;
  --navy-light: #243570;
  --gold:       #C9A235;
  --gold-light: #E8BC4A;
  --gold-pale:  #FBF3DC;
  --white:      #FFFFFF;
  --gray-50:    #F7F8FC;
  --gray-100:   #EEF0F7;
  --gray-200:   #D8DCE8;
  --gray-400:   #9099B5;
  --gray-600:   #555F7A;
  --gray-800:   #2C3347;
  --text:       #1E2330;
  --success:    #2E7D32;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow-sm:  0 1px 4px rgba(26,43,94,.08);
  --shadow:     0 4px 16px rgba(26,43,94,.12);
  --shadow-lg:  0 8px 32px rgba(26,43,94,.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { color: var(--gray-600); line-height: 1.75; }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-alt { background: var(--gray-50); }

/* ── Navbar ── */
.navbar {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: var(--navy-dark);
  font-size: 1rem;
}
.nav-logo-text {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); color: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy-dark); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gray-100); color: var(--navy); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 10px; }

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--gold); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-green { background: #E8F5E9; color: var(--success); border: 1px solid #A5D6A7; }
.badge-red { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding: 16px 0;
  border-top: 3px solid var(--gold);
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2A4A8A 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.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.03'%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 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,53,.15);
  border: 1px solid rgba(201,162,53,.3);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Search Card (hero) ── */
.search-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.search-card h3 { color: var(--navy); margin-bottom: 6px; }
.search-card p { font-size: .9rem; margin-bottom: 20px; }
.search-field { margin-bottom: 14px; }
.search-field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.search-field select,
.search-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  appearance: none;
}
.search-field select:focus,
.search-field input:focus { outline: none; border-color: var(--navy); }
.search-btn {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
}
.search-btn:hover { background: var(--navy-light); }

/* ── Category Grid ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}
.category-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--navy);
}
.category-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.category-card h4 { font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
.category-card span { font-size: .78rem; color: var(--gray-400); }

/* ── How It Works ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { text-align: center; padding: 32px 24px; }
.step-num {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 18px;
}
.step h3 { margin-bottom: 10px; }

/* ── Attorney Cards ── */
.attorney-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.attorney-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .2s;
}
.attorney-card:hover { box-shadow: var(--shadow); }
.attorney-card-top { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.attorney-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.attorney-meta h3 { font-size: 1.05rem; margin-bottom: 2px; }
.attorney-meta p { font-size: .85rem; color: var(--gray-600); margin: 0; }
.attorney-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.attorney-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
}
.attorney-stats { display: flex; gap: 20px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.atty-stat { font-size: .82rem; color: var(--gray-600); }
.atty-stat strong { display: block; color: var(--navy); font-size: .95rem; }
.attorney-card .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ── Zip Code Grid ── */
.zip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.zip-chip {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.zip-chip:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.zip-chip:hover .zip-num, .zip-chip:hover .zip-area { color: var(--white); }
.zip-num { display: block; font-weight: 700; font-size: .95rem; color: var(--navy); }
.zip-area { display: block; font-size: .73rem; color: var(--gray-400); margin-top: 2px; }
.zip-chip.available { border-color: #A5D6A7; }
.zip-chip.taken { border-color: var(--gray-200); background: var(--gray-50); }

/* ── Intake Form ── */
.intake-box {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-top: 4px solid var(--gold);
}
.intake-box h3 { color: var(--white); margin-bottom: 8px; }
.intake-box > p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: .95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  color: var(--white);
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group select option { background: var(--navy-dark); }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: var(--gold-light); }
.form-disclaimer { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 12px; text-align: center; }

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,53,.1);
  transform: scale(1.04);
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}
.pricing-name { font-size: .82rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing-price .amount { font-family: 'Merriweather', serif; font-size: 2.4rem; font-weight: 900; color: var(--navy); }
.pricing-price .period { color: var(--gray-400); font-size: .9rem; }
.pricing-tagline { font-size: .88rem; color: var(--gray-600); margin-bottom: 24px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--gray-600);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Testimonial ── */
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.testimonial-title { font-size: .82rem; color: var(--gray-400); }

/* ── Stars ── */
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  border-top: 4px solid var(--gold);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--gray-50);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: .85rem; }
.breadcrumb-inner a { color: var(--navy); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gray-400); }
.breadcrumb-current { color: var(--gray-600); }

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 52px 0 44px;
  border-bottom: 3px solid var(--gold);
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.75); max-width: 620px; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 580px; margin: 0 auto; }

/* ── Info Box ── */
.info-box {
  background: var(--gold-pale);
  border: 1px solid rgba(201,162,53,.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--gray-800);
  margin-bottom: 24px;
}

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin: 14px 0 0; }
footer h5 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  padding: 4px 0;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Activity Feed / Live Ticker ── */
.activity-ticker {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,162,53,.2);
  padding: 9px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
}
.ticker-label {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-dot { color: var(--gold); font-size: .6rem; flex-shrink: 0; }
#ticker-text { transition: opacity .4s; }

/* ── Founding Member Banner ── */
.founding-banner {
  background: var(--gold-pale);
  border-bottom: 2px solid var(--gold);
  padding: 12px 0;
  text-align: center;
}
.founding-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.founding-banner strong { color: var(--navy); font-size: .92rem; }
.founding-banner span { color: var(--gray-600); font-size: .88rem; }
.founding-count {
  background: var(--navy);
  color: var(--gold);
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: .95rem;
  padding: 4px 14px;
  border-radius: 20px;
}

/* ── Progress Bar (category fill rate) ── */
.fill-meter {
  margin-bottom: 32px;
}
.fill-meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: .88rem;
}
.fill-meter-header strong { color: var(--navy); }
.fill-meter-header span { color: var(--gray-600); }
.fill-bar {
  height: 10px;
  background: var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}
.fill-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 10px;
  transition: width 1s ease;
}
.fill-legend {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  font-size: .78rem;
  color: var(--gray-600);
}
.fill-legend span { display: flex; align-items: center; gap: 5px; }
.dot-taken { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); flex-shrink:0; }
.dot-open  { width: 8px; height: 8px; border-radius: 50%; background: #A5D6A7; flex-shrink:0; }

/* ── Urgency Box ── */
.urgency-box {
  background: #FFF8E1;
  border: 1.5px solid #FFCC02;
  border-left: 4px solid #F5A623;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .88rem;
  color: var(--gray-800);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.urgency-box .urgency-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ── Neighborhood area card with attorney preview ── */
.area-section { margin-bottom: 36px; }
.area-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.area-header h3 { margin: 0; }
.area-header .area-stats { font-size: .8rem; color: var(--gray-600); }
.area-header .area-stats strong { color: var(--navy); }

/* ── Zip chip — taken with attorney name ── */
.zip-chip.taken-named {
  background: var(--gray-50);
  border-color: var(--gray-300);
  position: relative;
  cursor: default;
}
.zip-chip.taken-named:hover { background: var(--gray-100); border-color: var(--gray-300); color: inherit; }
.zip-chip.taken-named:hover .zip-num, .zip-chip.taken-named:hover .zip-area { color: inherit; }
.zip-attorney-name {
  display: block;
  font-size: .68rem;
  color: var(--gray-400);
  margin-top: 3px;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.zip-chip.taken .zip-num { color: var(--gray-400); }

/* ── Multi-testimonial ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ── Recent signups list ── */
.recent-signups {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}
.recent-signups-header {
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.signup-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .83rem;
}
.signup-item:last-child { border-bottom: none; }
.signup-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.signup-detail { flex: 1; }
.signup-detail strong { display: block; color: var(--navy); font-size: .83rem; }
.signup-detail span { color: var(--gray-600); font-size: .77rem; }
.signup-time { font-size: .72rem; color: var(--gray-400); white-space: nowrap; }

/* ── Category page header with availability ── */
.cat-availability {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cat-avail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
}
.cat-avail-item strong { color: var(--gold); font-family: 'Merriweather', serif; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .search-card { max-width: 480px; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .stats-bar-inner { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-banner { padding: 40px 24px; }
  .intake-box { padding: 24px; }
  .attorney-grid { grid-template-columns: 1fr; }
}
