/* [c4c_quote_start] - compact hand-off form.
   Deliberately brings no card of its own: it is designed to sit inside a container that already
   supplies a background and padding, such as a sidebar widget. Adding a second border and shadow
   inside one reads as a box in a box. Colours are the wizard's own, so the form a visitor starts
   in the sidebar matches the one they finish on /quote/. */
.c4cq-start {
  --q-green: #4e8b3a;
  --q-green-deep: #35682a;
  --q-gold: #f0a81f;
  --q-ink: #1c1c1c;
  --q-field: #d9d2c6;
  --q-muted: #8a8377;
  /* Set at runtime from the host container's padding so the tear line reaches its edges.
     Stays 0 without JavaScript, where a contained rule is the safer look. */
  --q-bleed: 0px;

  max-width: 480px;
  margin: 0;
  color: var(--q-ink);
  font-family: inherit;
  line-height: 1.4;
}

.c4cq-start-badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 7px;
  border-radius: 2px;
  background: var(--q-gold);
  color: var(--q-ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.c4cq-start-h { margin: 0 0 3px; font-size: 1.15rem; line-height: 1.2; }
.c4cq-start-sub { margin: 0 0 15px; font-size: 0.84rem; color: var(--q-muted); }

.c4cq-start-tear {
  height: 0;
  margin: 0 calc(-1 * var(--q-bleed)) 16px;
  border-top: 1px dashed var(--q-field);
}

.c4cq-start-f { margin-bottom: 11px; }

.c4cq-start label {
  display: block;
  margin: 0 0 4px;
  color: var(--q-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Type-agnostic on purpose: a selector listing input types silently skips the next one added. */
.c4cq-start select,
.c4cq-start input:not([type="hidden"]) {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--q-field);
  border-radius: 6px;
  background: #fff;
  color: var(--q-ink);
  font-size: 0.93rem;
  font-family: inherit;
}

.c4cq-start select:focus,
.c4cq-start input:focus {
  outline: 2px solid var(--q-green);
  outline-offset: 1px;
  border-color: var(--q-green);
}

.c4cq-start-btn {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 0;
  border-radius: 8px;
  background: var(--q-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.c4cq-start-btn:hover,
.c4cq-start-btn:focus { background: var(--q-green-deep); }

.c4cq-start-fine {
  margin: 11px 0 0;
  color: var(--q-muted);
  font-size: 0.72rem;
  text-align: center;
}
