/* =========================================================
   REPORT-BANNER.CSS
   "Get Your Personalized Health Report" strip shown just
   below the hero section.
   ========================================================= */

.report-banner { padding: 0 0 40px; }
.report-banner-inner {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border: 1px solid #fee2e2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.report-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1.3;
  min-width: 260px;
}
.report-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.report-banner-left h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.report-banner-left p { font-size: 0.82rem; color: var(--gray-500); max-width: 360px; }

.report-banner-features {
  display: flex;
  gap: 22px;
  padding: 0 22px;
  border-left: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.report-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-700);
  gap: 8px;
  white-space: nowrap;
}
.report-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.report-feature-icon.blue { background: var(--blue-bg); }
.report-feature-icon.green { background: var(--green-bg); }
.report-feature-icon.orange { background: var(--orange-bg); }
.report-feature-icon.purple { background: var(--purple-bg); }
.report-feature-icon.pink { background: var(--pink-bg); }

.report-banner-btn {
  flex-shrink: 0;
  gap: 10px;
  padding: 12px 22px;
}
.report-banner-btn-icon { font-size: 1.1rem; }
.report-banner-btn-text { font-size: 0.9rem; font-weight: 700; text-align: left; line-height: 1.3; }
.report-banner-btn-text small { font-size: 0.72rem; font-weight: 500; color: var(--gray-500); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .report-banner-inner { flex-wrap: wrap; }
  .report-banner-features {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 0;
    width: 100%;
    justify-content: space-between;
  }
  .report-banner-btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .report-banner-features { flex-wrap: wrap; row-gap: 14px; justify-content: center; }
  .report-banner-left { flex-direction: column; text-align: center; }
  .report-banner-left p { max-width: 100%; }
}
