/* === Hero Section === */
.hero {
  max-width: 700px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 1.5rem;
}

.hero .headline {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero .highlight {
  color: var(--color-primary);
  font-weight: 800;
}

.hero .subtext {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto 2.75rem auto;
  line-height: 1.6;
  font-weight: 500;
}

/* === Pricing Section === */
.pricing-line {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  user-select: none;
  letter-spacing: 0.2px;
}

.pricing-benefits {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero {
    max-width: 92%;
    margin: 2.5rem auto 3rem auto;
  }

  .hero .headline {
    font-size: 2rem;
  }

  .hero .subtext {
    font-size: 1.05rem;
  }

  .pricing-line {
    font-size: 1rem;
  }

  .pricing-benefits {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero .headline {
    font-size: 1.65rem;
  }

  .hero .subtext {
    font-size: 1rem;
  }

  .pricing-line,
  .pricing-benefits {
    font-size: 0.9rem;
  }
}
