.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://assets.hui.systems/9J9iA2pZ9jbhAChx2hvXO/images/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(240, 244, 248, 0.85) 0%,
    rgba(240, 244, 248, 0.5) 40%,
    rgba(240, 244, 248, 0) 80%
  );
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.75rem;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.hero__title {
  margin-bottom: 0.6rem;
}

.hero__subtitle {
  color: var(--color-text);
  margin-bottom: 1.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero__cta {
  font-size: 1.05rem;
  padding-inline: 2.1rem;
}

.hero__callout {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero__callout a {
  font-weight: 600;
}

.hero__card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.hero__photo {
  position: relative;
  border-radius: var(--radius, 0.5rem);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.hero__photo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius, 0.5rem);
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero.section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

