.hero-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.hero-content {
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff5500;
}

.hero-title {
  margin-bottom: 24px;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
}

.hero-text {
  margin-bottom: 32px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #555;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn-primary {
  background-color: #ff5500;
  border-color: #ff5500;
  padding: 12px 24px;
  font-weight: 600;
}

.hero-btn-primary:hover {
  background-color: #e64d00;
  border-color: #e64d00;
}

.hero-btn-secondary {
  padding: 12px 24px;
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-media {
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 56px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}