.contact-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.contact-hero-split .hero-content {
  text-align: left;
  margin: 0;
  max-width: none;
}

.contact-hero-split .hero-cta {
  justify-content: flex-start;
}

.contact-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--bg-tint);
}

.contact-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 255, 0.08) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.method-card__value {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.method-card__value:hover {
  color: #fff;
}

.method-card__value .n-mask {
  color: var(--cyan);
}

.method-card__meta {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--copy-size);
  color: var(--text-muted);
  line-height: var(--copy-lh);
}

.regions-section {
  background: var(--bg-tint);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.5rem 0.625rem;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.region-item:hover {
  border-color: rgba(0, 242, 255, 0.45);
  background: rgba(0, 242, 255, 0.04);
}

.region-item svg {
  width: 16px;
  height: 16px;
  display: block;
  color: var(--cyan);
  flex-shrink: 0;
}

.region-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.35;
}

.map-section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: 0;
  overflow-x: clip;
}

.map-section .container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

.map-section .section-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.map-section .section-header .prose {
  margin-inline: auto;
}

.map-wrapper {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  min-height: 380px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-sizing: border-box;
  background: var(--bg-tint)
    linear-gradient(160deg, var(--bg-main) 0%, var(--bg-tint) 50%, #0d1a30 100%);
  border: 1px solid rgba(0, 242, 255, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.map-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 40%,
      rgba(0, 242, 255, 0.12) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(194, 122, 58, 0.1) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  background: rgba(11, 20, 36, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(8px);
}

.map-overlay p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.map-overlay span {
  font-size: var(--copy-size);
  color: var(--text-muted);
}

.delivery-map {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.delivery-map__svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  margin-inline: auto;
}

.delivery-map__land {
  fill: url(#mapLandGrad);
  stroke: rgba(0, 242, 255, 0.45);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill;
}

.delivery-map__route {
  fill: none;
  stroke: rgba(0, 242, 255, 0.35);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: none;
  animation: none;
  transition: stroke 0.25s ease, stroke-width 0.25s ease;
}

.delivery-map__route.is-active {
  stroke: rgba(0, 242, 255, 0.85);
  stroke-width: 3.5;
}

.map-city {
  cursor: default;
  outline: none;
}

.map-city__pulse {
  fill: rgba(0, 242, 255, 0.2);
  transform-origin: center;
  transform-box: fill-box;
  animation: mapCityPulse 2.4s ease-out infinite;
}

.map-city--hub .map-city__pulse {
  fill: rgba(0, 242, 255, 0.28);
}

.map-city.is-active .map-city__pulse {
  fill: rgba(0, 242, 255, 0.45);
}

.map-city__dot {
  fill: var(--cyan);
  stroke: var(--bg-main);
  stroke-width: 2.5;
  filter: url(#mapGlow);
}

.map-city__label {
  fill: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-body);
  text-anchor: middle;
  pointer-events: none;
}

.map-city--hub .map-city__label {
  font-size: 11px;
  font-weight: 600;
}

.map-city--label-below .map-city__label {
  dominant-baseline: hanging;
}

.map-city--label-left .map-city__label {
  text-anchor: end;
}

.map-city.is-active .map-city__label {
  fill: #fff;
  font-weight: 600;
}

@keyframes mapCityPulse {
  0% {
    transform: scale(0.55);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

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

@media (max-width: 900px) {
  .contact-hero-split {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    max-height: 320px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .map-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    min-height: 0;
    padding: 1rem;
    gap: 0.75rem;
  }

  .delivery-map {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    order: 1;
  }

  .delivery-map__svg {
    max-height: 300px;
  }

  .map-city__label {
    font-size: 8px;
  }

  .map-overlay {
    position: static;
    order: 2;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .map-overlay p,
  .map-overlay span {
    text-align: center;
  }
}
