/* Clinician services page — light, scannable, practice-focused */
body.wd-public-marketing.wd-clinician-services-page {
  background: #f8fafc !important;
}

body.wd-public-marketing.wd-clinician-services-page .wrap {
  max-width: none !important;
  padding: 0 0 64px !important;
}

.wd-page {
  --navy: #0d1b2a;
  --blue: #0b5fa5;
  --soft-blue: #eaf3fa;
  --border: #dde4ea;
  --text: #24364a;
  --muted: #5a6f82;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.wd-container {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 0 24px;
}

.wd-section {
  margin-bottom: 56px;
}

.wd-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.wd-section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.2;
}

.wd-section-head p {
  margin: 0;
  color: var(--muted);
}

.wd-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.wd-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #143252 100%);
  color: #fff;
  padding: 48px 0 52px;
  margin-bottom: 48px;
}

.wd-hero .wd-container {
  max-width: 800px;
}

.wd-hero h1 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
}

.wd-hero .wd-lead {
  color: rgba(234, 243, 250, 0.92);
  font-size: 18px;
  margin: 0 0 12px;
}

.wd-hero .wd-lead:last-of-type {
  margin-bottom: 0;
}

.wd-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.wd-btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.wd-btn-primary:hover {
  background: #094d85;
}

.wd-btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}

.wd-btn-secondary:hover {
  background: var(--soft-blue);
}

.wd-hero .wd-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.wd-hero .wd-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.wd-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.wd-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .wd-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .wd-grid-2,
  .wd-grid-3 {
    grid-template-columns: 1fr;
  }
}

.wd-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(13, 27, 42, 0.04);
}

.wd-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 10px;
}

.wd-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.wd-card-blue {
  background: var(--soft-blue);
  border-color: #b8d4eb;
}

.wd-workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 24px 0;
  counter-reset: wf;
}

@media (max-width: 960px) {
  .wd-workflow-steps {
    grid-template-columns: 1fr;
  }
}

.wd-workflow-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  position: relative;
}

.wd-workflow-step::before {
  counter-increment: wf;
  content: counter(wf);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wd-workflow-step strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.wd-workflow-step span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.wd-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 640px) {
  .wd-feature-list {
    grid-template-columns: 1fr;
  }
}

.wd-feature-list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 1.2em;
  position: relative;
}

.wd-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.wd-tier-card {
  border-left: 4px solid var(--blue);
}

.wd-tier-num {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 8px;
}

.wd-bullet-list {
  margin: 12px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 15px;
}

.wd-bullet-list li {
  margin-bottom: 6px;
}

.wd-pricing-note {
  font-size: 14px;
  color: var(--muted);
  background: #f7f3ea;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 20px;
}

.wd-cta-band {
  background: var(--soft-blue);
  border: 1px solid #b8d4eb;
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
}

.wd-cta-band h2 {
  margin: 0 0 12px;
  color: var(--navy);
}

.wd-cta-band p {
  max-width: 560px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.wd-cta-band .wd-buttons {
  justify-content: center;
}

.wd-report-options .wd-card {
  height: 100%;
}
