/* ==========================================================================
   Hero (Homepage)
   ========================================================================== */

.hero {
  background: var(--navy);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 78px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}

.hero-content .section-label {
  color: var(--gold);
}

.hero-content h1 {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Trust bar / stats */
.stats-bar {
  background: var(--navy-dark);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding: 0 16px;
}

.stat-item:first-child {
  border-left: none;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
