body { font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
.faq-answer { display: none; }
.faq-item.is-open .faq-answer { display: block; }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }

/* The vertical pages share the homepage's static layout and interaction styles. */
.vertical-page .faq-answer { display: none; }
.vertical-page .faq-item.is-open .faq-answer { display: block; }
.vertical-page .faq-item.is-open .faq-toggle { transform: rotate(45deg); }

/* Keep every vertical-page CTA visually consistent with the homepage CTA. */
#cta > div {
  max-width: 48rem;
  padding: 2rem;
}

#leadForm {
  width: 100%;
  max-width: 28rem;
  margin: 2rem auto 0;
  text-align: left;
}

#leadForm input:not([type="hidden"], [type="submit"]),
#leadForm select,
#leadForm textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  outline: none;
}

#leadForm input:not([type="hidden"], [type="submit"])::placeholder,
#leadForm textarea::placeholder {
  color: rgba(224, 231, 255, 0.5);
}

#leadForm input:not([type="hidden"], [type="submit"]):focus,
#leadForm select:focus,
#leadForm textarea:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

#leadForm select option {
  color: #0f172a;
  background: #fff;
}

#leadForm textarea {
  min-height: 7rem;
}

#leadForm button[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  background: #fff;
  color: #0f172a;
  transition: background-color 150ms ease;
}

#leadForm button[type="submit"]:hover {
  background: #f1f5f9;
}

#leadForm button[type="submit"]:disabled {
  opacity: 0.5;
}

@media (min-width: 768px) {
  #cta > div {
    padding: 3rem;
  }
}
