.hero {
  background-color: var(--color-surface);
  overflow: hidden;
  position: relative;
  padding: 0 var(--container-pad);
  margin-bottom: 40px;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 0 0;
  display: flex;
  align-items: stretch;
  position: relative;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding-bottom: 80px;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.hero__title span,
.hero__title em,
.hero__title strong {
  color: var(--color-yellow);
  font-style: normal;
  font-weight: inherit;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 24px);
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.hero__cta {
  align-self: flex-start;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 8px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

@media (min-width: 1400px) {
  .hero__features {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .hero__feature {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
}

.hero__feature-icon {
  flex: none;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__feature-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.hero__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.hero__feature-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}

.hero__feature-desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.4;
}

.hero__media {
  flex: 0 0 auto;
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: clamp(420px, 42vw, 660px);
  margin-right: 0;
}

.hero__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .hero__content {
    align-items: center;
    max-width: none;
    padding: 0 0 24px;
  }
  .hero__cta {
    align-self: center;
  }
  .hero__features {
    align-items: stretch;
    justify-content: center;
  }

  .hero__media {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    justify-content: center;
  }
}
