/* ConnectQuote extended intake — shared styles */
.cq-block { margin-top: 20px; padding-top: 4px; border-top: 1px solid #f3f4f6; }
.cq-block-title { font-weight: 700; margin: 0 0 10px; font-size: .95rem; color: #374151; }
.cq-placeholder { color: #6b7280; font-size: .9rem; margin: 16px 0 0; font-style: italic; }
.cov-toggle { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cov-toggle-extras { margin-top: 10px; }
.cov-chip-row {
  display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.cov-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid #e5e7eb; border-radius: 999px;
  padding: 10px 16px; cursor: pointer; font-size: .9rem; font-weight: 600;
  background: #fff; transition: border-color .15s, background .15s;
  user-select: none;
}
.cov-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.cov-chip.on { border-color: var(--brand, #ea580c); background: #fff7ed; color: #9a3412; }
.cov-chip.solo { cursor: default; opacity: .95; }
.cov-help-btn {
  flex-shrink: 0; width: 1.65rem; height: 1.65rem; padding: 0;
  border: 1px solid #d1d5db; border-radius: 50%; background: #fff;
  color: #4b5563; font-size: .85rem; font-weight: 700; line-height: 1;
  cursor: pointer; font-family: inherit;
}
.cov-help-btn:hover,
.cov-help-btn[aria-expanded="true"] {
  border-color: var(--brand, #ea580c); color: var(--brand, #ea580c); background: #fff7ed;
}
.cov-help-blurb {
  margin: 10px 0 0; padding: 12px 14px; font-size: .875rem; line-height: 1.45;
  color: #374151; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px;
}
.cov-extra { border-style: dashed; font-weight: 500; }
.cov-extra em { font-style: normal; font-size: .8rem; color: #6b7280; font-weight: 400; }
.cq-section {
  margin-top: 14px; border: 1px solid #e5e7eb; border-radius: 10px;
  background: #fafafa; overflow: hidden;
}
.cq-section summary {
  padding: 12px 14px; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
}
.cq-section summary::-webkit-details-marker { display: none; }
.cq-hint { font-weight: 400; font-size: .8rem; color: #6b7280; }
.cq-section-body { padding: 0 14px 14px; }
.cq-ext-field:invalid,
select.cq-ext-field option[value=""]:checked {
  color: #6b7280;
}
select.cq-ext-field:required:invalid {
  border-color: #e5e7eb;
}

.cq-money-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.cq-money-prefix {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #f9fafb;
  color: #374151;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.cq-money-wrap .cq-currency-input {
  flex: 1;
  min-width: 0;
  border-radius: 0 8px 8px 0;
}
.cq-currency-input:placeholder-shown,
.cq-currency-input.prefilled {
  color: #9ca3af;
}
.cq-money-wrap:has(.cq-currency-input:placeholder-shown) .cq-money-prefix,
.cq-money-wrap:has(.cq-currency-input.prefilled) .cq-money-prefix {
  color: #9ca3af;
}

.plan-picker-label {
  font-weight: 700; font-size: .95rem; margin: 16px 0 10px; color: #374151;
}
.plan-picker {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px;
}
@media (max-width: 560px) { .plan-picker { grid-template-columns: 1fr; } }
.plan-card {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  border: 2px solid #e5e7eb; border-radius: 12px; background: #fff;
  padding: 14px 16px; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s;
  font-family: inherit; width: 100%;
}
.plan-card:hover { border-color: #fdba74; }
.plan-card.selected {
  border-color: var(--brand, #ea580c); background: #fff7ed;
  box-shadow: 0 0 0 1px var(--brand, #ea580c);
}
.plan-name { font-weight: 800; font-size: .95rem; color: #111; }
.plan-price { font-size: 1.65rem; font-weight: 800; color: var(--navy, #1B3A5F); line-height: 1.2; margin-top: 4px; }
.plan-period { font-size: .85rem; color: #6b7280; margin-bottom: 6px; }
.plan-note { font-size: .8rem; color: #6b7280; line-height: 1.35; }
.plan-card.selected .plan-name { color: #9a3412; }
