/* ============================================
   HERO HEADER SECTION
   ============================================ */
.hero-header-section {
  background-color: #ffffff;
}

.hero-header-section__main {
  padding: 64px 0 64px;
}

.hero-header-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-header-section__grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.hero-header-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  min-width: 0;
  max-width: 629px;
}

.hero-header-section__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 20px;
  background: #dbeafe;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #1e40af;
}

.hero-header-section__title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

.hero-header-section__title-orange {
  color: #ed5c37;
}

.hero-header-section__title-dark {
  color: #111827;
}

.hero-header-section__description {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #4b5563;
}

.hero-header-section__actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}

.hero-header-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hero-header-section__btn:hover {
  opacity: 0.9;
}

.hero-header-section__btn--primary {
  background: #f05a28;
  color: #ffffff;
}

.hero-header-section__btn--secondary {
  padding: 12px 0;
  color: #f05a28;
  background: transparent;
  gap: 8px;
}

.hero-header-section__btn-arrow {
  flex-shrink: 0;
}

.hero-header-section__media {
  flex: 1;
  min-width: 0;
  max-width: 603px;
}

.hero-header-section__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 384px;
  object-fit: cover;
  background: #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
  .hero-header-section__main {
    padding: 36px 0 48px;
  }

  .hero-header-section__title {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 991px) {
  .hero-header-section__main {
    padding: 28px 0 40px;
  }

  .hero-header-section__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero-header-section__content {
    max-width: none;
    gap: 20px;
  }

  .hero-header-section__media {
    max-width: none;
  }

  .hero-header-section__image {
    min-height: 240px;
  }

  .hero-header-section__title {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 640px) {
  .hero-header-section__main {
    padding: 20px 0 32px;
  }

  .hero-header-section__content {
    gap: 16px;
  }

  .hero-header-section__badge {
    font-size: 14px;
    line-height: 18px;
    padding: 4px 14px;
  }

  .hero-header-section__title {
    font-size: 28px;
    line-height: 34px;
  }

  .hero-header-section__description {
    font-size: 15px;
    line-height: 24px;
  }

  .hero-header-section__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 4px;
  }

  .hero-header-section__btn {
    width: 100%;
    min-height: 46px;
    font-size: 15px;
  }

  .hero-header-section__btn--secondary {
    justify-content: center;
    padding: 10px 0;
  }

  .hero-header-section__image {
    min-height: 200px;
    border-radius: 12px;
  }
}
