.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.88) 0%,
    rgba(45, 90, 57, 0.75) 50%,
    rgba(26, 35, 50, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(196, 165, 116, 0.2);
  border: 1px solid rgba(196, 165, 116, 0.4);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-highlight strong {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-accent);
}

.hero-highlight span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.stats-section {
  background: var(--color-surface);
  margin-top: -4rem;
  position: relative;
  z-index: 2;
  padding-block: 0 4rem;
}

.stats-section .container {
  padding-top: 2rem;
}

.focus-section {
  background: var(--color-bg);
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.focus-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.focus-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.focus-content h2 {
  margin-bottom: 1rem;
}

.focus-content p {
  margin-bottom: 1rem;
}

.focus-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.location-tag {
  padding: 0.375rem 0.875rem;
  background: rgba(45, 90, 57, 0.08);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.benefits-section {
  background: var(--color-primary-dark);
  color: #fff;
}

.benefits-section .section-label {
  color: var(--color-accent);
}

.benefits-section h2 {
  color: #fff;
}

.benefits-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.benefits-section .benefit-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.benefits-section .benefit-item h3 {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.benefits-section .benefit-item p {
  color: rgba(255, 255, 255, 0.8);
}

.benefits-section .benefit-icon {
  background: rgba(196, 165, 116, 0.2);
  color: var(--color-accent);
}

.vision-section {
  background: var(--color-bg-alt);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vision-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vision-images img:first-child {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.vision-images img:last-child {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.locations-section {
  background: var(--color-surface);
}

.location-card .card-body {
  min-height: 120px;
}

.location-status {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.status-pilot {
  background: rgba(196, 165, 116, 0.2);
  color: #8a7348;
}

.status-planned {
  background: rgba(45, 90, 57, 0.1);
  color: var(--color-primary);
}

.roadmap-section {
  background: var(--color-bg);
}

.faq-section {
  background: var(--color-surface);
}

.contact-section {
  background: var(--color-bg-alt);
}

.flyer-banner {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.flyer-banner img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 900px) {
  .focus-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-images {
    order: -1;
  }

  .hero-highlight {
    flex-direction: column;
    text-align: center;
  }
}
