:root {
  color-scheme: light;
  --ink: #17201f;
  --muted: #63706e;
  --line: #dce8e5;
  --paper: #fbfefd;
  --wash: #eef8f6;
  --panel: #ffffff;
  --teal: #176b65;
  --aqua: #d8f4ef;
  --sage: #7a928e;
  --charcoal: #10201e;
  --gold: #c79b4b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a,
button {
  color: inherit;
}

main {
  overflow: hidden;
}

section {
  padding: clamp(52px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 155, 75, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(23, 107, 101, 0.15), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 42px;
  font-size: 14px;
}

nav strong {
  font-size: 20px;
}

nav span {
  max-width: 330px;
  color: var(--muted);
  text-align: right;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(288px, 390px);
  align-items: center;
  gap: clamp(30px, 7vw, 86px);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  max-width: 850px;
  font-size: clamp(2.55rem, 5.6vw, 5.6rem);
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.intro {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  padding: 13px 18px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button.primary {
  background: var(--charcoal);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.62);
}

.button:hover,
.button:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
  transform: translateY(-1px);
}

.phone-card {
  width: min(100%, 390px);
  justify-self: end;
  border: 1px solid rgba(23, 32, 31, 0.13);
  border-radius: 24px;
  padding: 18px;
  background: var(--charcoal);
  box-shadow: 0 28px 78px rgba(21, 74, 70, 0.2);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.card-top strong {
  color: white;
}

.field {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.field + .field {
  margin-top: 12px;
}

.field.highlight {
  background: var(--aqua);
  color: var(--ink);
}

.field small {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-band {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  background: white;
}

.proof-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.92rem;
}

.patient-path {
  background: var(--paper);
}

.section-head {
  max-width: 960px;
  margin-bottom: 34px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
}

article span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 850;
}

article p {
  color: var(--muted);
  line-height: 1.62;
}

.flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  background: var(--charcoal);
  color: white;
}

.flow .eyebrow {
  color: var(--gold);
}

.panel p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.crm-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.row + .row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.row span {
  color: rgba(255, 255, 255, 0.64);
}

.row strong {
  text-align: right;
}

.faq {
  background: #ffffff;
}

.faq h2 {
  max-width: 820px;
  margin-bottom: 28px;
}

.questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.questions button {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--wash);
  text-align: left;
  font: inherit;
  font-weight: 760;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  nav,
  .hero-grid,
  .proof-band,
  .flow {
    grid-template-columns: 1fr;
  }

  nav {
    display: grid;
    padding-bottom: 30px;
  }

  nav span {
    text-align: left;
  }

  .hero-grid {
    align-items: start;
  }

  .phone-card {
    justify-self: stretch;
  }

  .steps-grid,
  .questions {
    grid-template-columns: 1fr;
  }

  article {
    min-height: auto;
  }

  article span {
    margin-bottom: 22px;
  }

  .row {
    display: grid;
  }

  .row strong {
    text-align: left;
  }
}
