/* Contact intent selection — 2026-07-17. Scoped to the Contact page. */
.contact-leads-page .contact-situation-section {
  max-width: 720px;
  margin-top: clamp(38px, 4vw, 52px);
}

.contact-leads-page .contact-situation-heading {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 500;
  line-height: 1.15;
}

.contact-leads-page .contact-situation-instruction {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(5, 39, 67, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.contact-leads-page .contact-situation-section .contact-situation-grid {
  margin-top: 22px;
}

.contact-leads-page .contact-situation-section .contact-situation-option {
  width: 100%;
  font: inherit;
  text-align: left;
}

.contact-leads-page .contact-form-intent-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-leads-page .contact-form-intent-legend {
  width: 100%;
  margin: 0;
  padding: 0;
}

.contact-leads-page .contact-form-intent-legend > span {
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.contact-leads-page .contact-form-intent-legend > em {
  float: right;
  color: var(--gold-dark);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-leads-page .contact-form-intent-help {
  margin: 5px 0 10px;
  color: rgba(5, 39, 67, 0.62);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-leads-page .contact-form-intent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-leads-page .contact-form-intent-option {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(5, 39, 67, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  padding: 9px 10px;
  color: var(--navy-950);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-leads-page .contact-form-intent-option:hover {
  border-color: rgba(201, 166, 70, 0.62);
}

.contact-leads-page .contact-form-intent-option:focus-within {
  outline: 3px solid rgba(201, 166, 70, 0.22);
  outline-offset: 2px;
}

.contact-leads-page .contact-form-intent-option.selected {
  border-color: rgba(201, 166, 70, 0.88);
  background: linear-gradient(135deg, #fff7dc, #fff);
  box-shadow: 0 8px 20px rgba(5, 39, 67, 0.08);
}

.contact-leads-page .contact-form-intent-option input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--gold-dark);
}

.contact-leads-page .contact-form-intent-option span {
  min-width: 0;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .contact-leads-page .contact-situation-section {
    margin-top: 34px;
  }

  .contact-leads-page .contact-form-intent-options {
    grid-template-columns: 1fr;
  }
}
