:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F4F1;
  --bg-dark: #111827;
  --fg: #111827;
  --fg-muted: #6B7280;
  --fg-light: #9CA3AF;
  --accent: #E85D2B;
  --accent-light: #FFF0EA;
  --dental: #2563EB;
  --dental-light: #EFF6FF;
  --border: #E5E7EB;
  --white: #FFFFFF;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--bg-dark);
  color: var(--white);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo b { color: var(--accent); }
.topbar-cta {
  font-size: 13px;
  color: var(--fg-light);
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── HERO ── */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 17px;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.action-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}
.action-pill.urgent { background: var(--accent); color: var(--white); }
.action-pill.phone { background: rgba(255,255,255,0.1); color: var(--white); }
.action-icon { font-size: 16px; }
.hero-note { font-size: 13px; color: #6B7280; }

/* Hero right card */
.hero-card {
  background: var(--white);
  color: var(--fg);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.card-header { margin-bottom: 20px; }
.card-label { font-size: 12px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.card-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.card-service { font-size: 15px; font-weight: 500; }
.card-price { font-size: 16px; font-weight: 700; }
.card-price.er { color: #DC2626; }
.card-price.cp { color: #059669; }
.card-price.na { color: var(--fg-muted); font-size: 14px; }
.card-divider { height: 1px; background: var(--border); margin: 12px 0; }

.hero-stats { display: flex; gap: 20px; }
.stat { flex: 1; text-align: center; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 16px 8px; }
.stat-num { display: block; font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); }
.stat-label { display: block; font-size: 11px; color: #9CA3AF; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.03em; }

/* ── PROBLEM ── */
.problem { background: var(--bg-alt); padding: 100px 40px; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-eyebrow { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.problem-headline { font-size: 40px; font-weight: 800; max-width: 640px; margin-bottom: 60px; color: var(--fg); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.problem-card { background: var(--white); border-radius: 16px; padding: 32px; border: 2px solid transparent; }
.problem-card.highlight { border-color: var(--accent); }
.problem-icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.problem-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 20px; }
.problem-tag { display: inline-block; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.tag-bad { background: #FEE2E2; color: #DC2626; }
.tag-good { background: var(--accent-light); color: var(--accent); }

/* ── SERVICES ── */
.services { background: var(--white); padding: 100px 40px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-eyebrow { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.services-headline { font-size: 40px; font-weight: 800; }
.services-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; background: var(--bg-alt); border-radius: 20px; overflow: hidden; }
.service-col { padding: 48px 40px; }
.services-divider { width: 1px; background: var(--border); }
.col-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; color: var(--fg-muted); }
.service-col.medical .col-label { color: var(--dental); }
.service-col.dental .col-label { color: var(--accent); }
.service-list { list-style: none; }
.service-list li { padding: 10px 0; font-size: 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.services-cta { text-align: center; margin-top: 40px; padding: 24px; background: var(--bg-alt); border-radius: 12px; font-size: 15px; color: var(--fg-muted); }
.services-cta strong { color: var(--fg); }

/* ── CONDITIONS ── */
.conditions { background: var(--bg-alt); padding: 100px 40px; }
.conditions-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.conditions-eyebrow { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.conditions-headline { font-size: 34px; font-weight: 800; margin-bottom: 48px; }
.conditions-list { display: flex; flex-direction: column; gap: 28px; }
.condition { display: flex; gap: 20px; align-items: flex-start; }
.condition-icon { font-size: 28px; flex-shrink: 0; }
.condition-body strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.condition-body span { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

.conditions-right { display: flex; flex-direction: column; gap: 24px; }
.stat-block { background: var(--white); border-radius: 16px; padding: 28px; border-left: 4px solid var(--accent); }
.stat-big { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800; color: var(--fg); line-height: 1; }
.stat-desc { font-size: 14px; color: var(--fg-muted); margin-top: 8px; line-height: 1.6; }

/* ── CLOSING ── */
.closing { background: var(--bg-dark); color: var(--white); padding: 100px 40px; }
.closing-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.closing-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.closing-content p { font-size: 16px; color: #9CA3AF; line-height: 1.7; max-width: 480px; margin-bottom: 32px; }
.closing-location { display: flex; gap: 16px; align-items: center; }
.location-pin { font-size: 24px; }
.closing-location strong { display: block; font-size: 16px; font-weight: 700; }
.closing-location span { font-size: 14px; color: #9CA3AF; }

.closing-hours { background: rgba(255,255,255,0.06); border-radius: 16px; padding: 32px; min-width: 280px; }
.hours-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px; }
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:first-child { color: #9CA3AF; }
.hours-row span:last-child { font-weight: 600; }
.hours-row.holiday span { color: var(--accent); }
.hours-note { font-size: 12px; color: #6B7280; margin-top: 16px; }

/* ── FOOTER ── */
.footer { background: #0D1117; color: var(--white); padding: 60px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.footer-logo b { color: var(--accent); }
.footer-brand p { font-size: 14px; color: #6B7280; line-height: 1.6; }
.footer-phone, .footer-address { font-size: 14px; color: #9CA3AF; margin-bottom: 8px; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 12px; color: #4B5563; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-headline { font-size: 38px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-divider { display: none; }
  .conditions-inner { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-hours { display: none; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .hero-headline { font-size: 32px; }
  .problem, .services, .conditions, .closing { padding: 60px 24px; }
  .problem-headline, .services-headline { font-size: 28px; }
  .topbar { padding: 0 24px; }
}