.landing-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 3rem 0;
}

.hero-section {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.features-section {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.hero-content {
  padding: 1rem 0;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #0ea5e929;
  border: 1px solid #7dd3fc5c;
  color: #dbeafe;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #f8fafc;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 540px;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  max-width: 400px;
}

.stat-card {
  background: #0f172ab3;
  border: 1px solid #818cf840;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  transition: background 0.3s ease;
}

.stat-card:hover {
  border-color: #818cf873;
  background: #0f172ad9;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
}

.feature-card {
  background: #0f172ab3;
  border: 1px solid #818cf840;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: background 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: #818cf873;
  background: #0f172ad9;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f8fafc;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

@media (max-width: 992px) {
  .landing-page {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-section {
    margin-bottom: 3rem;
  }

  .stats-container {
    margin-top: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .landing-page {
    padding: 1.5rem 0;
  }

  .hero-content {
    padding: 0.5rem 0;
  }

  .hero-section {
    margin-bottom: 2rem;
  }

  .features-section {
    padding-top: 1rem;
  }

  .feature-icon {
    font-size: 2rem;
  }
}
