/* ── HERO ── */
.hero {
  padding: 80px 48px 72px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-actions .btn {
  flex: 1;
  min-width: 160px;
  max-width: 240px;
  justify-content: center;
}
.btn-hero-primary {
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 9px;
}
.btn-hero-outline {
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 9px;
  color: var(--ink-soft);
}
.hero-cities {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.hero-cities strong {
  color: var(--ink-soft);
  font-weight: 500;
}

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0 48px; }

/* ── SECTION ── */
.section { padding: 72px 48px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 520px;
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--red-mid);
  background: var(--red-light);
  color: var(--red-text);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  background: #fff;
  transition: border-color 0.15s ease;
}
.feature:hover { border-color: var(--red-mid); }
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg {
  width: 16px; height: 16px;
  stroke: var(--red); fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.feature p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.feature-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--red-text);
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

/* ── CLINIC STRIP ── */
.clinic-strip {
  background: var(--ink);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.clinic-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.08;
}
.clinic-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.06;
}
.clinic-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.clinic-strip-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.clinic-strip-copy { max-width: 520px; }
.clinic-strip-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red-mid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.clinic-strip h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.clinic-strip h2 em {
  font-style: normal;
  color: var(--red-mid);
}
.clinic-strip-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.clinic-strip-cta { padding-top: 8px; }
.btn-clinic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-btn);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.btn-clinic:hover { background: var(--red-btn-dark); }
.btn-clinic svg {
  width: 14px; height: 14px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.clinic-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 14px;
  overflow: hidden;
}
.clinic-benefit {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
}
.benefit-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(238,66,57,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.benefit-icon svg {
  width: 16px; height: 16px;
  stroke: var(--red-mid); fill: none;
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.clinic-benefit h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.clinic-benefit p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── CITIES ── */
.cities-section { padding: 64px 48px; background: #fafafa; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cities-section .section-label { margin-bottom: 8px; }
.cities-section h2 { margin-bottom: 6px; }
.cities-note { font-size: 13px; color: var(--ink-mute); margin-bottom: 36px; }
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
}
.city-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── FOOTER OVERRIDE ── */
.footer { padding: 32px 48px; gap: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .clinic-benefits { grid-template-columns: 1fr; }
  .clinic-strip-top { flex-direction: column; gap: 28px; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 56px 24px 52px; }
  .hero h1 { font-size: 36px; }
  .section { padding: 56px 24px; }
  .divider { margin: 0 24px; }
  .clinic-strip { padding: 56px 24px; }
  .cities-section { padding: 48px 24px; }
  .footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .clinic-benefits { grid-template-columns: 1fr; }
  .clinic-strip h2 { font-size: 28px; }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .nav-actions .btn-outline { display: none; }
}
