/* ============================================================
   HBCF SUPPORT / SERVICE PROVIDER PAGE STYLES
   ============================================================ */

/* ── HERO ── */
.hbcf-support-hero {
  background: var(--cream);
  padding-top: 60px;
  padding-bottom: 0;
}
.hbcf-support-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  padding-bottom: 60px;
}
.hbcf-support-hero-text h1 { color: var(--navy); }
.hbcf-support-hero-text h1 em { font-style: normal; color: var(--gold); }
.hbcf-support-hero-text p { margin-top: 20px; }
.hbcf-support-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}
.hbcf-support-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hbcf-support-notice {
  background: var(--navy);
  padding: 22px 0;
}
.hbcf-support-notice p {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── APPOINT STEPS ── */
.hbcf-appoint { background: var(--white); padding-top: 40px; padding-bottom: 40px; }
.hbcf-appoint-intro {
  max-width: 700px;
  margin-bottom: 48px;
}
.hbcf-appoint-intro p + p { margin-top: 12px; }
.hbcf-steps-ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 0 48px;
}
.hbcf-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand);
}
.hbcf-step:nth-child(1),
.hbcf-step:nth-child(4) { border-top: 1px solid var(--sand); }
.hbcf-step-num {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
}
.hbcf-step-body p { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }

/* ── WHAT WE DO AS DELEGATE ── */
.hbcf-role { background: var(--navy); padding-top: 50px; padding-bottom: 40px; }
.hbcf-role-intro { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.hbcf-role-intro .eyebrow { color: var(--gold-light); justify-content: center; }
.hbcf-role-intro .eyebrow::before { display: none; }
.hbcf-role-intro h2 { color: var(--white); }
.hbcf-role-intro .divider { margin: 20px auto 0; }
.hbcf-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hbcf-role-item {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}
.hbcf-role-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.hbcf-role-item p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }

/* ── PORTAL ACCESS ── */
.hbcf-portal { background: var(--cream); }
.hbcf-portal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.hbcf-portal-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}
.hbcf-portal-card h2 { color: var(--navy); font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.hbcf-portal-card > p { margin-top: 14px; }
.hbcf-portal-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hbcf-portal-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
}
.hbcf-portal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hbcf-alert-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}
.hbcf-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,147,74,0.16);
  border: 1px solid rgba(184,147,74,0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hbcf-alert-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 14px; }
.hbcf-alert-card p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.hbcf-alert-card p + p { margin-top: 12px; }
.hbcf-alert-card strong { color: var(--gold-light); }
.hbcf-alert-cta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: var(--gold-light) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hbcf-support-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hbcf-support-hero-image { order: -1; }
.hbcf-steps-ol { grid-template-columns: 1fr; }
  .hbcf-step:nth-child(1),
  .hbcf-step:nth-child(2) { border-top: none; }
  .hbcf-step:first-child { border-top: 1px solid var(--sand); }
  .hbcf-portal-grid { grid-template-columns: 1fr; }
  .hbcf-role-grid { grid-template-columns: 1fr; gap: 32px; }
}