/* ============================================================
   LocalPerth.com — Main Stylesheet
   Clean, trustworthy, professional local services directory
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy:       #0D1B2A;
  --navy-light: #1A2E45;
  --green:      #1A9E5C;
  --green-dark: #157A47;
  --green-light:#F0FDF4;
  --white:      #FFFFFF;
  --text:       #1F2937;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --bg-light:   #F9FAFB;
  --shadow:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.05);
  --radius:     8px;
  --radius-lg:  12px;
  --transition: .2s ease;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-width:  1200px;
}

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

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.3; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font);
}
.btn:hover { text-decoration: none; }

.btn-primary  { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }

.btn-secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); }

.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: #F3F4F6; border-color: #F3F4F6; color: var(--navy); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }

/* --- Badges / Tags --- */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .76rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-category { background: #EFF6FF; color: #1D4ED8; }
.badge-suburb   { background: var(--bg-light); color: var(--text-muted); border: 1px solid var(--border); }
.badge-free     { background: var(--green-light); color: var(--green-dark); }
.badge-featured { background: #FEF3C7; color: #92400E; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--green); }
.logo:hover { color: var(--white); text-decoration: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); text-decoration: none; }

.main-nav .btn-nav {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  margin-left: 6px;
  padding: 9px 18px;
}
.main-nav .btn-nav:hover { background: var(--green-dark); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; }
  .main-nav .btn-nav { margin-left: 0; text-align: center; justify-content: center; margin-top: 8px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 auto 32px;
}

.search-form {
  display: flex;
  gap: 8px;
  max-width: 540px;
  margin: 0 auto 32px;
}
.search-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.search-form button {
  padding: 14px 24px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font);
  white-space: nowrap;
}
.search-form button:hover { background: var(--green-dark); }

.hero-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero-cats a {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.2);
  transition: all var(--transition);
  text-decoration: none;
}
.hero-cats a:hover {
  background: rgba(255,255,255,.2);
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 520px) {
  .search-form { flex-direction: column; }
  .hero { padding: 60px 0 50px; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 64px 0; }
section.bg-light { background: var(--bg-light); }
section.bg-navy  { background: var(--navy); color: var(--white); }
section.bg-navy h2, section.bg-navy h3 { color: var(--white); }
section.bg-navy p { color: rgba(255,255,255,.78); }

.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.section-header.light p { color: rgba(255,255,255,.72); }

/* ============================================================
   CATEGORY GRID (Homepage)
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: all var(--transition);
  display: block;
  text-decoration: none;
  color: var(--text);
}
.category-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--text);
}
.category-card.coming-soon {
  opacity: .52;
  pointer-events: none;
}
.cat-icon { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }
.category-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.category-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.coming-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: .72rem;
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* ============================================================
   LISTING CARDS
   ============================================================ */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.listing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.listing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.listing-card.featured {
  border-color: #F59E0B;
  border-width: 2px;
}
.listing-card.featured::before {
  content: 'Featured';
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: #92400E;
  background: #FEF3C7;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 12px;
  width: fit-content;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.listing-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.listing-card-title a { color: var(--text); text-decoration: none; }
.listing-card-title a:hover { color: var(--green); text-decoration: none; }

.listing-card-meta {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.listing-card-meta span { display: flex; align-items: center; gap: 4px; }

.listing-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.listing-card-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================================
   HOW IT WORKS (Homepage steps)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.step { padding: 20px 16px; }
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { text-align: center; padding: 64px 20px; }
.cta-banner h2 { margin-bottom: 12px; color: var(--white); }
.cta-banner p  { color: rgba(255,255,255,.78); margin-bottom: 28px; font-size: 1.05rem; }
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (Category / Listing / Blog pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 52px 0 44px;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero .lead { color: rgba(255,255,255,.72); margin: 0; font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   FILTER BAR (Category pages)
   ============================================================ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.filter-bar .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-label { font-size: .83rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.filter-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-tag {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
}
.filter-tag:hover, .filter-tag.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  text-decoration: none;
}

.listings-count { font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; }

/* ============================================================
   INDIVIDUAL LISTING PAGE
   ============================================================ */
.listing-header { background: var(--navy); color: var(--white); padding: 50px 0; }
.listing-header h1 { color: var(--white); margin-bottom: 10px; }

.listing-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.listing-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .95rem;
  color: rgba(255,255,255,.78);
}
.listing-meta-item a { color: rgba(255,255,255,.78); }
.listing-meta-item a:hover { color: var(--white); }

.listing-action-row { display: flex; flex-wrap: wrap; gap: 10px; }

.listing-body { padding: 50px 0; }
.listing-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}
@media (max-width: 768px) { .listing-content-grid { grid-template-columns: 1fr; } }

.listing-description h2 { margin-bottom: 16px; }
.listing-description p { color: var(--text); line-height: 1.75; }

.sidebar-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
}
.sidebar-card h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.claim-sidebar {
  background: var(--green-light);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.claim-sidebar h4 { color: var(--green-dark); margin-bottom: 10px; font-size: 1rem; }
.claim-sidebar p  { font-size: .87rem; color: var(--text-muted); margin-bottom: 18px; }

/* Related listings */
.related-section { padding: 50px 0; background: var(--bg-light); }
.related-section h2 { margin-bottom: 28px; }

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

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card-img {
  height: 150px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-category {
  font-size: .76rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--text); text-decoration: none; }
.blog-card-title a:hover { color: var(--green); text-decoration: none; }
.blog-card-excerpt { font-size: .87rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* Blog article */
.article-header { background: var(--navy); color: var(--white); padding: 60px 0 52px; }
.article-header h1 { color: var(--white); margin-bottom: 16px; }
.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.article-meta span { display: flex; align-items: center; gap: 4px; }

.article-body { padding: 60px 0; }
.article-content { max-width: 740px; margin: 0 auto; }
.article-content h2 { margin: 36px 0 14px; font-size: 1.45rem; }
.article-content h3 { margin: 26px 0 10px; }
.article-content p  { line-height: 1.78; margin-bottom: 20px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 20px; }
.article-content li { margin-bottom: 8px; line-height: 1.65; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content a { color: var(--green); }
.article-content a:hover { text-decoration: underline; }

.article-cta {
  background: var(--green-light);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
  text-align: center;
}
.article-cta h3 { margin-bottom: 10px; color: var(--green-dark); }
.article-cta p  { color: var(--text-muted); font-size: .92rem; margin-bottom: 18px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: 5px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.mission-list { list-style: none; padding: 0; }
.mission-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.65;
  align-items: flex-start;
}
.mission-list li .check {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.tier-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}
.tier-card.highlight { border-color: var(--green); border-width: 2px; }
.tier-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.tier-price { font-size: 1.5rem; font-weight: 800; color: var(--green); margin-bottom: 14px; }
.tier-price small { font-size: .82rem; font-weight: 500; color: var(--text-muted); }
.tier-features { list-style: none; padding: 0; text-align: left; font-size: .88rem; color: var(--text-muted); }
.tier-features li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   SUBURB LINKS
   ============================================================ */
.suburb-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -.5px; margin-bottom: 12px; }
.footer-logo span { color: var(--green); }
.footer-desc { font-size: .87rem; line-height: 1.65; }

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.footer-col ul { padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.68);
  font-size: .87rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 32px; }

.info-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .9rem;
  color: #1E40AF;
  margin-bottom: 24px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state h3 { margin-bottom: 12px; }

.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
