   V2 — /preventivo
   Appended after the multi-page block for the same reason: it can
   only add, never disturb what is already shipped.
   ============================================================ */


/* ---------- Internal preview banner (placeholder rate card only) ---------- */
.draft-banner {
  background: var(--tile-warm);
  color: var(--ink-warm-3);
  border-bottom: 1px solid #f0d9a8;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 0;
}
.draft-banner code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  background: rgba(255,255,255,.55);
  border-radius: 5px;
  padding: 1px 6px;
}

/* ---------- Page ground ---------- */
.quote-page { background: var(--surface-alt); }

/* ---------- Compact hero ---------- */
.quote-hero { background: #fff; border-bottom: 1px solid var(--card-border); }
.quote-hero__inner { padding-top: 52px; padding-bottom: 44px; }
.quote-hero__split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 44px; align-items: end; }
.quote-hero__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--primary-deep);
  margin-bottom: 16px;
  text-wrap: balance;
}
.quote-hero__title span { color: var(--accent); }
.quote-hero__lead { font-size: 18px; color: var(--text-muted); line-height: 1.65; max-width: 600px; }
.quote-hero__call { display: flex; flex-direction: column; gap: 12px; }
.quote-hero__call-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.quote-hero__btn { justify-content: flex-start; }
.quote-hero__note { font-size: 13px; color: var(--text-faint-2); line-height: 1.55; }

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
  list-style: none;
}
.quote-steps li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14.5px;
  color: var(--text-muted-2);
  line-height: 1.5;
}
.quote-steps strong { color: var(--primary-deep); }
.quote-steps__n {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-steps__warm { background: var(--tile-warm); color: var(--ink-warm-2); }
.quote-steps__warm strong { color: var(--ink-warm-3); }
.quote-steps__warm .quote-steps__n { background: var(--accent); }

/* ---------- Form + sidebar ---------- */
.quote-body { padding: 52px 0 64px; }
.quote-grid { display: grid; grid-template-columns: 1.5fr .92fr; gap: 32px; align-items: start; }

.quote-form {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* ---------- Form steps ---------- */
.form-step { border-bottom: 1px solid var(--hairline); }
.form-step:last-child { border-bottom: none; }
.form-step__head {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 28px;
  text-align: left;
  font-family: inherit;
}
.form-step__num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-step__title { flex: 1; min-width: 0; }
.form-step__name { display: block; font-size: 18px; font-weight: 700; color: var(--primary-deep); }
.form-step__summary {
  display: block;
  font-size: 13.5px;
  color: var(--text-faint-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-step__caret { color: var(--chevron); font-size: 18px; transition: transform .25s ease; }
.form-step.is-open .form-step__caret { transform: rotate(180deg); }
.form-step__body { padding: 0 28px 28px; }
.form-step__next { padding: 13px 26px; font-size: 15px; }

/* ---------- Fields ---------- */
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fld-row--colli { grid-template-columns: .5fr 1.5fr; align-items: end; margin-bottom: 24px; }
/* Three numeric inputs under one legend. Same chrome as .seg-group — it is a
   labelled group of controls, just not segmented ones. */
.fld-group { border: none; padding: 0; margin: 0 0 22px; }
.fld-group legend { font-size: 13px; font-weight: 600; color: var(--text-muted-2); margin-bottom: 10px; padding: 0; }
.fld-group legend em { color: var(--text-faint-2); font-weight: 400; font-style: normal; }
.fld-row--dims { grid-template-columns: repeat(3, 1fr); margin-bottom: 0; }
/* A value the form worked out, not a field anyone filled — same chrome as
   .route-note, which is the other computed readout on this page. */
.dims-vol {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  background: var(--surface-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-btn);
  padding: 10px 13px;
}
.dims-vol strong { color: var(--primary); font-weight: 700; }
.fld-label { display: block; margin-bottom: 16px; }
.fld-row .fld-label { margin-bottom: 0; }
.fld-label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted-2);
  margin-bottom: 7px;
}
.fld-label em { color: var(--text-faint-2); font-weight: 400; font-style: normal; }
.fld {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border-field);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  font-size: 15.5px;
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.fld:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,75,132,.12); }
.fld::placeholder { color: var(--text-faint-3); font-weight: 400; }
textarea.fld { resize: vertical; }

.fld-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: var(--surface-alt);
  border: 1.5px solid var(--border-field);
  border-radius: var(--radius-btn);
  padding: 13px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted-2);
}
.fld-check input { width: 18px; height: 18px; accent-color: var(--primary); flex: none; }

.fld-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.fld-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); flex: none; }
.fld-consent a { color: var(--primary); font-weight: 600; text-decoration: underline; }

/* ---------- Segmented chips ---------- */
.seg-group { border: none; padding: 0; margin: 0 0 22px; }
.seg-group legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted-2);
  margin-bottom: 10px;
  padding: 0;
}
.seg-row { display: flex; flex-wrap: wrap; gap: 9px; }
.seg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--border-field);
  background: #fff;
  border-radius: var(--radius-full);
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted-2);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.seg:hover { border-color: var(--primary); color: var(--primary); }
.seg--on { background: var(--primary); border-color: var(--primary); color: #fff; }
.seg--on:hover { background: var(--primary-deep); color: #fff; }
/* The radio stays in the DOM for keyboard + no-JS, visually replaced by the chip. */
.seg input { position: absolute; opacity: 0; width: 0; height: 0; }
.seg:has(input:focus-visible) { outline: 2px solid var(--primary); outline-offset: 2px; }

.quote-form__error {
  background: var(--tile-warm);
  color: var(--ink-warm-3);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.quote-form__submit { width: 100%; }
.quote-form__nojs { font-size: 13.5px; color: var(--text-faint); margin-top: 12px; text-align: center; }
.quote-form__nojs a { color: var(--primary); font-weight: 600; }

/* ---------- Sidebar ---------- */
.quote-side { position: sticky; top: 158px; display: flex; flex-direction: column; gap: 16px; }

.side-empty {
  background: #fff;
  border: 1.5px dashed var(--border-dashed);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: center;
}
.side-empty__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.side-empty__h { font-size: 19px; font-weight: 700; color: var(--primary-deep); margin-bottom: 9px; }
.side-empty p { font-size: 15px; color: var(--text-faint); line-height: 1.6; }

.range-panel {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 44px rgba(20,54,95,.12);
  overflow: hidden;
}
.range-panel__head { padding: 28px 28px 24px; }
.range-panel__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.range-panel__h { font-size: 24px; font-weight: 700; line-height: 1.18; color: var(--primary-deep); margin-bottom: 12px; text-wrap: balance; }
.range-panel__lead { font-size: 15.5px; color: var(--text-muted); line-height: 1.65; }
.range-panel__figures {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1;
  margin-bottom: 12px;
  font-size: 44px;
  font-weight: 700;
  color: var(--primary-deep);
  letter-spacing: -.02em;
}
.range-panel__dash { font-size: 30px; font-weight: 400; color: var(--accent); }
.range-panel__vat { font-size: 14.5px; color: var(--text-faint); margin-bottom: 18px; }
.range-panel__placeholder {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-warm-3);
  background: var(--tile-warm);
  border-radius: var(--radius-btn);
  padding: 10px 12px;
  margin-bottom: 16px;
}
.range-panel__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.range-panel__chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted-2);
  background: var(--surface-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  padding: 5px 13px;
}
.range-panel__notes {
  border-top: 1px solid var(--hairline);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.range-panel__actions { border-top: 1px solid var(--hairline); padding: 22px 28px 26px; }
.range-panel__actions > .tme-btn { width: 100%; margin-bottom: 12px; }

/* The reassurance pair — components, not small print. */
.promise-note { display: flex; gap: 13px; }
.promise-note strong { display: block; font-size: 15px; color: var(--primary-deep); margin-bottom: 2px; }
.promise-note > span > span { display: block; font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.promise-note__icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* The 30' glyph: the visible echo of the partenza promise. */
.promise-note__glyph {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--tile-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-warm);
  letter-spacing: -.03em;
}
.promise-note__glyph--dark { background: rgba(247,185,85,.18); color: var(--accent-light); }

.quote-side__pair { display: flex; gap: 9px; }
.quote-side__pair .tme-btn { flex: 1; padding: 12px 14px; font-size: 14.5px; }

/* Out of perimeter — an upgrade, never an error. No red, no warning icons. */
.bespoke-panel {
  background: linear-gradient(160deg, var(--panel-from), var(--panel-to));
  color: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 50px rgba(20,54,95,.28);
  overflow: hidden;
  position: relative;
}
.bespoke-panel__plane { position: absolute; right: -18px; top: -12px; width: 120px; opacity: .55; pointer-events: none; }
.bespoke-panel__head { position: relative; padding: 30px 28px 24px; }
.bespoke-panel__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}
.bespoke-panel__h { font-size: 26px; font-weight: 700; line-height: 1.16; letter-spacing: -.01em; margin-bottom: 14px; text-wrap: balance; }
.bespoke-panel__reason {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(247,185,85,.16);
  border: 1px solid rgba(247,185,85,.4);
  color: var(--accent-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: 16px;
}
.bespoke-panel__head p { font-size: 15.5px; color: rgba(255,255,255,.86); line-height: 1.65; }
.bespoke-panel__note {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 20px 28px;
  display: flex;
  gap: 13px;
}
.bespoke-panel__note strong { display: block; font-size: 15px; margin-bottom: 2px; }
.bespoke-panel__note > span > span { display: block; font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.55; }
.bespoke-panel__actions { position: relative; padding: 20px 28px 26px; }
.bespoke-panel__actions > .tme-btn { width: 100%; margin-bottom: 12px; }

.quote-side__trust { background: var(--secondary); border-radius: var(--radius-card); padding: 20px 22px; }
.quote-side__rating { display: flex; align-items: center; gap: 11px; margin-bottom: 9px; }
.quote-side__stars { color: var(--accent); letter-spacing: 1px; font-size: 13px; }
.quote-side__rating strong { font-size: 14.5px; color: var(--primary-deep); }
.quote-side__trust p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.quote-side__trust a { color: var(--primary); font-weight: 600; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-actionbar {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -8px 26px rgba(20,54,95,.12);
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
}
.mobile-actionbar__status { flex: 1; min-width: 0; font-size: 13.5px; color: var(--text-faint); line-height: 1.4; }
.mobile-actionbar__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.mobile-actionbar__range { display: block; font-size: 21px; font-weight: 700; color: var(--primary-deep); line-height: 1.15; }
.mobile-actionbar__call { flex: none; padding: 12px 14px; }
.mobile-actionbar__send { flex: none; padding: 13px 20px; font-size: 14.5px; }

/* ---------- Inviato ---------- */
.quote-sent { padding: 56px 0 76px; }
.quote-sent__inner { max-width: 960px; }
/* Clears the sticky .site-header when the confirmation is scrolled into view
   on submit.

   Sized to the FULL header (topbar 80 + navbar 78, the same 158 the sidebar's
   sticky top uses), not to the collapsed one. Scrolling down does hide the
   navbar, which would make 92px enough — but hiding the form shrinks the
   document, so a customer who was deep in the form on a phone gets scrolled
   UP to the card instead, and scrolling up brings the navbar straight back.
   At 92px that covers the heading: the exact "I can't see it" bug this fix
   exists to solve. The cost of being safe is some whitespace. */
.success-card { scroll-margin-top: 170px; }
/* The heading is focused programmatically to announce the confirmation; it is
   not a control, so it should not draw a focus ring. */
.success-card__h:focus { outline: none; }
.success-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 54px rgba(20,54,95,.12);
  overflow: hidden;
}
.success-card__head { padding: 44px 44px 34px; border-bottom: 1px solid var(--hairline); }
.success-card__tick {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ok-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.success-card__h {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--primary-deep);
  margin-bottom: 14px;
  text-wrap: balance;
}
.success-card__lead { font-size: 18px; color: var(--text-muted); line-height: 1.6; max-width: 620px; margin-bottom: 24px; }
.success-card__lead strong { color: var(--primary-deep); }
.success-card__meta { display: flex; flex-wrap: wrap; gap: 10px; }
.success-card__id,
.success-card__state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 8px 16px;
}
.success-card__id { background: var(--surface-alt); border: 1px solid var(--card-border); color: var(--text-muted-2); }
.success-card__id strong { color: var(--primary-deep); letter-spacing: .03em; }
.success-card__state { background: var(--tile-warm); color: var(--ink-warm-2); }

.success-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.success-card__recap { padding: 34px 44px; border-bottom: 1px solid var(--hairline); }
.recap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 40px; }
.recap-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.recap-row span { font-size: 14.5px; color: var(--text-faint); }
.recap-row strong { font-size: 14.5px; color: var(--primary-deep); text-align: right; }

.success-card__next { padding: 34px 44px; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.timeline__step { background: var(--surface-alt); border-radius: 12px; padding: 20px; }
.timeline__when { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 7px; }
.timeline__step p { font-size: 14.5px; color: var(--text-muted-2); line-height: 1.55; }
.success-card__caveat { margin: 4px 0 20px; }
.success-card__hurry { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.success-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .quote-grid,
  .quote-hero__split,
  .quote-steps,
  .recap-grid,
  .timeline { grid-template-columns: 1fr; }

  .quote-side { position: static; }
  .mobile-actionbar { display: flex; }

  .quote-hero__title { font-size: 34px; }
  .quote-hero__lead { font-size: 16.5px; }
  .quote-hero__inner { padding-top: 36px; padding-bottom: 32px; }
  .quote-body { padding: 32px 0 40px; }

  .success-card__head { padding: 32px 28px 26px; }
  .success-card__recap,
  .success-card__next { padding: 26px 28px; }
  .success-card__h { font-size: 30px; }
  .success-card__lead { font-size: 16.5px; }
  .quote-sent { padding: 36px 0 52px; }
}

@media (max-width: 620px) {
  .fld-row,
  .fld-row--colli { grid-template-columns: 1fr; }
  /* Stays three-across: they are three two-digit numbers, and stacking them
     would turn one question into three full-width rows. */
  .fld-row--dims { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .form-step__head { padding: 18px 20px; gap: 12px; }
  .form-step__body { padding: 0 20px 22px; }
  .quote-hero__title { font-size: 28px; }
  .range-panel__figures { font-size: 36px; }
  .range-panel__head,
  .range-panel__notes,
  .range-panel__actions,
  .bespoke-panel__head,
  .bespoke-panel__note,
  .bespoke-panel__actions { padding-left: 20px; padding-right: 20px; }
  .side-empty { padding: 26px 20px; }
  .success-card__h { font-size: 25px; }
  .success-card__actions .tme-btn { width: 100%; }
  .quote-side__pair { flex-direction: column; }
  .mobile-actionbar { padding: 10px 12px; gap: 8px; }
  .mobile-actionbar__status { font-size: 12.5px; }
  .mobile-actionbar__range { font-size: 18px; }
  .mobile-actionbar__send { padding: 12px 14px; font-size: 14px; }
}

/* ---------- /preventivo: real-route note + dynamic exclusions ---------- */
.route-note {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  background: var(--surface-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-btn);
  padding: 10px 13px;
  margin-bottom: 22px;
}
.route-note.is-busy { color: var(--text-faint); font-style: italic; }

.fld-check--asap { margin-bottom: 22px; }
/* Same job at the end of step 2: clear the Continua button. The label is a full
   sentence, so it wraps on narrow screens — align to the top, not the middle. */
.fld-check--carico { margin-bottom: 22px; align-items: flex-start; }
.fld-check--carico input { margin-top: 2px; }
.fld-label.is-disabled > span { opacity: .5; }
.fld:disabled { background: var(--surface-alt); color: var(--text-faint-3); cursor: not-allowed; }

/* Exclusions the route lookup actually found — ferries, tunnels, a delivery
   window shorter than the real transit time. Informative, never alarming:
   these are things TME tells you now rather than at the pickup. */
.range-alerts {
  border-top: 1px solid var(--hairline);
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.range-alert {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted-2);
}
.range-alert::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
}
.range-alert--included::before { background: var(--live-dot); }
.range-alert--window::before,
.range-alert--ferry::before { background: var(--accent-hover); }

@media (max-width: 620px) {
  .range-alerts { padding-left: 20px; padding-right: 20px; }
}

/* ---------- /preventivo: what the price covers, and what it can't ----------
   The figure is exact for everything TME controls, so it is shown as one
   number. Ferry and tunnel tickets are the only costs it cannot know in
   advance — they get named here rather than hidden inside a padded range. */
.price-scope {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 0 28px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.price-scope__tick {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.price-extras {
  border-top: 1px solid var(--hairline);
  background: var(--tile-warm);
  padding: 16px 28px;
}
.price-extras__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-warm);
  margin-bottom: 8px;
}
.price-extra {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-warm-3);
}
.price-extra + .price-extra { margin-top: 8px; }

@media (max-width: 620px) {
  .price-scope { padding-left: 20px; padding-right: 20px; }
  .price-extras { padding-left: 20px; padding-right: 20px; }
}

/* A component that sets `display` beats the [hidden] attribute's UA rule, so a
   hidden flex/grid container still occupies space. Bit .range-alerts, .price-scope
   and .mobile-actionbar (which JS hides on submit). Global and last so nothing
   can reintroduce it. */
[hidden] { display: none !important; }

/* ---------- Address autocomplete ----------
   A real combobox rather than <datalist>, because the suggestions come from
   Google Places through /api/places and a datalist can only prefix-match a
   fixed list. The wrapper is the existing .fld-label, made a positioning
   context so the panel hangs off the field. */
.fld-label.ac { position: relative; }
.ac__list {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: 100%;
  margin: 6px 0 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-btn);
  box-shadow: 0 18px 40px rgba(20,54,95,.16);
  max-height: 264px;
  overflow-y: auto;
}
.ac__item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 9px 11px;
  border-radius: 6px;
  cursor: pointer;
}
.ac__item.is-active,
.ac__item:hover { background: var(--surface-alt); }
.ac__main { font-size: 14.5px; font-weight: 600; color: var(--primary-deep); }
.ac__secondary { font-size: 12.5px; color: var(--text-faint); }

/* .quote-hero__title span is the orange half, so a span used purely to stop a
   line break has to opt out of that colour. */
.quote-hero__title .nowrap { white-space: nowrap; color: inherit; }

/* The orange half is its own thought and must start its own line. With the
   shorter question form the natural wrap orphaned "Il" onto the blue line.
   :not(.nowrap) so the unbreakable compound span is untouched. */
.quote-hero__title span:not(.nowrap) { display: block; }
