/* HERO SECTION */
.hero-section {
  background-color: #ffffff;
  border-radius: 16px;
  margin-top: 8px;
  min-height: 460px;
  overflow: hidden;
  padding: 44px 0;
}

/* Small intro label */
.hero-kicker {
  color: #6f8500;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Title */
.hero-title {
  color: #313a44;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0;
}

/* Text */
.hero-text {
  color: #515b64;
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-primary-btn,
.hero-secondary-btn {
  border-radius: 999px;
  font-weight: 750;
  padding: 11px 22px;
}

.hero-primary-btn {
  background-color: #cbeb00;
  color: #313a44;
}

.hero-primary-btn:hover {
  background-color: #b5d800;
  color: #313a44;
  transform: translateY(-1px);
}

.hero-secondary-btn {
  background-color: transparent;
  border: 1px solid rgba(49, 58, 68, 0.35);
  color: #313a44;
}

.hero-secondary-btn:hover {
  background-color: #313a44;
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-image {
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(49, 58, 68, 0.12);
  height: auto;
  max-height: 360px;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 767px) {
  .hero-section {
    border-radius: 12px;
    margin-top: 4px;
    min-height: auto;
    padding: 34px 0 38px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
  }

  .hero-image {
    height: auto;
    max-height: 280px;
  }
}
