:root {
  --bg: #F9F8F5;
  --fg: #1A1A1A;
  --accent: #1B6B6B;
  --accent-warm: #C9853A;
  --sand: #E8D5B7;
  --muted: #8A8A82;
  --card-bg: #FFFFFF;
  --border: #E2E0DB;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--accent); }

/* HERO */
.hero {
  padding: 80px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-chip {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--fg);
}

/* PROVIDER CARDS */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.provider-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.card-info { flex: 1; }
.card-name { font-weight: 600; font-size: 15px; }
.card-service { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.card-meta { display: flex; align-items: center; gap: 4px; font-size: 12px; }
.stars { color: #D4A843; letter-spacing: -1px; }
.rating { font-weight: 600; }
.reviews { color: var(--muted); }
.card-price { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--accent); white-space: nowrap; }
.card-price span { font-size: 12px; color: var(--muted); font-family: 'DM Sans', sans-serif; }

/* HOW IT WORKS */
.howitworks {
  background: #F2EFE9;
  padding: 80px 48px;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 40px;
  font-weight: 600;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.step-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* PROVIDERS SECTION */
.providers-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-headline {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  max-width: 520px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.provider-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.provider-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feat-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-icon::before { content: '✓'; }
.provider-feat h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.provider-feat p { font-size: 14px; color: var(--muted); }

/* TRUST SECTION */
.trust-section {
  background: var(--fg);
  color: #fff;
  padding: 64px 48px;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.trust-stat { text-align: center; }
.trust-num {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* CLOSING */
.closing-section {
  padding: 100px 48px;
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.25;
}
.closing-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}
.closing-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cta-btn-primary {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.cta-btn-primary:hover { background: #145252; }
.cta-btn-secondary {
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.cta-btn-secondary:hover { border-color: var(--fg); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* HERO SEARCH */
.hero-search {
  background: var(--fg);
  padding: 100px 48px 80px;
}
.hero-search-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-warm);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 6vw, 68px);
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--sand);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  margin-bottom: 20px;
  width: 100%;
}
.search-field {
  flex: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.search-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.search-input,
.search-select {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fg);
  width: 100%;
  padding: 4px 0 0;
}
.search-input::placeholder { color: #aaa; }
.search-select { cursor: pointer; appearance: none; padding-right: 20px; }
.search-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
  flex-shrink: 0;
}
.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-btn:hover { background: #145252; }

/* QUICK CATS */
.hero-quick-cats {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-quick-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.hero-cat-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-cat-tag:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

/* CATEGORY GRID */
.category-section {
  background: var(--bg);
  padding: 80px 48px;
}
.category-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.category-header { margin-bottom: 48px; }
.category-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: var(--fg);
}
.category-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.65;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(27, 107, 107, 0.12);
  transform: translateY(-2px);
}
.cat-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.cat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
}

/* FEATURED PROVIDERS */
.feat-providers-section {
  background: var(--bg);
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.feat-providers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feat-providers-header {
  margin-bottom: 40px;
}
.feat-providers-header .section-label {
  margin-bottom: 12px;
}
.feat-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.feat-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 6px;
}
.feat-sub {
  font-size: 15px;
  color: var(--muted);
}
.feat-providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}
.feat-card:hover {
  border-color: var(--card-accent, var(--accent));
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.feat-card:hover::before { opacity: 1; }
.feat-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.feat-top-info { flex: 1; min-width: 0; }
.feat-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'DM Sans', sans-serif;
}
.feat-cat-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.feat-cat-icon { font-size: 13px; }
.feat-cat-name { font-weight: 500; }
.feat-loc { font-size: 11px; }
.feat-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.feat-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.feat-rating { display: flex; align-items: center; gap: 3px; }
.feat-stars { color: #D4A843; font-size: 11px; letter-spacing: -0.5px; }
.feat-rating-num { font-size: 13px; font-weight: 700; color: var(--fg); }
.feat-review-count { font-size: 12px; color: var(--muted); }
.feat-price {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--card-accent, var(--accent));
}
.feat-per { font-size: 12px; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.feat-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--card-accent, var(--accent));
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s ease;
}
.feat-card:hover .feat-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .feat-providers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .feat-providers-grid { grid-template-columns: 1fr; }
  .feat-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* TOP PROVIDERS */
.top-providers-section {
  background: #F2EFE9;
  padding: 80px 48px;
}
.top-providers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.top-providers-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.top-providers-header .section-headline {
  flex: 1;
}
.view-all-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding-top: 4px;
  white-space: nowrap;
  transition: gap 0.2s;
}
.view-all-link:hover { gap: 10px; }
.top-providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.prov-mini-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.prov-mini-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(27, 107, 107, 0.1);
  transform: translateY(-1px);
}
.prov-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.prov-details { flex: 1; min-width: 0; }
.prov-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prov-cat {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.prov-meta { display: flex; align-items: center; gap: 3px; font-size: 12px; }
.prov-stars { color: #D4A843; letter-spacing: -1px; }
.prov-rating { font-weight: 600; color: var(--fg); }
.prov-reviews { color: var(--muted); }
.prov-price {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.prov-price span { font-size: 12px; color: var(--muted); font-family: 'DM Sans', sans-serif; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .hero-search, .category-section, .top-providers-section, .howitworks, .providers-section, .trust-section, .closing-section, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-search { padding-top: 64px; padding-bottom: 56px; }
  .hero-title { font-size: 38px; }
  .search-bar { flex-direction: column; }
  .search-divider { width: auto; height: 1px; margin: 0 12px; }
  .search-field { padding: 12px 16px; }
  .search-btn { padding: 16px; justify-content: center; border-radius: 0 0 12px 12px; }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .top-providers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .top-providers-header { flex-direction: column; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .provider-features {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    flex-direction: column;
    gap: 28px;
  }
  .trust-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .nav-tagline { display: none; }
}