/* ============================================
   FindCare – Custom Styles
   Bootstrap 5 green healthcare theme
   ============================================ */

/* ---------- 1. Root / Variables ---------- */
/* Sage-emerald primary + warm cream/clay/blush accents — calm and caring */
:root {
  /* Primary green (sage-emerald) */
  --fc-green-50:  #f2f7f5;
  --fc-green-100: #e1ede7;
  --fc-green-200: #c4dbd0;
  --fc-green-300: #9ac3b1;
  --fc-green-400: #6fa890;
  --fc-green-500: #508f74;
  --fc-green-600: #3f7a5f;
  --fc-green-700: #34654f;
  --fc-green-800: #2b5241;
  --fc-green-900: #234336;
  --fc-green-950: #152a22;

  /* Warm cream — body and section backgrounds (replaces stark white) */
  --fc-cream-50:  #fdfaf3;
  --fc-cream-100: #f7f0e1;
  --fc-cream-200: #efe4cb;
  --fc-cream-300: #e3d3ac;

  /* Clay/terracotta — warm accent for highlights and soft CTAs */
  --fc-clay-50:   #fbf3eb;
  --fc-clay-100:  #f5e2cd;
  --fc-clay-200:  #e8c4a0;
  --fc-clay-400:  #d49d6f;
  --fc-clay-500:  #c98860;
  --fc-clay-700:  #8e5b3b;

  /* Dusty blush — gentle pink accent for testimonials, soft sections */
  --fc-blush-50:  #fcf3f0;
  --fc-blush-100: #f7e2da;
  --fc-blush-200: #efc8bb;
  --fc-blush-300: #d9a89a;

  /* Warm neutral text (instead of pure black) */
  --fc-ink-900: #2a2520;
  --fc-ink-700: #4a4239;
  --fc-ink-500: #6f6660;
  --fc-ink-300: #a59a90;

  /* Type stacks — clean modern sans */
  --fc-font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fc-radius:    1rem;
  --fc-radius-lg: 1.25rem;
  --fc-shadow-sm: 0 1px 3px rgba(60,40,20,.06);
  --fc-shadow:    0 4px 12px rgba(60,40,20,.07);
  --fc-shadow-lg: 0 10px 30px rgba(60,40,20,.09);
  --fc-shadow-xl: 0 20px 50px rgba(60,40,20,.11);
}

/* ---------- 2. Global ---------- */
html, body {
  overflow-x: clip;             /* prevent horizontal scroll on iOS */
  max-width: 100%;
}
@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }

body {
  font-family: var(--fc-font-sans);
  color: var(--fc-ink-900);
  background: var(--fc-cream-50);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--fc-green-700); text-decoration: none; }
a:hover { color: var(--fc-green-800); }
img { max-width: 100%; height: auto; }

/* Display headings — Inter, calm tracking, balanced weight */
h1, h2, h3,
.hero-title, .section-title,
.join-hero__title, .join-final-cta__inner h2 {
  font-family: var(--fc-font-sans);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--fc-green-950);
}
h4, h5, h6 {
  font-family: var(--fc-font-sans);
  font-weight: 600;
  letter-spacing: -.005em;
}

/* Cream / warm utility backgrounds */
.bg-cream  { background: var(--fc-cream-50)  !important; }
.bg-cream-strong { background: var(--fc-cream-100) !important; }
.bg-blush  { background: var(--fc-blush-50)  !important; }
.bg-clay   { background: var(--fc-clay-50)   !important; }

/* ---------- 3. Bootstrap Overrides ---------- */
.btn-success {
  --bs-btn-bg: var(--fc-green-600);
  --bs-btn-border-color: var(--fc-green-600);
  --bs-btn-hover-bg: var(--fc-green-700);
  --bs-btn-hover-border-color: var(--fc-green-700);
  --bs-btn-active-bg: var(--fc-green-800);
}
.btn-outline-success {
  --bs-btn-color: var(--fc-green-700);
  --bs-btn-border-color: var(--fc-green-600);
  --bs-btn-hover-bg: var(--fc-green-600);
  --bs-btn-hover-border-color: var(--fc-green-600);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--fc-green-700);
}
.text-success { color: var(--fc-green-600) !important; }
.bg-success   { background-color: var(--fc-green-600) !important; }
.bg-success-subtle { background-color: var(--fc-green-50) !important; }

.badge.bg-success-subtle {
  background-color: var(--fc-green-100) !important;
  color: var(--fc-green-800) !important;
  font-weight: 600;
}
.rounded-4 { border-radius: var(--fc-radius-lg) !important; }
.rounded-5 { border-radius: 1.5rem !important; }

/* ---------- 4. Navbar ---------- */
.fc-navbar {
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.fc-navbar.navbar-scrolled {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  padding-top: .6rem;
  padding-bottom: .6rem;
}
.fc-brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--fc-green-500), var(--fc-green-700));
  border-radius: .65rem;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 2px 10px rgba(63,122,95,.28), inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .25s ease;
}
.fc-brand-icon:hover { transform: scale(1.06) rotate(-3deg); }
.fc-brand-svg { width: 22px; height: 22px; display: block; }
.fc-brand-text {
  font-weight: 600; font-size: 1.25rem;
  color: var(--fc-green-900); letter-spacing: -.02em;
}
/* Dark-hero page: light navbar before scroll */
.page-dark-hero .fc-brand-text { color: #fff; }
.page-dark-hero .fc-brand-icon { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2); }
.page-dark-hero .fc-nav-link { color: rgba(255,255,255,.85); }
.page-dark-hero .fc-nav-link:hover,
.page-dark-hero .fc-nav-link.active { color: #fff; }
.page-dark-hero .navbar-toggler i { color: #fff; }
.page-dark-hero .btn-success.btn-sm { --bs-btn-bg: rgba(255,255,255,.15); --bs-btn-border-color: rgba(255,255,255,.25); color: #fff; }
.page-dark-hero .btn-success.btn-sm:hover { --bs-btn-bg: rgba(255,255,255,.25); }
/* Revert after scroll */
.page-dark-hero .fc-navbar.navbar-scrolled .fc-brand-text { color: var(--fc-green-900); }
.page-dark-hero .fc-navbar.navbar-scrolled .fc-brand-icon { background: var(--fc-green-600); border: none; }
.page-dark-hero .fc-navbar.navbar-scrolled .fc-nav-link { color: #475569; }
.page-dark-hero .fc-navbar.navbar-scrolled .fc-nav-link:hover,
.page-dark-hero .fc-navbar.navbar-scrolled .fc-nav-link.active { color: var(--fc-green-700); }
.page-dark-hero .fc-navbar.navbar-scrolled .navbar-toggler i { color: #1e293b; }
.page-dark-hero .fc-navbar.navbar-scrolled .btn-success.btn-sm {
  --bs-btn-bg: var(--fc-green-600); --bs-btn-border-color: var(--fc-green-600); color: #fff;
}

.fc-nav-link {
  font-weight: 500; font-size: .9rem;
  color: #64748b; transition: color .2s;
}
.fc-nav-link:hover,
.fc-nav-link.active { color: var(--fc-green-700); }

/* ---------- 5. Hero Section ---------- */
.hero-section {
  position: relative;
  padding: 8rem 0 5rem;
  background:
    radial-gradient(1100px 600px at 80% -10%, var(--fc-clay-50) 0%, transparent 60%),
    radial-gradient(900px 500px at 10% 110%, var(--fc-green-50) 0%, transparent 65%),
    linear-gradient(180deg, var(--fc-cream-50) 0%, var(--fc-cream-50) 100%);
  overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero-blob--1 {
  width: 500px; height: 500px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(63,122,95,.06) 0%, transparent 70%);
}
.hero-blob--2 {
  width: 350px; height: 350px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(63,122,95,.05) 0%, transparent 70%);
}
.hero-section > .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .85rem; font-weight: 600;
  background: var(--fc-green-100);
  color: var(--fc-green-800);
  border: 1px solid var(--fc-green-200);
}
.hero-title {
  font-family: var(--fc-font-sans);
  font-size: 3.4rem; font-weight: 600;
  color: var(--fc-green-950);
  line-height: 1.06; letter-spacing: -.022em;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--fc-green-600), var(--fc-green-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fc-fade-up .5s ease-out both;
}
@keyframes fc-fade-up {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Personalized geo badge gets a soft pulse so the user notices it */
.hero-badge {
  transition: background .3s, color .3s;
}
.hero-subtitle {
  font-size: 1.2rem; color: #64748b;
  line-height: 1.65; max-width: 560px;
}

/* ---------- 6. Search Bar ---------- */
.search-bar {
  background: #fff;
  border-radius: 100px;
  box-shadow: var(--fc-shadow-lg), 0 0 0 1px rgba(0,0,0,.04);
  padding: 5px;
  max-width: 680px;
  display: flex; align-items: center;
  transition: box-shadow .25s;
}
.search-bar:focus-within {
  box-shadow: var(--fc-shadow-xl), 0 0 0 2px var(--fc-green-200);
}
.search-bar .search-field {
  display: flex; align-items: center;
  padding: 10px 18px;
  flex: 1; min-width: 0;
}
.search-bar .search-field i {
  font-size: 1.1rem; color: #94a3b8; margin-right: 10px; flex-shrink: 0;
}
.search-bar .search-field input {
  border: none; outline: none; background: none;
  font-size: .95rem; width: 100%; color: #1e293b;
  font-weight: 500;
}
.search-bar .search-field input::placeholder { color: #94a3b8; font-weight: 400; }

/* Custom search suggestions dropdown */
.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -5px;
  right: -5px;
  background: #fff;
  border: 1px solid var(--fc-green-100);
  border-radius: var(--fc-radius);
  box-shadow: 0 8px 30px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.05);
  z-index: 999;
  overflow: hidden;
}
.search-suggestions.open { display: block; }
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1rem;
  font-size: .92rem;
  color: #334155;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.search-suggestion-item i {
  font-size: .8rem;
  color: #94a3b8;
  flex-shrink: 0;
}
.search-suggestion-item:hover,
.search-suggestion-item.active {
  background: var(--fc-green-50);
  color: var(--fc-green-800);
}
.search-suggestion-item:hover i,
.search-suggestion-item.active i {
  color: var(--fc-green-500);
}
.search-suggestion-item + .search-suggestion-item {
  border-top: 1px solid #f1f5f9;
}
.search-bar .search-divider {
  width: 1px; height: 28px; background: #e2e8f0; flex-shrink: 0;
}
.btn-search {
  width: 48px; height: 48px; border-radius: 50% !important;
  background: var(--fc-green-600); color: #fff;
  border: none; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
  font-size: 1.1rem;
}
.btn-search:hover { background: var(--fc-green-700); color: #fff; transform: scale(1.05); }
.btn-search:active { transform: scale(.96); }

/* Mobile search */
@media (max-width: 575.98px) {
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .search-bar {
    border-radius: var(--fc-radius-lg);
    flex-direction: column;
    padding: 8px;
    gap: 0;
  }
  .search-bar .search-field { padding: 12px 14px; width: 100%; }
  .search-bar .search-divider { width: 100%; height: 1px; }
  .btn-search { width: 100%; border-radius: var(--fc-radius) !important; height: 48px; margin-top: 2px; }
}
@media (min-width: 1200px) {
  .hero-title { font-size: 4rem; }
}

/* Hero social proof */
.hero-social-proof {
  font-size: .95rem; color: #64748b;
  font-weight: 500;
}
.hero-social-proof .fw-bold { color: #1e293b; }

/* Popular tags — rotate through palette to add warmth */
.popular-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .82rem; font-weight: 500;
  background: var(--fc-green-50);
  color: var(--fc-green-700);
  border: 1px solid var(--fc-green-100);
  transition: all .2s;
}
.popular-tag:hover {
  background: var(--fc-green-100);
  color: var(--fc-green-800);
  transform: translateY(-1px);
}
.popular-tag:nth-child(3n+1) {
  background: var(--fc-clay-50); color: var(--fc-clay-700); border-color: var(--fc-clay-100);
}
.popular-tag:nth-child(3n+1):hover {
  background: var(--fc-clay-100); color: var(--fc-clay-700);
}
.popular-tag:nth-child(3n+2) {
  background: var(--fc-blush-50); color: #9b4a3c; border-color: var(--fc-blush-100);
}
.popular-tag:nth-child(3n+2):hover {
  background: var(--fc-blush-100); color: #7a3325;
}

/* ---------- 7. Specialty Cards ---------- */
.specialty-card {
  background: #fff;
  border: 1px solid var(--fc-cream-200);
  border-radius: var(--fc-radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: var(--fc-shadow-sm);
}
.specialty-card:hover {
  border-color: var(--fc-green-300);
  box-shadow: var(--fc-shadow-lg);
  transform: translateY(-4px);
}
.specialty-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: .75rem;
  transition: transform .2s;
}
.specialty-card:hover .specialty-icon { transform: scale(1.08); }
.specialty-name {
  font-weight: 600; font-size: .92rem;
  color: #1e293b;
  margin-bottom: 0;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--fc-cream-100);
  border-top: 1px solid var(--fc-cream-200);
  border-bottom: 1px solid var(--fc-cream-200);
  padding: 1.25rem 0;
}
.trust-item {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .95rem; font-weight: 600; color: var(--fc-ink-700);
}
.trust-item i { color: var(--fc-green-600); font-size: 1.1rem; }

/* ---------- Insurance Marquee ---------- */
.insurance-bar {
  background: var(--fc-cream-50);
  border-top: 1px solid var(--fc-cream-200);
  border-bottom: 1px solid var(--fc-cream-200);
  padding: 1.5rem 0 1.25rem;
  overflow: hidden;
}
.insurance-bar__label {
  text-align: center;
  font-size: .85rem; font-weight: 700;
  /* uppercase removed */ letter-spacing: 0;
  color: var(--fc-clay-700);
  margin-bottom: .85rem;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.insurance-logo-item {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .95rem; font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
  padding: .4rem .75rem;
  border-radius: .5rem;
  transition: color .2s;
}
.insurance-logo-item i { color: var(--fc-green-500); font-size: 1rem; }
.insurance-logo-item:hover { color: var(--fc-green-700); }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Condition Chips ---------- */
.condition-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem .75rem;
  border-radius: var(--fc-radius-lg);
  background: #fff;
  border: 1px solid #f1f5f9;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s;
  text-align: center;
  width: 100%;
}
.condition-chip:hover {
  border-color: var(--fc-green-200);
  box-shadow: var(--fc-shadow-lg);
  color: var(--fc-green-800);
  transform: translateY(-3px);
}
.condition-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fc-green-50);
  color: var(--fc-green-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ---------- Feature Showcase ---------- */
.feature-visual {
  border-radius: var(--fc-radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual--green { background: linear-gradient(135deg, var(--fc-green-50), var(--fc-green-100)); }
.feature-visual--blue  { background: linear-gradient(135deg, #eff6ff, #dbeafe); }

.feature-mockup {
  background: #fff;
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow-xl);
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}
.mockup-header {
  display: flex; gap: 5px;
  padding: .6rem .85rem;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}
.mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fc-green-300);
}
.mockup-body { padding: .85rem; }
.mockup-search-bar {
  display: flex; align-items: center; gap: .5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  padding: .45rem .65rem;
  font-size: .68rem; color: #64748b; font-weight: 500;
  margin-bottom: .6rem;
}
.mockup-search-bar i { font-size: .6rem; color: #94a3b8; }
.mockup-card {
  display: flex; align-items: flex-start; gap: .5rem;
  padding: .5rem;
  border: 1px solid #f1f5f9;
  border-radius: .4rem;
  margin-bottom: .45rem;
}
.mockup-avatar {
  width: 28px; height: 28px;
  border-radius: .3rem;
  background: var(--fc-green-100);
  flex-shrink: 0;
}
.mockup-line {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
}
.mockup-line.w-75 { width: 75%; }
.mockup-line.w-65 { width: 65%; }
.mockup-line.w-80 { width: 80%; }
.mockup-line.w-50 { width: 50%; }
.mockup-line.w-45 { width: 45%; }
.mockup-line.w-40 { width: 40%; }
.mockup-line.w-85 { width: 85%; }
.mockup-line.w-90 { width: 90%; }
.mockup-line.w-70 { width: 70%; }
.mockup-line.w-100 { width: 100%; }

.mockup-profile-head {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .6rem;
}
.mockup-avatar-lg {
  width: 36px; height: 36px;
  border-radius: .4rem;
  background: #dbeafe;
  flex-shrink: 0;
}
.mockup-info-row {
  display: flex; gap: .35rem;
  margin-bottom: .6rem;
}
.mockup-info-chip {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .2rem .5rem;
  border-radius: 100px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: .58rem; color: #475569; font-weight: 600;
}
.mockup-review {
  padding: .5rem;
  border: 1px solid #f1f5f9;
  border-radius: .4rem;
  margin-bottom: .4rem;
}

.feature-checklist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.feature-checklist li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem; color: #334155; font-weight: 500;
}
.feature-checklist i {
  color: var(--fc-green-500);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Provider CTA Card ---------- */
.provider-cta-card {
  background: linear-gradient(135deg, var(--fc-green-50) 0%, #ecfeff 100%);
  border: 1px solid var(--fc-green-100);
  border-radius: var(--fc-radius-lg);
  padding: 2.5rem;
}
.provider-cta-icon {
  width: 52px; height: 52px;
  border-radius: var(--fc-radius);
  background: var(--fc-green-100);
  color: var(--fc-green-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ---------- Section Spacing ---------- */
.py-section { padding: 5rem 0; }
/* Section background alternation: cream -> soft blush -> green-tinted */
.bg-soft { background: linear-gradient(180deg, var(--fc-cream-100) 0%, var(--fc-blush-50) 100%); }
section.py-section.bg-white { background: var(--fc-cream-50) !important; }
.section-title {
  font-size: 2.1rem; font-weight: 600;
  color: var(--fc-green-950);
  letter-spacing: -.015em;
  margin-bottom: .25rem;
}
.section-desc {
  color: var(--fc-ink-500); font-size: 1.05rem;
  max-width: 520px; margin: .75rem auto 0;
  line-height: 1.65;
}

/* ---------- Value Cards (Why FindCare) ---------- */
.value-card {
  background: #fff;
  border: 1px solid var(--fc-cream-200);
  border-radius: var(--fc-radius-lg);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all .25s;
  box-shadow: var(--fc-shadow-sm);
}
.value-card:hover {
  border-color: var(--fc-clay-200);
  box-shadow: var(--fc-shadow-lg);
  transform: translateY(-3px);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: var(--fc-radius);
  background: var(--fc-green-50);
  color: var(--fc-green-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.value-card h5 { font-weight: 700; color: var(--fc-green-900); font-size: 1.05rem; }
.value-card p  { color: #64748b; font-size: .95rem; line-height: 1.6; margin-bottom: 0; }

/* ---------- 8. How-It-Works (v2) ---------- */
.step-card-v2 {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-icon-wrap { position: relative; margin-bottom: 1.25rem; }
.step-icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--fc-green-50);
  color: var(--fc-green-700);
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--fc-green-100);
  transition: all .3s;
}
.step-card-v2:hover .step-icon-circle {
  background: var(--fc-green-100);
  border-color: var(--fc-green-300);
  transform: scale(1.05);
}
.step-number-v2 {
  position: absolute; top: -6px; right: calc(50% - 44px);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--fc-green-600);
  color: #fff;
  font-weight: 600; font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(63,122,95,.3);
}
.step-card-v2 h5 { font-weight: 700; color: var(--fc-green-900); }
.step-card-v2 p  { color: #64748b; font-size: .95rem; line-height: 1.6; }
.step-connector { position: relative; margin-top: -7rem; margin-bottom: 2rem; height: 0; }
.step-connector__line {
  position: absolute; top: 0;
  left: 20%; right: 20%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--fc-green-200) 0, var(--fc-green-200) 8px, transparent 8px, transparent 16px);
}

/* ---------- Featured Provider Cards ---------- */
.featured-provider-card {
  display: block;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius-lg);
  padding: 1.25rem;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.featured-provider-card:hover {
  border-color: var(--fc-green-200);
  box-shadow: var(--fc-shadow-lg);
  color: inherit;
}
.fp-avatar {
  width: 52px; height: 52px;
  border-radius: var(--fc-radius);
  background: var(--fc-green-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fp-avatar i { font-size: 1.25rem; color: var(--fc-green-600); }
.fp-rating {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .9rem; font-weight: 700;
  color: #d97706;
}
.fp-rating i { font-size: .82rem; }

/* ---------- Location Chips ---------- */
.location-chip {
  display: inline-flex; align-items: center;
  padding: .55rem 1.15rem;
  border-radius: 100px;
  font-size: .95rem; font-weight: 500;
  background: #fff;
  color: #475569;
  border: 1px solid #e2e8f0;
  transition: all .2s;
  text-decoration: none;
}
.location-chip:hover {
  background: var(--fc-green-50);
  border-color: var(--fc-green-300);
  color: var(--fc-green-800);
  transform: translateY(-1px);
  box-shadow: var(--fc-shadow-sm);
}
.location-chip i { color: var(--fc-green-500); font-size: .9rem; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius-lg);
  padding: 1.75rem;
  height: 100%;
  transition: all .25s;
}
.testimonial-card:hover {
  border-color: var(--fc-green-200);
  box-shadow: var(--fc-shadow-lg);
}
.testimonial-text {
  color: #334155; font-size: .95rem;
  line-height: 1.65; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 1rem;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--fc-green-100);
  color: var(--fc-green-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .85rem;
}

/* ---------- FAQ Accordion ---------- */
.fc-accordion .accordion-item {
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.fc-accordion .accordion-button {
  font-weight: 600; font-size: .95rem;
  color: #1e293b;
  background: #fff;
  padding: 1.15rem 1.5rem;
  box-shadow: none;
}
.fc-accordion .accordion-button:not(.collapsed) {
  background: var(--fc-green-50);
  color: var(--fc-green-800);
  box-shadow: none;
}
.fc-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233f7a5f' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: transform .2s;
}
.fc-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233f7a5f' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: none;
}
.fc-accordion .accordion-body {
  color: #64748b; font-size: .92rem;
  line-height: 1.65;
  padding: 0 1.5rem 1.25rem;
}

/* ---------- CTA Section v2 ---------- */
.cta-section {
  background: var(--fc-green-50);
  border-top: 1px solid var(--fc-green-100);
  padding: 4rem 0;
}
.cta-card {
  background: #fff;
  border: 1px solid var(--fc-green-100);
  border-radius: var(--fc-radius-lg);
  padding: 3rem;
  box-shadow: var(--fc-shadow-lg);
}

/* legacy compat (old step) */
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--fc-green-100);
  color: var(--fc-green-700);
  font-weight: 600; font-size: 1.15rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-card h5 { font-weight: 700; color: var(--fc-green-900); }
.step-card p  { color: #64748b; font-size: .95rem; }

/* ---------- 9. Stats Banner ---------- */
.stats-banner {
  background: linear-gradient(135deg, var(--fc-green-700) 0%, var(--fc-green-900) 100%);
  color: #fff;
  padding: 4rem 0;
  border-radius: 0;
}
.stat-value {
  font-size: 2.75rem; font-weight: 600;
  line-height: 1.1; margin-bottom: .25rem;
}
.stat-label {
  font-size: .95rem; opacity: .8; font-weight: 500;
}
.text-white-50 { color: rgba(255,255,255,.55) !important; }

/* ---------- 11. Provider Cards (List Page) ---------- */
.provider-card {
  position: relative;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius-lg);
  padding: 1.25rem;
  transition: all .2s;
}
.provider-card:hover {
  border-color: var(--fc-green-200);
  box-shadow: var(--fc-shadow);
}
.provider-card.active {
  border-color: var(--fc-green-400);
  box-shadow: 0 0 0 2px var(--fc-green-100);
}
.provider-avatar-box {
  width: 64px; height: 64px;
  border-radius: var(--fc-radius);
  background: var(--fc-green-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.provider-avatar-box i { font-size: 1.5rem; color: var(--fc-green-600); }

/* Rating stars */
.rating-stars { display: inline-flex; gap: 1px; }
.rating-stars .bi-star-fill { color: #f59e0b; }
.rating-stars .bi-star { color: #d1d5db; }
.rating-stars .bi-star-half { color: #f59e0b; }
.rating-stars-icons--sm .bi { font-size: 0.8rem; }
.rating-stars-icons--md .bi { font-size: 0.85rem; }

/* ---------- 12. Providers Filter Bar ---------- */
.filter-bar {
  position: sticky; top: 68px; z-index: 30;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
  padding: .75rem 0;
}

/* ---------- 13. Map ---------- */
.map-container {
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--fc-shadow-lg);
}
#providers-map,
#provider-detail-map {
  width: 100%; min-height: 400px;
}
#providers-map { height: calc(100vh - 220px); min-height: 500px; }
@media (max-width: 991.98px) {
  #providers-map { height: 380px; min-height: 380px; }
}

/* Custom marker */
.fc-marker {
  width: 32px; height: 32px;
  background: var(--fc-green-600);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.fc-marker.active { background: var(--fc-green-500); width: 38px; height: 38px; }

/* ---------- 14. Provider Detail ---------- */
.detail-header {
  background: linear-gradient(180deg, var(--fc-green-50) 0%, #fff 100%);
  padding: 2.5rem 0 2rem;
}
.detail-avatar {
  width: 80px; height: 80px;
  border-radius: var(--fc-radius-lg);
  background: var(--fc-green-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.detail-avatar i { font-size: 2rem; color: var(--fc-green-600); }

.booking-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--fc-radius-lg);
  box-shadow: var(--fc-shadow-lg);
  position: sticky;
  top: 90px;
}
.booking-card .btn-success {
  padding: .75rem 1.5rem;
  font-weight: 600;
}

/* Info chips */
.info-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 100px;
  font-size: .95rem; color: #475569;
  font-weight: 500;
}
.info-chip i { color: var(--fc-green-600); }

/* ---------- 15. Reviews ---------- */
.review-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius);
  padding: 1.25rem;
}
.star-rating-input {
  display: inline-flex; gap: 4px; font-size: 1.5rem; cursor: pointer;
}
.star-rating-input i { color: #d1d5db; transition: color .15s; }
.star-rating-input i.active,
.star-rating-input i.hovered { color: #f59e0b; }

/* ---------- 16. Footer ---------- */
.fc-footer {
  background: var(--fc-green-950);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.fc-footer a { color: rgba(255,255,255,.7); }
.fc-footer a:hover { color: #fff; }
.fc-footer h6 {
  color: #fff; font-weight: 700;
  /* uppercase removed */
  font-size: .82rem; letter-spacing: .005em;
  margin-bottom: 1rem;
}

/* ---------- 17. Pagination ---------- */
.pagination .page-link {
  border-radius: 100px !important;
  border: none;
  color: #475569;
  font-weight: 500;
  margin: 0 2px;
  padding: .45rem .85rem;
  font-size: .875rem;
}
.pagination .page-item.active .page-link {
  background: var(--fc-green-600);
  color: #fff;
}
.pagination .page-link:hover {
  background: var(--fc-green-50);
  color: var(--fc-green-700);
}

/* ---------- 18. Utilities ---------- */
.hover-lift { transition: transform .2s, box-shadow .2s; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: var(--fc-shadow-lg); }
.text-fc-green { color: var(--fc-green-600); }
.bg-fc-green-50 { background: var(--fc-green-50); }
.bg-fc-green-100 { background: var(--fc-green-100); }
.section-label {
  font-size: .95rem; font-weight: 500;
  letter-spacing: 0;
  color: var(--fc-green-700);
  margin-bottom: .35rem;
}
.section-label--green { color: var(--fc-green-600); }

/* ---------- JOIN / Business Page — AI-Native ---------- */
.join-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: linear-gradient(160deg, var(--fc-green-950) 0%, var(--fc-green-900) 40%, var(--fc-green-800) 100%);
  overflow: hidden;
  color: #fff;
}
.join-hero > .container { position: relative; z-index: 1; }
.join-hero__title {
  font-family: var(--fc-font-sans);
  font-size: 3.2rem; font-weight: 600;
  color: #fff;
  line-height: 1.06; letter-spacing: -.03em;
}
.join-hero__accent {
  background: linear-gradient(135deg, var(--fc-green-300), var(--fc-green-100));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-hero__subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  line-height: 1.65; max-width: 520px;
}
.join-hero__check {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.join-hero__check i { color: var(--fc-green-300); }
.join-hero .btn-success {
  --bs-btn-bg: var(--fc-green-400);
  --bs-btn-border-color: var(--fc-green-400);
  --bs-btn-hover-bg: var(--fc-green-300);
  --bs-btn-hover-border-color: var(--fc-green-300);
  color: var(--fc-green-950);
  font-weight: 700;
}
.join-hero .btn-outline-success {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255,255,255,.3);
  --bs-btn-hover-bg: rgba(255,255,255,.1);
  --bs-btn-hover-border-color: rgba(255,255,255,.5);
  --bs-btn-hover-color: #fff;
}
@media (min-width: 1200px) { .join-hero__title { font-size: 3.6rem; } }
@media (max-width: 575.98px) { .join-hero__title { font-size: 2.2rem; } }

/* AI Badge */
.join-ai-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .78rem; font-weight: 700;
  color: var(--fc-green-200);
  /* uppercase removed */ letter-spacing: .005em;
  backdrop-filter: blur(8px);
}
.join-ai-badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fc-green-400);
  animation: ai-pulse 2s ease-in-out infinite;
}
@keyframes ai-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(111,168,144,.6); }
  50% { opacity: .7; box-shadow: 0 0 0 6px rgba(111,168,144,0); }
}

/* AI Dashboard mockup */
.join-hero__visual { padding: 1rem; }
.join-ai-dashboard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--fc-radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.join-ai-dashboard .jd-header {
  display: flex; align-items: center; gap: 6px;
  padding: .65rem 1rem;
  background: rgba(0,0,0,.3);
}
.join-ai-dashboard .jd-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.join-ai-dashboard .jd-title {
  font-size: .65rem; color: rgba(255,255,255,.5);
  font-weight: 600; margin-left: .5rem;
}
.join-ai-dashboard .jd-body { padding: 1rem; }
.join-ai-dashboard .jd-stat-row { display: flex; gap: .6rem; margin-bottom: 0; }
.join-ai-dashboard .jd-stat-card {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .5rem;
  padding: .6rem .7rem;
}
.join-ai-dashboard .jd-stat-label {
  font-size: .58rem; color: rgba(255,255,255,.5);
  font-weight: 600; /* uppercase removed */ letter-spacing: .005em;
}
.join-ai-dashboard .jd-stat-num {
  font-size: 1.1rem; font-weight: 600; color: #fff;
}
.join-ai-dashboard .jd-stat-bar {
  height: 4px; background: rgba(255,255,255,.1); border-radius: 2px;
  margin-top: .35rem; overflow: hidden;
}
.join-ai-dashboard .jd-bar-fill {
  height: 100%; background: var(--fc-green-400); border-radius: 2px;
  transition: width .6s ease;
}

/* AI Activity Feed */
.ai-feed { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .75rem; }
.ai-feed-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .7rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .5rem;
  transition: background .2s;
}
.ai-feed-item:hover { background: rgba(255,255,255,.08); }
.ai-feed-icon {
  width: 28px; height: 28px; border-radius: .4rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}
.ai-feed-icon--seo   { background: rgba(80,143,116,.3); color: var(--fc-green-300); }
.ai-feed-icon--voice  { background: rgba(99,102,241,.3); color: #a5b4fc; }
.ai-feed-icon--match  { background: rgba(14,116,144,.3); color: #67e8f9; }
.ai-feed-icon--review { background: rgba(245,158,11,.3); color: #fcd34d; }
.ai-feed-text {
  flex: 1; font-size: .68rem; color: rgba(255,255,255,.7); line-height: 1.4;
}
.ai-feed-label {
  display: block; font-weight: 700; color: rgba(255,255,255,.9);
  font-size: .6rem; /* uppercase removed */ letter-spacing: .005em;
  margin-bottom: 1px;
}
.ai-feed-time {
  font-size: .58rem; color: rgba(255,255,255,.35); white-space: nowrap;
}

/* AI Capabilities Strip */
.join-ai-strip {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 1.5rem 0;
}
.join-ai-strip__inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .75rem;
}
.join-ai-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1rem;
  border-radius: 100px;
  background: var(--fc-green-50);
  border: 1px solid var(--fc-green-100);
  font-size: .8rem; font-weight: 600;
  color: var(--fc-green-700);
  transition: all .2s;
}
.join-ai-chip:hover {
  background: var(--fc-green-100);
  border-color: var(--fc-green-200);
}
.join-ai-chip i { font-size: .85rem; color: var(--fc-green-500); }

/* Problem cards */
.join-problem-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: all .25s;
}
.join-problem-card:hover {
  border-color: #e2e8f0;
  box-shadow: var(--fc-shadow);
}
.join-problem-icon {
  width: 44px; height: 44px;
  border-radius: var(--fc-radius);
  background: #fef2f2; color: #ef4444;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: .75rem;
}
.join-problem-card h6 { font-weight: 700; color: var(--fc-green-900); font-size: .95rem; margin-bottom: .4rem; }
.join-problem-card p  { color: #64748b; font-size: .92rem; line-height: 1.6; margin-bottom: 0; }

/* AI Solution cards */
.join-ai-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.join-ai-card:hover {
  border-color: var(--fc-green-200);
  box-shadow: var(--fc-shadow-lg);
  transform: translateY(-3px);
}
.join-ai-card--featured {
  border-color: var(--fc-green-300);
  box-shadow: 0 0 0 1px var(--fc-green-200), var(--fc-shadow-lg);
}
.join-ai-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--fc-radius);
  background: var(--fc-green-50);
  color: var(--fc-green-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.join-ai-card__icon--purple { background: #f5f3ff; color: #6d28d9; }
.join-ai-card__icon--cyan   { background: #ecfeff; color: #0e7490; }
.join-ai-card__icon--amber  { background: #fffbeb; color: #b45309; }
.join-ai-card__icon--rose   { background: #fdf2f8; color: #be185d; }
.join-ai-card__icon--indigo { background: #eef2ff; color: #4338ca; }
.join-ai-card__badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: .15rem .6rem; border-radius: 100px;
  font-size: .65rem; font-weight: 700;
  background: var(--fc-green-50); color: var(--fc-green-600);
  /* uppercase removed */ letter-spacing: .005em;
}
.join-ai-card__badge--new {
  background: #f5f3ff; color: #6d28d9;
}
.join-ai-card h5 { font-weight: 700; color: var(--fc-green-900); font-size: 1.1rem; margin-bottom: .5rem; }
.join-ai-card > p { color: #64748b; font-size: .95rem; line-height: 1.6; margin-bottom: 1rem; }
.join-ai-card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.join-ai-card__list li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .9rem; color: #475569; line-height: 1.5;
}
.join-ai-card__list li i { color: var(--fc-green-500); font-size: .75rem; margin-top: 3px; flex-shrink: 0; }

/* Results banner */
.join-results-banner {
  background: linear-gradient(135deg, var(--fc-green-900) 0%, var(--fc-green-950) 100%);
  padding: 4rem 0;
}
.join-result-stat {
  padding: 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--fc-radius);
}
.join-result-num {
  font-size: 2.5rem; font-weight: 600; color: #fff;
  line-height: 1;
}
.join-result-label {
  font-size: .88rem; color: rgba(255,255,255,.6);
  font-weight: 600; margin-top: .3rem;
  /* uppercase removed */ letter-spacing: .005em;
}

/* Comparison table */
.join-compare-table {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  box-shadow: var(--fc-shadow);
}
.join-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
}
.join-compare-row:last-child { border-bottom: none; }
.join-compare-row--header {
  background: var(--fc-green-50);
}
.join-compare-cell {
  padding: .85rem 1.25rem;
  font-size: .95rem;
  display: flex; align-items: center;
}
.join-compare-cell--label {
  font-weight: 600; color: var(--fc-green-900);
}
.join-compare-cell--old {
  color: #94a3b8; font-size: .92rem;
}
.join-compare-cell--new {
  color: var(--fc-green-700); font-weight: 600; font-size: .92rem;
}
.join-compare-cell--new i {
  color: var(--fc-green-500); margin-right: .4rem; font-size: .8rem;
}
.join-compare-row--header .join-compare-cell {
  font-weight: 700; font-size: .75rem;
  /* uppercase removed */ letter-spacing: .005em;
  color: var(--fc-green-700); padding: .75rem 1.25rem;
}

/* Who we serve cards */
.join-who-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius-lg);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all .25s;
  text-align: center;
}
.join-who-card:hover {
  border-color: var(--fc-green-200);
  box-shadow: var(--fc-shadow-lg);
  transform: translateY(-3px);
}
.join-who-icon {
  width: 56px; height: 56px;
  border-radius: var(--fc-radius);
  background: var(--fc-green-50);
  color: var(--fc-green-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.join-who-card h5 { font-weight: 700; color: var(--fc-green-900); font-size: 1rem; }
.join-who-card p  { color: #64748b; font-size: .95rem; line-height: 1.6; margin-bottom: 0; }

/* Case study / testimonial cards */
.join-case-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--fc-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all .25s;
  position: relative;
}
.join-case-card:hover {
  border-color: var(--fc-green-200);
  box-shadow: var(--fc-shadow-lg);
}
.join-case-quote { margin-bottom: .75rem; }
.join-case-quote i { font-size: 2rem; color: var(--fc-green-200); }
.join-case-text {
  color: #334155; font-size: .95rem;
  line-height: 1.65; font-style: italic;
  margin-bottom: 1.25rem;
}
.join-case-author {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .75rem;
}
.join-case-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--fc-green-100);
  color: var(--fc-green-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .7rem;
}
.join-case-metric {
  padding-top: .75rem;
  border-top: 1px solid #f1f5f9;
  font-size: .82rem; color: #64748b; font-weight: 500;
}
.join-case-metric__num {
  font-weight: 600; color: var(--fc-green-600);
  font-size: 1rem;
}

/* Final CTA */
.join-final-cta {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--fc-green-50) 100%);
}
.join-final-cta__inner {
  background: #fff;
  border: 1px solid var(--fc-green-100);
  border-radius: var(--fc-radius-lg);
  padding: 3.5rem 2rem;
  box-shadow: var(--fc-shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}
.join-final-cta .join-ai-badge {
  background: var(--fc-green-50);
  border-color: var(--fc-green-100);
  color: var(--fc-green-600);
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease infinite;
  border-radius: var(--fc-radius);
}
@keyframes skeleton-pulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- 19. Responsive ---------- */
@media (max-width: 991.98px) {
  .feature-visual { padding: 1.5rem; }
  .provider-cta-card { padding: 2rem 1.5rem; }
  .join-solution-card { flex-direction: column; }
  .jd-stat-row { flex-wrap: wrap; }
  .jd-stat-card { min-width: calc(50% - .3rem); }
  .join-ai-dashboard .jd-stat-card { min-width: calc(50% - .3rem); }
  .join-compare-row { grid-template-columns: 1fr; }
  .join-compare-cell--old,
  .join-compare-cell--new { padding-top: 0; }
  .join-compare-cell--label { background: #fafafa; }
  .join-results-banner { text-align: center; }
}
@media (max-width: 767.98px) {
  .hero-section { padding: 6rem 0 3rem; }
  .py-section { padding: 3.5rem 0; }
  .section-title { font-size: 1.6rem; }
  .stat-value { font-size: 1.75rem; }
  .booking-card { position: static; }
  .cta-card { padding: 2rem 1.5rem; }
  .step-connector { display: none !important; }
  .provider-cta-card { padding: 1.5rem; }
  .feature-visual { padding: 1.25rem; }
  .feature-mockup { max-width: 280px; }
  .join-hero { padding: 6rem 0 3rem; }
  .join-result-num { font-size: 2rem; }
  .ai-feed-item { padding: .4rem .5rem; }
  .ai-feed-text { font-size: .62rem; }
  .ai-feed-time { display: none; }
}
@media (max-width: 575.98px) {
  .trust-item span { font-size: .85rem; }
  .testimonial-card { padding: 1.25rem; }
  .condition-chip { padding: 1rem .5rem; font-size: .88rem; }
  .condition-icon { width: 38px; height: 38px; font-size: 1rem; }
  .insurance-logo-item { font-size: .88rem; }
  .hero-social-proof { font-size: .88rem; }
  .join-hero__visual { padding: 0; }
  .join-final-cta__inner { padding: 2rem 1.25rem; }
  .join-case-card { padding: 1.5rem; }
  .join-ai-chip { font-size: .72rem; padding: .35rem .75rem; }
  .join-ai-card { padding: 1.5rem 1.25rem; }
  .join-compare-cell { padding: .65rem .85rem; font-size: .82rem; }
}


/* ============================================
   HOME REDESIGN — split hero, real insurance grid,
   provider preview stack, deep-green value block
   ============================================ */

/* ---------- Centered hero with AI-prompt search ---------- */
.fc-hero {
  position: relative;
  padding: 8rem 0 5.5rem;
  background:
    radial-gradient(900px 500px at 50% -10%, var(--fc-green-100) 0%, transparent 60%),
    radial-gradient(800px 500px at 80% 110%, var(--fc-clay-50) 0%, transparent 60%),
    linear-gradient(180deg, var(--fc-cream-50) 0%, var(--fc-cream-50) 100%);
  overflow: hidden;
  text-align: center;
}
.fc-hero__inner { max-width: 880px; margin: 0 auto; }

/* AI-style single-prompt search box */
.fc-aisearch {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--fc-cream-200);
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(35, 67, 54, .07), 0 1px 0 rgba(255,255,255,.5) inset;
  max-width: 720px;
  margin: 0 auto;
  transition: border-color .25s, box-shadow .25s, transform .15s;
}
.fc-aisearch:focus-within {
  border-color: var(--fc-green-400);
  box-shadow: 0 16px 50px rgba(35, 67, 54, .12), 0 0 0 4px rgba(80,143,116,.12);
}
.fc-aisearch__icon {
  font-size: 1.2rem;
  color: var(--fc-ink-300);
  flex-shrink: 0;
}
.fc-aisearch__input {
  flex: 1; min-width: 0;
  border: none; outline: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px 0;
  color: var(--fc-ink-900);
  font-family: inherit;
}
.fc-aisearch__input::placeholder {
  color: var(--fc-ink-300);
  font-weight: 400;
}
.fc-aisearch__submit {
  background: var(--fc-green-700);
  color: #fff;
  border: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.fc-aisearch__submit:hover { background: var(--fc-green-800); }
.fc-aisearch__submit:active { transform: scale(.95); }

/* ---- Submit-button icon swap (arrow → bouncing dots while "thinking") ---- */
.fc-aisearch__submit-dots {
  display: none;
  align-items: center;
  gap: 3px;
}
.fc-aisearch__submit-dots span {
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: fc-aisearch-bounce 1s infinite ease-in-out;
}
.fc-aisearch__submit-dots span:nth-child(2) { animation-delay: .12s; }
.fc-aisearch__submit-dots span:nth-child(3) { animation-delay: .24s; }
@keyframes fc-aisearch-bounce {
  0%, 70%, 100% { transform: scale(.55); opacity: .55; }
  35%           { transform: scale(1);   opacity: 1; }
}

/* ---- "Thinking" state — sweeping shimmer + dots, applied while we
       hold for ~400ms before navigating to the results page. ---- */
.fc-aisearch.is-thinking {
  border-color: var(--fc-green-400);
  box-shadow: 0 16px 50px rgba(35, 67, 54, .12), 0 0 0 4px rgba(80,143,116,.18);
  pointer-events: none;
  overflow: hidden;
}
.fc-aisearch.is-thinking::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -45%;
  width: 45%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(80, 143, 116, .18),
    transparent
  );
  animation: fc-aisearch-sweep 1.1s linear infinite;
  pointer-events: none;
}
@keyframes fc-aisearch-sweep {
  0%   { transform: translateX(0); }
  100% { transform: translateX(330%); }
}
.fc-aisearch.is-thinking .fc-aisearch__icon {
  animation: fc-aisearch-pulse 1.1s ease-in-out infinite;
  color: var(--fc-green-700);
}
@keyframes fc-aisearch-pulse {
  0%, 100% { opacity: .5;  transform: scale(.92); }
  50%      { opacity: 1;   transform: scale(1.08); }
}
.fc-aisearch.is-thinking .fc-aisearch__input { color: var(--fc-ink-500); }
.fc-aisearch.is-thinking .fc-aisearch__submit-icon { display: none; }
.fc-aisearch.is-thinking .fc-aisearch__submit-dots { display: inline-flex; }

@media (prefers-reduced-motion: reduce) {
  .fc-aisearch.is-thinking::after,
  .fc-aisearch.is-thinking .fc-aisearch__icon,
  .fc-aisearch__submit-dots span { animation: none; }
}

@media (max-width: 575.98px) {
  .fc-aisearch { padding: 6px 6px 6px 18px; }
  .fc-aisearch__input { font-size: 1rem; padding: 12px 0; }
  .fc-aisearch__submit { width: 44px; height: 44px; }
}

/* Suggestion chips below the prompt */
.fc-hero__suggests {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.fc-hero__suggests-label {
  font-size: .88rem;
  color: var(--fc-ink-500);
  margin-right: 4px;
}
.fc-chip {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem; font-weight: 500;
  background: #fff;
  color: var(--fc-green-800);
  border: 1px solid var(--fc-cream-200);
  text-decoration: none;
  transition: all .2s;
}
.fc-chip:hover {
  border-color: var(--fc-green-300);
  background: var(--fc-green-50);
  color: var(--fc-green-900);
  transform: translateY(-1px);
}

/* Search suggestions dropdown for the AI prompt */
.fc-aisearch .search-suggestions {
  top: calc(100% + 12px);
  left: 4px; right: 4px;
  text-align: left;
  border-radius: 18px;
  border-color: var(--fc-cream-200);
}
.fc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .95rem; font-weight: 500;
  letter-spacing: 0;
  color: var(--fc-green-700);
  margin-bottom: 1rem;
}
.fc-hero__eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--fc-green-500);
}
.fc-display {
  font-family: var(--fc-font-sans);
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--fc-green-950);
  margin-bottom: 1.25rem;
}
.fc-display__accent {
  background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fc-lede {
  font-size: 1.15rem; line-height: 1.6;
  color: var(--fc-ink-700);
  max-width: 520px;
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) { .fc-display { font-size: 3rem; } }
@media (max-width: 575.98px) { .fc-display { font-size: 2.4rem; } }

/* Search card — labelled inputs, no pill, more form-like */
.fc-searchcard {
  background: #fff;
  border: 1px solid var(--fc-cream-200);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(35, 67, 54, .08);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: .5rem;
  align-items: end;
  max-width: 580px;
}
.fc-searchcard__field { padding: .35rem .85rem; }
.fc-searchcard__label {
  font-size: .72rem; font-weight: 700;
  /* uppercase removed */ letter-spacing: .005em;
  color: var(--fc-ink-500);
  margin-bottom: 2px; display: block;
}
.fc-searchcard__input {
  width: 100%;
  border: none; outline: none; background: transparent;
  font-size: 1rem; font-weight: 500;
  color: var(--fc-ink-900);
  padding: 2px 0;
}
.fc-searchcard__input::placeholder { color: var(--fc-ink-300); font-weight: 400; }
.fc-searchcard__divider { width: 1px; background: var(--fc-cream-200); align-self: stretch; }
.fc-searchcard__button {
  background: var(--fc-green-700);
  color: #fff;
  border: none;
  height: 56px;
  padding: 0 1.75rem;
  border-radius: 12px;
  font-weight: 600; font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.fc-searchcard__button:hover { background: var(--fc-green-800); }
.fc-searchcard__button:active { transform: scale(.97); }
@media (max-width: 575.98px) {
  .fc-searchcard {
    grid-template-columns: 1fr;
    padding: .75rem;
  }
  .fc-searchcard__divider { display: none; }
  .fc-searchcard__button { width: 100%; }
}

.fc-hero__microcopy {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--fc-ink-500);
  display: flex; flex-wrap: wrap; gap: 1rem;
}
.fc-hero__microcopy strong { color: var(--fc-green-900); font-weight: 700; }

/* ---------- Hero provider preview stack (right side) ---------- */
.fc-stack { position: relative; min-height: 460px; padding-top: 1rem; }
.fc-stack__card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--fc-cream-200);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 16px 50px rgba(35, 67, 54, .1);
  width: 88%;
  transition: transform .35s ease;
}
.fc-stack__card:hover { transform: translateY(-4px); }
.fc-stack__card--1 { top: 0;     left: 0;   transform: rotate(-2deg); z-index: 1; }
.fc-stack__card--2 { top: 130px; right: 0;  transform: rotate(1.5deg); z-index: 2; }
.fc-stack__card--3 { top: 280px; left: 6%;  transform: rotate(-1deg); z-index: 3; }
.fc-stack__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fc-green-100);
  color: var(--fc-green-800);
  font-weight: 600; font-size: .95rem;
  flex-shrink: 0;
}
.fc-stack__avatar--clay { background: var(--fc-clay-100); color: var(--fc-clay-700); }
.fc-stack__avatar--blush { background: var(--fc-blush-100); color: #9b4a3c; }
.fc-stack__name { font-weight: 700; font-size: 1rem; color: var(--fc-ink-900); margin: 0; line-height: 1.25; }
.fc-stack__meta { color: var(--fc-ink-500); font-size: .85rem; margin-top: 2px; }
.fc-stack__rating { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--fc-ink-900); }
.fc-stack__rating-star { color: #f5a623; font-size: .9rem; }
.fc-stack__pill {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--fc-green-50);
  color: var(--fc-green-800);
  margin-top: .65rem;
}
@media (max-width: 991.98px) {
  .fc-stack { display: none; }
}

/* ---------- Quiet trust bar (ZocDoc-like, no big icons) ---------- */
.fc-truststrip {
  background: var(--fc-green-950);
  color: rgba(255,255,255,.85);
  padding: 1.25rem 0;
}
.fc-truststrip__row {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 2.5rem;
  font-size: .92rem; font-weight: 500;
}
.fc-truststrip strong { color: #fff; font-weight: 700; }
.fc-truststrip__divider { color: rgba(255,255,255,.25); }

/* ---------- Insurance logo grid (real-looking, brand-colored wordmarks) ---------- */
.fc-insurance {
  background: var(--fc-cream-50);
  padding: 4rem 0 4.5rem;
}
.fc-insurance__head {
  text-align: center;
  margin-bottom: 2.25rem;
}
.fc-insurance__eyebrow {
  font-size: .95rem; font-weight: 500;
  letter-spacing: 0;
  color: var(--fc-green-700);
  margin-bottom: .35rem;
}
.fc-insurance__title {
  font-size: 1.85rem; font-weight: 600;
  color: var(--fc-green-950);
  letter-spacing: -.018em;
  margin: 0;
}
.fc-insurance__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.fc-insurance__tile {
  background: #fff;
  border-radius: 16px;
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1.5rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 2px 8px rgba(35,67,54,.05);
}
.fc-insurance__tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(35,67,54,.10);
}
.fc-insurance__logo {
  max-height: 68px;
  max-width: 88%;
  width: auto; height: auto;
  object-fit: contain;
}
.fc-insurance__fallback {
  display: none;
  font-weight: 600;
  letter-spacing: -.015em;
  font-size: 1.1rem;
}
.fc-insurance__fallback small {
  display: block;
  font-size: .55em;
  font-weight: 500;
  margin-top: 4px;
  opacity: .7;
}
@media (max-width: 991.98px) { .fc-insurance__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 575.98px) { .fc-insurance__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Deep-green value block (ZocDoc dark section vibe) ---------- */
.fc-darkblock {
  background: var(--fc-green-950);
  color: rgba(255,255,255,.86);
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.fc-darkblock::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(80,143,116,.18) 0%, transparent 60%),
    radial-gradient(600px 400px at 0% 110%, rgba(154, 195, 177, .12) 0%, transparent 60%);
  pointer-events: none;
}
.fc-darkblock > .container { position: relative; z-index: 1; }
.fc-darkblock h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.fc-darkblock__lede {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem; line-height: 1.55;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.fc-valuelist {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}
.fc-valuelist h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .35rem;
  letter-spacing: -.01em;
}
.fc-valuelist p {
  color: rgba(255,255,255,.65);
  margin: 0;
  font-size: .94rem;
  line-height: 1.55;
}
.fc-valuelist__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--fc-green-700);
  color: #fff;
  font-weight: 700; font-size: .85rem;
  margin-right: .65rem;
}
@media (max-width: 767.98px) { .fc-valuelist { grid-template-columns: 1fr; } }

/* ---------- Specialty tiles — soft colored backgrounds with custom SVG icons ---------- */
.fc-spec {
  display: block;
  text-decoration: none;
  background: var(--fc-cream-100);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 4rem;
  text-align: left;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  min-height: 175px;
  position: relative;
  overflow: hidden;
}
.fc-spec__icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--fc-green-800);
  opacity: .9;
}
.fc-spec__svg { width: 32px; height: 32px; display: block; }
.fc-spec:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(35,67,54,.10);
}
.fc-spec__name {
  font-weight: 600; font-size: 1.2rem;
  color: var(--fc-green-950);
  letter-spacing: -.012em;
  margin: 0 0 .35rem;
  line-height: 1.2;
}
.fc-spec__sub {
  font-size: .9rem;
  color: var(--fc-ink-700);
  margin: 0;
  opacity: .8;
}
.fc-spec__arrow {
  position: absolute;
  bottom: 1.25rem; right: 1.5rem;
  color: var(--fc-green-700);
  font-size: 1.4rem;
  transition: transform .25s;
}
.fc-spec:hover .fc-spec__arrow { transform: translateX(4px); }
/* Per-tile color variants — rotate so the row reads as a calm palette */
.fc-spec--green    { background: #e1ede7; }
.fc-spec--green    .fc-spec__arrow,
.fc-spec--green    .fc-spec__icon { color: #2b5241; }
.fc-spec--clay     { background: #f5e2cd; }
.fc-spec--clay     .fc-spec__arrow,
.fc-spec--clay     .fc-spec__icon { color: #8e5b3b; }
.fc-spec--blush    { background: #f7e2da; }
.fc-spec--blush    .fc-spec__arrow,
.fc-spec--blush    .fc-spec__icon { color: #9b4a3c; }
.fc-spec--lavender { background: #ede6f3; }
.fc-spec--lavender .fc-spec__arrow,
.fc-spec--lavender .fc-spec__icon { color: #5b4982; }
.fc-spec--sky      { background: #dceefa; }
.fc-spec--sky      .fc-spec__arrow,
.fc-spec--sky      .fc-spec__icon { color: #1d4e7a; }
.fc-spec--cream    { background: #f1e8d0; }
.fc-spec--cream    .fc-spec__arrow,
.fc-spec--cream    .fc-spec__icon { color: #7c6837; }
.fc-spec--mint     { background: #d8eedf; }
.fc-spec--mint     .fc-spec__arrow,
.fc-spec--mint     .fc-spec__icon { color: #2c5a3f; }
.fc-spec--rose     { background: #f4dbe1; }
.fc-spec--rose     .fc-spec__arrow,
.fc-spec--rose     .fc-spec__icon { color: #8a3a51; }


/* ============================================
   PROVIDERS LIST — search results page
   ============================================ */

.pl-header {
  background: var(--fc-cream-100);
  padding: 6.5rem 0 1.75rem;
  border-bottom: 1px solid var(--fc-cream-200);
}
.pl-title {
  font-family: var(--fc-font-sans);
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: -.02em;
  color: var(--fc-green-950);
  line-height: 1.15;
  margin: 0 0 .5rem;
}
.pl-title__muted  { color: var(--fc-ink-500); font-weight: 500; }
.pl-title__accent {
  background: linear-gradient(135deg, var(--fc-green-700), var(--fc-green-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 575.98px) { .pl-title { font-size: 1.6rem; } }
.pl-meta {
  color: var(--fc-ink-500);
  font-size: .98rem;
  margin: 0 0 1.5rem;
}
.pl-meta strong { color: var(--fc-ink-900); font-weight: 600; }

/* Filter card */
.pl-filter {
  background: #fff;
  border-radius: 16px;
  padding: .5rem .5rem .5rem 1rem;
  display: flex;
  align-items: stretch;
  gap: .25rem;
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 8px 22px rgba(35,67,54,.06);
}
.pl-filter__field {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: .35rem .85rem;
  min-width: 0;
}
.pl-filter__label {
  font-size: .72rem; font-weight: 600;
  color: var(--fc-ink-500);
  letter-spacing: 0;
}
.pl-filter__input,
.pl-filter__select {
  width: 100%;
  border: none; outline: none; background: transparent;
  font-size: .98rem; font-weight: 500;
  color: var(--fc-ink-900);
  font-family: inherit;
  padding: 2px 0;
}
.pl-filter__input::placeholder { color: var(--fc-ink-300); font-weight: 400; }
.pl-filter__select { appearance: none; -webkit-appearance: none; background-image: none; cursor: pointer; }
.pl-filter__divider { width: 1px; background: var(--fc-cream-200); align-self: stretch; }
.pl-filter__btn {
  background: var(--fc-green-700);
  color: #fff;
  border: none;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: 12px;
  font-weight: 600; font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  align-self: center;
}
.pl-filter__btn:hover { background: var(--fc-green-800); }
.pl-filter__btn:active { transform: scale(.97); }
.pl-filter__clear {
  display: inline-flex; align-items: center; justify-content: center;
  align-self: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.4rem; font-weight: 400; line-height: 1;
  color: var(--fc-ink-500);
  background: var(--fc-cream-50);
  text-decoration: none;
  transition: background .2s, color .2s;
  margin-left: 4px;
}
.pl-filter__clear:hover { background: var(--fc-cream-200); color: var(--fc-green-900); }
@media (max-width: 767.98px) {
  .pl-filter {
    flex-direction: column;
    padding: .75rem;
    gap: .5rem;
  }
  .pl-filter__divider { display: none; }
  .pl-filter__btn { width: 100%; height: 44px; }
  .pl-filter__field { padding: .35rem .25rem; }
  .pl-filter__clear { align-self: flex-end; margin-top: -36px; }
}


/* ---------- Main grid (results + map) ---------- */
.pl-main {
  padding: 2.25rem 0 4rem;
  background: var(--fc-cream-50);
}

/* ---------- Result row (card) ---------- */
.pl-results {
  display: flex; flex-direction: column;
  gap: 12px;
}
.pl-row {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 2px 8px rgba(35,67,54,.04);
  transition: transform .15s, box-shadow .2s;
  cursor: pointer;
}
.pl-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 10px 24px rgba(35,67,54,.08);
}

.pl-row__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--fc-cream-100);
  color: var(--fc-green-700);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.pl-row__svg { width: 30px; height: 30px; display: block; }

.pl-row__body { flex: 1; min-width: 0; }
.pl-row__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fc-green-950);
  letter-spacing: -.01em;
  margin: 0 0 .35rem;
  line-height: 1.3;
}
.pl-row__name a {
  color: inherit;
  text-decoration: none;
}
.pl-row__name a:hover { color: var(--fc-green-700); }

.pl-row__tags {
  display: flex; flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 .5rem;
}
.pl-row__tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: .75rem; font-weight: 500;
  background: var(--fc-cream-100);
  color: var(--fc-green-800);
}

.pl-row__meta {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: .35rem;
  color: var(--fc-ink-500);
  font-size: .88rem;
  margin: 0 0 .75rem;
}
.pl-row__rating {
  display: inline-flex; align-items: center; gap: .25rem;
  color: var(--fc-ink-900);
  font-weight: 500;
}
.pl-row__star { color: #f5a623; font-size: .95em; line-height: 1; }
.pl-row__count { color: var(--fc-ink-500); font-weight: 400; font-size: .82rem; }
.pl-row__sep { color: var(--fc-ink-300); }

.pl-row__actions {
  display: flex; flex-wrap: wrap;
  gap: .5rem;
}

/* Buttons within result rows */
.pl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .45rem 1rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: .85rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.pl-btn--primary {
  background: var(--fc-green-700);
  color: #fff;
}
.pl-btn--primary:hover { background: var(--fc-green-800); color: #fff; }
.pl-btn--ghost {
  background: var(--fc-cream-50);
  color: var(--fc-green-800);
  border-color: var(--fc-cream-200);
}
.pl-btn--ghost:hover {
  background: #fff;
  border-color: var(--fc-green-300);
  color: var(--fc-green-900);
}

/* Empty state */
.pl-empty {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 4px 14px rgba(35,67,54,.05);
}
.pl-empty h3 {
  font-size: 1.25rem; font-weight: 600;
  color: var(--fc-green-950);
  margin: 0 0 .5rem;
}
.pl-empty p {
  color: var(--fc-ink-500);
  margin: 0 0 1.5rem;
}

/* Pagination */
.pl-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.pl-pagination__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  background: #fff;
  color: var(--fc-ink-700);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  box-shadow: 0 1px 0 rgba(35,67,54,.04);
}
.pl-pagination__link:hover {
  background: var(--fc-green-50);
  color: var(--fc-green-800);
}
.pl-pagination__link--active {
  background: var(--fc-green-700);
  color: #fff;
  cursor: default;
}

/* Map column */
.pl-mapwrap {
  position: sticky;
  top: 90px;
  height: calc(100vh - 120px);
  min-height: 640px;
  max-height: 840px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--fc-cream-100);
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 4px 14px rgba(35,67,54,.05);
}
#providers-map { height: 100%; width: 100%; }
@media (max-width: 991.98px) {
  .pl-mapwrap { position: static; height: 420px; min-height: auto; max-height: none; margin-top: 1rem; }
}
/* Active state when hovered to match marker active style */
.pl-row.active {
  border-left: 3px solid var(--fc-green-600);
  padding-left: calc(1.4rem - 3px);
  background: var(--fc-cream-50);
}


/* ============================================
   PROVIDER DETAIL — clean header + sticky sidebar
   ============================================ */

.pd-header {
  background: var(--fc-cream-100);
  padding: 6.5rem 0 2.5rem;
  border-bottom: 1px solid var(--fc-cream-200);
}
.pd-breadcrumb {
  font-size: .85rem;
  color: var(--fc-ink-500);
  margin-bottom: 1.25rem;
}
.pd-breadcrumb a { color: var(--fc-ink-500); text-decoration: none; }
.pd-breadcrumb a:hover { color: var(--fc-green-700); }
.pd-breadcrumb__sep { margin: 0 .5rem; opacity: .5; }
.pd-breadcrumb__current { color: var(--fc-ink-900); font-weight: 500; }

.pd-name {
  font-family: var(--fc-font-sans);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: -.02em;
  color: var(--fc-green-950);
  line-height: 1.15;
  margin: 0 0 .75rem;
}
@media (max-width: 575.98px) { .pd-name { font-size: 1.8rem; } }

.pd-meta {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: .65rem;
  color: var(--fc-ink-700);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.pd-meta__sep { color: var(--fc-ink-300); }

.pd-rating { display: inline-flex; align-items: center; gap: .35rem; }
.pd-rating__star { color: #f5a623; font-size: 1.05em; line-height: 1; }
.pd-rating__count { color: var(--fc-ink-500); font-weight: 400; }

.pd-tags {
  display: flex; flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.pd-tag {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 100px;
  background: #fff;
  color: var(--fc-green-800);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid var(--fc-cream-200);
}

/* ---------- Main grid ---------- */
.pd-main { padding: 3rem 0 5rem; background: var(--fc-cream-50); }

/* ---------- Quick facts strip ---------- */
.pd-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 4px 14px rgba(35,67,54,.05);
}
.pd-fact {
  padding: .25rem 1rem;
  border-left: 1px solid var(--fc-cream-200);
}
.pd-fact:first-child { border-left: none; padding-left: 0; }
.pd-fact__label {
  display: block;
  font-size: .8rem;
  color: var(--fc-ink-500);
  margin-bottom: .15rem;
}
.pd-fact__value {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  color: var(--fc-green-950);
}
@media (max-width: 575.98px) {
  .pd-fact { border-left: none; border-top: 1px solid var(--fc-cream-200); padding: .5rem 0; }
  .pd-fact:first-child { border-top: none; padding-top: 0; }
}

/* ---------- Section ---------- */
.pd-section {
  margin-bottom: 3rem;
}
.pd-h2 {
  font-family: var(--fc-font-sans);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--fc-green-950);
  margin: 0 0 1rem;
}
.pd-h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fc-green-950);
  margin: 0 0 1rem;
}
.pd-prose {
  color: var(--fc-ink-700);
  font-size: 1rem;
  line-height: 1.7;
}
.pd-prose p { margin: 0 0 1rem; }
.pd-prose p:last-child { margin: 0; }
.pd-note {
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--fc-ink-500);
}
.pd-empty {
  color: var(--fc-ink-500);
  font-size: .95rem;
  margin: 0;
}
.pd-address {
  font-size: 1rem;
  color: var(--fc-ink-700);
  margin: 0 0 1rem;
}

/* ---------- Chips ---------- */
.pd-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.pd-chip {
  display: inline-block;
  padding: .4rem .9rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
}
.pd-chip--green { background: #e1ede7; color: #2b5241; }
.pd-chip--clay  { background: #f5e2cd; color: #8e5b3b; }
.pd-chip--blush { background: #f7e2da; color: #9b4a3c; }

/* ---------- Roster ---------- */
.pd-roster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .65rem;
}
.pd-roster__item {
  background: #fff;
  border: 1px solid var(--fc-cream-200);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .92rem;
  color: var(--fc-ink-900);
}

/* ---------- Reviews ---------- */
.pd-review-source {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--fc-cream-100);
  padding: .5rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.pd-review-source__label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--fc-green-800);
}
.pd-reviews {
  display: flex; flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.pd-review {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 2px 8px rgba(35,67,54,.04);
}
.pd-review__rating { margin-bottom: .35rem; }
.pd-review__body {
  margin: 0 0 .5rem;
  color: var(--fc-ink-900);
  font-size: .98rem;
  line-height: 1.55;
}
.pd-review__author {
  margin: 0;
  color: var(--fc-ink-500);
  font-size: .82rem;
}

/* ---------- Review form ---------- */
.pd-review-form {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 4px 14px rgba(35,67,54,.05);
}
.pd-field { margin-bottom: 1rem; }
.pd-field__label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--fc-ink-700);
  margin-bottom: .35rem;
}
.pd-input {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--fc-cream-200);
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  background: var(--fc-cream-50);
  color: var(--fc-ink-900);
  transition: border-color .2s, box-shadow .2s;
}
.pd-input:focus {
  outline: none;
  border-color: var(--fc-green-400);
  box-shadow: 0 0 0 3px rgba(80,143,116,.15);
  background: #fff;
}
.pd-alert {
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.pd-alert.d-none { display: none; }
.pd-alert--ok  { background: #e1ede7; color: #2b5241; }
.pd-alert--err { background: #f7e2da; color: #9b4a3c; }

/* ---------- Map ---------- */
.pd-map {
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--fc-cream-100);
}
.pd-map__actions {
  margin-top: .85rem;
  font-size: .9rem;
  color: var(--fc-ink-500);
}

/* ---------- Sidebar ---------- */
.pd-sidebar {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  position: sticky;
  top: 90px;
  box-shadow: 0 1px 0 rgba(35,67,54,.04), 0 6px 20px rgba(35,67,54,.06);
}
.pd-sidebar__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fc-green-950);
  margin: 0 0 1.25rem;
}
.pd-sidebar__details {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--fc-cream-200);
  font-size: .9rem;
}
.pd-sidebar__details dt {
  font-weight: 500;
  color: var(--fc-ink-500);
  font-size: .82rem;
  margin-top: .65rem;
}
.pd-sidebar__details dt:first-of-type { margin-top: 0; }
.pd-sidebar__details dd {
  margin: 0;
  color: var(--fc-ink-900);
}

.pd-back {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-size: .88rem;
  color: var(--fc-ink-500);
  text-decoration: none;
}
.pd-back:hover { color: var(--fc-green-700); }

/* ---------- Buttons (provider detail) ---------- */
.pd-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: .8rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, border-color .2s;
  white-space: nowrap;
}
.pd-btn--block { display: flex; width: 100%; margin-bottom: .65rem; }
.pd-btn--primary {
  background: var(--fc-green-700);
  color: #fff;
}
.pd-btn--primary:hover { background: var(--fc-green-800); color: #fff; }
.pd-btn--primary:active { transform: scale(.98); }
.pd-btn--ghost {
  background: var(--fc-cream-50);
  color: var(--fc-green-800);
  border-color: var(--fc-cream-200);
}
.pd-btn--ghost:hover {
  background: #fff;
  border-color: var(--fc-green-300);
  color: var(--fc-green-900);
}

.pd-link {
  color: var(--fc-green-700);
  text-decoration: none;
  font-weight: 500;
}
.pd-link:hover { color: var(--fc-green-900); text-decoration: underline; }


/* ---------- Cookie banner ---------- */
.fc-cookie {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 9999;
  background: var(--fc-green-950);
  color: rgba(255,255,255,.92);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  max-width: 720px;
  margin: 0 auto;
}
.fc-cookie__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem .9rem 1.25rem;
}
.fc-cookie__text {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
  flex: 1;
}
.fc-cookie__btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--fc-green-950);
  border: none;
  border-radius: 100px;
  padding: .5rem 1.1rem;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: transform .15s, background .2s;
}
.fc-cookie__btn:hover { background: var(--fc-cream-100); }
.fc-cookie__btn:active { transform: scale(.97); }
@media (max-width: 575.98px) {
  .fc-cookie__inner { flex-direction: column; align-items: flex-start; }
  .fc-cookie__btn { align-self: flex-end; }
}

