.section-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 14, 42, 0.85) 0%,
    rgba(10, 14, 42, 0.4) 60%,
    transparent 100%
  );
  z-index: 1;
}

.section-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  padding: 60px 0 0;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-bottom: 60px;
}

.hero-feature-card {
  background: #0b015a66;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-feature-card .feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-primary);
  color: #000;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.hero-feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-feature-card p {
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 52px;
  }

  .hero-features {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .section-hero {
    min-height: 500px;
  }

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

  .hero-text p {
    font-size: 14px;
  }

  .hero-features {
    flex-direction: column;
  }

  .hero-feature-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 32px;
  }
}
