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

:root {
  --bg: #FAFAF8;
  --bg-alt: #F0F0EC;
  --fg: #1A1A2E;
  --fg-muted: #6B7280;
  --accent: #0D9488;
  --accent-dark: #0F766E;
  --accent-light: #CCFBF1;
  --surface: #FFFFFF;
  --border: #E5E5E0;
  --red: #EF4444;
  --green: #10B981;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* HERO WIDGET */
.hero-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  font-size: 14px;
}
.widget-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.widget-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.slot-time {
  font-weight: 600;
  color: var(--fg);
  font-family: var(--font-display);
}
.slot-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.slot-status.open {
  background: #FEE2E2;
  color: var(--red);
}
.widget-divider {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 14px;
  padding: 4px 0;
}
.widget-claimed {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 14px;
}
.claimed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.widget-footer {
  display: flex;
}
.filled-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
}

/* STATS */
.stats {
  background: var(--fg);
  padding: 48px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* HOW IT WORKS */
.how {
  padding: 80px 48px;
  background: var(--bg);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 560px;
}
.step-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 20px;
  padding-top: 64px;
  color: var(--accent);
}

/* FEATURES */
.features {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  flex: 1;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* WHY */
.why {
  padding: 80px 48px;
  background: var(--bg);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.why-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.why-check {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}

/* QUOTE CARD */
.quote-card {
  background: var(--fg);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.quote-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 16px;
}
.quote-attr {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.clinic-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.clinic-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--accent);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .step-row { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .features-inner { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .stats { padding: 40px 24px; }
  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { min-width: calc(50% - 16px); }
  .how { padding: 56px 24px; }
  .features { padding: 56px 24px; }
  .why { padding: 56px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 28px; }
  .section-headline { font-size: 26px; }
  .stat-number { font-size: 32px; }
  .stats-inner { gap: 24px; }
  .hero-widget { padding: 20px; }
}