/* Healthcare Landing Pages — Frontend CSS
   Brand: Navy (headings), Blue #0EA5E9, Orange #F97316, Slate #334155, Light #F8FAFC */

:root {
  --hm-navy:   #0C1A2E;
  --hm-blue:   #0EA5E9;
  --hm-blue-dk:#0284C7;
  --hm-orange: #F97316;
  --hm-orange-dk:#EA6C0A;
  --hm-slate:  #334155;
  --hm-light:  #F8FAFC;
  --hm-white:  #FFFFFF;
  --hm-border: #E2E8F0;
  --hm-muted:  #64748B;
  --hm-radius: 12px;
}

/* ── Base ── */
.hmlp-page { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--hm-slate); line-height: 1.75; }
.hmlp-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.hmlp-page h1, .hmlp-page h2, .hmlp-page h3 { color: var(--hm-navy); line-height: 1.3; margin-top: 0; }
.hmlp-page p { margin: 0 0 1rem; }
.hmlp-section { padding: 72px 0; }
.hmlp-bg-light { background: var(--hm-light); }
.hmlp-section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--hm-blue); margin-bottom: 12px; }

/* ── Buttons ── */
.hmlp-btn-primary { display: inline-block; background: var(--hm-orange); color: #fff; font-weight: 700; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-size: 16px; transition: background .2s, transform .15s; border: none; cursor: pointer; }
.hmlp-btn-primary:hover { background: var(--hm-orange-dk); transform: translateY(-1px); color: #fff; text-decoration: none; }
.hmlp-btn-white  { display: inline-block; background: #fff; color: var(--hm-navy); font-weight: 700; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-size: 16px; transition: background .2s; }
.hmlp-btn-white:hover { background: #F0F9FF; color: var(--hm-navy); text-decoration: none; }
.hmlp-btn-full   { width: 100%; text-align: center; display: block; }
.hmlp-btn-lg     { padding: 18px 36px; font-size: 18px; }

/* ── Hero ── */
.hmlp-hero { background: linear-gradient(135deg, #0C1A2E 0%, #1E3A5F 100%); padding: 80px 0 90px; }
.hmlp-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.hmlp-hero-badge { display: inline-block; background: rgba(14,165,233,.15); color: #7DD3FC; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(14,165,233,.25); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.hmlp-hero h1 { font-size: clamp(28px,4vw,48px); color: #fff; margin-bottom: 16px; font-weight: 800; }
.hmlp-hero-sub { font-size: clamp(17px,2vw,21px); color: #94A3B8; margin-bottom: 14px; font-weight: 500; }
.hmlp-hero-body { font-size: 16px; color: #94A3B8; margin-bottom: 30px; }
.hmlp-hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 0; }
.hmlp-hero-note { font-size: 13px; color: #64748B; }
.hmlp-hero-stats { display: flex; flex-direction: column; gap: 16px; }
.hmlp-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 20px 24px; text-align: center; min-width: 160px; }
.hmlp-stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--hm-blue); margin-bottom: 4px; }
.hmlp-stat-lbl  { font-size: 13px; color: #94A3B8; }

/* ── Services chips ── */
.hmlp-services-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; margin-top: 28px; }
.hmlp-service-chip { display: flex; align-items: flex-start; gap: 14px; background: var(--hm-white); border: 1px solid var(--hm-border); border-radius: 10px; padding: 18px; }
.hmlp-chip-icon { font-size: 22px; flex-shrink: 0; }
.hmlp-service-chip strong { display: block; color: var(--hm-navy); font-size: 15px; margin-bottom: 3px; }
.hmlp-service-chip span  { font-size: 13px; color: var(--hm-muted); }

/* ── Section headings ── */
.hmlp-what h2, .hmlp-who h2, .hmlp-problems h2, .hmlp-solution h2,
.hmlp-how h2, .hmlp-faq h2, .hmlp-deep h2 { font-size: clamp(22px,3vw,32px); margin-bottom: 14px; }

/* ── Who grid ── */
.hmlp-who-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 14px; margin-top: 24px; }
.hmlp-who-card { background: var(--hm-white); border: 1px solid var(--hm-border); border-radius: 10px; padding: 20px 16px; text-align: center; }
.hmlp-who-card span { font-size: 28px; display: block; margin-bottom: 8px; }
.hmlp-who-card strong { font-size: 14px; color: var(--hm-navy); }

/* ── Problems ── */
.hmlp-problems-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; margin-top: 24px; }
.hmlp-problem-card { background: #FFF8F5; border: 1px solid #FED7AA; border-radius: 10px; padding: 24px; }
.hmlp-problem-icon { font-size: 28px; margin-bottom: 12px; }
.hmlp-problem-card h3 { font-size: 16px; margin-bottom: 8px; }
.hmlp-problem-card p  { font-size: 14px; color: var(--hm-muted); margin: 0; }

/* ── Solution ── */
.hmlp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hmlp-solution-text h2 { font-size: clamp(22px,3vw,30px); margin-bottom: 14px; }
.hmlp-solution-text p  { font-size: 15px; color: var(--hm-muted); margin-bottom: 14px; }
.hmlp-solution-list { list-style: none; padding: 0; margin: 0 0 24px; }
.hmlp-solution-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; padding: 8px 0; border-bottom: 1px solid var(--hm-border); }
.hmlp-solution-list li:last-child { border: none; }
.hmlp-check { color: var(--hm-blue); font-weight: 700; flex-shrink: 0; }
.hmlp-result-card { background: var(--hm-navy); border-radius: 12px; padding: 28px; }
.hmlp-rc-header { color: #7DD3FC; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.hmlp-rc-stat { color: #fff; font-size: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hmlp-rc-stat:last-of-type { border: none; }
.hmlp-rc-stat strong { color: var(--hm-blue); }
.hmlp-rc-note { font-size: 11px; color: #64748B; margin-top: 14px; }

/* ── Steps ── */
.hmlp-steps { display: flex; align-items: flex-start; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.hmlp-step { flex: 1; min-width: 200px; background: var(--hm-white); border: 1px solid var(--hm-border); border-radius: 10px; padding: 28px 22px; }
.hmlp-step-num { width: 40px; height: 40px; background: var(--hm-blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.hmlp-step h3 { font-size: 17px; margin-bottom: 8px; }
.hmlp-step p  { font-size: 14px; color: var(--hm-muted); margin: 0; }
.hmlp-step-arrow { color: var(--hm-blue); font-size: 24px; align-self: center; font-weight: 700; padding-top: 20px; }

/* ── Offer ── */
.hmlp-bg-teal { background: linear-gradient(135deg, #0C1A2E 0%, #164E63 100%); }
.hmlp-offer-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.hmlp-offer-text h2 { color: #fff; font-size: clamp(22px,3vw,30px); margin-bottom: 14px; }
.hmlp-offer-text p  { color: #94A3B8; font-size: 16px; margin-bottom: 20px; }
.hmlp-offer-list { list-style: none; padding: 0; margin: 0; }
.hmlp-offer-list li { color: #7DD3FC; font-size: 15px; padding: 6px 0; }
.hmlp-offer-cta { text-align: center; }
.hmlp-offer-sub { color: #64748B; font-size: 13px; margin-top: 12px; max-width: 220px; }

/* ── Deep content ── */
.hmlp-deep-inner { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.hmlp-deep-main h2 { font-size: clamp(20px,2.5vw,26px); margin: 2rem 0 14px; }
.hmlp-deep-main h2:first-child { margin-top: 0; }
.hmlp-deep-main p  { font-size: 15px; color: var(--hm-muted); }
.hmlp-aside-box { background: var(--hm-navy); border-radius: 12px; padding: 24px; position: sticky; top: 24px; }
.hmlp-aside-box h3 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.hmlp-aside-box ul { list-style: none; padding: 0; margin: 0 0 20px; }
.hmlp-aside-box li { color: #7DD3FC; font-size: 14px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hmlp-aside-box li:last-child { border: none; }

/* ── FAQ ── */
.hmlp-faq-list { max-width: 800px; }
.hmlp-faq-item { border-bottom: 1px solid var(--hm-border); }
.hmlp-faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--hm-navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.hmlp-faq-q:hover { color: var(--hm-blue); }
.hmlp-faq-icon { font-size: 22px; color: var(--hm-blue); flex-shrink: 0; transition: transform .2s; }
.hmlp-faq-q[aria-expanded="true"] .hmlp-faq-icon { transform: rotate(45deg); }
.hmlp-faq-a { padding-bottom: 20px; }
.hmlp-faq-a p { font-size: 15px; color: var(--hm-muted); margin: 0; }

/* ── Final CTA ── */
.hmlp-final-cta { background: var(--hm-light); text-align: center; }
.hmlp-final-inner { max-width: 680px; margin: 0 auto; }
.hmlp-final-inner h2 { font-size: clamp(24px,3vw,34px); margin-bottom: 14px; }
.hmlp-final-inner p  { font-size: 17px; color: var(--hm-muted); margin-bottom: 28px; }
.hmlp-final-note { font-size: 13px; color: var(--hm-muted); margin-top: 14px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hmlp-hero-inner   { grid-template-columns: 1fr; }
  .hmlp-hero-stats   { flex-direction: row; flex-wrap: wrap; }
  .hmlp-stat         { min-width: 140px; }
  .hmlp-two-col      { grid-template-columns: 1fr; }
  .hmlp-offer-inner  { grid-template-columns: 1fr; }
  .hmlp-deep-inner   { grid-template-columns: 1fr; }
  .hmlp-steps        { flex-direction: column; }
  .hmlp-step-arrow   { transform: rotate(90deg); align-self: center; padding: 0; }
}
@media (max-width: 600px) {
  .hmlp-section { padding: 48px 0; }
  .hmlp-hero    { padding: 56px 0 64px; }
  .hmlp-hero-cta { flex-direction: column; align-items: flex-start; }
}
