.simple-cta {
  padding: 40px var(--container-padding);
  font-family: var(--font-body);
}

.simple-cta__inner {
  display: flex;
  justify-content: center;
  width: min(100%, var(--container-max));
  margin: 0 auto;
}

.simple-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.simple-cta__button--primary {
  background: var(--color-brand-orange);
  color: #fff;
  border: none;
  border-radius: 12px;
}

.simple-cta__button--primary:hover {
  transform: translateY(-1px);
  background: var(--color-brand-green-dark);
}

.simple-cta__button--secondary {
  background: transparent;
  color: var(--color-brand-green);
  border: 2px solid var(--color-brand-green);
  border-radius: 12px;
}

.simple-cta__button--secondary:hover {
  transform: translateY(-1px);
  background: var(--color-brand-green-muted);
}
