.container:has(.hero-section) {
  padding: 0 !important;
  max-width: 100vw !important;
}

.hero-section {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
	to right,
	rgba(252, 251, 248, 0.98) 0%,
	rgba(252, 251, 248, 0.8) 55%,
	transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 70vh;
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #6b7280;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 30px -10px rgba(26, 26, 46, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-btn:hover {
  background-color: #2d2d4a;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .hero-overlay {
	background: linear-gradient(
	  to right,
	  rgba(252, 251, 248, 0.95) 0%,
	  rgba(252, 251, 248, 0.75) 70%,
	  transparent 100%
	);
  }

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

  .hero-lead {
	max-width: 100%;
  }
}