/* ── Hero Section ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.hero-inner {
  max-width: 760px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(0,212,200,0.12);
  border: 1.5px solid rgba(0,212,200,0.4);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  box-shadow: 0 0 28px rgba(0,212,200,0.15);
}
.badge-highlight {
  color: var(--cyan);
  font-weight: 900;
  font-style: italic;
}

.hero-h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--lgray);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background: rgba(0,212,200,0.04);
  border: 1px solid rgba(0,212,200,0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 20px 32px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-n {
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.stat-l {
  font-size: 11px;
  color: var(--lgray);
  margin-top: 4px;
  white-space: nowrap;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(0,212,200,0.15);
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
