/* ===========================================
   COMPONENT: Hero Stats Strip
   Scoped prefix: hs-
   Lives inside .hero-text, wraps .hero-actions
   =========================================== */

/* Wrapper — constrains stats width to match buttons */
.hs-cta-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

/* Remove hero-actions own bottom margin — wrapper handles it */
.hs-cta-wrap .hero-actions {
  margin-bottom: 0;
}

/* Stats row — stretches to wrapper width (= button row width) */
.hs-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, rgba(8,18,22,0.70) 0%, rgba(15,118,110,0.18) 100%);
  border: 1px solid rgba(94,234,212,0.18);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  padding: 0 var(--space-3);
  position: relative;
}

/* Divider between stats */
.hs-stat + .hs-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; height: 80%;
  width: 1px;
  background: rgba(94,234,212,0.25);
}

.hs-num-wrap {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.hs-num {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-teal-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(94,234,212,0.25);
}

.hs-plus {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-teal-light);
  margin-left: 2px;
  line-height: 1;
}

.hs-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: var(--space-2);
  white-space: nowrap;
}

/* Mobile — full width */
@media (max-width: 768px) {
  .hs-cta-wrap { display: flex; width: 100%; margin-bottom: var(--space-7); gap: 14px; }
  .hs-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
    padding: 10px 12px;
    margin-top: 2px;
  }
  .hs-stat { min-width: 0; }
  .hs-num { font-size: 1.45rem; }
  .hs-plus { font-size: 0.95rem; }
  .hs-label {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }
}

@media (max-width: 380px) {
  .hs-stats { gap: 8px 6px; padding: 9px 10px; }
  .hs-num { font-size: 1.32rem; }
  .hs-plus { font-size: 0.88rem; }
  .hs-label {
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }
}
