.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 56px 0 72px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(36, 137, 204, 0.28) 0%, rgba(0, 194, 255, 0) 70%);
  pointer-events: none;
}

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

.hero-left {
  width: 52%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 54px;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
  font-weight: 700;
  color: #fff;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #c3cbdb;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 56px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 194, 255, 0.28);
}

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

.btn-secondary {
  background: var(--cyan);
  border: 1.5px solid var(--cyan);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 194, 255, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--violet);
  background: var(--violet);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 194, 255, 0.28);
  transform: translateY(-4px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  max-width: 460px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #fff;
}

.hero-stats span {
  font-size: 13px;
  color: #93a0b6;
}

.hero-right {
  width: 42%;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 120px 6% 64px;
  }

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

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

  .hero-left h1 {
    font-size: 40px;
  }

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

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

  .hero-stats {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-right img {
    max-width: 320px;
  }
}

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

  .hero-stats {
    gap: 24px;
  }
}
