/* ──────────────────────────────────────────────────────
   Affordable Dental Implants in Denver — Design System
   ────────────────────────────────────────────────────── */

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

:root {
  --navy:   #0A1628;
  --navy2:  #112040;
  --teal:   #00B4D8;
  --teal2:  #0096B7;
  --green:  #22C55E;
  --white:  #FFFFFF;
  --gray50: #F8FAFC;
  --gray100:#F1F5F9;
  --gray200:#E2E8F0;
  --gray400:#94A3B8;
  --gray600:#475569;
  --gray800:#1E293B;
  --shadow: 0 4px 24px rgba(10,22,40,.10);
  --shadow-lg: 0 8px 40px rgba(10,22,40,.16);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray800);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal2); }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.site-nav__brand {
  font-weight: 700;
  font-size: .875rem;
  color: var(--white);
  max-width: 320px;
  line-height: 1.25;
  white-space: nowrap;
}
.site-nav__brand span { color: var(--teal); }
.site-nav__links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}
.site-nav__links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.site-nav__links a:hover { color: var(--white); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal2) !important; color: var(--white) !important; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal2); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,180,216,.35); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy2); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-block { width: 100%; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0d3058 100%);
  padding: 80px 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,.2);
  border: 1px solid rgba(0,180,216,.4);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--teal); }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.hero__trust-icon { color: var(--green); font-size: 1.1rem; }

/* ── HERO FORM CARD ── */
.hero-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-form p {
  font-size: .875rem;
  color: var(--gray600);
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray600);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--gray800);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.hero-form .form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--gray400);
  margin-top: 10px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--gray50);
  border-top: 1px solid var(--gray200);
  border-bottom: 1px solid var(--gray200);
  padding: 32px 24px;
}
.trust-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-stat__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.trust-stat__num span { color: var(--teal); }
.trust-stat__label {
  font-size: .9rem;
  color: var(--gray600);
  margin-top: 4px;
}

/* ── SECTION ── */
.section {
  padding: 72px 24px;
}
.section--gray { background: var(--gray50); }
.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--gray600);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* ── DOCTOR CARDS ── */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray200);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.doctor-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: var(--white);
  margin-bottom: 16px;
}
.doctor-card__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 2px;
}
.doctor-card__practice {
  font-size: .85rem;
  color: var(--gray600);
  margin-bottom: 12px;
}
.doctor-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-price { background: #E0F7FF; color: #006F8E; }
.badge-financing { background: #DCFCE7; color: #15803D; }
.badge-confidence-high { background: #DCFCE7; color: #15803D; }
.badge-confidence-mid  { background: #DBEAFE; color: #1D4ED8; }
.badge-city { background: var(--gray100); color: var(--gray600); }
.doctor-card__city {
  font-size: .85rem;
  color: var(--gray600);
  margin-bottom: 8px;
}
.doctor-card__phone {
  font-size: .85rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}
.doctor-card__actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

/* ── HOW IT WORKS STRIP ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 52px; height: 52px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p {
  font-size: .9rem;
  color: var(--gray600);
}

/* ── PRICING STRIP ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color .2s;
}
.pricing-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-card__range {
  font-size: 1.5rem; font-weight: 800; color: var(--teal); margin-bottom: 8px;
}
.pricing-card p { font-size: .875rem; color: var(--gray600); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray200);
}
.faq-item:first-child { border-top: 1px solid var(--gray200); }
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-btn svg { flex-shrink: 0; transition: transform .3s; color: var(--teal); }
.faq-btn.open svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: var(--gray600);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ── MULTI-STEP FORM ── */
.form-page {
  min-height: calc(100vh - 64px);
  background: var(--gray50);
  padding: 48px 24px 80px;
}
.form-page__inner {
  max-width: 640px;
  margin: 0 auto;
}
.progress-bar-wrap {
  background: var(--gray200);
  border-radius: 100px;
  height: 6px;
  margin-bottom: 32px;
  overflow: hidden;
}
.progress-bar-fill {
  background: var(--teal);
  height: 100%;
  border-radius: 100px;
  transition: width .4s ease;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-step__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.form-step h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-step > p {
  color: var(--gray600);
  margin-bottom: 28px;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  border: 2px solid var(--gray200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray800);
  cursor: pointer;
  transition: all .2s;
  line-height: 1.3;
}
.option-btn:hover { border-color: var(--teal); color: var(--teal); }
.option-btn.selected { border-color: var(--teal); background: #E0F7FF; color: var(--navy); font-weight: 600; }
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}
.step-indicator {
  font-size: .85rem;
  color: var(--gray400);
  font-weight: 500;
}
.btn-prev {
  background: none;
  border: none;
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray600);
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-prev:hover { color: var(--navy); }

/* ── DOCTOR PROFILE ── */
.profile-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.profile-main__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.profile-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.profile-main__name { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.profile-main__cred { color: var(--gray600); margin-bottom: 8px; }
.profile-main__practice { font-weight: 600; color: var(--teal); }
.profile-section { margin-bottom: 36px; }
.profile-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 2px solid var(--gray200);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spec-pill {
  padding: 6px 14px;
  background: var(--gray100);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray800);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-box {
  text-align: center;
  background: var(--gray50);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.stat-box__num { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.stat-box__label { font-size: .8rem; color: var(--gray600); margin-top: 2px; }
.profile-sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.sidebar-card p {
  font-size: .875rem;
  color: var(--gray600);
  margin-bottom: 20px;
}
.sidebar-info { margin-bottom: 20px; }
.sidebar-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray100);
  font-size: .9rem;
}
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-row strong { min-width: 90px; color: var(--navy); }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray200);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: .8rem; color: var(--gray400); margin-bottom: 10px; }
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card__excerpt { font-size: .875rem; color: var(--gray600); flex: 1; margin-bottom: 16px; }
.blog-post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px;
}
.blog-post-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.blog-post-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.blog-post-content p { color: var(--gray600); line-height: 1.8; margin-bottom: 16px; }
.blog-post-content ul, .blog-post-content ol { margin: 12px 0 20px 24px; color: var(--gray600); line-height: 2; }
.blog-post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem; }
.blog-post-content th { background: var(--navy); color: var(--white); padding: 12px; text-align: left; }
.blog-post-content td { padding: 10px 12px; border-bottom: 1px solid var(--gray200); color: var(--gray800); }
.blog-post-content tr:nth-child(even) td { background: var(--gray50); }
.blog-post-content a { color: var(--teal); font-weight: 500; }
.blog-post-header {
  background: var(--navy);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.blog-post-header h1 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; max-width: 800px; margin: 0 auto 12px; }
.blog-post-meta { font-size: .875rem; color: rgba(255,255,255,.7); }

/* ── COST PAGE ── */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .95rem;
}
.cost-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
}
.cost-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray200);
}
.cost-table tr:nth-child(even) td { background: var(--gray50); }
.cost-table tr.highlight td { font-weight: 700; color: var(--teal); }
.financing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.financing-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius);
  padding: 24px;
}
.financing-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.financing-card ul { list-style: none; color: var(--gray600); font-size: .875rem; line-height: 2; }
.financing-card ul li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* ── HOW IT WORKS ── */
.how-timeline {
  max-width: 800px;
  margin: 0 auto;
}
.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: -24px;
  width: 2px;
  background: var(--gray200);
}
.timeline-step:last-child::before { display: none; }
.timeline-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.timeline-content { padding-top: 16px; }
.timeline-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-content p { color: var(--gray600); line-height: 1.7; }

/* ── THANK YOU ── */
.thank-you-page {
  text-align: center;
  padding: 80px 24px;
  max-width: 700px;
  margin: 0 auto;
}
.thank-you-icon {
  width: 80px; height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}
.thank-you-page h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.thank-you-page p { color: var(--gray600); font-size: 1.05rem; line-height: 1.7; margin-bottom: 12px; }
.match-card {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
  text-align: left;
}
.match-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.match-card__practice { color: var(--gray600); margin-bottom: 16px; font-size: .9rem; }
.match-card__contact { display: flex; gap: 16px; flex-wrap: wrap; }
.match-card__contact a { font-weight: 600; color: var(--teal); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 56px 24px 32px;
}
.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand span { color: var(--teal); }
.footer-desc { font-size: .875rem; line-height: 1.7; margin-bottom: 16px; }
.footer-nap { font-size: .875rem; line-height: 2; }
.footer-nap strong { color: var(--white); }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.75); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--teal); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 72px 24px;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; }

/* ── MOBILE BOTTOM BAR ── */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray200);
  padding: 12px 16px;
  z-index: 90;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
}
.mobile-bottom-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
}
.mobile-bottom-bar .btn-call {
  background: var(--gray100);
  color: var(--navy);
  border: 1.5px solid var(--gray200);
}
.mobile-bottom-bar .btn-match {
  background: var(--teal);
  color: var(--white);
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.breadcrumb {
  padding: 14px 24px;
  background: var(--gray50);
  border-bottom: 1px solid var(--gray200);
  font-size: .875rem;
  color: var(--gray600);
}
.breadcrumb a { color: var(--teal); }
.breadcrumb__inner { max-width: 1100px; margin: 0 auto; }
.sort-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sort-bar span { font-size: .9rem; font-weight: 600; color: var(--gray600); }
.sort-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray200);
  background: var(--white);
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray600);
  cursor: pointer;
  transition: all .2s;
}
.sort-btn:hover, .sort-btn.active {
  border-color: var(--teal);
  color: var(--teal);
  background: #E0F7FF;
}

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-bottom: 32px;
}
.compare-table thead {
  background: var(--navy);
  color: #fff;
}
.compare-table thead th {
  padding: 12px 14px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.compare-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background .15s;
}
.compare-table tbody tr:hover {
  background: #f0fbff;
}
.compare-table td {
  padding: 14px 14px;
  vertical-align: middle;
  color: var(--gray700);
}
.compare-table tbody tr:nth-child(even) {
  background: #f9fafb;
}
.compare-table tbody tr:nth-child(even):hover {
  background: #edf7fc;
}

/* ── TRUST STRIP 4-col upgrade ── */
.trust-strip__inner { grid-template-columns: repeat(4, 1fr); }

/* ── HERO DIFFERENTIATORS ── */
.hero__diff-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.hero__diff-icon {
  width: 40px; height: 40px;
  background: rgba(0,180,216,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.hero__diff-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.hero__diff-item span {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ── HERO FORM TWEAKS ── */
.hero-form__label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 4px;
}
.hero-form__or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray400);
  font-size: .85rem;
  margin: 16px 0;
}
.hero-form__or::before, .hero-form__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray200);
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.why-card__icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card__icon--blue  { background: #DBEAFE; color: #1D4ED8; }
.why-card__icon--teal  { background: #E0F7FF; color: #0096B7; }
.why-card__icon--green { background: #DCFCE7; color: #15803D; }
.why-card__icon--gold  { background: #FEF9C3; color: #854D0E; }
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .875rem;
  color: var(--gray600);
  line-height: 1.7;
  margin-bottom: 14px;
}
.why-card__proof {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  background: #DCFCE7;
  padding: 5px 10px;
  border-radius: 100px;
  display: inline-block;
}

/* ── ABOUT SECTION (navy bg) ── */
.section--navy {
  background: var(--navy);
}

/* ── CREDIBILITY STRIP — 3 trust cards on navy ── */
.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.credibility-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 32px;
  transition: background .2s;
}
.credibility-card:hover { background: rgba(255,255,255,.10); }
.credibility-card__icon {
  width: 56px; height: 56px;
  background: rgba(0,180,216,.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.credibility-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.credibility-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.credibility-card__proof {
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.25);
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
}

/* ── ABOUT GRID (kept for backwards compat, not used on homepage now) ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.about-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
}
.about-card__num { font-size: 2rem; font-weight: 800; color: var(--teal); opacity: .6; margin-bottom: 10px; }
.about-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.about-card p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ── ABOUT STORY SECTION ── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-story__images {
  position: relative;
  height: 480px;
}
.about-story__img-main {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.about-story__img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.about-story__copy h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 20px;
  line-height: 1.25;
}
.about-story__copy p {
  color: var(--gray600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 24px;
  background: var(--gray50);
  border-radius: var(--radius);
  border: 1px solid var(--gray200);
}
.about-stat__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
}
.about-stat__label {
  font-size: .75rem;
  color: var(--gray500);
  line-height: 1.4;
  margin-top: 4px;
}

/* ── PRICING CARD ICON — SVG-based ── */
.pricing-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(0,180,216,.1);
  border-radius: 14px;
  color: var(--teal);
  margin-bottom: 16px;
}

/* ── PRICING ENHANCEMENTS ── */
.pricing-partner-tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0,180,216,.15);
  color: var(--teal);
  padding: 2px 7px;
  border-radius: 100px;
  vertical-align: middle;
  letter-spacing: .05em;
}
.pricing-standard {
  font-size: .82rem;
  color: var(--gray400);
  text-decoration: line-through;
  margin-bottom: 12px;
}

/* ── LENDER GRID ── */
.lender-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.lender-card {
  background: var(--white);
  border: 2px solid var(--gray200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.lender-card:hover { transform: translateY(-3px); }
.lender-card--proceed  { border-top-color: #1D4ED8; }
.lender-card--cherry   { border-top-color: #DC2626; }
.lender-card--carecredit { border-top-color: #15803D; }
.lender-card--lending  { border-top-color: #7C3AED; }
.lender-card--sunbit   { border-top-color: #D97706; }
.lender-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 8px;
}
.lender-logo {
  font-weight: 800;
  font-size: .95rem;
  color: var(--navy);
}
.lender-badge {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--gray100);
  color: var(--gray600);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.lender-apr {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.lender-term {
  font-size: .82rem;
  color: var(--gray400);
  margin-bottom: 14px;
}
.lender-pros {
  list-style: none;
  margin-bottom: 14px;
}
.lender-pros li {
  font-size: .82rem;
  color: var(--gray600);
  padding: 4px 0;
  border-bottom: 1px solid var(--gray100);
}
.lender-pros li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.lender-best {
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal);
  background: #E0F7FF;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

/* ── FINANCING CALCULATOR ── */
.calc-card {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.calc-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.calc-card__icon {
  width: 48px; height: 48px;
  background: #E0F7FF;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.calc-card__header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.calc-card__header p { font-size: .85rem; color: var(--gray600); }
.calc-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.calc-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray600);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.calc-input-wrap { position: relative; }
.calc-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray400);
  font-weight: 600;
  pointer-events: none;
}
.calc-input-wrap input,
.calc-group select {
  width: 100%;
  padding: 10px 12px 10px 24px;
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray800);
  background: var(--white);
}
.calc-group select { padding-left: 12px; }
.calc-input-wrap input:focus,
.calc-group select:focus { outline: none; border-color: var(--teal); }
.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.calc-result-item {
  background: var(--gray50);
  border: 1px solid var(--gray200);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
}
.calc-result-item--mid {
  background: #E0F7FF;
  border-color: var(--teal);
}
.calc-result-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray400);
  margin-bottom: 6px;
}
.calc-result-amount {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.calc-result-sub {
  display: block;
  font-size: .75rem;
  color: var(--gray400);
}
.calc-result-item--mid .calc-result-label { color: var(--teal2); }
.calc-result-item--mid .calc-result-amount { color: var(--teal); }
.calc-disclaimer {
  font-size: .78rem;
  color: var(--gray400);
  text-align: center;
  line-height: 1.5;
}

/* ── FOOTER PARTNER BADGES ── */
.footer-partner-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.footer-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 10px;
  background: rgba(0,180,216,.15);
  color: var(--teal);
  border: 1px solid rgba(0,180,216,.3);
  border-radius: 100px;
}

/* ── MOBILE BOTTOM BAR UPDATE ── */
.mobile-bottom-bar { display: none; }
.btn-chat-mobile {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  font-family: inherit;
  background: var(--gray100);
  color: var(--navy);
  border: 1.5px solid var(--gray200);
  cursor: pointer;
}
.btn-match {
  flex: 1;
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  background: var(--teal);
  color: var(--white);
}

/* ── CHAT WIDGET ── */
.chat-bubble {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,180,216,.45);
  z-index: 200;
  transition: transform .2s, box-shadow .2s;
}
.chat-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(0,180,216,.55); }
.chat-bubble__label { font-size: .6rem; font-weight: 700; letter-spacing: .04em; margin-top: 2px; }
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  max-height: 580px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 60px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  z-index: 201;
  transform: translateY(24px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
}
.chat-widget.chat-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.chat-widget__header {
  background: var(--navy);
  padding: 16px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.chat-header-name { font-weight: 700; color: var(--white); font-size: .9rem; }
.chat-header-status { font-size: .75rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; }
.chat-online-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}
.chat-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.chat-close-btn:hover { color: var(--white); }
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray50);
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: .875rem;
  line-height: 1.5;
}
.chat-msg--bot {
  background: var(--white);
  border: 1px solid var(--gray200);
  color: var(--gray800);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.chat-msg--user {
  background: var(--teal);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.chat-input-wrap {
  padding: 12px 14px;
  border-top: 1px solid var(--gray200);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
}
.chat-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chat-choice-btn {
  padding: 7px 14px;
  border: 1.5px solid var(--teal);
  border-radius: 100px;
  background: transparent;
  color: var(--teal);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.chat-choice-btn:hover {
  background: var(--teal);
  color: var(--white);
}
.chat-input-row {
  display: flex;
  gap: 8px;
}
.chat-text-input {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .875rem;
  color: var(--gray800);
}
.chat-text-input:focus { outline: none; border-color: var(--teal); }
.chat-send-btn {
  width: 40px; height: 40px;
  background: var(--teal);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.chat-send-btn:hover { background: var(--teal2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero-form { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile-page { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .site-nav__links { display: none; }
  .nav-mobile-toggle { display: block; }
  .chat-widget { width: calc(100vw - 32px); right: 16px; }
  .credibility-strip { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-story__images { height: 280px; }
  .about-story__img-accent { width: 120px; height: 100px; right: -12px; bottom: -12px; }
  .about-story__stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px; }
  .section { padding: 48px 20px; }
  .form-card { padding: 24px; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 70px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .calc-results { grid-template-columns: 1fr; }
  .chat-bubble { bottom: 80px; }
  .chat-widget { bottom: 80px; max-height: 480px; }
}
@media (max-width: 480px) {
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .lender-grid { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }
  .chat-widget { width: calc(100vw - 16px); right: 8px; }
}

/* ─────────── CITY PAGES + SERVICE AREAS ─────────── */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.nearby-card {
  display: block;
  padding: 22px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.nearby-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(0,180,216,.12);
}
.nearby-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 6px; }
.nearby-card p  { font-size: .85rem; color: #6B7280; margin: 0 0 12px; }
.nearby-card__cta { color: var(--teal); font-weight: 600; font-size: .9rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 24px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.service-card p  { color: #4B5563; margin: 0 0 14px; line-height: 1.55; }
.service-card a  { color: var(--teal); font-weight: 600; text-decoration: none; font-size: .9rem; }
.service-card a:hover { text-decoration: underline; }

.city-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.city-index-card {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  transition: all .15s ease;
}
.city-index-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10,22,40,.08);
}
.city-index-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 10px; }
.city-index-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: .75rem; color: #6B7280; margin-bottom: 10px;
}
.city-index-meta span {
  background: #F3F4F6; padding: 3px 8px; border-radius: 4px;
}
.city-index-cta { color: var(--teal); font-weight: 600; font-size: .85rem; }

.footer-cities {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-cities h4 {
  color: #fff; font-size: .95rem; margin: 0 0 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.footer-cities-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px 16px;
}
.footer-cities-list a {
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: .85rem; line-height: 1.7;
  transition: color .15s ease;
}
.footer-cities-list a:hover { color: var(--teal); }
