:root {
  --background: #ffffff;
  --foreground: #1f2328;
  --card: #ffffff;
  --primary: #b41d58;
  --primary-dark: #94164a;
  --primary-soft: #f9edf2;
  --secondary: #5f7381;
  --muted: #667784;
  --border: #e3e8ed;
  --success: #25a55b;
  --section-alt: #fbf3f6;
  --shadow: 0 16px 40px rgba(20, 24, 35, 0.08);
  --shadow-soft: 0 8px 24px rgba(20, 24, 35, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --header-height: 74px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", sans-serif; line-height: 1.12; margin: 0; }
p { margin: 0; }
.container { width: min(1120px, calc(100% - 28px)); margin: 0 auto; }
.narrow { width: min(980px, 100%); margin-inline: auto; }
.section { padding: 56px 0; }
.center { text-align: center; }
.alt-bg { background: var(--section-alt); }
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(20,24,35,.06); border-color: var(--border); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { height: 44px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; border: 1px solid var(--border); background: #fff; width: 42px; height: 42px; border-radius: 12px; cursor: pointer; }
.mobile-menu { display: none; padding: 0 14px 14px; border-top: 1px solid var(--border); }
.mobile-menu.open { display: grid; gap: 10px; }
.mobile-menu a { padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.hero {
  padding: calc(var(--header-height) - 8px) 0 44px;
  background: radial-gradient(circle at top left, rgba(180,29,88,.10), transparent 34%), linear-gradient(135deg, #edf3f6 0%, #fbf3f6 55%, #ffffff 100%);
}
.hero-grid, .two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.hero-copy h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; color: #28343d; margin-top: 10px; }
.hero-copy h1 span { color: var(--primary); }
.hero-text { margin-top: 12px; font-size: 19px; color: #5a6b76; max-width: 640px; }
.hero-microproof { margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--primary-dark); }
.pill {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(180,29,88,.10); color: var(--primary);
  border: 1px solid rgba(180,29,88,.22); border-radius: 999px; padding: 9px 15px; font-weight: 700; font-size: 13px;
}
.pill.soft { border: none; background: rgba(180,29,88,.10); }
.trust-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.trust-card {
  display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 15px; box-shadow: var(--shadow-soft); font-weight: 600; line-height: 1.4;
}
.hero-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.form-card, .icon-card, .doctor-card, .faq-item, .final-cta-inner, .testimonial-card, .feature-highlight { box-shadow: var(--shadow-soft); }
.form-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 26px; box-shadow: var(--shadow);
}
.form-card h2 { font-size: 26px; font-weight: 800; }
.form-card p { margin-top: 6px; color: var(--muted); }
.lead-form { margin-top: 18px; display: grid; gap: 12px; }
.lead-form input, .lead-form select {
  width: 100%; height: 50px; border-radius: 12px; border: 1px solid var(--border); padding: 0 14px; background: #fff; color: var(--foreground);
}
.lead-form input:focus, .lead-form select:focus { outline: 2px solid rgba(180,29,88,.18); border-color: rgba(180,29,88,.45); }
.form-note, .form-message { text-align: center; font-size: 13px; }
.form-message { min-height: 18px; color: var(--success); font-weight: 600; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 12px; border: 1px solid transparent; padding: 0 18px;
  cursor: pointer; font-weight: 700; transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { height: 42px; font-size: 14px; }
.btn-lg { height: 52px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border-color: rgba(180,29,88,.20); color: var(--primary); background: #fff; }
.btn-light { background: #fff; color: var(--primary); }
.btn-white-outline { background: transparent; border-color: rgba(255,255,255,.95); color: #fff; }
.stats-bar { padding: 28px 0; background: var(--section-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid, .icon-card-grid, .doctor-grid, .testimonial-grid { display: grid; gap: 18px; }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; }
.stat-icon { font-size: 24px; opacity: .82; }
.stat-value { margin-top: 6px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 34px; font-weight: 800; color: var(--primary); }
.stat-item p { margin-top: 5px; color: var(--muted); font-size: 14px; }
.section-title h2, .two-col h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #28343d; }
.section-title p, .section-copy { margin-top: 12px; color: var(--muted); font-size: 17px; }
.icon-card-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.icon-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 24px 20px; text-align: left;
}
.icon-circle, .doctor-avatar {
  width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px; background: rgba(180,29,88,.10); color: var(--primary); font-size: 24px; font-weight: 800;
}
.icon-card h3 { margin-top: 16px; font-size: 21px; }
.icon-card p { margin-top: 10px; color: var(--muted); }
.why-grid { align-items: start; }
.benefit-list { margin-top: 24px; padding: 0; list-style: none; display: grid; gap: 12px; }
.benefit-list li {
  position: relative; padding-left: 32px; font-size: 16px; font-weight: 500; color: #384750; background: rgba(255,255,255,.7);
  border: 1px solid rgba(180,29,88,.09); border-radius: 14px; padding-top: 12px; padding-bottom: 12px; padding-right: 14px;
}
.benefit-list li::before {
  content: "✔"; position: absolute; left: 12px; top: 11px; color: var(--success); font-weight: bold; font-size: 16px;
}
.feature-stack { display: grid; gap: 16px; }
.feature-highlight {
  background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 22px;
}
.feature-badge { display: inline-block; padding: 7px 10px; border-radius: 999px; background: rgba(180,29,88,.10); color: var(--primary); font-size: 12px; font-weight: 700; }
.feature-highlight h3 { margin-top: 12px; font-size: 24px; }
.feature-highlight p { margin-top: 10px; color: var(--muted); }
.doctors-five { grid-template-columns: repeat(5, 1fr); }
.doctor-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; padding: 0; }
.doctor-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #f6f7f9; }
.doctor-body { padding: 18px; }
.doctor-rating { color: #b06a00; font-size: 13px; font-weight: 700; }
.doctor-card h3 { margin-top: 10px; font-size: 20px; }
.doctor-meta { margin-top: 6px; color: var(--primary); font-weight: 700; font-size: 14px; }
.doctor-copy { margin-top: 10px; color: var(--muted); font-size: 14px; min-height: 64px; }
.doctor-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--primary); }
.testimonial-grid { grid-template-columns: repeat(3,1fr); }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 24px 20px; }
.stars { color: #f2a900; letter-spacing: 2px; font-size: 18px; }
.testimonial-card p { margin-top: 12px; color: #42515c; }
.testimonial-card h3 { margin-top: 18px; font-size: 18px; }
.faq-list { display: grid; gap: 14px; margin-top: 24px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: transparent; border: none; padding: 18px 20px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; cursor: pointer;
}
.faq-answer { display: none; padding: 0 20px 18px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.inline-cta { padding: 0 0 42px; }
.inline-cta-inner {
  background: #fff; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-soft);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.inline-cta-inner strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; color: #28343d; }
.inline-cta-inner p { margin-top: 6px; color: var(--muted); }
.inline-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.floating-actions { position: fixed; right: 16px; bottom: 94px; z-index: 998; display: flex; flex-direction: column; gap: 10px; }
.floating-btn { min-width: 132px; height: 46px; padding: 0 14px; border-radius: 999px; color: #fff; font-weight: 700; box-shadow: var(--shadow); display: inline-flex; align-items: center; justify-content: center; }
.whatsapp-btn { background: #25D366; }
.call-btn { background: var(--primary); }
.final-cta { padding: 0 0 88px; }
.final-cta-inner {
  background: linear-gradient(135deg, var(--primary) 0%, #c63170 100%); color: #fff; border-radius: 28px; padding: 34px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: center;
}
.final-cta-inner h2 { font-size: clamp(28px, 4vw, 40px); margin-top: 12px; }
.final-cta-inner p { margin-top: 10px; color: rgba(255,255,255,.9); }
.final-cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.sticky-mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 999; background: rgba(255,255,255,.97); border-top: 1px solid var(--border); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.sticky-mobile-cta a { flex: 1; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; font-weight: 700; }
.sticky-call { background: var(--primary); color: #fff; }
.sticky-book { border: 1px solid rgba(180,29,88,.2); color: var(--primary); background: #fff; }
@media (max-width: 1100px) {
  .doctors-five { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .desktop-actions { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .two-col, .final-cta-inner, .stats-grid, .icon-card-grid.three-up, .testimonial-grid, .doctors-five {
    grid-template-columns: 1fr;
  }
  .hero { padding: calc(var(--header-height) - 10px) 0 28px; }
  .section { padding: 42px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .final-cta-actions { justify-content: stretch; }
  .final-cta-actions .btn { width: 100%; }
  .inline-cta-inner { flex-direction: column; align-items: flex-start; }
  .inline-cta-actions { width: 100%; }
  .inline-cta-actions .btn { flex: 1 1 0; }
}
@media (max-width: 640px) {
  .floating-actions { right: 12px; bottom: 84px; }
  .floating-btn { min-width: 112px; height: 42px; font-size: 13px; }
  .doctor-copy { min-height: 0; }
  .inline-cta { padding: 0 0 28px; }
  .inline-cta-inner strong { font-size: 20px; }
  .container { width: min(100% - 20px, 1120px); }
  .logo { height: 38px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-text, .section-title p, .section-copy { font-size: 15px; }
  .form-card { padding: 20px; border-radius: 20px; }
  .stat-value { font-size: 30px; }
  .icon-card, .doctor-card, .testimonial-card, .feature-highlight { padding: 18px; }
  .section-title h2, .two-col h2, .final-cta-inner h2 { font-size: 28px; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}
