/* ===== About: Hero ===== */
.page-hero{
  background:linear-gradient(180deg, var(--brand-600) 0%, rgba(30,125,223,.08) 55%, transparent 100%);
  padding: clamp(40px, 7vw, 80px) 0 clamp(28px, 5vw, 60px);
}
.page-hero h1{ margin:0 0 8px; }
.page-hero p{ color:var(--muted); margin:0; }

/* ===== About: Profile / Bio ===== */
.about-grid{
  display:grid; grid-template-columns:360px 1fr;
  gap:clamp(20px,4vw,40px);
}
.about-photo img{ width:100%; height:auto; border-radius:var(--radius); display:block; }
.about-copy h2{ margin-top:0; }

.pill-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.pill{
  background:#eef5ff; color:#0b5cad;
  padding:8px 12px; border-radius:999px; font-weight:600; font-size:14px;
}
@media (max-width:900px){ .about-grid{ grid-template-columns:1fr; } }

/* ===== About: Steps ===== */
.steps{ display:grid; gap:14px; }
.step{
  display:flex; gap:14px; align-items:flex-start;
  background:var(--card); border-radius:var(--radius);
  padding:14px 16px; box-shadow:var(--shadow);
}
.step-num{
  width:34px; height:34px; border-radius:50%;
  background:var(--brand); color:#fff;
  display:grid; place-items:center; font-weight:700;
}
.step h4{ margin:0 0 4px; }

/* ===== About: CTA ===== */
.cta{ text-align:center; }
.cta h2{ margin-top:0; }
.cta p{ color:var(--muted); margin-bottom:16px; }


.value-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: rgba(240, 250, 255, 0.8);
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 0 4px rgba(11,92,173,0.08);
}


.section-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-header h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0;
  color: var(--text);
}
.section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--brand);
  margin: 12px auto 0;
  border-radius: 4px;
}

.about-specialties {
  margin: 4px 0 16px 1.25rem;
  padding: 0;
  list-style: disc;
}

.about-specialties li {
  margin-bottom: 4px;
}


