/* ==========================================================================
   Component: final CTA band (.cm-cta) + "describe your need" input (.cm-describe)
   Uses the .cm-brand-surface--band recipe (base.css). Centred heading, primary
   CTA, and a no-dead-end free-text row that routes an off-menu need to a human.
   ========================================================================== */

.cm-cta {
  padding: 104px var(--cm-gutter);
  scroll-margin-top: 80px;
}

.cm-cta__inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.cm-cta__title {
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
  text-wrap: balance;
}

.cm-cta__lead {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(241, 244, 247, 0.85);
  max-width: 46ch;
  text-wrap: pretty;
}

/* Inline links in the lead copy stay white on the dark band. */
.cm-cta__lead a {
  color: #fff;
  font-weight: 600;
}

/* --- Describe-your-need row ---------------------------------------------- */
.cm-describe {
  width: 100%;
  max-width: 560px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cm-describe__hint {
  font-size: 15px;
  color: rgba(241, 244, 247, 0.85);
}

.cm-describe__row {
  display: flex;
  gap: 10px;
}

.cm-describe__input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--cm-radius-pill);
  padding: 13px 20px;
  font: inherit;
  font-size: 15px;
  color: #fff;
}

.cm-describe__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Border brightens on focus; the global :focus-visible ring still shows for
   keyboard users (light on this dark band — see base.css). */
.cm-describe__input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.cm-describe__send {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--cm-radius-pill);
  cursor: pointer;
  transition: background var(--cm-dur) var(--cm-ease);
}

.cm-describe__send:hover {
  background: rgba(255, 255, 255, 0.22);
}
