/* ============ HERO BANNER ============ */
.hero {
  background: linear-gradient(135deg, #eae7ff 0%, #d1f1ff 50%, #d5f4e2 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
}

.hero__blurs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__blur {
  position: absolute;
  border-radius: 9999px;
}

.hero__blur--pink {
  width: 400px;
  height: 400px;
  background: var(--red-light);
  top: -96px;
  right: -96px;
  filter: blur(35px);
  opacity: 0.5;
}

.hero__blur--blue {
  width: 300px;
  height: 300px;
  background: var(--blue);
  bottom: 96px;
  left: -64px;
  filter: blur(30px);
  opacity: 0.4;
}

.hero__blur--green {
  width: 250px;
  height: 250px;
  background: var(--green);
  top: 192px;
  right: 288px;
  filter: blur(25px);
  opacity: 0.35;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--purple-mid);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 51.2px;
  line-height: 1.15;
  color: var(--purple-dark);
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--red);
}

.hero__desc {
  font-size: 16.8px;
  line-height: 1.625;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 0;
  align-items: center;
}

.hero__stat {
  text-align: center;
  padding: 0 24px;
}

.hero__stat:not(:last-child) {
  border-right: 1px solid rgba(69, 46, 134, 0.2);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 21.6px;
  color: var(--purple-dark);
}

.hero__stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__image-wrapper {
  position: relative;
}

.hero__image-bg-pink {
  position: absolute;
  width: 288px;
  height: 288px;
  background: var(--red-light);
  border-radius: 9999px;
  opacity: 0.4;
  right: 0;
  bottom: -20px;
}

.hero__image-bg-blue {
  position: absolute;
  width: 160px;
  height: 160px;
  background: var(--blue);
  border-radius: 9999px;
  opacity: 0.3;
  left: 0;
  top: -16px;
}

.hero__image {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  aspect-ratio: 340 / 420;
  max-width: 340px;
  margin-left: auto;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.hero__accreditation {
  position: absolute;
  bottom: 26px;
  left: -32px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.hero__accreditation-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
}

.hero__accreditation-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--purple-dark);
}

.hero__accreditation-text span {
  font-size: 10.9px;
  color: var(--text-muted);
}

.hero__accreditation-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.hero__accreditation-logos img {
  height: 28px;
  width: auto;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__image-wrapper {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 80px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__stat {
    border-right: none !important;
    padding: 0;
  }
}
