.hero {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: 65px;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 32px;
  max-width: 500px;
}

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

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}

/* How It Works */
.how-it-works {
  background: var(--light-green-bg);
  padding: 64px 24px;
}

.how-it-works-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 194, 0, 0.2);
  color: var(--deep-green);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--black);
}

/* Why Rova */
.why-rova {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-rova h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-grid .card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.trust-grid .card p {
  font-size: 14px;
}

/* Footer */
.site-footer {
  background: var(--deep-green);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
}

.site-footer p {
  margin-bottom: 24px;
  font-size: 14px;
  opacity: 0.8;
}

.site-footer .btn-primary {
  margin-bottom: 24px;
}

/* Coming Soon */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 48px 24px;
}

.coming-soon h1 {
  font-size: 48px;
  color: var(--deep-green);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-graphic {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works h2,
  .why-rova h2 {
    font-size: 28px;
  }
}
