.hero .hero__title {
  max-width: 32rem;
}

.hero .hero__subtitle {
  max-width: 40rem;
}

.terms-cta {
  margin-top: var(--space-10);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-primary-strong), #020617);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-medium);
}

.terms-cta__content p {
  color: rgba(249, 250, 251, 0.9);
}

.terms-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.terms-cta .btn--outline {
  color: #e5e7eb;
  border-color: rgba(209, 213, 219, 0.7);
}

.terms-cta .btn--outline:hover {
  background-color: rgba(15, 23, 42, 0.4);
}

@media (min-width: 768px) {
  .terms-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .terms-cta__content {
    max-width: 32rem;
  }
}
