.hero-section {
  padding: 80px 40px 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  max-width: 831px;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.hero-title {
  font-weight: 700;
  font-size: 76px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-weight: 500;
  font-size: 18px;
  max-width: 733px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.625px;
}

.hero-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-card {
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
  border-radius: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  flex: 1;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon svg {
  width: 24px;
  height: 24px;
}

.hero-card-title {
  font-weight: 700;
  font-size: 22px;
}

.hero-card-desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.hero-image {
  position: absolute;
  right: -160px;
  bottom: 0;
  width: 864px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: contain;
  vertical-align: bottom;
}

@media (max-width: 1600px) {
  .hero-section {
    padding: 60px 40px 0;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-image {
    width: 600px;
    right: -80px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px 0;
  }

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

  .hero-content {
    padding-bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cards {
    flex-direction: column;
    gap: 16px;
  }

  .hero-card {
    width: 100%;
  }

  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 40px;
  }

  .hero-cta {
    margin-bottom: 30px;
  }
}
