/* =========================================================
   LANDING PAGES (Premium Styles)
========================================================= */
.landing-hero {
  /* Base settings */
  position: relative;
  background-color: #1a1a2e;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 8rem 2rem 6rem;
  text-align: center;
  overflow: hidden;
  /* Ensure no spillover */
}

/* Dark Overlay - Explicit z-index 1 */
.landing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Stronger dark gradient */
  background: linear-gradient(to bottom, rgba(10, 15, 30, 0.65) 0%, rgba(10, 15, 30, 0.95) 100%);
  /* Blur the image behind the overlay for better text readability */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

/* Content wrapper - Explicit z-index 2 */
.landing-hero>* {
  position: relative;
  z-index: 2;
}

/* Force White Text with !important to override defaults */
.landing-hero h1,
.landing-hero h2,
.landing-hero p,
.landing-hero small {
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.landing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.landing-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #e5eef8 !important;
}

/* Glassmorphism Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 106, 48, 0.2);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  background: rgba(255, 106, 48, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Pricing Grid refinement */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography polish */
.highlight-text {
  color: var(--orange);
  display: block;
}

@media(max-width: 768px) {
  .landing-hero {
    padding: 6rem 1rem 4rem;
  }
}