.hero {
  position: relative;
  min-height: auto;
  padding: 56px 6% 84px;
  background: linear-gradient(180deg, #e9f1fd 0%, #f3f8ff 55%, #ffffff 100%);
  color: var(--ink);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -18%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(61, 139, 212, 0.18) 0%, rgba(61, 139, 212, 0) 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  width: 44%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--teal-tint);
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(26, 122, 110, 0.18);
}

.hero-left h1 {
  font-size: clamp(24px, 2vw, 33px);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 22px;
  font-weight: 800;
  color: var(--ink);
  white-space: normal;
}

.hero-h1-accent {
  color: var(--teal);
}

.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  list-style: none;
  margin-top: 26px;
}

.hero-checklist li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.hero-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-icon {
  width: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
  white-space: nowrap;
}

.btn-text strong {
  font-size: 15.5px;
  font-weight: 700;
}

.btn-text span {
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.85;
}

.btn-primary {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 61, 56, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal);
  color: #fff;
  transform: translateY(-4px);
}

.btn-secondary {
  background: #ffffff;
  border: 1.5px solid var(--border);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-tint);
  transform: translateY(-4px);
}

/* ── Hero visual (real image) ── */
.hero-right {
  width: 56%;
  display: flex;
  justify-content: center;
}

.hero-visual-img {
  width: 100%;
  max-width: 1300px;
  height: auto;
}

/* ── Floating stats bar ── */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: 0 6% 56px;
}

.hero-stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 30px 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-stat-item .hero-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--teal);
  background: var(--teal-tint);
}

.hero-stat-item strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.hero-stat-item span {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.35;
  margin-top: 2px;
}

.hero-numbers-grid {
  max-width: var(--container);
  margin: 20px auto 0;
  background: var(--teal-deep);
  border-radius: 22px;
  padding: 30px 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.hero-number-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-number-item .hero-number-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: none;
}

.hero-number-item strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero-number-item span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .hero {
    padding: 128px 0 64px;
  }

  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-left h1 {
    font-size: 38px;
    white-space: normal;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
    margin-bottom: 40px;
  }

  .hero-checklist {
    justify-content: flex-start;
  }

  .hero-visual-img {
    max-width: 440px;
    margin-bottom: 24px;
  }

  .hero-stats-bar {
    margin-top: 0;
    padding-bottom: 40px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px 24px;
  }

  .hero-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px 24px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .hero-visual-img {
    max-width: 340px;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-numbers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
