/* ==========================================================================
   HOMEPAGE HERO SECTION
   ========================================================================== */

.bi-hero-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, var(--bi-primary-900) 0%, var(--bi-primary-800) 100%);
  color: var(--bi-neutral-0);
  position: relative;
  overflow: hidden;
}

.bi-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .bi-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.bi-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bi-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--bi-accent-500);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  animation: bi-pulse 2s infinite;
}

@keyframes bi-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.bi-hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--bi-neutral-0);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .bi-hero-title {
    font-size: 3.25rem;
  }
}

.bi-text-highlight {
  color: #60A5FA;
}

.bi-hero-lead {
  font-size: 1.125rem;
  color: var(--bi-neutral-300);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.bi-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.bi-btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.bi-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bi-neutral-0);
  background: transparent;
}

.bi-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bi-neutral-0);
}

.bi-hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bi-trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--bi-font-heading);
  color: var(--bi-neutral-0);
}

.bi-trust-item span {
  font-size: 0.8125rem;
  color: var(--bi-neutral-300);
}

.bi-trust-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Form Shell */
.bi-form-card {
  background-color: var(--bi-neutral-0);
  color: var(--bi-neutral-900);
  border-radius: var(--bi-radius-lg);
  padding: 2rem;
  box-shadow: var(--bi-shadow-xl);
}

.bi-form-header {
  margin-bottom: 1.5rem;
}

.bi-form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.375rem;
}

.bi-form-header p {
  font-size: 0.875rem;
  color: var(--bi-neutral-600);
}

.bi-form-group {
  margin-bottom: 1rem;
}

.bi-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bi-form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--bi-neutral-800);
}

.bi-form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--bi-neutral-300);
  border-radius: var(--bi-radius-sm);
  font-family: var(--bi-font-body);
  font-size: 0.875rem;
  transition: var(--bi-transition);
}

.bi-form-control:focus {
  outline: none;
  border-color: var(--bi-primary-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.bi-form-feedback {
  margin-top: 1rem;
  font-size: 0.875rem;
  padding: 0.75rem;
  border-radius: var(--bi-radius-sm);
  display: none;
}

.bi-form-feedback.bi-success {
  display: block;
  background-color: #DEF7EC;
  color: #03543F;
}

.bi-form-feedback.bi-error {
  display: block;
  background-color: #FDE8E8;
  color: #9B1C1C;
}