/* Optimum hero — no slider dependency */
.optimum-hero {
  position: relative;
  margin: 0 0 2rem;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, #041a4a 0%, #0a3278 45%, #0c4a9a 100%);
  color: #f5f7fb;
  overflow: hidden;
}

.optimum-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 162, 39, 0.12), transparent 60%);
  pointer-events: none;
}

.optimum-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.optimum-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
  font-weight: 600;
}

.optimum-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.optimum-hero__title span {
  color: #e8c547;
}

.optimum-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.optimum-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.optimum-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.optimum-hero__btn--primary {
  background: linear-gradient(180deg, #e8c547 0%, #c9a227 100%);
  color: #0a2463;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.optimum-hero__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.optimum-hero__btn:hover {
  transform: translateY(-1px);
  color: inherit;
  text-decoration: none;
}

.optimum-hero__search {
  max-width: 900px;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.optimum-hero__search .search-banner-wrap,
.optimum-hero__search form {
  margin: 0;
}

@media (max-width: 767px) {
  .optimum-hero {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  .optimum-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .optimum-hero__btn {
    width: 100%;
  }

  .optimum-hero__search {
    padding: 0.75rem;
  }
}
