/* Expanded process section */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 55px;
  background: transparent;
}

.process-step {
  position: relative;
  min-height: 390px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 8%, rgba(223, 36, 55, .13), transparent 30%),
    linear-gradient(145deg, #19191f, #111115);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 75%);
}

.process-step:hover {
  border-color: rgba(223, 36, 55, .5);
  transform: translateY(-5px);
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-step .process-top > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.process-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(223, 36, 55, .25);
  border-radius: 16px;
  background: rgba(223, 36, 55, .1);
  color: var(--red);
}

.process-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 58px 0 14px;
  font-family: var(--heading);
  font-size: 22px;
  line-height: 1.25;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-step small {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #d6d6dc;
  font-size: 11px;
  font-weight: 700;
}

.process-step small::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: 1px;
}

.process-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #101014;
}

.process-summary strong {
  font-family: var(--heading);
  font-size: 14px;
}

.process-summary span {
  color: var(--muted);
  font-size: 13px;
}

.process-summary a {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

/* Interactive service map */
.interactive-map-card::after {
  display: none;
}

#service-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #151519;
}

.interactive-map-card .map-label {
  z-index: 800;
  right: 14px;
  bottom: 14px;
  pointer-events: none;
}

.map-reset {
  position: absolute;
  z-index: 800;
  top: 14px;
  left: 50%;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 99px;
  background: rgba(14, 14, 18, .88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  transition: background .2s, border-color .2s;
}

.map-reset:hover,
.map-reset:focus-visible {
  border-color: var(--red);
  background: var(--red);
  outline: none;
}

.leaflet-container {
  font-family: var(--body);
}

.leaflet-tile-pane {
  filter: grayscale(.42) saturate(.72) brightness(.72) contrast(1.15);
}

.leaflet-control-zoom a {
  border-color: var(--line) !important;
  background: #151519 !important;
  color: #fff !important;
}

.leaflet-control-attribution {
  background: rgba(14, 14, 18, .82) !important;
  color: #92929b;
}

.leaflet-control-attribution a {
  color: #d9d9dd;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #151519;
  color: #fff;
}

.leaflet-popup-content {
  line-height: 1.5;
}

.cherry-map-marker {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.cherry-map-marker span {
  display: block;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(223, 36, 55, .22), 0 3px 12px rgba(0, 0, 0, .55);
}

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

  .process-summary {
    grid-template-columns: 1fr auto;
  }

  .process-summary span {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

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

  .process-step {
    min-height: 340px;
  }

  .process-step h3 {
    margin-top: 38px;
  }

  .process-summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-summary span {
    grid-column: auto;
    grid-row: auto;
  }

  .process-summary a {
    margin-top: 8px;
  }

  .interactive-map-card {
    aspect-ratio: 4 / 5;
  }
}
