/* Unibee homepage upgrades — structure only. Font and brand colors untouched. */

/* Tightened hero top spacing (~20% less than the default pt-5 = 3rem) */
.pt-tight-5 { padding-top: 2.4rem !important; }

/* ---- Hero subtitle pill ---- */
.hero-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--ar-primary-rgb), .14);
  color: var(--ar-heading-color);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
}
.hero-subtitle-badge i,
.hero-subtitle-badge svg {
  color: var(--ar-link-hover-color);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ---- Eyebrow label above the hero stat strip ---- */
.hero-stats-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ar-body-color);
  opacity: 0.6;
}

/* ---- Hero stat strip (wide rectangular boxes with icons) ---- */
.hero-stat-box {
  background: #fff;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  height: 100%;
  box-shadow: 0 0.5rem 1.5rem rgba(18, 34, 50, .08);
}
.hero-stat-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.hero-stat-num {
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--ar-body-color);
}

/* ---- Content-stats icons (custom SVGs sit inline with the icon-font ones) ---- */
.stat-icon-svg {
  display: block;
}

/* ---- Subjects accordion ---- */
.subject-header-icon {
  flex-shrink: 0;
}
.subject-list {
  columns: 1;
  column-gap: 2.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  text-align: left;
}
.subject-list li {
  break-inside: avoid;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(var(--ar-body-color-rgb), .08);
}
.subject-list li i {
  margin-right: 0.6rem;
}
@media (min-width: 576px) {
  .subject-list { columns: 2; max-width: 720px; }
}

/* ---- Testimonial avatars (one consistent ring, no badge) ---- */
.testi-avatar-wrap {
  width: 96px;
  height: 96px;
  margin-top: 24px;
}
.testi-avatar-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(var(--ar-body-color-rgb), .12);
}
