.gs-audit-on-request-card-price {
  display: grid;
  gap: 2px;
  margin: 14px 0 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7f1df;
  color: #0b2c46;
}

.gs-audit-on-request-card-price small {
  color: #667584;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gs-audit-on-request-card-price strong {
  font-size: 19px;
}

.gs-audit-price-on-request > strong {
  line-height: 1.05;
}

.gs-audit-route-map {
  margin: 26px 0 34px;
  overflow: hidden;
  border: 1px solid rgba(12, 46, 71, .12);
  border-radius: 24px;
  background: #f7fafb;
  box-shadow: 0 18px 42px rgba(9, 42, 68, .10);
}

.gs-audit-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 17px;
}

.gs-audit-route-head small {
  display: block;
  margin-bottom: 3px;
  color: #b46f2e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gs-audit-route-head h3 {
  margin: 0;
  color: #0b2c46;
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.15;
}

.gs-audit-route-head > span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #0b2c46;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.gs-audit-route-canvas {
  padding: 0 16px;
}

.gs-audit-route-canvas svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.gs-audit-route-line {
  fill: none;
  stroke: #f1c76b;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 10;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .28));
}

.gs-audit-route-points circle:first-child {
  fill: #fff;
  stroke: #e5b857;
  stroke-width: 3;
}

.gs-audit-route-points circle:nth-child(2) {
  fill: #0b2c46;
}

.gs-audit-route-points text {
  fill: #fff;
  font-size: 13px;
  font-weight: 800;
  paint-order: stroke;
  stroke: rgba(9, 42, 68, .82);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.gs-audit-route-stops {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 17px 16px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.gs-audit-route-stops li {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(12, 46, 71, .10);
  border-radius: 14px;
  background: #fff;
}

.gs-audit-route-stops span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e9c36c;
  color: #0b2c46;
  font-size: 12px;
  font-weight: 900;
}

.gs-audit-route-stops strong {
  color: #0b2c46;
  font-size: 13px;
  line-height: 1.2;
}

.gs-audit-route-stops small {
  color: #6b7782;
  font-size: 11px;
}

.gs-audit-route-note {
  margin: 14px 18px 18px !important;
  color: #6a747e;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .gs-audit-route-map {
    margin-inline: -2px;
    border-radius: 19px;
  }

  .gs-audit-route-head {
    align-items: flex-start;
    padding: 17px 16px 13px;
  }

  .gs-audit-route-head > span {
    padding: 7px 10px;
  }

  .gs-audit-route-canvas {
    padding: 0 8px;
  }

  .gs-audit-route-stops {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 8px !important;
  }
}

@media (max-width: 430px) {
  .gs-audit-route-stops {
    grid-template-columns: 1fr;
  }

  .gs-audit-route-points text {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .gs-audit-route-line {
    animation: gs-audit-route-flow 12s linear infinite;
  }

  @keyframes gs-audit-route-flow {
    to { stroke-dashoffset: -80; }
  }
}

