/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero-band {
  background: linear-gradient(135deg, #14532d 0%, #16a34a 55%, #22c55e 100%);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-band-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.hero-band::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #86efac;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}
.hero-band h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.15);
}
.hero-h1-accent { color: #bbf7d0; }
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── Search ───────────────────────────────────────────────────────────────── */
.search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto 20px;
}
.search-wrap input {
  width: 100%;
  padding: 16px 24px 16px 54px;
  border-radius: 99px;
  border: none;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.2), 0 2px 8px rgba(0,0,0,.1);
  transition: box-shadow .2s;
}
.search-wrap input:focus { box-shadow: 0 8px 40px rgba(0,0,0,.25), 0 0 0 3px rgba(255,255,255,.3); }
.search-wrap input::placeholder { color: #a1a1aa; }
.search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); font-size: 18px; pointer-events: none; }

/* ── Service quick links ──────────────────────────────────────────────────── */
.service-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.service-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 99px;
  padding: 6px 15px;
  transition: all .18s;
}
.service-quick-link:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-1px); }
.service-dot-sm { width: 8px; height: 8px; border-radius: 50%; }

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: #0f1a0f;
  padding: 16px 24px;
}
.stats-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #4ade80;
  line-height: 1.1;
}
.stat-label {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px;
}

/* ── Browse layout ────────────────────────────────────────────────────────── */
.browse-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  align-items: start;
  padding-top: 28px;
}

/* ── Filter sidebar ───────────────────────────────────────────────────────── */
.filter-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: 86px;
  box-shadow: 0 2px 8px rgba(22,163,74,.07);
}
.filter-section { margin-bottom: 20px; }
.filter-section:last-child { margin-bottom: 0; }
.filter-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  margin-bottom: 8px;
  padding: 0 4px;
}
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: var(--text-2);
  transition: all .15s;
}
.filter-list a:hover { background: var(--green-pale); color: var(--green-text); }
.filter-list a.active { background: var(--green); color: #fff; font-weight: 600; }
.filter-list a.active .pill { background: rgba(255,255,255,.2); color: #fff; }
.filter-cat-icon { margin-right: 6px; }
.pill {
  font-size: 10px;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-text);
  padding: 2px 8px;
  border-radius: 99px;
}
.filter-divider { height: 1px; background: var(--border); margin: 14px 0; }
.service-filter-list { display: flex; flex-direction: column; gap: 1px; }
.service-filter-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: var(--text-2);
  transition: all .15s;
}
.service-filter-link:hover { background: var(--green-pale); color: var(--green-text); }
.service-filter-link.active { background: var(--green); color: #fff; font-weight: 600; }
.svc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── Results bar ──────────────────────────────────────────────────────────── */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.results-count { font-size: 14px; color: var(--text-2); }
.results-count strong { color: var(--text); font-weight: 700; }
.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 99px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: border-color .15s;
}
.sort-select:focus { border-color: var(--green); }

/* ── Active filter tags ───────────────────────────────────────────────────── */
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.active-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
}
.active-tag-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  transition: background .15s;
  text-decoration: none;
  line-height: 1;
}
.active-tag-x:hover { background: rgba(255,255,255,.35); color: #fff; }

/* ── Section label ────────────────────────────────────────────────────────── */
.section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  margin-bottom: 14px;
}

/* ── Featured grid ────────────────────────────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.featured-card {
  background: linear-gradient(135deg, #14532d 0%, #16a34a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .18s, box-shadow .18s;
}
.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(22,163,74,.3); }
.featured-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.15);
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .04em;
}
.featured-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; line-height: 1.2; }
.featured-cat  { font-size: 12px; opacity: .45; }
.featured-svcs { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.featured-svc  { font-size: 11px; background: rgba(255,255,255,.12); padding: 3px 10px; border-radius: 99px; font-weight: 500; }

/* ── Merchant cards ───────────────────────────────────────────────────────── */
.merchant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.merchant-card {
  background: var(--surface);
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.merchant-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.mc-thumb {
  height: 76px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #d1fae5;
  position: relative;
  text-decoration: none;
  transition: background .18s;
}
.mc-thumb:hover { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.mc-name-link { text-decoration: none; color: inherit; }
.mc-name-link:hover .mc-name { color: var(--green-text); }
.mc-logo {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--green-text);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.mc-logo img { width: 100%; height: 100%; object-fit: contain; }
.mc-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.mc-name { font-size: 15px; font-weight: 700; line-height: 1.2; color: var(--text); }
.mc-cat { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 4px; }
.mc-desc { font-size: 12px; color: var(--text-2); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mc-svcs { display: flex; flex-wrap: wrap; gap: 5px; }
.mc-svc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-text);
  padding: 3px 9px;
  border-radius: 99px;
  border: 1px solid #bbf7d0;
}
.mc-svc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.mc-footer { margin-top: auto; padding-top: 10px; }
.mc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  background: var(--green);
  border: 1px solid var(--green);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: all .18s;
}
.merchant-card:hover .mc-link {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

/* ── Empty state ──────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 52px; margin-bottom: 16px; opacity: .35; }
.empty-state h2 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.empty-state p { color: var(--text-2); font-size: 15px; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-band {
  background: #0f1a0f;
  padding: 64px 40px 72px;
  margin-top: 40px;
}
.faq-band-inner { max-width: 860px; margin: 0 auto; }
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-inner h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: #fff;
  margin-bottom: 32px;
}
.faq-item { border-top: 1px solid rgba(255,255,255,.08); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-q {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  user-select: none;
  transition: color .15s;
}
.faq-q:hover { color: #fff; }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.faq-item.open .faq-toggle { background: var(--green); border-color: var(--green); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .browse-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .filter-list, .service-filter-list { flex-direction: row; flex-wrap: wrap; }
  .filter-section { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
  .filter-title { margin-bottom: 0; white-space: nowrap; }
}
@media (max-width: 640px) {
  .hero-band { padding: 48px 20px 44px; }
  .hero-band h1 { letter-spacing: -1px; }
  .stats-bar { gap: 0; padding: 14px 20px; overflow-x: auto; }
  .stat-item { padding: 0 20px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .merchant-grid { grid-template-columns: 1fr; }
  .faq-band { padding: 48px 20px 56px; }
}
