/* Industry Hero Section Styles */

.industry-hero {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 1.5rem 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-left .eyebrow {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.hero-sub {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 40ch;
  margin: 0 0 0.75rem 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.hero-btn.primary {
  background-color: #2563eb;
  color: white;
}

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

.hero-btn.secondary {
  border: 1px solid #cbd5e1;
  color: #111827;
  background: white;
}

.hero-btn.secondary:hover {
  background: #f9fafb;
  border-color: #94a3b8;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

.hero-trustbar {
  max-width: 1200px;
  margin: 0.25rem auto 0 auto;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  padding-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
}

.hero-trustbar .trust-link {
  margin-left: 0.5rem;
  color: #2563eb;
  text-decoration: underline;
}

.hero-trustbar .trust-link:hover {
  color: #1d4ed8;
}

/* Tighten spacing between hero and tabs */
.subnav {
  margin-top: 0.25rem !important;
  margin-bottom: 0.5rem !important;
}

/* Tighten spacing above provider list */
.providers-section {
  margin-top: 0.5rem !important;
}

.providers--prominent {
  margin-top: 0.5rem !important;
}

.section-head {
  margin-bottom: 0.75rem !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .industry-hero {
    padding: 2rem 1rem 1.25rem 1rem;
    gap: 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    max-height: 240px;
  }

  .hero-trustbar {
    font-size: 0.8rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .industry-hero {
    padding: 1.5rem 1rem 1rem 1rem;
  }

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

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }
}

