[v-cloak] {
  display: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #eef3f7;
  color: #18212f;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  background: #ffffff;
  border-bottom: 1px solid #d9e0e8;
  box-shadow: 0 2px 12px rgba(24, 33, 47, 0.04);
}

.eyebrow {
  font-size: 12px;
  color: #667085;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 24px;
}

h2 {
  font-size: 22px;
}

h3 {
  margin: 8px 0 0;
  font-size: 16px;
}

.status-pill {
  border: 1px solid #cfe0f3;
  border-radius: 6px;
  padding: 8px 12px;
  background: #f3f8ff;
  color: #174a7c;
  font-weight: 700;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select {
  display: grid;
  gap: 4px;
  min-width: 128px;
  color: #174a7c;
  font-size: 12px;
  font-weight: 700;
}

.language-select select {
  min-height: 38px;
  padding: 7px 10px;
  border-color: #cfe0f3;
  background: #ffffff;
}

.layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  min-width: 0;
}

.layout.debug-enabled {
  grid-template-columns: 210px minmax(0, 1fr) 360px;
}

.steps,
.panel,
.debug {
  min-width: 0;
  background: #ffffff;
  border: 1px solid #d9e0e8;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 33, 47, 0.05);
}

.steps {
  padding: 10px;
  align-self: start;
}

.panel-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
}

.mobile-step-menu-toggle,
.mobile-step-menu {
  display: none;
}

.step-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 10px;
  text-align: left;
  color: #475467;
}

.step-item:disabled {
  opacity: 1;
}

.step-item span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #e8edf3;
  color: #344054;
  font-size: 12px;
}

.step-item.active {
  background: #f3f8ff;
  color: #174a7c;
  font-weight: 700;
}

.step-item.done span {
  background: #d9f2e5;
  color: #087443;
}

.step-item.done {
  color: #087443;
}

.step-item.locked {
  color: #98a2b3;
  cursor: not-allowed;
}

.step-item.locked span {
  background: #eef2f6;
  color: #98a2b3;
}

.panel {
  min-height: 520px;
  padding: 26px;
}

.screen {
  width: 100%;
  min-width: 0;
  max-width: 720px;
}

.screen:not(.lookup-screen):not(.coverage-screen) > h2 {
  position: relative;
  margin-bottom: 8px;
  padding-left: 14px;
  font-size: 28px;
}

.screen:not(.lookup-screen):not(.coverage-screen) > h2::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: #1769aa;
}

.screen:not(.lookup-screen):not(.coverage-screen) > p {
  max-width: 620px;
  color: #475467;
  line-height: 1.45;
}

.lookup-screen {
  max-width: 780px;
}

.coverage-screen {
  max-width: 880px;
}

.map-screen {
  max-width: 100%;
}

label {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  color: #344054;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #b8c2cf;
  border-radius: 6px;
  padding: 10px 12px;
  background: #ffffff;
  color: #18212f;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #1769aa;
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.14);
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.field-hint.error {
  color: #b42318;
}

.location-link-note {
  border: 1px solid #b7d4f2;
  border-left: 4px solid #1769aa;
  border-radius: 6px;
  margin: 14px 0 18px;
  padding: 12px 14px;
  background: #f3f8ff;
  color: #18415f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.phone-choice-heading {
  margin: 22px 0 10px;
  color: #12253f;
  font-size: 18px;
  font-weight: 800;
}

.phone-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  margin-top: 18px;
}

.phone-path-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 105, 170, 0.08);
}

.phone-path-or {
  position: relative;
  display: flex;
  width: 64px;
  align-items: center;
  justify-content: center;
  color: #667085;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.phone-path-or::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 50%;
  width: 1px;
  background: #d7e2ee;
  content: "";
}

.phone-path-or span {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(23, 105, 170, 0.12);
}

.phone-path-card h3 {
  margin: 0;
  color: #174a7c;
  font-size: 18px;
}

.phone-path-card p {
  margin: 10px 0 18px;
  color: #475467;
  font-size: 14px;
  line-height: 1.45;
}

.phone-path-card button {
  width: 100%;
  margin-top: auto;
}

.phone-mobile-actions {
  justify-content: flex-start;
}

.support-callout {
  display: grid;
  gap: 12px;
  border: 2px solid #b42318;
  border-radius: 8px;
  padding: 18px;
  background: #fdecec;
  color: #7a271a;
}

.support-callout strong {
  font-size: 18px;
  line-height: 1.35;
}

.support-callout a {
  color: #912018;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.ride-warning {
  display: grid;
  gap: 8px;
  border: 2px solid #b45309;
  border-left: 8px solid #b45309;
  border-radius: 8px;
  margin: 18px 0 20px;
  padding: 16px 18px;
  background: #fffbeb;
  color: #713f12;
  box-shadow: 0 12px 26px rgba(180, 83, 9, 0.16);
  font-weight: 700;
  line-height: 1.45;
}

.ride-warning strong {
  color: #92400e;
  font-size: 18px;
}

.ride-warning span {
  font-size: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.lookup-card {
  border: 1px solid #b7d4f2;
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 62%, #f4fbf7 100%);
}

.lookup-card h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.lookup-card p {
  max-width: 560px;
  color: #475467;
}

.lookup-method-panel {
  width: min(100%, 646px);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #b7d4f2;
  border-radius: 8px;
  background: #ffffff;
}

.lookup-method-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: #eaf3fd;
}

.lookup-method-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  margin: 0;
  border: 0;
  border-right: 1px solid #b7d4f2;
  border-radius: 0;
  padding: 16px;
  background: #eaf3fd;
  color: #174a7c;
  text-align: left;
  box-shadow: none;
}

.lookup-method-card:last-child {
  border-right: 0;
}

.lookup-method-card:hover {
  background: #f8fbff;
}

.lookup-method-card.active {
  position: relative;
  background: #ffffff;
  box-shadow: inset 0 4px 0 #1769aa;
}

.lookup-method-check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid #b7c8db;
  border-radius: 8px;
  background: #ffffff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.lookup-method-card.active .lookup-method-check {
  border-color: #1769aa;
  background: #1769aa;
}

.lookup-method-card strong,
.lookup-method-card small {
  display: block;
}

.lookup-method-card strong {
  color: #0b2f53;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.lookup-method-card small {
  margin-top: 5px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.lookup-tab-content {
  margin-top: 0;
  padding: 22px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.lookup-row input,
.plate-lookup-row input,
.plate-lookup-row select {
  min-height: 48px;
  margin-top: 6px;
  border-color: #9eb8d3;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lookup-row button,
.plate-lookup-row button {
  min-height: 48px;
  margin-top: 6px;
  padding-right: 22px;
  padding-left: 22px;
}

.plate-lookup {
  background: transparent;
}

.plate-lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px auto;
  gap: 10px;
  align-items: end;
}

.plate-lookup-status {
  border: 1px solid #cfe0f3;
  border-radius: 6px;
  margin-top: 12px;
  padding: 10px 12px;
  background: #ffffff;
  color: #174a7c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.plate-lookup-status.error {
  border-color: #fecdca;
  background: #fff4f2;
  color: #b42318;
}

.plate-lookup-result {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 12px;
}

.lookup-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.lookup-hints span {
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  padding: 6px 10px;
  background: #ffffff;
  color: #174a7c;
  font-size: 12px;
  font-weight: 700;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: end;
}

.map-canvas {
  width: 100%;
  height: 360px;
  margin-top: 16px;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  background: #e8edf3;
  box-shadow: 0 10px 24px rgba(24, 33, 47, 0.06);
}

.overview-map {
  height: 420px;
}

.route-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.route-highlight > div {
  border: 1px solid #1769aa;
  border-left-width: 6px;
  border-radius: 8px;
  padding: 16px;
  background: #f3f8ff;
}

.route-highlight dt {
  color: #174a7c;
  font-size: 13px;
  font-weight: 700;
}

.route-highlight dd {
  margin-top: 6px;
  color: #0f2f56;
  font-size: 28px;
  line-height: 1.1;
}

.map-status {
  margin-top: 10px;
  color: #475467;
}

.pin-adjustment-note {
  margin: 12px 0 0;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  padding: 10px 12px;
  background: #f8fbff;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.map-info-window {
  display: grid;
  gap: 8px;
  max-width: 260px;
  color: #18212f;
}

.map-info-window p {
  margin: 0;
  color: #475467;
}

.map-info-window a {
  color: #1769aa;
  font-weight: 700;
}

.map-info-action {
  justify-self: start;
  margin-top: 4px;
}

.context-banner {
  margin-top: 14px;
  border: 1px solid #cfe0f3;
  border-left: 5px solid #1769aa;
  border-radius: 8px;
  padding: 12px 14px;
  background: #f3f8ff;
}

.context-banner dt {
  color: #174a7c;
  font-weight: 700;
}

.context-banner dd {
  color: #0f2f56;
}

.section-instruction {
  margin-top: 22px;
}

.loading-panel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 18px;
  border: 1px solid #b7d4f2;
  border-radius: 8px;
  padding: 16px;
  background: #f3f8ff;
  color: #174a7c;
}

.loading-panel p {
  margin: 4px 0 0;
  color: #475467;
}

.loading-spinner {
  width: 34px;
  height: 34px;
  border: 4px solid #d7e8fa;
  border-top-color: #1769aa;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

.loading-steps {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.loading-steps span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7e8fa 0%, #ffffff 50%, #d7e8fa 100%);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}

.loading-steps span:nth-child(1) {
  width: 88%;
}

.loading-steps span:nth-child(2) {
  width: 72%;
  animation-delay: 0.12s;
}

.loading-steps span:nth-child(3) {
  width: 54%;
  animation-delay: 0.24s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.selected-location {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.selected-location > div {
  border: 1px solid #cfe0f3;
  border-radius: 6px;
  padding: 12px;
  background: #ffffff;
}

.selected-location-mobile {
  margin: 12px 0 14px;
}

.selected-location-mobile > div {
  border-color: #b7d4f2;
  background: #f8fbff;
}

.coverage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: stretch;
  border: 1px solid #b7d4f2;
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 58%, #f4fbf7 100%);
}

.coverage-hero > *,
.summary > *,
.benefit-card,
.choice-item,
.facility-card {
  min-width: 0;
}

.coverage-hero h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.coverage-hero p {
  max-width: 520px;
  margin-bottom: 0;
  color: #475467;
}

.coverage-retry-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coverage-kicker {
  display: block;
  margin-bottom: 6px;
  color: #1769aa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coverage-status-card {
  display: grid;
  align-content: center;
  border: 1px solid #8fd0aa;
  border-radius: 8px;
  padding: 16px;
  background: #e8f6ee;
}

.coverage-status-card dt {
  color: #087443;
  font-weight: 700;
}

.coverage-status-card dd {
  color: #05603a;
  font-size: 24px;
}

.coverage-warning-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.coverage-warning {
  border: 1px solid #f2b8a0;
  border-left: 5px solid #d92d20;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff6f2;
  color: #7a271a;
}

.coverage-warning strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.coverage-warning p {
  margin: 0;
  color: #7a271a;
  line-height: 1.45;
}

.coverage-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 105, 170, 0.08);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #1769aa;
}

.benefit-card dt,
.benefit-card dd,
.benefit-card p {
  position: relative;
  z-index: 1;
}

.benefit-card dd {
  color: #174a7c;
  font-size: 26px;
  line-height: 1.1;
}

.benefit-value-parts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefit-value-parts span {
  display: block;
}

.benefit-value-parts small {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 8px 0 0;
  color: #667085;
  font-size: 13px;
}

.payment-screen {
  max-width: 980px;
}

.payment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: stretch;
  border: 1px solid #b7d4f2;
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 62%, #f6fbf8 100%);
}

.payment-hero h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.payment-hero p {
  margin-bottom: 0;
  color: #475467;
}

.payment-amount-card {
  display: grid;
  align-content: center;
  border: 1px solid #8fd0aa;
  border-radius: 8px;
  padding: 16px;
  background: #e8f6ee;
}

.payment-amount-card dt {
  color: #087443;
  font-weight: 700;
}

.payment-amount-card dd {
  color: #05603a;
  font-size: 30px;
  line-height: 1;
}

.payment-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.payment-breakdown div {
  border: 1px solid #d9e0e8;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(24, 33, 47, 0.04);
}

.payment-entry-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

.payment-security-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #b7d4f2;
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(145deg, #f4f9ff 0%, #ffffff 58%, #eef8f2 100%);
  box-shadow: 0 16px 30px rgba(20, 60, 105, 0.08);
}

.payment-security-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border: 18px solid rgba(27, 115, 190, 0.08);
  border-radius: 999px;
}

.payment-security-seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  border: 1px solid #8ec4ef;
  border-radius: 999px;
  background: #eaf5ff;
  box-shadow: inset 0 0 0 8px #ffffff, 0 10px 24px rgba(27, 115, 190, 0.12);
}

.payment-lock-body {
  width: 30px;
  height: 25px;
  margin-top: 12px;
  border-radius: 6px;
  background: #1b73be;
}

.payment-lock-body::after {
  content: "";
  position: absolute;
  top: 41px;
  left: 50%;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
}

.payment-lock-shackle {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 26px;
  height: 22px;
  border: 5px solid #1b73be;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  transform: translateX(-50%);
}

.payment-security-card h3 {
  margin: 6px 0 8px;
  color: #0b1b34;
  font-size: 24px;
  line-height: 1.15;
}

.payment-security-card p {
  margin: 0;
  color: #43566f;
}

.payment-security-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.payment-security-list li {
  position: relative;
  padding-left: 24px;
  color: #263a55;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.payment-security-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #087443;
  font-weight: 900;
}

.payment-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.payment-form .wide-field {
  grid-column: span 4;
}

.payment-ack {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  padding: 14px;
  background: #f8fbff;
  font-weight: 700;
}

.payment-ack input {
  width: auto;
  margin-top: 2px;
}

.confirmation-screen {
  max-width: 880px;
}

.confirmation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: stretch;
  border: 1px solid #b7d4f2;
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 62%, #f6fbf8 100%);
}

.confirmation-hero h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.confirmation-hero p {
  margin-bottom: 0;
  color: #475467;
}

.confirmation-status-card {
  display: grid;
  align-content: center;
  border: 1px solid #8fd0aa;
  border-radius: 8px;
  padding: 16px;
  background: #e8f6ee;
}

.confirmation-status-card dt {
  color: #087443;
  font-weight: 700;
}

.confirmation-status-card dd {
  color: #05603a;
  font-size: 26px;
  line-height: 1;
}

.confirmation-status-card.cancelled {
  border-color: #f4a8a1;
  background: #fff1f0;
}

.confirmation-status-card.cancelled dt,
.confirmation-status-card.cancelled dd {
  color: #b42318;
}

.cancel-panel {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  border: 1px solid #f4a8a1;
  border-left: 5px solid #b42318;
  border-radius: 8px;
  padding: 18px;
  background: #fff8f7;
}

.cancel-panel h3 {
  margin: 0 0 6px;
  color: #912018;
  font-size: 18px;
}

.cancel-panel p {
  margin: 0;
  color: #667085;
}

.cancel-panel .cancel-window {
  margin-top: 8px;
  color: #1d2939;
  font-weight: 700;
}

.choice-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.nearest-facilities-heading {
  color: #12253f;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 4px;
}

.choice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.choice-item input {
  width: auto;
  margin: 0;
}

.button-choice {
  width: 100%;
  text-align: left;
}

.load-more-button {
  justify-self: start;
}

.destination-manual-toggle {
  margin-top: 10px;
}

.choice-item:hover {
  border-color: #8bb7df;
  box-shadow: 0 8px 20px rgba(23, 105, 170, 0.08);
  transform: translateY(-1px);
}

.choice-item.selected {
  border-color: #1769aa;
  background: #e9f2ff;
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
}

.facility-card,
.facility-heading,
.stars {
  display: flex;
}

.facility-card {
  width: 100%;
  flex-direction: column;
  gap: 4px;
}

.facility-heading {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nearest-pill {
  border-radius: 999px;
  background: #d9f2e5;
  padding: 3px 8px;
  color: #087443;
  font-size: 12px;
  white-space: nowrap;
}

.distance-line {
  border-left: 4px solid #1769aa;
  background: #f3f8ff;
  padding: 8px 10px;
  color: #174a7c;
}

.destination-coverage-note {
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 700;
}

.destination-coverage-note.covered {
  border: 1px solid #a8dec0;
  background: #effaf4;
  color: #075f3f;
}

.destination-coverage-note.not-covered {
  border: 1px solid #f4c7a6;
  background: #fff4ea;
  color: #9a3412;
}

.preferred-card .distance-line {
  border-left-color: #087443;
  background: #effaf4;
  color: #075f3f;
}

.selected-preferred-banner {
  margin-top: 14px;
}

.destination-search-area {
  scroll-margin-top: 18px;
}

.destination-preferred-confirmation {
  border-color: #9fd6b5;
  border-left-color: #087443;
  background: #effaf4;
}

.destination-preferred-confirmation dd {
  display: grid;
  gap: 3px;
  color: #075f3f;
}

.nearest-facilities-button {
  margin: 18px 0 12px;
}

.stars {
  align-items: center;
  gap: 1px;
  color: #c4c4c4;
}

.stars .filled {
  color: #fbbc04;
}

.rating-text {
  margin-left: 6px;
  color: #475467;
  font-size: 12px;
}

.selected-note {
  color: #1769aa;
  font-weight: 700;
}

.question-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.question-item {
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(24, 33, 47, 0.04);
}

.question-item legend {
  margin-bottom: 10px;
  font-weight: 700;
}

.question-item label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 18px 0 0;
  font-weight: 400;
}

.question-item input {
  width: auto;
  margin: 0;
}

.local-link {
  overflow-wrap: anywhere;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: 1fr 110px 130px;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.wizard-start-over-actions {
  max-width: 720px;
  margin-top: 12px;
}

button {
  border: 1px solid #b8c2cf;
  border-radius: 6px;
  padding: 10px 14px;
  background: #ffffff;
  cursor: pointer;
  color: #18212f;
  font-weight: 700;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

button:hover:not(:disabled) {
  border-color: #8bb7df;
  box-shadow: 0 8px 18px rgba(24, 33, 47, 0.08);
  transform: translateY(-1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

button.primary {
  border-color: #1769aa;
  background: #1769aa;
  color: #ffffff;
}

button.primary:hover:not(:disabled) {
  background: #0f5f9d;
}

button.danger {
  justify-self: start;
  border-color: #b42318;
  background: #b42318;
  color: #ffffff;
}

button.danger:hover:not(:disabled) {
  background: #912018;
}

.secondary-action {
  color: #475467;
}

.message {
  margin-bottom: 18px;
  border-radius: 6px;
  padding: 12px;
  font-weight: 700;
}

.message.success {
  background: #e8f6ee;
  color: #05603a;
}

.message.warning {
  background: #fff4e5;
  color: #93370d;
}

.message.error {
  background: #fdecec;
  color: #b42318;
}

.service-change-notice {
  display: grid;
  gap: 8px;
}

.service-change-notice ul {
  margin: 0;
  padding-left: 20px;
  font-weight: 600;
}

.weather-notice {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  border: 1px solid #d9e0e8;
  border-left-width: 5px;
  border-radius: 8px;
  padding: 14px 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(24, 33, 47, 0.04);
}

.weather-notice strong {
  font-size: 18px;
}

.weather-notice span {
  color: #475467;
  font-weight: 600;
  line-height: 1.45;
}

.weather-notice.warning {
  border-color: #f2b8a0;
  border-left-color: #d92d20;
  background: #fff6f2;
}

.weather-notice.warning strong,
.weather-notice.warning span {
  color: #7a271a;
}

.weather-notice.clear {
  border-color: #8fd0aa;
  border-left-color: #12b76a;
  background: #f2fbf5;
}

.weather-notice.clear strong,
.weather-notice.clear span {
  color: #05603a;
}

.weather-notice.neutral {
  border-left-color: #1769aa;
  background: #f3f8ff;
}

.summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.overview-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-summary .wide {
  grid-column: span 2;
}

.summary div {
  border: 1px solid #d9e0e8;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(24, 33, 47, 0.04);
}

dt {
  color: #667085;
  font-size: 12px;
}

dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.debug {
  align-self: start;
  padding: 16px;
}

.debug h2 {
  font-size: 16px;
}

pre {
  max-height: 620px;
  overflow: auto;
  border-radius: 6px;
  background: #111827;
  color: #d1fae5;
  padding: 12px;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    display: none;
  }

  .layout {
    padding: 14px 10px;
    overflow: hidden;
  }

  .panel {
    width: 100%;
    min-height: 0;
    padding: 14px 14px calc(56px + env(safe-area-inset-bottom));
  }

  .screen,
  .lookup-screen,
  .coverage-screen,
  .payment-screen,
  .confirmation-screen {
    max-width: none;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .screen > .actions:last-child,
  .lookup-screen > .actions:last-child,
  .coverage-screen > .actions:last-child,
  .payment-screen > .actions:last-child,
  .confirmation-screen > .actions:last-child {
    margin-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .actions button {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    justify-content: center;
  }

  .grid-2,
  .grid-3,
  .summary,
  .coverage-hero,
  .payment-hero,
  .payment-breakdown,
  .payment-entry-layout,
  .payment-form,
  .lookup-row,
  .plate-lookup-row,
  .plate-lookup-result,
  .lookup-method-cards,
  .benefit-list,
  .phone-path-grid,
  .route-highlight,
  .selected-location,
  .search-row {
    grid-template-columns: 1fr;
  }

  .lookup-card {
    padding: 18px;
  }

  .lookup-card h2 {
    font-size: 26px;
  }

  .lookup-tab-content {
    padding: 16px;
  }

  .lookup-method-card {
    min-height: 78px;
    padding: 14px;
  }

  .coverage-hero h2 {
    font-size: 24px;
  }

  .phone-path-or {
    width: 100%;
    min-height: 34px;
  }

  .phone-path-or::before {
    top: 50%;
    right: 14px;
    bottom: auto;
    left: 14px;
    width: auto;
    height: 1px;
  }

  .map-screen .search-row {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    border: 1px solid #d7e2ee;
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
  }

  .map-screen .search-row input {
    grid-column: 1 / -1;
    border-color: #9fb7d0;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(18, 37, 63, 0.04);
  }

  .map-screen .search-row button {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border-color: #c8d6e5;
    background: #ffffff;
    color: #12253f;
    box-shadow: none;
  }

  .map-screen .search-row button:first-of-type {
    border-color: #1769aa;
    background: #1769aa;
    color: #ffffff;
  }

  .map-screen .search-row button:first-of-type:disabled {
    opacity: 0.72;
  }

  .map-screen .search-row .mobile-location-edit-back {
    border-color: #c8d6e5;
    background: #ffffff;
    color: #12253f;
  }

  .destination-manual-toggle {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .selected-location-mobile {
    grid-template-columns: 1fr;
  }

  .confirmation-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .confirmation-hero h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .confirmation-status-card {
    min-height: 0;
    padding: 14px;
  }

  .confirmation-status-card dd {
    font-size: 22px;
  }

  .coverage-status-card dd,
  .benefit-card dd,
  .route-highlight dd {
    font-size: 22px;
  }

  .overview-summary .wide {
    grid-column: auto;
  }

  .payment-form .wide-field {
    grid-column: auto;
  }

  .steps {
    display: none;
  }

  .panel-toolbar {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    align-items: end;
    justify-content: stretch;
  }

  .mobile-step-menu-toggle {
    display: inline-grid;
    width: 52px;
    min-height: 52px;
    place-items: center;
    gap: 4px;
    border-color: #cfe0f3;
    background: #ffffff;
    padding: 12px;
  }

  .mobile-step-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: #174a7c;
  }

  .mobile-step-menu {
    display: grid;
    gap: 4px;
    border: 1px solid #d7e2ee;
    border-radius: 8px;
    margin: -2px 0 14px;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(24, 33, 47, 0.08);
  }

  .panel-toolbar .language-select,
  .panel-toolbar .language-select select {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .topbar-actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .language-select,
  .language-select select,
  .topbar-actions button,
  .topbar-actions .status-pill {
    width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
  }

  h1 {
    font-size: 24px;
  }

  .screen:not(.lookup-screen):not(.coverage-screen) > h2 {
    font-size: 24px;
  }

}
