/* ============================================================
   1Network.com — Zapier-Inspired Design System
   Warm cream canvas · Orange accent · Inter + Space Grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   1. CUSTOM PROPERTIES — Zapier Palette
   ============================================================ */
:root {
  --orange:        #ff4f00;
  --orange-hover:  #e04500;
  --orange-light:  #fff3ee;
  --cream:         #fffefb;
  --cream-off:     #fffdf9;
  --black-warm:    #201515;
  --charcoal:      #36342e;
  --gray-warm:     #939084;
  --sand:          #c5c0b1;
  --sand-light:    #eceae3;
  --sand-mid:      #b5b2aa;
  --green:         #059669;
  --green-light:   #d1fae5;
  --blue:          #2563eb;
  --blue-light:    #eff6ff;
  --red:           #dc2626;
  --red-light:     #fee2e2;
  --amber:         #ff4f00;
  --amber-light:   #fff3ee;
  --bg:            var(--cream);
  --bg-white:      var(--cream);
  --text:          var(--black-warm);
  --text-muted:    var(--gray-warm);
  --border:        var(--sand);
  --border-light:  var(--sand-light);
  --radius:        5px;
  --radius-lg:     8px;
  --radius-sm:     4px;
  --shadow-sm:     none;
  --shadow-md:     none;
  --shadow-lg:     none;
  --font-head:     'Space Grotesk', 'Inter', Helvetica, Arial, sans-serif;
  --font-body:     'Inter', Helvetica, Arial, sans-serif;
  --transition:    0.15s ease;
  --nav-h:         64px;
  --container:     1200px;
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--black-warm); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section + .section { border-top: 1px solid var(--sand); }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-title { font-family: var(--font-head); font-size: 2.5rem; font-weight: 600; color: var(--black-warm); line-height: 1.1; margin-bottom: 12px; }
.section-subtitle { font-size: 1.125rem; color: var(--gray-warm); max-width: 560px; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray-warm); margin-bottom: 12px; }
.divider { border: none; border-top: 1px solid var(--sand); margin: 24px 0; }

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--nav-h);
}
.nav-logo, .logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black-warm);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.3px;
}
.logo-accent, .accent { color: var(--orange); }
.nav-search {
  flex: 1;
  max-width: 400px;
  display: flex;
  align-items: center;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
  transition: border-color var(--transition);
}
.nav-search:focus-within { border-color: var(--orange); }
.nav-search .input-icon { padding: 0 10px; color: var(--gray-warm); font-size: 0.9rem; }
.nav-search input { flex: 1; border: none; background: transparent; outline: none; font-size: 0.875rem; color: var(--black-warm); padding: 8px 0; }
.nav-search input::placeholder { color: var(--gray-warm); }
.nav-search button {
  background: var(--orange);
  border: none;
  color: var(--cream);
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-search button:hover { background: var(--orange-hover); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-link { font-size: 0.9375rem; font-weight: 500; color: var(--charcoal); padding: 6px 4px; transition: color var(--transition); }
.nav-link:hover { color: var(--black-warm); text-decoration: none; }

/* Hamburger nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--black-warm); border-radius: 2px; transition: var(--transition); }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-search { display: none; }
  .hide-mobile { display: none !important; }
  .nav-actions {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    align-items: flex-start;
    z-index: 99;
    margin-left: 0;
  }
  .nav-actions.open { display: flex; }
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  padding: 10px 20px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--orange);
  color: var(--cream);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); text-decoration: none; color: var(--cream); }
.btn-dark, .btn-outline-white {
  background: var(--black-warm);
  color: var(--cream);
  border-color: var(--black-warm);
}
.btn-dark:hover, .btn-outline-white:hover { background: var(--charcoal); border-color: var(--charcoal); text-decoration: none; color: var(--cream); }
.btn-outline {
  background: var(--sand-light);
  color: var(--charcoal);
  border-color: var(--sand);
}
.btn-outline:hover { background: var(--sand); border-color: var(--sand-mid); color: var(--black-warm); text-decoration: none; }
.btn-sm { font-size: 0.8125rem; padding: 7px 14px; border-radius: var(--radius); }
.btn-lg { font-size: 1rem; padding: 14px 28px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }
.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn-danger:hover { background: #b91c1c; }

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  background: var(--cream);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--sand);
}
.hero-content { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-warm);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--black-warm);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-subtitle { font-size: 1.125rem; color: var(--charcoal); line-height: 1.6; margin-bottom: 36px; max-width: 560px; }
.hero-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  background: var(--cream);
  overflow: hidden;
  max-width: 600px;
  transition: border-color var(--transition);
}
.hero-form:focus-within { border-color: var(--orange); }
.hero-form-input, .hero-form-zip {
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.hero-form-input { flex: 2; }
.hero-form-zip { flex: 1; border-left: 1px solid var(--sand); }
.hero-form .input-icon { color: var(--gray-warm); margin-right: 8px; font-size: 0.9rem; }
.hero-form input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9375rem;
  color: var(--black-warm);
  padding: 14px 0;
}
.hero-form input::placeholder { color: var(--gray-warm); }
.hero-divider { width: 1px; background: var(--sand); align-self: stretch; }
.hero-search-btn {
  background: var(--orange);
  color: var(--cream);
  border: none;
  padding: 0 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  height: 52px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.hero-search-btn:hover { background: var(--orange-hover); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; align-items: center; gap: 6px; font-size: 0.9375rem; color: var(--gray-warm); }
.hero-stat strong { color: var(--black-warm); font-weight: 600; }
.stat-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sand); display: inline-block; }

/* ============================================================
   7. TRUST BAR
   ============================================================ */
.trust-bar { background: var(--sand-light); border-bottom: 1px solid var(--sand); padding: 14px 0; }
.trust-bar-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--charcoal); }
.trust-item strong { color: var(--black-warm); }
.trust-icon { font-size: 0.9rem; }

/* ============================================================
   8. CATEGORY GRID
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
  gap: 8px;
}
.cat-card:hover { border-color: var(--orange); background: var(--orange-light); text-decoration: none; }
.cat-card .cat-icon { font-size: 1.75rem; line-height: 1; }
.cat-card .cat-name { font-size: 0.875rem; font-weight: 600; color: var(--black-warm); }
.cat-card .cat-count { font-size: 0.75rem; color: var(--gray-warm); }

/* ============================================================
   9. HOW IT WORKS / STEPS
   ============================================================ */
.how-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  padding: 28px 24px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-icon { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.step-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand-light);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-warm);
}
.step-card h3 { font-family: var(--font-head); font-size: 1.0625rem; font-weight: 600; color: var(--black-warm); margin-bottom: 8px; }
.step-card p { font-size: 0.9375rem; color: var(--charcoal); line-height: 1.6; }

/* ============================================================
   10. BUSINESS SECTION
   ============================================================ */
.biz-section { background: var(--sand-light); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.biz-content { padding: 72px 0; }
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.biz-text h2 { font-family: var(--font-head); font-size: 2.25rem; font-weight: 700; color: var(--black-warm); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.biz-text p { font-size: 1.0625rem; color: var(--charcoal); line-height: 1.65; margin-bottom: 28px; }
.biz-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.biz-feature { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; color: var(--charcoal); }
.biz-feature-icon { width: 28px; height: 28px; background: var(--orange-light); border: 1px solid #ffd0bb; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; flex-shrink: 0; }
.biz-cards { display: flex; flex-direction: column; gap: 16px; }
.biz-card-mini {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
}
.biz-card-mini-icon { font-size: 1.375rem; flex-shrink: 0; }
.biz-card-mini h4 { font-size: 0.9375rem; font-weight: 600; color: var(--black-warm); margin-bottom: 4px; }
.biz-card-mini p { font-size: 0.875rem; color: var(--gray-warm); line-height: 1.5; margin: 0; }

/* ============================================================
   11. LISTING CARDS
   ============================================================ */
.listing-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  transition: border-color var(--transition);
}
.listing-card:hover { border-color: var(--sand-mid); }
.listing-featured { border-color: var(--orange); border-left-width: 3px; }
.listing-info { flex: 1; min-width: 0; }
.listing-info h3 { font-size: 1rem; font-weight: 600; color: var(--black-warm); margin-bottom: 4px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.listing-info h3 a { color: inherit; text-decoration: none; }
.listing-info h3 a:hover { color: var(--orange); }
.listing-meta { font-size: 0.8125rem; color: var(--gray-warm); margin-top: 4px; }
.phone-link { display: inline-block; margin-top: 6px; font-size: 0.875rem; font-weight: 600; color: var(--orange); text-decoration: none; }
.phone-link:hover { color: var(--orange-hover); }
.listing-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; flex-shrink: 0; }

/* ============================================================
   12. BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 20px;
  vertical-align: middle;
  white-space: nowrap;
}
.badge.verified { background: var(--green-light); color: var(--green); border: 1px solid #a7f3d0; }
.badge.claimed { background: var(--blue-light); color: var(--blue); border: 1px solid #bfdbfe; }
.badge.unclaimed { background: var(--sand-light); color: var(--gray-warm); border: 1px solid var(--sand); }
.badge.featured { background: #fff3ee; color: var(--orange); border: 1px solid #ffd0bb; }
.badge.pro, .badge.elite, .badge.starter { background: var(--orange-light); color: var(--orange); border: 1px solid #ffd0bb; }

/* ============================================================
   13. CATEGORY PAGE
   ============================================================ */
.cat-header { padding: 40px 0 32px; border-bottom: 1px solid var(--sand); margin-bottom: 32px; }
.cat-header h1 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--black-warm); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.cat-header-meta { font-size: 0.9375rem; color: var(--gray-warm); }
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 0.875rem; color: var(--gray-warm); margin-bottom: 16px; }
.breadcrumb a { color: var(--charcoal); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--sand-mid); }
.breadcrumb-current { color: var(--black-warm); font-weight: 500; }
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--sand);
}
.filter-bar label { font-size: 0.875rem; font-weight: 500; color: var(--charcoal); }
.filter-bar input {
  border: 1px solid var(--sand);
  background: var(--cream);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-size: 0.875rem;
  color: var(--black-warm);
  outline: none;
  transition: border-color var(--transition);
}
.filter-bar input:focus { border-color: var(--orange); }
.no-results { text-align: center; padding: 48px 24px; color: var(--gray-warm); }
.no-results a { color: var(--orange); }

/* Sub-cat grid (mega-category) */
.subcats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.subcat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color var(--transition);
}
.subcat-card:hover { border-color: var(--orange); text-decoration: none; }
.subcat-card h3 { font-size: 0.9375rem; font-weight: 600; color: var(--black-warm); margin-bottom: 2px; }
.subcat-card p { font-size: 0.8125rem; color: var(--gray-warm); margin: 0; }
.subcat-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ============================================================
   14. PAGINATION
   ============================================================ */
.pagination-wrap { display: flex; align-items: center; gap: 6px; margin: 32px 0; flex-wrap: wrap; }
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.page-btn:hover { border-color: var(--sand-mid); background: var(--sand-light); text-decoration: none; }
.page-btn.active { background: var(--orange); color: var(--cream); border-color: var(--orange); font-weight: 600; }
.page-info { font-size: 0.8125rem; color: var(--gray-warm); margin-left: 8px; }

/* ============================================================
   15. LISTING DETAIL PAGE
   ============================================================ */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 40px 0 72px; align-items: start; }
.page-main {}
.page-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }

.profile-header { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.profile-logo-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.profile-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-name-block { flex: 1; }
.profile-name-block h1 { font-family: var(--font-head); font-size: 1.625rem; font-weight: 700; color: var(--black-warm); margin-bottom: 6px; line-height: 1.2; }
.profile-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.profile-category-link { font-size: 0.875rem; color: var(--orange); text-decoration: none; font-weight: 500; }
.profile-category-link:hover { text-decoration: underline; }
.profile-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.profile-detail-item { display: flex; gap: 10px; }
.profile-detail-icon { font-size: 1rem; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.profile-detail-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--gray-warm); margin-bottom: 2px; }
.profile-detail-value { font-size: 0.9375rem; color: var(--charcoal); }
.profile-detail-value a { color: var(--orange); }

.profile-description { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.profile-description h2 { font-family: var(--font-head); font-size: 1.125rem; font-weight: 600; color: var(--black-warm); margin-bottom: 12px; }
.profile-description p { font-size: 0.9375rem; color: var(--charcoal); line-height: 1.65; }

.profile-hours { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.profile-hours h2 { font-family: var(--font-head); font-size: 1.125rem; font-weight: 600; color: var(--black-warm); margin-bottom: 14px; }
.hours-grid { display: flex; flex-direction: column; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.hours-day { color: var(--charcoal); font-weight: 500; }
.hours-time { color: var(--gray-warm); }
.hours-open { color: var(--green); font-weight: 600; }

/* Sidebar */
.sidebar-card { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.sidebar-card h3 { font-size: 1rem; font-weight: 600; color: var(--black-warm); margin-bottom: 14px; }
.sidebar-cta { background: var(--orange); color: var(--cream); border: none; border-radius: var(--radius-lg); padding: 14px 20px; width: 100%; font-size: 0.9375rem; font-weight: 600; cursor: pointer; text-align: center; display: block; text-decoration: none; transition: background var(--transition); }
.sidebar-cta:hover { background: var(--orange-hover); text-decoration: none; color: var(--cream); }

/* Claim banner */
.claim-banner {
  background: var(--orange-light);
  border: 1px solid #ffd0bb;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.claim-banner p { font-size: 0.9375rem; color: var(--charcoal); font-weight: 500; margin: 0; }

/* Reviews */
.reviews-section { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.reviews-section h2 { font-family: var(--font-head); font-size: 1.125rem; font-weight: 600; color: var(--black-warm); margin-bottom: 16px; }
.review-card { padding: 16px 0; border-bottom: 1px solid var(--sand); }
.review-card:last-child { border-bottom: none; padding-bottom: 0; }
.review-stars { color: #f59e0b; margin-bottom: 4px; }
.review-text { font-size: 0.9375rem; color: var(--charcoal); line-height: 1.5; }
.review-author { font-size: 0.8125rem; color: var(--gray-warm); margin-top: 6px; }
.rating-display { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.rating-big { font-size: 2.5rem; font-weight: 700; color: var(--black-warm); line-height: 1; }
.rating-stars { font-size: 1.25rem; color: #f59e0b; }
.rating-count { font-size: 0.875rem; color: var(--gray-warm); }

/* Coupons */
.coupon-card {
  background: var(--orange-light);
  border: 1px dashed var(--orange);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
}
.coupon-title { font-weight: 600; color: var(--black-warm); margin-bottom: 4px; }
.coupon-code { font-family: monospace; font-size: 0.875rem; background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-sm); padding: 2px 8px; color: var(--orange); display: inline-block; margin: 4px 0; }
.coupon-discount { font-size: 0.875rem; color: var(--charcoal); }
.coupon-expires { font-size: 0.75rem; color: var(--gray-warm); margin-top: 4px; }

/* Social links */
.listing-social-links { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid var(--sand);
  border-radius: 20px;
  color: var(--charcoal);
  text-decoration: none;
  transition: border-color var(--transition);
}
.social-link-btn:hover { border-color: var(--sand-mid); color: var(--black-warm); text-decoration: none; }

/* ============================================================
   16. FORMS & AUTH
   ============================================================ */
.form-page { max-width: 480px; margin: 64px auto; padding: 0 24px; }
.form-card { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 36px; }
.form-card h1 { font-family: var(--font-head); font-size: 1.625rem; font-weight: 700; color: var(--black-warm); margin-bottom: 6px; }
.form-card .form-subtitle { color: var(--gray-warm); font-size: 0.9375rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  border: 1px solid var(--sand);
  background: var(--cream);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--black-warm);
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-warm); }
.form-textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.form-help { font-size: 0.8125rem; color: var(--gray-warm); margin-top: 5px; }
.form-error { font-size: 0.875rem; color: var(--red); background: var(--red-light); border: 1px solid #fca5a5; border-radius: var(--radius); padding: 10px 14px; margin-bottom: 16px; }
.form-success { font-size: 0.875rem; color: var(--green); background: var(--green-light); border: 1px solid #a7f3d0; border-radius: var(--radius); padding: 10px 14px; margin-bottom: 16px; }
.form-footer { text-align: center; font-size: 0.875rem; color: var(--gray-warm); margin-top: 20px; }
.form-footer a { color: var(--orange); font-weight: 500; }
.auth-card { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 36px; max-width: 440px; margin: 64px auto; }
.auth-card h1 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--black-warm); margin-bottom: 6px; }
.auth-subtitle { color: var(--gray-warm); font-size: 0.9375rem; margin-bottom: 28px; }
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="url"], select, textarea {
  width: 100%;
  border: 1px solid var(--sand);
  background: var(--cream);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--black-warm);
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition);
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus,
input[type="tel"]:focus, input[type="number"]:focus, input[type="url"]:focus,
select:focus, textarea:focus { border-color: var(--orange); }

/* ============================================================
   17. DASHBOARD
   ============================================================ */
.dash-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.dash-header { padding: 36px 0 28px; border-bottom: 1px solid var(--sand); margin-bottom: 32px; }
.dash-header h1 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--black-warm); }
.dash-header p { color: var(--gray-warm); font-size: 0.9375rem; margin-top: 4px; }
.dash-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--sand); margin-bottom: 32px; overflow-x: auto; }
.dash-tab {
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  background: transparent;
  border: none;
  white-space: nowrap;
  transition: color var(--transition);
}
.dash-tab:hover { color: var(--black-warm); box-shadow: rgb(197, 192, 177) 0px -4px 0px 0px inset; }
.dash-tab.active { color: var(--orange); box-shadow: rgb(255, 79, 0) 0px -4px 0px 0px inset; font-weight: 600; }
.dash-panel { display: none; }
.dash-panel.active { display: block; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.stat-card .stat-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-warm); margin-bottom: 8px; }
.stat-card .stat-value { font-size: 1.75rem; font-weight: 700; color: var(--black-warm); }
.stat-card .stat-sub { font-size: 0.8125rem; color: var(--gray-warm); margin-top: 4px; }
.dash-section-title { font-family: var(--font-head); font-size: 1.125rem; font-weight: 600; color: var(--black-warm); margin-bottom: 16px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead th { text-align: left; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--gray-warm); padding: 10px 14px; border-bottom: 1px solid var(--sand); background: var(--sand-light); }
tbody td { padding: 12px 14px; border-bottom: 1px solid var(--sand-light); color: var(--charcoal); vertical-align: middle; }
tbody tr:hover td { background: var(--cream-off); }
.credit-low-banner { background: var(--orange-light); border: 1px solid #ffd0bb; border-radius: var(--radius-lg); padding: 14px 20px; margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.credit-low-banner p { margin: 0; font-size: 0.9375rem; color: var(--charcoal); }
.set-password-banner { background: var(--red-light); border: 1px solid #fca5a5; border-radius: var(--radius-lg); padding: 14px 20px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.set-password-banner p { margin: 0; font-size: 0.9375rem; color: #991b1b; }
.set-password-banner a { color: var(--red); font-weight: 600; }
.dash-edit-form { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.dash-edit-form h3 { font-size: 1rem; font-weight: 600; color: var(--black-warm); margin-bottom: 16px; }
.dash-edit-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input-group { margin-bottom: 16px; }
.form-input-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
.upgrade-card { background: var(--orange-light); border: 1px solid #ffd0bb; border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.upgrade-card h4 { font-size: 1rem; font-weight: 600; color: var(--black-warm); margin-bottom: 6px; }
.upgrade-card p { font-size: 0.875rem; color: var(--charcoal); margin-bottom: 14px; }
.invoices-table td.credit { color: var(--green); font-weight: 500; }
.invoices-table td.debit { color: var(--red); font-weight: 500; }

/* ============================================================
   18. PLANS PAGE
   ============================================================ */
.plans-page { padding: 72px 0; }
.plans-header { text-align: center; margin-bottom: 56px; }
.plans-header h1 { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--black-warm); margin-bottom: 12px; line-height: 1.1; }
.plans-header p { font-size: 1.125rem; color: var(--gray-warm); max-width: 480px; margin: 0 auto; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 48px; }
.plan-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-featured {
  border: 2px solid var(--orange);
  position: relative;
}
.plan-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--orange);
  color: var(--cream);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.plan-card h3 { font-family: var(--font-head); font-size: 1.125rem; font-weight: 700; color: var(--black-warm); }
.plan-price { font-family: var(--font-head); font-size: 2.25rem; font-weight: 700; color: var(--black-warm); line-height: 1; }
.plan-price small { font-size: 1rem; font-weight: 400; color: var(--gray-warm); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-features li { font-size: 0.875rem; color: var(--charcoal); display: flex; align-items: flex-start; gap: 8px; }
.plan-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   19. SEARCH PAGE
   ============================================================ */
.search-page { padding: 40px 0 72px; }
.search-header { margin-bottom: 32px; }
.search-header h1 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--black-warm); margin-bottom: 8px; }
.search-filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; padding: 20px; background: var(--sand-light); border: 1px solid var(--sand); border-radius: var(--radius-lg); margin-bottom: 28px; }
.search-filters .filter-group { display: flex; flex-direction: column; gap: 4px; }
.search-filters label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--gray-warm); }
.search-filters input, .search-filters select { font-size: 0.875rem; padding: 7px 12px; border-radius: var(--radius); border: 1px solid var(--sand); background: var(--cream); color: var(--black-warm); outline: none; }
.search-filters input:focus, .search-filters select:focus { border-color: var(--orange); }
.search-result-count { font-size: 0.9375rem; color: var(--gray-warm); margin-bottom: 16px; }
.search-result-count strong { color: var(--black-warm); }

/* ============================================================
   20. GET-STARTED (TRIPWIRE) PAGE
   ============================================================ */
.tripwire-hero { background: var(--black-warm); color: var(--cream); padding: 80px 0; text-align: center; }
.tripwire-hero .eyebrow { color: var(--orange); margin-bottom: 16px; }
.tripwire-hero h1 { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--cream); line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px; }
.tripwire-hero p { font-size: 1.125rem; color: var(--sand); max-width: 560px; margin: 0 auto 32px; }
.price-tag { display: inline-block; background: var(--orange); color: var(--cream); font-family: var(--font-head); font-size: 2rem; font-weight: 700; padding: 8px 24px; border-radius: var(--radius-lg); margin-bottom: 24px; }
.tripwire-benefits { background: var(--cream); border-top: 1px solid var(--sand); padding: 72px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { padding: 24px; background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); }
.benefit-icon { font-size: 1.75rem; margin-bottom: 12px; }
.benefit-card h3 { font-size: 1rem; font-weight: 600; color: var(--black-warm); margin-bottom: 8px; }
.benefit-card p { font-size: 0.875rem; color: var(--gray-warm); line-height: 1.6; }

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer { background: var(--black-warm); color: var(--sand); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--cream); }
.footer-brand .accent { color: var(--orange); }
.footer-brand p { font-size: 0.875rem; color: var(--sand); line-height: 1.6; margin-top: 12px; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--sand-mid); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--sand); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(197, 192, 177, 0.2);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-text { font-size: 0.8125rem; color: var(--sand-mid); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8125rem; color: var(--sand-mid); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--cream); }

/* ============================================================
   22. ADMIN PAGES
   ============================================================ */
.admin-nav { background: var(--black-warm); padding: 12px 0; }
.admin-nav .container { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.admin-nav a { font-size: 0.875rem; color: var(--sand); font-weight: 500; text-decoration: none; }
.admin-nav a:hover { color: var(--cream); }
.admin-nav a.admin-home { font-weight: 700; color: var(--orange); font-size: 1rem; }
.admin-page { padding: 40px 0 72px; }
.admin-page h1 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--black-warm); margin-bottom: 24px; }
.admin-toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.admin-card { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 28px; }
.admin-stat { background: var(--sand-light); border: 1px solid var(--sand); border-radius: var(--radius); padding: 16px; text-align: center; }
.admin-stat .n { font-size: 1.75rem; font-weight: 700; color: var(--black-warm); }
.admin-stat .l { font-size: 0.75rem; color: var(--gray-warm); text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }

/* ============================================================
   23. ALERT / NOTIFICATION UTILITIES
   ============================================================ */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 16px; }
.alert-success { background: var(--green-light); border: 1px solid #a7f3d0; color: #065f46; }
.alert-error, .alert-danger { background: var(--red-light); border: 1px solid #fca5a5; color: #991b1b; }
.alert-info { background: var(--blue-light); border: 1px solid #bfdbfe; color: #1e40af; }
.alert-warning { background: var(--orange-light); border: 1px solid #ffd0bb; color: #9a3412; }

/* ============================================================
   24. BLOG / JOBS / EVENTS
   ============================================================ */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 32px; }
.post-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { border-color: var(--sand-mid); text-decoration: none; }
.post-card-img { background: var(--sand-light); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; border-bottom: 1px solid var(--sand); }
.post-card-body { padding: 20px; flex: 1; }
.post-card-tag { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--orange); margin-bottom: 8px; }
.post-card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--black-warm); line-height: 1.35; margin-bottom: 8px; }
.post-card p { font-size: 0.875rem; color: var(--gray-warm); line-height: 1.55; }
.post-card-meta { font-size: 0.8125rem; color: var(--gray-warm); margin-top: 12px; }
.post-body { max-width: 720px; margin: 0 auto; }
.post-body h1 { font-family: var(--font-head); font-size: 2.25rem; font-weight: 700; color: var(--black-warm); line-height: 1.2; margin-bottom: 16px; }
.post-body .post-meta { color: var(--gray-warm); font-size: 0.875rem; margin-bottom: 32px; }
.post-body p { font-size: 1rem; color: var(--charcoal); line-height: 1.75; margin-bottom: 20px; }
.post-body h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--black-warm); margin: 36px 0 12px; }
.post-body h3 { font-size: 1.125rem; font-weight: 600; color: var(--black-warm); margin: 28px 0 10px; }

/* ============================================================
   25. ADD MY BUSINESS / REGISTRATION
   ============================================================ */
.register-page { max-width: 600px; margin: 0 auto; padding: 48px 24px 72px; }
.register-page h1 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--black-warm); margin-bottom: 8px; }
.register-page .subtitle { color: var(--gray-warm); margin-bottom: 32px; }
.register-form { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 32px; }
.register-steps { display: flex; gap: 0; margin-bottom: 32px; counter-reset: step; }
.register-step { flex: 1; text-align: center; font-size: 0.8125rem; font-weight: 600; color: var(--gray-warm); position: relative; padding-top: 36px; }
.register-step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand-light);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
}
.register-step.active { color: var(--orange); }
.register-step.active::before { background: var(--orange); color: var(--cream); border-color: var(--orange); }
.register-step::after { content: ''; position: absolute; top: 14px; left: 50%; width: 100%; height: 1px; background: var(--sand); z-index: -1; }
.register-step:last-child::after { display: none; }

/* ============================================================
   26. MISC UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--gray-warm); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.mt-0 { margin-top: 0; }
.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-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.hp-link { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   27. RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero h1 { font-size: 2.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .biz-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .profile-detail-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .dash-edit-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-form { flex-direction: column; border-radius: var(--radius); }
  .hero-form-input, .hero-form-zip { width: 100%; }
  .hero-form-zip { border-left: none; border-top: 1px solid var(--sand); }
  .hero-search-btn { width: 100%; border-radius: 0 0 var(--radius) var(--radius); }
  .hero-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .plans-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.75rem; }
  .trust-bar-inner { gap: 16px; }
  .listing-card { flex-direction: column; }
  .listing-actions { flex-direction: row; align-items: center; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ADDITIONS — Logo mark, hero pattern, missing page classes
   ============================================================ */

/* Logo mark orange square */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #ff4f00;
  color: #fffefb;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-right: 5px;
  font-family: 'Space Grotesk', sans-serif;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Hero base */
.hero .container { position: relative; }

/* Eyebrow pill badge */
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fffefb;
  border: 1px solid #c5c0b1;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #36342e;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

/* Stats belt */
.stats-belt {
  background: #201515;
  padding: 40px 0;
}
.stats-belt-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(197,192,177,0.2);
}
.stat-belt-item {
  background: #201515;
  padding: 24px;
  text-align: center;
}
.stat-belt-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fffefb;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-belt-label {
  font-size: 0.875rem;
  color: #939084;
}

/* Popular search pills */
.popular-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.popular-label {
  font-size: 0.8125rem;
  color: #939084;
  font-weight: 500;
  white-space: nowrap;
}
.popular-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: #fffefb;
  border: 1px solid #c5c0b1;
  border-radius: 20px;
  font-size: 0.8125rem;
  color: #36342e;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  font-weight: 500;
}
.popular-pill:hover {
  border-color: #ff4f00;
  color: #ff4f00;
  background: #fff3ee;
  text-decoration: none;
}

/* Orange circle step numbers */
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff4f00;
  color: #fffefb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Plans page hero */
.plans-hero {
  background: #fffefb;
  border-bottom: 1px solid #c5c0b1;
  padding: 64px 0 48px;
  text-align: center;
  background-image: radial-gradient(#c5c0b1 1px, transparent 1px);
  background-size: 24px 24px;
  position: relative;
}
.plans-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,254,251,0.7), rgba(255,254,251,0.95));
}
.plans-hero > * { position: relative; }
.plans-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #201515;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.plans-sub { font-size: 1.125rem; color: #939084; max-width: 440px; margin: 0 auto; }

/* Trust strip */
.trust-strip {
  background: #eceae3;
  border-top: 1px solid #c5c0b1;
  border-bottom: 1px solid #c5c0b1;
  padding: 14px 0;
  text-align: center;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-strip-item {
  font-size: 0.875rem;
  color: #36342e;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-strip-item::before { content: '✓'; color: #059669; font-weight: 700; }

/* FAQ section */
.faq-section { padding: 64px 0; border-top: 1px solid #c5c0b1; }
.faq-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #201515;
  text-align: center;
  margin-bottom: 40px;
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: #fffefb;
  border: 1px solid #c5c0b1;
  border-radius: 8px;
  padding: 24px;
}
.faq-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #201515;
  margin-bottom: 10px;
}
.faq-item p { font-size: 0.9375rem; color: #36342e; line-height: 1.65; margin: 0; }

/* Dashboard — missing classes */
.dashboard-page { background: #fffefb; }
.dashboard-wrap { padding: 0 24px 72px; }
.dashboard-header { padding: 32px 0 24px; border-bottom: 1px solid #c5c0b1; margin-bottom: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.dashboard-header h1 { font-family: 'Space Grotesk', sans-serif; font-size: 1.625rem; font-weight: 700; color: #201515; }
.plan-badge { display: inline-flex; align-items: center; padding: 4px 12px; background: #fff3ee; border: 1px solid #ffd0bb; border-radius: 20px; font-size: 0.8125rem; font-weight: 600; color: #ff4f00; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-grid .stat-card { background: #fffefb; border: 1px solid #c5c0b1; border-radius: 8px; padding: 20px; }
.stat-grid .stat-card.stat-green { border-left: 3px solid #059669; }
.stat-grid .stat-card.stat-blue { border-left: 3px solid #2563eb; }
.stat-grid .stat-card.stat-amber { border-left: 3px solid #ff4f00; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: #201515; }
.stat-label { font-size: 0.8125rem; color: #939084; margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.4px; }
.card { background: #fffefb; border: 1px solid #c5c0b1; border-radius: 8px; padding: 24px; margin-bottom: 20px; }
.card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; font-weight: 600; color: #201515; margin-bottom: 16px; }
.card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: #201515; margin-bottom: 12px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { text-align: left; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: #939084; padding: 10px 14px; border-bottom: 1px solid #c5c0b1; background: #eceae3; }
.data-table td { padding: 12px 14px; border-bottom: 1px solid #eceae3; color: #36342e; vertical-align: middle; }
.data-table tr:hover td { background: #fffdf9; }
.form-control { width: 100%; border: 1px solid #c5c0b1; background: #fffefb; border-radius: 5px; padding: 10px 14px; font-size: 0.9375rem; color: #201515; outline: none; font-family: 'Inter', sans-serif; transition: border-color 0.15s; }
.form-control:focus { border-color: #ff4f00; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
.sidebar-meta { font-size: 0.875rem; color: #939084; margin-bottom: 8px; }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-dark { background: #201515; border-bottom: 1px solid rgba(197,192,177,0.2); }
.nav-dark .nav-logo { color: #fffefb; }
.nav-dark .logo-mark { background: #ff4f00; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; color: #939084; text-decoration: none; margin-bottom: 20px; }
.back-link:hover { color: #201515; }

/* Buy-lead page */
.buy-lead-card { background: #fffefb; border: 1px solid #c5c0b1; border-radius: 8px; padding: 28px; }
.buy-lead-header { margin-bottom: 24px; }
.new-lead-badge { display: inline-flex; align-items: center; padding: 4px 12px; background: #fff3ee; border: 1px solid #ffd0bb; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: #ff4f00; margin-bottom: 12px; }
.buy-lead-header h1 { font-family: 'Space Grotesk', sans-serif; font-size: 1.625rem; font-weight: 700; color: #201515; margin-bottom: 6px; }
.lead-location { font-size: 0.9375rem; color: #939084; }
.lead-preview-box { background: #eceae3; border: 1px solid #c5c0b1; border-radius: 8px; padding: 20px; margin-bottom: 20px; }
.lead-preview-box h3 { font-size: 0.9375rem; font-weight: 600; color: #201515; margin-bottom: 8px; }
.lead-preview-box p { font-size: 0.9375rem; color: #36342e; line-height: 1.55; }
.lead-meta { font-size: 0.875rem; color: #939084; margin-top: 6px !important; }
.blur-notice { margin-top: 12px; font-size: 0.8125rem; font-weight: 600; color: #939084; background: #fffefb; border: 1px dashed #c5c0b1; border-radius: 5px; padding: 8px 12px; text-align: center; }
.buy-section { margin-bottom: 16px; }
.price-display { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; color: #201515; margin-bottom: 6px; }
.price-note { font-size: 0.875rem; color: #939084; margin-bottom: 16px; }
.subscribe-nudge { margin-top: 16px; padding: 16px; background: #eceae3; border: 1px solid #c5c0b1; border-radius: 8px; }
.subscribe-nudge p { font-size: 0.875rem; color: #36342e; margin-bottom: 12px; }

/* Auth page */
.auth-page { background: #fffefb; }
.auth-wrap { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-card { background: #fffefb; border: 1px solid #c5c0b1; border-radius: 8px; padding: 40px; width: 100%; max-width: 440px; }
.auth-card h1 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: #201515; margin-bottom: 6px; }
.auth-sub { color: #939084; font-size: 0.9375rem; margin-bottom: 28px; }
.auth-links { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; text-align: center; }
.auth-links a { font-size: 0.875rem; color: #939084; text-decoration: none; }
.auth-links a:hover { color: #ff4f00; }

/* Claim page */
.claim-page { max-width: 560px; margin: 48px auto; padding: 0 24px 72px; }
.claim-card { background: #fffefb; border: 1px solid #c5c0b1; border-radius: 8px; padding: 32px; }
.claim-card h1 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: #201515; margin-bottom: 6px; }
.claim-step { }

/* Results / search */
.results-header { padding: 24px 0; border-bottom: 1px solid #c5c0b1; margin-bottom: 24px; }
.results-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.625rem; font-weight: 700; color: #201515; margin-bottom: 4px; }
.results-sub { font-size: 0.9375rem; color: #939084; }
.results-grid { display: flex; flex-direction: column; gap: 0; }
.empty-state { text-align: center; padding: 64px 24px; }
.empty-state-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.empty-state h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 600; color: #201515; margin-bottom: 8px; }
.empty-state p { font-size: 0.9375rem; color: #939084; max-width: 400px; margin: 0 auto 24px; line-height: 1.6; }
.section-sm { padding: 32px 0; }

/* Responsive additions */
@media (max-width: 768px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-belt-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOLD BORDERS & WARM ORANGE HERO — Site-Wide Visual Upgrade
   ============================================================ */

/* Hero background override (also applied inline in home.html) */
section.hero {
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,120,40,0.18) 0%, transparent 70%),
    linear-gradient(160deg, #ffd4a8 0%, #ffe8cc 25%, #fff3e8 55%, #fffefb 85%) !important;
}
section.hero::before { display: none !important; }

/* Hero search — bold dark border + offset shadow */
.hero-form {
  border: 2.5px solid #201515 !important;
  border-radius: 10px !important;
  box-shadow: 4px 4px 0 0 #201515 !important;
  overflow: hidden !important;
}
.hero-form:focus-within {
  box-shadow: 5px 5px 0 0 #201515 !important;
}
.hero-form-zip { border-left: 1.5px solid #c5c0b1 !important; }
.hero-divider { background: #c5c0b1 !important; }

/* Search button — flush right, no border-radius on left */
.hero-search-btn {
  border-radius: 0 !important;
  font-size: 1rem !important;
  letter-spacing: 0.01em !important;
}

/* Listing cards — bold dark borders everywhere */
.listing-card {
  border: 1.5px solid #201515 !important;
  border-radius: 10px !important;
  transition: transform 0.13s, box-shadow 0.13s !important;
}
.listing-card:hover {
  transform: translateY(-1px) !important;
  box-shadow: 3px 3px 0 0 #201515 !important;
  text-decoration: none !important;
}
.listing-featured {
  border: 2px solid #ff4f00 !important;
  border-radius: 10px !important;
}
.listing-featured:hover {
  box-shadow: 3px 3px 0 0 #ff4f00 !important;
}

/* Sub-category cards */
.subcat-card {
  border: 1.5px solid #c5c0b1 !important;
  transition: border-color 0.13s, transform 0.13s, box-shadow 0.13s !important;
}
.subcat-card:hover {
  border-color: #201515 !important;
  transform: translateY(-1px) !important;
  box-shadow: 2px 2px 0 0 #201515 !important;
}

/* Step cards */
.step-card {
  border: 1.5px solid #c5c0b1 !important;
  border-radius: 8px !important;
  transition: border-color 0.13s, transform 0.13s, box-shadow 0.13s !important;
}
.step-card:hover {
  border-color: #201515 !important;
  transform: translateY(-2px) !important;
  box-shadow: 3px 3px 0 0 #201515 !important;
}

/* Category cards */
.cat-card {
  border: 1.5px solid #c5c0b1 !important;
  border-radius: 8px !important;
  transition: border-color 0.13s, background 0.13s, transform 0.13s, box-shadow 0.13s !important;
}
.cat-card:hover {
  border-color: #ff4f00 !important;
  background: #fff3ee !important;
  transform: translateY(-1px) !important;
  box-shadow: 2px 2px 0 0 #ff4f00 !important;
}

/* Plan cards */
.plan-card {
  border: 1.5px solid #c5c0b1 !important;
  border-radius: 10px !important;
  transition: border-color 0.13s, transform 0.13s, box-shadow 0.13s !important;
}
.plan-card:hover {
  border-color: #201515 !important;
  transform: translateY(-2px) !important;
  box-shadow: 4px 4px 0 0 #201515 !important;
}
.plan-featured {
  border: 2px solid #ff4f00 !important;
}
.plan-featured:hover {
  box-shadow: 4px 4px 0 0 #ff4f00 !important;
}

/* Sidebar cards */
.sidebar-card, .card {
  border: 1.5px solid #c5c0b1 !important;
  border-radius: 10px !important;
}

/* Profile header card */
.profile-header {
  border: 1.5px solid #c5c0b1 !important;
  border-radius: 10px !important;
}

/* Active category pill (popular searches) */
.popular-pill {
  transition: border-color 0.13s, color 0.13s, background 0.13s, box-shadow 0.13s !important;
}
.popular-pill.active {
  border-color: #ff4f00 !important;
  color: #ff4f00 !important;
  background: #fff0e8 !important;
  font-weight: 600 !important;
  box-shadow: 1px 1px 0 0 #ff4f00 !important;
}
.popular-pill:hover:not(.active) {
  border-color: #939084 !important;
  color: #201515 !important;
}

/* Dashboard stat cards */
.stat-card, .stat-grid .stat-card {
  border: 1.5px solid #c5c0b1 !important;
  border-radius: 10px !important;
  transition: box-shadow 0.13s, transform 0.13s !important;
}
.stat-card:hover {
  transform: translateY(-1px) !important;
  box-shadow: 2px 2px 0 0 #c5c0b1 !important;
}

/* Biz mini cards */
.biz-card-mini {
  border: 1.5px solid #c5c0b1 !important;
  border-radius: 10px !important;
  transition: border-color 0.13s, box-shadow 0.13s !important;
}
.biz-card-mini:hover {
  border-color: #201515 !important;
  box-shadow: 2px 2px 0 0 #201515 !important;
}

/* Auth card */
.auth-card {
  border: 1.5px solid #c5c0b1 !important;
  border-radius: 10px !important;
}

/* Nav search — bold border on focus */
.nav-search:focus-within {
  border-color: #201515 !important;
  box-shadow: 2px 2px 0 0 #201515 !important;
}

/* Input focus — orange ring */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #ff4f00 !important;
  outline: none !important;
}

/* Buttons — add slight boldness */
.btn-primary:active { transform: translateY(1px); box-shadow: none !important; }
.btn-outline:hover { box-shadow: 2px 2px 0 0 #c5c0b1; }

/* ============================================================
   SECTION BACKGROUND SHADING
   ============================================================ */

/* Trust bar — warm amber strip */
.trust-bar {
  background: linear-gradient(90deg, #fff3e8 0%, #eceae3 50%, #fff3e8 100%) !important;
  border-top: 1px solid #ffd0bb !important;
  border-bottom: 1px solid #ffd0bb !important;
}

/* Category section — very subtle warm tint */
.section:nth-child(even) {
  background: linear-gradient(180deg, #fffefb 0%, #fff8f3 100%);
}

/* How it works section — light warm shading */
.how-section {
  background: linear-gradient(160deg, #fff8f3 0%, #fffefb 60%) !important;
}

/* Biz / for business section — stronger warm orange band */
.biz-section {
  background: 
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(255,100,20,0.09) 0%, transparent 65%),
    linear-gradient(145deg, #fff3e8 0%, #eceae3 100%) !important;
  border-top: 1px solid #ffd0bb !important;
  border-bottom: 1px solid #ffd0bb !important;
}

/* Stats belt — already dark, add warm radial */
.stats-belt {
  background:
    radial-gradient(ellipse 60% 120% at 50% 50%, rgba(255,79,0,0.12) 0%, transparent 70%),
    #201515 !important;
}

/* Page-level hero sections (category/search headers) */
.cat-header {
  background: linear-gradient(160deg, #fff0e4 0%, #fffefb 70%) !important;
  border-bottom: 1px solid #ffd0bb !important;
}

/* Plans hero */
.plans-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,120,40,0.15) 0%, transparent 70%),
    linear-gradient(160deg, #ffd4a8 0%, #ffe8cc 30%, #fff3e8 60%, #fffefb 90%) !important;
  background-image: none !important;
}
.plans-hero::before { display: none !important; }

/* Search results header */
.results-header {
  background: linear-gradient(160deg, #fff0e4 0%, #fffefb 70%) !important;
  padding: 24px !important;
  border-radius: 10px !important;
  border: 1.5px solid #ffd0bb !important;
  margin-bottom: 24px !important;
}


/* ============================================================
   SITE-WIDE WARM ORANGE SHADING — All Pages
   ============================================================ */

/* Body: subtle warm gradient on every page */
body {
  background: linear-gradient(180deg, #fff6ef 0%, #fffefb 480px) no-repeat, #fffefb;
}

/* Auth page: warm orange wrap */
.auth-page {
  background: linear-gradient(160deg, #ffe8d6 0%, #fff3e8 35%, #fff8f4 70%, #fffefb 100%) !important;
}

/* Category page header card */
.cat-page-header {
  background: linear-gradient(148deg, #ffd4a8 0%, #ffe8cc 35%, #fff3e8 70%, #fffefb 100%);
  border: 1.5px solid #ffd0bb;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 24px;
}

/* Business listing profile header */
.profile-header {
  background: linear-gradient(148deg, #ffd4a8 0%, #ffe8cc 35%, #fff3e8 65%, #fffefb 100%);
  border: 1.5px solid #ffd0bb;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 20px;
}

/* Search results header */
.results-header {
  padding: 28px 0 20px;
  border-bottom: 1px solid #e8c9b5;
  margin-bottom: 24px;
  background: transparent;
}

/* Sidebar cards: warm base (not dark-card) */
.sidebar-card:not(.dark-card) {
  background: linear-gradient(180deg, #fffefb 0%, #fff8f4 100%);
  border-color: #e8c9b5;
}

/* Section-sm: warm tint strip */
.section-sm {
  background: linear-gradient(180deg, #fff6ef 0%, #fffefb 100%) !important;
  border-top: 1px solid #e8c9b5 !important;
}

/* Alternating content sections */
.section:nth-child(even) {
  background: linear-gradient(180deg, #fff8f4 0%, #fffefb 100%);
}

/* Breadcrumb: warm strip */
.breadcrumb {
  background: #fff8f4;
  border-bottom: 1px solid #ffd0bb;
  padding: 10px 0;
  margin-bottom: 20px !important;
}
.breadcrumb a, .breadcrumb-current { color: #36342e; }
.breadcrumb a:hover { color: #ff4f00; }
.breadcrumb-sep { color: #c5c0b1; }

/* Plans page hero */
.plans-hero {
  background: linear-gradient(148deg, #ffd4a8 0%, #ffe8cc 35%, #fff3e8 65%, #fffefb 100%);
  border-bottom: 1px solid #ffd0bb;
}

/* Dashboard page header area */
.dashboard-header, .member-header {
  background: linear-gradient(148deg, #ffd4a8 0%, #ffe8cc 40%, #fffefb 100%);
  border-bottom: 1px solid #ffd0bb;
  padding: 32px 0;
}

/* Buy-lead page */
.buy-lead-page {
  background: linear-gradient(180deg, #fff6ef 0%, #fffefb 60%);
}
