/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, var(--blue-hero-start) 0%, var(--blue-hero-end) 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0 44px;
}
.hero::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, transparent 40%);
  mask-image: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.hero-figure {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--yellow);
  position: relative;
  flex-shrink: 0;
}

.hero-figure img {
  position: absolute;
  width: 100%;
  height: 140%;
  max-width: none;
  left: 0;
  top: -10%;
  object-fit: contain;
  object-position: bottom center;
}

.hero-copy {
  padding-top: 4px;
  text-align: center;
}

.eyebrow-badge {
  display: inline-block;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 28px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.hero-title {
  color: var(--white);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.hero-sub {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 18px;
}

.hero-stat {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.hero-stat .label-w { color: var(--white); }
.hero-stat .colon { color: var(--yellow); font-weight: 900; padding: 0 4px; }
.hero-stat .num { color: var(--yellow); font-size: 34px; font-weight: 900; line-height: 1; margin: 0 4px; letter-spacing: 0.01em; }
.hero-stat .unit { color: var(--white); font-size: 16px; margin-left: 2px; }

.hero-brand {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 26px;
}

/* CTA cards */
.hero-ctas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.hero-cta-card {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.hero-cta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-cta-icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
  margin-bottom: 8px;
}
.hero-cta-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.4;
}
.hero-cta-note {
  font-size: 12px;
  color: var(--blue-primary);
  margin-top: 8px;
  font-weight: 600;
}
.hero-cta-card .arrow-circle { background: var(--orange); flex-shrink: 0; }
