  .hbrm-quote {
    --hbrm: #043e5d;
    --hbrm-dark: #043e5d;
    --lavender: #bfb5ff;
    --lavender-dark: #8c7de0;
    --lavender-soft: #f9f8ff;
    --surface: #f4f7ff;
    --line: #e5dbff;
    --line-dark: #cfc8fe;
    --text: #043e5d;
    --muted: #57758a;
    --success: #237457;
    --danger: #a9384c;
  }

  .hbrm-quote,
  .hbrm-quote * { box-sizing: border-box; }

  .hbrm-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
  }

  .hbrm-quote {
    width: min(100%, 90rem);
    margin: 0 auto;
    color: var(--text);
    background: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
  }

  .hbrm-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 28px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: clamp(5.5rem, 8vw, 8rem);
  }

  .hbrm-progress button {
    position: relative;
    min-height: 48px;
    padding: 0 8px;
    border: 0;
    color: #6d8292;
    background: transparent;
    font: 700 12px/1.2 Inter, Arial, sans-serif;
    text-align: left;
    cursor: pointer;
  }

  .hbrm-progress button::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: transparent;
    content: "";
  }

  .hbrm-progress button.is-active { color: var(--hbrm); }
  .hbrm-progress button.is-active::after { background: var(--lavender-dark); }
  .hbrm-progress button.is-complete { color: var(--hbrm-dark); }
  .hbrm-progress button:focus-visible {
    outline: 2px solid var(--lavender-dark);
    outline-offset: -3px;
  }
  .hbrm-step-number { margin-right: 7px; color: #7890a0; font-size: 10px; }

  .hbrm-panel[hidden] { display: none; }
  .hbrm-panel { animation: hbrm-panel-in 150ms ease-out; }

  @keyframes hbrm-panel-in {
    from { opacity: .3; transform: translateY(3px); }
    to { opacity: 1; transform: none; }
  }

  .hbrm-field { min-width: 0; }

  .hbrm-label {
    display: block;
    margin-bottom: 6px;
    color: var(--hbrm-dark);
    font-size: 12px;
    font-weight: 750;
  }
  .hbrm-label-suffix { display: inline; }
  .hbrm-constraint-mobile { display: none; }

  .hbrm-required { color: var(--danger); }

  .hbrm-control,
  .hbrm-select,
  .hbrm-textarea {
    width: 100%;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    color: var(--text);
    background: #fff;
    font: 500 13px/1.35 Inter, Arial, sans-serif;
  }

  .hbrm-control,
  .hbrm-select { height: 2.875rem; padding: 0 .75rem; }
  .hbrm-date-display { display: none; }
  .hbrm-textarea { min-height: 78px; padding: 11px 12px; resize: vertical; }
  .hbrm-control::placeholder,
  .hbrm-textarea::placeholder { color: #7890a0; }

  .hbrm-control:focus,
  .hbrm-select:focus,
  .hbrm-textarea:focus {
    border-color: var(--lavender-dark);
    outline: 2px solid rgba(136, 121, 213, .16);
    outline-offset: 0;
  }

  .hbrm-native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
  }

  .hbrm-custom-select { position: relative; width: 100%; }
  .hbrm-custom-select.is-open { z-index: 30; }

  .hbrm-combobox-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 2.875rem;
    padding: 0 .75rem;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    color: var(--text);
    background: #fff;
    font: 500 13px/1.35 Inter, Arial, sans-serif;
    text-align: left;
    cursor: pointer;
  }
  .hbrm-combobox-button > span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .hbrm-combobox-button:focus-visible {
    border-color: var(--lavender-dark);
    outline: 2px solid rgba(136, 121, 213, .16);
  }
  .hbrm-combobox-button[aria-invalid="true"] { border-color: var(--danger); }
  .hbrm-combobox-button:disabled { color: #7890a0; background: var(--surface); cursor: not-allowed; }

  .hbrm-combobox-caret {
    width: 8px;
    height: 8px;
    margin: -4px 2px 0 12px;
    border-right: 1px solid #536170;
    border-bottom: 1px solid #536170;
    transform: rotate(45deg);
  }

  .hbrm-combobox-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(19, 44, 74, .12);
  }

  .hbrm-combobox-option {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    background: #fff;
    font: 500 13px/1.3 Inter, Arial, sans-serif;
    text-align: left;
    cursor: pointer;
  }

  .hbrm-combobox-option:last-child { border-bottom: 0; }
  .hbrm-combobox-option[aria-selected="true"] {
    color: var(--hbrm-dark);
    background: var(--lavender-soft);
    box-shadow: inset 2px 0 var(--lavender-dark);
    font-weight: 700;
  }
  .hbrm-combobox-option:not([aria-selected="true"]):hover,
  .hbrm-combobox-option:not([aria-selected="true"]):focus-visible {
    color: var(--hbrm-dark);
    background: var(--line);
    outline: 0;
  }

  .hbrm-help { margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
  .hbrm-service { max-width: 17.5rem; margin-bottom: 1.5rem; }

  .hbrm-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .hbrm-route-card {
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
  }

  .hbrm-card-head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 14px 17px;
    border-bottom: 1px solid #dedaf6;
    border-radius: 4px 4px 0 0;
    color: var(--hbrm-dark);
    background: var(--lavender-soft);
    font: 750 16px/1.2 Manrope, Arial, sans-serif;
  }

  .hbrm-card-head small { color: var(--muted); font: 550 11px/1.2 Inter, Arial, sans-serif; }
  .hbrm-route-card--delivery { border-color: var(--line-dark); }
  .hbrm-route-card--delivery .hbrm-card-head { border-bottom-color: var(--line-dark); background: var(--surface); }
  .hbrm-card-body { padding: 18px 17px; }
  .hbrm-card-body > .hbrm-two + .hbrm-field { margin-top: 15px; }
  .hbrm-two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .hbrm-three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .hbrm-four { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }

  .hbrm-address { position: relative; }
  .hbrm-address.is-validated .hbrm-control { border-color: #79a994; padding-right: 38px; }
  .hbrm-address.is-validated::after {
    position: absolute;
    top: 31px;
    right: 13px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    content: "✓";
    font: 750 12px/19px Inter, Arial, sans-serif;
    text-align: center;
  }
  .hbrm-suggestions {
    position: absolute;
    z-index: 8;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    display: none;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(19, 44, 74, .11);
  }

  .hbrm-address:focus-within .hbrm-suggestions { display: block; }
  .hbrm-suggestions[hidden] { display: none !important; }

  .hbrm-suggestion { display: block; width: 100%; padding: 9px 11px; border: 0; border-bottom: 1px solid var(--line); color: var(--muted); background: #fff; font: 500 11px/1.35 Inter, Arial, sans-serif; text-align: left; cursor: pointer; }
  .hbrm-suggestion:hover,
  .hbrm-suggestion:focus-visible { background: var(--lavender-soft); outline: 0; }
  .hbrm-suggestion:last-child { border-bottom: 0; }
  .hbrm-suggestion strong { display: block; color: var(--hbrm); font-size: 12px; }
  .hbrm-suggestion--status { cursor: default; }

  .hbrm-editor {
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
  }

  .hbrm-editor-head,
  .hbrm-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 50px;
    padding: 0 17px;
    border-bottom: 1px solid var(--line);
    border-radius: 4px 4px 0 0;
    color: var(--hbrm-dark);
    background: var(--surface);
    font: 750 14px/1.2 Manrope, Arial, sans-serif;
  }

  .hbrm-editor-title { display: flex; align-items: baseline; gap: 12px; }
  .hbrm-editor-head span,
  .hbrm-list-head span { color: var(--muted); font: 500 11px/1.3 Inter, Arial, sans-serif; }
  .hbrm-skip-link {
    padding: 6px 0;
    border: 0;
    color: var(--hbrm);
    background: transparent;
    font: 750 11px/1.2 Inter, Arial, sans-serif;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
  }
  .hbrm-inline-link {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
  }
  .hbrm-editor-body { padding: 18px 17px 17px; }
  .hbrm-editor-row + .hbrm-editor-row { margin-top: 15px; }
  .hbrm-grow { grid-column: span 2; }
  .hbrm-unit-core {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "type format quantity"
      "description description weight";
    gap: 15px 12px;
  }
  .hbrm-unit-core .hbrm-field:nth-child(1) { grid-area: type; }
  .hbrm-unit-core .hbrm-field:nth-child(2) { grid-area: format; }
  .hbrm-unit-core .hbrm-field:nth-child(3) { grid-area: quantity; }
  .hbrm-unit-core .hbrm-field:nth-child(4) { grid-area: description; }
  .hbrm-unit-core .hbrm-field:nth-child(5) { grid-area: weight; }
  .hbrm-unit-dimensions { padding-top: 1rem; }

  .hbrm-check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px 16px;
    margin-top: 9px;
  }

  .hbrm-check,
  .hbrm-radio {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
  }

  .hbrm-check input,
  .hbrm-radio input { width: 16px; height: 16px; margin: 0; accent-color: var(--hbrm); }

  /* Keep native controls independent from Elementor's global field sizing. */
  form.hbrm-quote .hbrm-check input[type="checkbox"],
  form.hbrm-quote .hbrm-radio input[type="radio"] {
    appearance: auto !important;
    box-sizing: border-box !important;
    display: block !important;
    flex: 0 0 1rem !important;
    width: 1rem !important;
    min-width: 1rem !important;
    max-width: 1rem !important;
    height: 1rem !important;
    min-height: 1rem !important;
    max-height: 1rem !important;
    margin: .0625rem 0 0 !important;
    padding: 0 !important;
    accent-color: var(--hbrm) !important;
  }

  .hbrm-unit-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 17px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .hbrm-unit-actions p { margin: 0; color: var(--muted); font-size: 11px; }

  .hbrm-button {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid var(--hbrm);
    border-radius: 4px;
    color: var(--hbrm);
    background: #fff;
    font: 750 12px/1 Inter, Arial, sans-serif;
    cursor: pointer;
  }

  .hbrm-button:hover { background: var(--surface); }
  .hbrm-button--primary { border-color: #a89de5; color: var(--hbrm-dark); background: var(--lavender); }
  .hbrm-button--primary:hover { background: #aca0ee; }
  .hbrm-button--dark { border-color: var(--hbrm); color: #fff; background: var(--hbrm); }
  .hbrm-button--dark:hover { background: #073750; }
  .hbrm-button--quiet { border-color: var(--line-dark); color: var(--muted); }

  .hbrm-unit-list { margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); }
  .hbrm-table { width: 100%; margin: 0; border: 0; border-collapse: collapse; }
  .hbrm-table th,
  .hbrm-table td { padding: 11px 12px; border: 0; border-bottom: 1px solid var(--line); font-size: 11px; text-align: left; vertical-align: top; }
  .hbrm-table th + th,
  .hbrm-table td + td { border-left: 1px solid var(--line); }
  .hbrm-table th { color: var(--muted); background: #fff; font-weight: 700; }
  .hbrm-table tbody tr:not(.hbrm-empty-row),
  .hbrm-table tbody td { background: var(--surface); }
  .hbrm-table td { color: var(--muted); }
  .hbrm-table strong { color: var(--hbrm-dark); font-size: 12px; }
  .hbrm-table-action { border: 0; color: var(--hbrm); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
  .hbrm-empty-row,
  .hbrm-empty-row td { background: var(--lavender-soft); }
  .hbrm-empty-row td { padding: 18px 12px; border-right: 0; border-bottom: 1px solid var(--line); border-left: 0; color: var(--muted); text-align: center; }

  .hbrm-totals {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding: 13px 15px;
    border-top: 0;
    color: var(--muted);
    background: var(--surface);
    font-size: 11px;
  }

  .hbrm-totals strong { display: block; margin-top: 2px; color: var(--hbrm-dark); font-size: 13px; }
  .hbrm-step-error { margin: 14px 0 0; padding: 10px 12px; border-left: 3px solid var(--danger); color: var(--danger); background: #fff7f9; font-size: 12px; font-weight: 650; }
  .hbrm-inline-error { margin: 8px 0 0; color: var(--danger); font-size: 12px; line-height: 1.35; font-weight: 650; }
  .hbrm-control[aria-invalid="true"],
  .hbrm-combobox-button[aria-invalid="true"] { border-color: var(--danger); }

  .hbrm-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
    gap: 20px;
  }

  .hbrm-contact,
  .hbrm-summary { border: 1px solid var(--line); border-radius: 5px; background: #fff; }
  .hbrm-contact-body { padding: 18px 17px; }
  .hbrm-contact-body > .hbrm-field + .hbrm-two,
  .hbrm-contact-body > .hbrm-two + .hbrm-field { margin-top: 15px; }

  .hbrm-profile-switch {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 18px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--surface);
  }

  .hbrm-profile-switch button {
    min-height: 36px;
    padding: 0 18px;
    border: 0;
    border-radius: 3px;
    color: var(--muted);
    background: transparent;
    font: 700 12px/1 Inter, Arial, sans-serif;
    cursor: pointer;
  }

  .hbrm-profile-switch button.is-active { color: var(--hbrm-dark); background: #fff; box-shadow: 0 1px 3px rgba(19, 44, 74, .1); }
  .hbrm-summary-body { padding: 16px 17px; }
  .hbrm-summary-block + .hbrm-summary-block { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--line); }
  .hbrm-summary-label { margin: 0 0 6px; color: var(--muted); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
  .hbrm-summary-value { margin: 0; color: var(--hbrm-dark); font-size: 12px; line-height: 1.5; }
  .hbrm-summary-value strong { font-size: 13px; }
  .hbrm-summary-route { display: grid; gap: 10px; }
  .hbrm-summary-route-stop { display: grid; gap: 2px; color: var(--muted); font-size: 11px; line-height: 1.45; }
  .hbrm-summary-route-stop + .hbrm-summary-route-stop { padding-top: 10px; border-top: 1px solid var(--line); }
  .hbrm-summary-route-label { color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
  .hbrm-summary-route-stop strong { color: var(--hbrm-dark); font-size: 12px; }
  .hbrm-summary-block .hbrm-table-action + .hbrm-table-action { margin-left: 12px; }
  .hbrm-consent {
    margin-top: 18px;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
  }
  .hbrm-consent-mobile { display: none; }

  .hbrm-consent a { color: var(--hbrm); text-decoration: underline; text-underline-offset: 3px; }

  .hbrm-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .hbrm-actions-right { display: flex; gap: 10px; margin-left: auto; }
  .hbrm-actions-note { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.4; }

  .hbrm-success {
    padding: 42px 28px;
    border: 1px solid #b9d8ca;
    border-radius: 5px;
    background: #f5faf7;
    text-align: center;
  }

  .hbrm-success-kicker { margin: 0 0 10px; color: var(--success); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
  .hbrm-success h3 { margin: 0 0 12px; color: var(--hbrm-dark); font: 500 24px/1.2 Manrope, Arial, sans-serif; }
  .hbrm-success p { max-width: 560px; margin: 0 auto; color: var(--muted); line-height: 1.6; }
  .hbrm-reference { display: inline-block; margin-top: 18px; padding: 9px 12px; border: 1px solid #cbded5; border-radius: 4px; color: var(--hbrm-dark); background: #fff; font-size: 12px; font-weight: 750; }

  .hbrm-approval { display: flex; justify-content: center; margin: 24px 0 6px; }
  .hbrm-approval button { min-height: 44px; padding: 0 18px; border: 1px solid #a9b0ba; border-radius: 4px; color: var(--hbrm); background: #fff; font-weight: 750; cursor: pointer; }
  .hbrm-approval button.selected { border-color: var(--hbrm); color: #fff; background: var(--hbrm); outline: 2px solid rgba(191, 181, 255, .6); outline-offset: 2px; }

  @media (max-width: 860px) {
    .hbrm-route-grid,
    .hbrm-contact-layout { grid-template-columns: 1fr; }
    .hbrm-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hbrm-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @media (max-width: 620px) {
    .hbrm-progress button { font-size: 11px; text-align: center; }
    .hbrm-progress button::after { right: 0; }
    .hbrm-step-number { display: block; margin: 0 0 4px; }
    .hbrm-mobile-pair,
    .hbrm-unit-dimensions,
    .hbrm-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .625rem; }
    .hbrm-route-time { width: 100%; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
    /* Keep WebKit's native date picker interactive without letting it draw outside its column. */
    .hbrm-route-time .hbrm-field { min-width: 0; }
    .hbrm-date-control { position: relative; height: 2.875rem; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 4px; background: #fff; }
    .hbrm-date-control .hbrm-control { position: absolute; inset: 0; z-index: 1; width: 100% !important; height: 100%; min-width: 0 !important; max-width: 100% !important; padding: 0 !important; border: 0; opacity: 0; }
    .hbrm-date-display { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 0 .5rem; color: var(--text); font: 500 13px/1.35 Inter, Arial, sans-serif; pointer-events: none; }
    .hbrm-date-control:focus-within { border-color: var(--lavender-dark); outline: 2px solid rgba(136, 121, 213, .16); outline-offset: 0; }
    .hbrm-unit-core {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-areas:
        "type type"
        "format format"
        "quantity weight"
        "description description";
      gap: .9375rem .625rem;
    }
    .hbrm-grow { grid-column: auto; }
    .hbrm-service { max-width: none; }
    .hbrm-editor-head,
    .hbrm-list-head { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 11px; }
    .hbrm-editor-title { align-items: flex-start; flex-direction: column; gap: 4px; }
    .hbrm-unit-actions,
    .hbrm-actions { align-items: stretch; flex-direction: column; }
    .hbrm-actions { gap: 8px; }
    .hbrm-actions-right { display: grid; width: 100%; gap: 8px; margin: 0; }
    .hbrm-button { width: 100%; }
    .hbrm-actions .hbrm-button--quiet { font-size: 12px; }
    .hbrm-actions .hbrm-button--primary { font-size: 14px; }
    .hbrm-label-suffix { display: none; }
    .hbrm-constraint-desktop { display: none; }
    .hbrm-constraint-mobile { display: inline; white-space: nowrap; }
    .hbrm-profile-switch { display: grid; width: 100%; }
    .hbrm-profile-switch button { width: 100%; }
    .hbrm-contact-pair--channels { grid-template-columns: 1fr; }
    .hbrm-consent-desktop { display: none; }
    .hbrm-consent-mobile { display: inline; }
    .hbrm-table thead { display: none; }
    .hbrm-table,
    .hbrm-table tbody,
    .hbrm-table tr,
    .hbrm-table td { display: block; width: 100%; }
    .hbrm-table tr { padding: 11px 13px; border-bottom: 1px solid var(--line); }
    .hbrm-table td { padding: 3px 0; border: 0; }
    .hbrm-table tr.hbrm-empty-row { padding: 0; border-bottom: 0; background: var(--lavender-soft); }
    .hbrm-table tr.hbrm-empty-row td { padding: 18px 13px; border-bottom: 1px solid var(--line); background: var(--lavender-soft); }
    .hbrm-totals { justify-content: space-between; gap: 10px; }
  }

  @media (max-width: 340px) {
    .hbrm-route-time,
    .hbrm-contact-pair--channels { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    .hbrm-panel { animation: none; }
  }

  /* Component shield: prevent Elementor/theme controls from leaking in. */
  form.hbrm-quote button,
  form.hbrm-quote input,
  form.hbrm-quote select,
  form.hbrm-quote textarea {
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: none;
  }

  form.hbrm-quote button { appearance: none; text-decoration: none; }

  form.hbrm-quote input.hbrm-control,
  form.hbrm-quote textarea.hbrm-textarea {
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    color: var(--text);
    background: #fff;
    font: 500 13px/1.35 Inter, Arial, sans-serif;
  }

  form.hbrm-quote .hbrm-progress button,
  form.hbrm-quote .hbrm-progress button:hover,
  form.hbrm-quote .hbrm-progress button:focus {
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    color: #6d8292;
    background: transparent;
    font: 700 12px/1.2 Inter, Arial, sans-serif;
    text-align: left;
  }

  form.hbrm-quote .hbrm-progress button.is-active,
  form.hbrm-quote .hbrm-progress button.is-active:hover { color: var(--hbrm); background: transparent; }
  form.hbrm-quote .hbrm-progress button.is-complete,
  form.hbrm-quote .hbrm-progress button.is-complete:hover { color: var(--hbrm-dark); background: transparent; }

  form.hbrm-quote button.hbrm-combobox-button,
  form.hbrm-quote button.hbrm-combobox-button:hover,
  form.hbrm-quote button.hbrm-combobox-button:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 2.875rem;
    padding: 0 .75rem;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    color: var(--text);
    background: #fff;
    font: 500 13px/1.35 Inter, Arial, sans-serif;
    text-align: left;
  }

  form.hbrm-quote button.hbrm-combobox-option,
  form.hbrm-quote button.hbrm-combobox-option:hover,
  form.hbrm-quote button.hbrm-combobox-option:focus {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    background: #fff;
    font: 500 13px/1.3 Inter, Arial, sans-serif;
    text-align: left;
  }

  form.hbrm-quote button.hbrm-combobox-option[aria-selected="true"] {
    color: var(--hbrm-dark);
    background: var(--lavender-soft);
    box-shadow: inset 2px 0 var(--lavender-dark);
    font-weight: 700;
  }

  form.hbrm-quote button.hbrm-combobox-option:not([aria-selected="true"]):hover,
  form.hbrm-quote button.hbrm-combobox-option:not([aria-selected="true"]):focus-visible {
    color: var(--hbrm-dark);
    background: var(--line);
  }

  form.hbrm-quote .hbrm-table th,
  form.hbrm-quote .hbrm-table td { border: 0 !important; border-bottom: 1px solid var(--line) !important; }
  form.hbrm-quote .hbrm-table { border: 0 !important; border-spacing: 0 !important; box-shadow: none !important; }
  form.hbrm-quote .hbrm-table th + th,
  form.hbrm-quote .hbrm-table td + td { border-left: 1px solid var(--line) !important; }
  form.hbrm-quote .hbrm-table .hbrm-empty-row td { border-right: 0 !important; border-left: 0 !important; }
  form.hbrm-quote .hbrm-table tbody tr:not(.hbrm-empty-row),
  form.hbrm-quote .hbrm-table tbody tr:not(.hbrm-empty-row) td { background: var(--lavender-soft) !important; }

  @media (min-width: 621px) {
    form.hbrm-quote .hbrm-progress button,
    form.hbrm-quote .hbrm-progress button:hover,
    form.hbrm-quote .hbrm-progress button:focus,
    form.hbrm-quote .hbrm-progress button:focus-visible { font-size: 15px !important; }
    form.hbrm-quote .hbrm-step-number { font-size: 15px !important; }
  }

  .pac-container {
    z-index: 99999 !important;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(19, 44, 74, .12);
    font-family: Inter, Arial, sans-serif;
  }
  .pac-item { padding: 8px 12px; border-top: 1px solid var(--line); color: var(--muted); cursor: pointer; }
  .pac-item:hover, .pac-item-selected { background: var(--line); }
  .pac-item-query { color: var(--hbrm-dark); }

  form.hbrm-quote button.hbrm-button {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid var(--hbrm);
    border-radius: 4px;
    color: var(--hbrm);
    background: #fff;
    font: 750 12px/1 Inter, Arial, sans-serif;
  }

  form.hbrm-quote button.hbrm-button:hover { color: var(--hbrm); background: var(--surface); }
  form.hbrm-quote button.hbrm-button--primary,
  form.hbrm-quote button.hbrm-button--primary:hover { border-color: #a89de5; color: var(--hbrm-dark); background: var(--lavender); }
  form.hbrm-quote button.hbrm-button--primary:hover { background: #aca0ee; }
  form.hbrm-quote button.hbrm-button--dark,
  form.hbrm-quote button.hbrm-button--dark:hover { border-color: var(--hbrm); color: #fff; background: var(--hbrm); }
  form.hbrm-quote button.hbrm-button--dark:hover { background: #073750; }
  form.hbrm-quote button.hbrm-button--quiet,
  form.hbrm-quote button.hbrm-button--quiet:hover { border-color: var(--line-dark); color: var(--muted); background: #fff; }

  form.hbrm-quote .hbrm-profile-switch button,
  form.hbrm-quote .hbrm-profile-switch button:hover {
    min-height: 36px;
    padding: 0 18px;
    border: 0;
    border-radius: 3px;
    color: var(--muted);
    background: transparent;
    font: 700 12px/1 Inter, Arial, sans-serif;
  }

  form.hbrm-quote .hbrm-profile-switch button.is-active,
  form.hbrm-quote .hbrm-profile-switch button.is-active:hover { color: var(--hbrm-dark); background: #fff; }
  form.hbrm-quote button.hbrm-table-action,
  form.hbrm-quote button.hbrm-table-action:hover,
  form.hbrm-quote button.hbrm-skip-link,
  form.hbrm-quote button.hbrm-skip-link:hover,
  form.hbrm-quote button.hbrm-inline-link,
  form.hbrm-quote button.hbrm-inline-link:hover { border: 0; color: var(--hbrm); background: transparent; text-decoration: underline; text-underline-offset: 3px; }
