/* ─── Hero ───────────────────────────────────────── */
.hero {
  padding: 4.5rem 2rem 3rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 12px; font-weight: 500;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; letter-spacing: -1.5px;
  max-width: 640px; margin: 0 auto 1rem;
}
.hero h1 .accent { color: var(--green); }
.hero > p {
  font-size: 1.05rem; color: var(--text-soft);
  max-width: 480px; margin: 0 auto 2rem; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

.search-bar {
  max-width: 560px; margin: 0 auto 2.5rem;
  display: flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 5px;
}
.search-bar input {
  flex: 1; border: none; background: transparent;
  padding: .55rem .6rem; font-size: 14px;
}
.search-bar select {
  border: none; background: transparent; font-size: 13px;
  color: var(--text-soft); padding: 0 8px;
  border-left: 1px solid var(--border);
  width: auto;
}
.search-bar .btn { border-radius: 9px; padding: .5rem 1rem; font-size: 13px; }

.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--green); }
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ─── Section shared ──────────────────────────────── */
.section { padding: 3rem 2rem; }
.section-inner { max-width: 980px; margin: 0 auto; }
.section-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 10px; }
.section-title { font-size: 1.5rem; font-weight: 800; }
.section-sub { font-size: 14px; color: var(--text-soft); margin-top: 2px; }

.cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }

/* ─── How it works ────────────────────────────────── */
.how-section { background: var(--surface); }
.how-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.step { text-align: center; padding: 1.5rem 1rem; }
.step-num { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--green-light); line-height: 1; margin-bottom: 8px; }
.step h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.step p { font-size: 13px; color: var(--text-soft); line-height: 1.55; }

/* ─── CTA ─────────────────────────────────────────── */
.cta-wrap { padding: 0 2rem 3rem; }
.cta-inner { background: var(--green); border-radius: var(--radius-xl); padding: 3.5rem 2rem; text-align: center; max-width: 980px; margin: 0 auto; }
.cta-inner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: .75rem; letter-spacing: -.5px; }
.cta-inner p { color: rgba(255,255,255,.78); margin-bottom: 1.5rem; font-size: 15px; }

/* ─── Footer ──────────────────────────────────────── */
.footer { text-align: center; padding: 1.5rem; border-top: 1px solid var(--border-soft); font-size: 13px; color: var(--text-muted); }
