.gfc-service-map {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  background:
    radial-gradient(circle at 12% 8%, rgb(8 102 255 / 42%), transparent 29rem),
    radial-gradient(circle at 93% 95%, rgb(240 0 117 / 24%), transparent 25rem),
    #002a54;
  box-shadow: 0 2.25rem 5.5rem rgb(0 42 84 / 19%);
  color: white;
}

.gfc-service-map::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.gfc-map__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(1.6rem, 4vw, 3.2rem);
}

.gfc-map__header h3 {
  max-width: 16ch;
  margin: 0;
  color: white;
  font-family: "Aptos Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.gfc-map__header p {
  max-width: 45rem;
  margin: 1.1rem 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.65;
}

.gfc-map__summary {
  display: flex;
  gap: 0.7rem;
  margin: 0;
}

.gfc-map__summary > div {
  display: flex;
  min-width: 8.5rem;
  min-height: 6.5rem;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 1.1rem;
  background: rgb(255 255 255 / 8%);
  backdrop-filter: blur(12px);
}

.gfc-map__summary dt {
  color: rgb(255 255 255 / 57%);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gfc-map__summary dd {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.gfc-map__tools {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(10rem, 0.42fr) minmax(10rem, 0.42fr) auto;
  gap: 0.75rem;
  align-items: end;
  margin: 0 clamp(1.1rem, 3vw, 2rem) 1rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 1.25rem;
  background: rgb(0 29 59 / 56%);
  backdrop-filter: blur(18px);
}

.gfc-map__tools[hidden] {
  display: none;
}

.gfc-map__tools label,
.gfc-map__filter {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.gfc-map__tools label > span:first-child,
.gfc-map__filter-label {
  color: rgb(255 255 255 / 60%);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gfc-map__field {
  position: relative;
  display: block;
}

.gfc-map__field svg {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: rgb(255 255 255 / 55%);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
  pointer-events: none;
}

.gfc-map__tools input,
.gfc-map__tools select {
  width: 100%;
  min-height: 3rem;
  box-sizing: border-box;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 0.85rem;
  background-color: rgb(255 255 255 / 9%);
  color: white;
  font: inherit;
}

.gfc-map__tools input {
  padding: 0 0.9rem 0 2.65rem;
}

.gfc-map__tools input::placeholder {
  color: rgb(255 255 255 / 68%);
}

.gfc-map__tools select {
  padding: 0 2.5rem 0 0.9rem;
  color-scheme: dark;
}

.gfc-map__tools select option {
  background: #092746;
  color: white;
}

.gfc-map__tools input:focus,
.gfc-map__tools select:focus {
  border-color: #6da4ff;
  outline: 3px solid rgb(109 164 255 / 24%);
  outline-offset: 1px;
}

.gfc-map__select {
  position: relative;
  min-width: 0;
}

.gfc-map__select.is-open {
  z-index: 20;
}

.gfc-map__select-trigger {
  display: flex;
  width: 100%;
  min-height: 3rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.85rem 0 0.95rem;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 9%);
  color: white;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    border-radius 220ms ease,
    box-shadow 180ms ease;
}

.gfc-map__select-trigger:hover {
  border-color: rgb(109 164 255 / 62%);
  background: rgb(255 255 255 / 13%);
}

.gfc-map__select-trigger:focus-visible {
  border-color: #6da4ff;
  outline: 3px solid rgb(109 164 255 / 24%);
  outline-offset: 1px;
}

.gfc-map__select.is-open .gfc-map__select-trigger {
  border-color: rgb(109 164 255 / 65%);
  border-bottom-color: rgb(255 255 255 / 8%);
  border-radius: 0.85rem 0.85rem 0 0;
  background: #123a61;
  box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 14%);
}

.gfc-map__select-value {
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gfc-map__select-trigger svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: rgb(255 255 255 / 72%);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.gfc-map__select.is-open .gfc-map__select-trigger svg {
  transform: rotate(180deg);
}

.gfc-map__select-options {
  position: absolute;
  z-index: 30;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  display: grid;
  max-height: 0;
  gap: 0.2rem;
  overflow: hidden;
  padding: 0 0.38rem;
  border: 1px solid rgb(109 164 255 / 48%);
  border-top: 0;
  border-radius: 0 0 0.85rem 0.85rem;
  background: #092746;
  box-shadow: 0 1.2rem 2.6rem rgb(0 0 0 / 28%);
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0.92) translateY(-0.25rem);
  transform-origin: top;
  transition:
    max-height 260ms cubic-bezier(0.2, 0.75, 0.25, 1),
    opacity 160ms ease,
    padding 260ms ease,
    transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1),
    visibility 0s linear 260ms;
  visibility: hidden;
}

.gfc-map__select.is-open .gfc-map__select-options {
  max-height: 18rem;
  overflow-y: auto;
  padding-block: 0.38rem;
  opacity: 1;
  pointer-events: auto;
  transform: scaleY(1) translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.gfc-map__select-option {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 2.45rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0.48rem 0.7rem;
  border: 0;
  border-radius: 0.58rem;
  background: transparent;
  color: rgb(255 255 255 / 76%);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 620;
  text-align: left;
  transition:
    background-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.gfc-map__select-option::before {
  width: 0.38rem;
  height: 0.38rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgb(255 255 255 / 20%);
  content: "";
}

.gfc-map__select-option:hover,
.gfc-map__select-option:focus-visible {
  background: rgb(109 164 255 / 16%);
  color: white;
  transform: translateX(0.12rem);
}

.gfc-map__select-option:focus-visible {
  outline: 2px solid white;
  outline-offset: -3px;
}

.gfc-map__select-option.is-selected {
  background: rgb(8 102 255 / 24%);
  color: white;
}

.gfc-map__select-option.is-selected::before {
  background: #f00075;
  box-shadow: 0 0 0 0.22rem rgb(240 0 117 / 16%);
}

.gfc-map__reset {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 0.85rem;
  background: white;
  color: #002a54;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.gfc-map__reset svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.gfc-map__reset:hover {
  background: #f00075;
  color: white;
  transform: translateY(-2px);
}

.gfc-map__reset:focus-visible {
  outline: 3px solid #ff7aba;
  outline-offset: 3px;
}

.gfc-map__explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(21rem, 0.65fr);
  min-height: 39rem;
  margin: 0 clamp(1.1rem, 3vw, 2rem) clamp(1.1rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: clamp(1.1rem, 2vw, 1.75rem);
  background: rgb(0 29 59 / 50%);
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 18%);
}

.gfc-map__visual {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  overflow: hidden;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 50% 50%, rgb(8 102 255 / 17%), transparent 45%),
    linear-gradient(140deg, rgb(255 255 255 / 6%), transparent 55%);
}

.gfc-map__visual::after {
  position: absolute;
  right: -11rem;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.gfc-map__visual-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgb(255 255 255 / 60%);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gfc-map__visual-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.gfc-map__zoom {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 19%);
  border-radius: 999px;
  background: rgb(0 29 59 / 58%);
  box-shadow: inset 0 1px rgb(255 255 255 / 7%);
  backdrop-filter: blur(10px);
}

.gfc-map__zoom[hidden] {
  display: none;
}

.gfc-map__zoom button {
  display: grid;
  width: 2rem;
  height: 2rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-right: 1px solid rgb(255 255 255 / 11%);
  background: transparent;
  color: white;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.gfc-map__zoom button:last-child {
  border-right: 0;
  border-left: 1px solid rgb(255 255 255 / 11%);
}

.gfc-map__zoom button:hover:not(:disabled) {
  background: #f00075;
}

.gfc-map__zoom button:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid white;
  outline-offset: -3px;
}

.gfc-map__zoom button:disabled {
  color: rgb(255 255 255 / 25%);
  cursor: default;
}

.gfc-map__zoom button svg {
  width: 0.84rem;
  height: 0.84rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.gfc-map__zoom output {
  min-width: 3.25rem;
  padding-inline: 0.5rem;
  color: rgb(255 255 255 / 70%);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.gfc-map__live-key {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.gfc-map__live-key i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #f00075;
  box-shadow: 0 0 0 0.3rem rgb(240 0 117 / 14%);
}

.gfc-map__canvas {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 28rem;
  place-items: center;
  overscroll-behavior: contain;
}

.gfc-map__canvas.is-zoomed {
  cursor: grab;
}

.gfc-map__canvas.is-panning {
  cursor: grabbing;
  user-select: none;
}

.gfc-map__canvas.is-panning .gfc-map__world path {
  cursor: grabbing !important;
}

.gfc-map__world {
  display: block;
  width: 100%;
  height: auto;
  max-height: 31rem;
  overflow: visible;
  transform:
    translate3d(var(--gfc-map-pan-x, 0), var(--gfc-map-pan-y, 0), 0)
    scale(var(--gfc-map-zoom, 1));
  transform-origin: center;
  transition: transform 180ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform;
}

.gfc-map__canvas.is-panning .gfc-map__world {
  transition: none;
}

.gfc-map__world path {
  fill: rgb(255 255 255 / 7%);
  stroke: rgb(255 255 255 / 16%);
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
  transition:
    fill 200ms ease,
    filter 200ms ease,
    opacity 200ms ease,
    stroke 200ms ease;
}

.gfc-map__world path.is-served {
  fill: #0866ff;
  stroke: #70a8ff;
  cursor: pointer;
  filter: drop-shadow(0 0 0.18rem rgb(8 102 255 / 35%));
}

.gfc-map__world path.is-served:not(.is-available) {
  fill: rgb(255 255 255 / 7%);
  stroke: rgb(255 255 255 / 16%);
  cursor: default;
  filter: none;
  opacity: 0.42;
}

.gfc-map__world path.is-served.is-available:hover {
  fill: #ff4da1;
  stroke: white;
  filter: drop-shadow(0 0 0.4rem rgb(240 0 117 / 58%));
}

.gfc-map__world path.is-served.is-available:focus {
  fill: #0866ff;
  stroke: white;
  stroke-width: 2.4;
  outline: none;
  filter: drop-shadow(0 0 0.18rem #001d3b) drop-shadow(0 0 0.42rem white);
}

.gfc-map__world path.is-served.is-selected {
  fill: #f00075;
  stroke: white;
  filter: drop-shadow(0 0 0.45rem rgb(240 0 117 / 68%));
}

.gfc-map__popover {
  --gfc-popover-pointer-x: 50%;

  position: absolute;
  z-index: 8;
  display: flex;
  width: min(21rem, calc(100% - 1rem));
  max-height: 18rem;
  box-sizing: border-box;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.82rem;
  border: 1px solid rgb(0 42 84 / 13%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 1.25rem 3.5rem rgb(0 18 40 / 32%);
  color: #0b1f33;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.45rem) scale(0.97);
  transform-origin: bottom center;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.gfc-map__popover[hidden] {
  display: none;
}

.gfc-map__popover.is-below {
  transform: translateY(-0.45rem) scale(0.97);
  transform-origin: top center;
}

.gfc-map__popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.gfc-map__popover::after {
  position: absolute;
  bottom: -0.39rem;
  left: var(--gfc-popover-pointer-x);
  width: 0.72rem;
  height: 0.72rem;
  border-right: 1px solid rgb(0 42 84 / 13%);
  border-bottom: 1px solid rgb(0 42 84 / 13%);
  background: white;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.gfc-map__popover.is-below::after {
  top: -0.39rem;
  bottom: auto;
  border: 0;
  border-top: 1px solid rgb(0 42 84 / 13%);
  border-left: 1px solid rgb(0 42 84 / 13%);
}

.gfc-map__popover-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.18rem 0.12rem 0.65rem;
  border-bottom: 1px solid rgb(0 42 84 / 10%);
}

.gfc-map__popover-header h4,
.gfc-map__popover-header span {
  margin: 0;
}

.gfc-map__popover-header h4 {
  color: #002a54;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.gfc-map__popover-header span {
  display: block;
  margin-top: 0.15rem;
  color: #6d7d8d;
  font-size: 0.68rem;
}

.gfc-map__popover-close {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(0 42 84 / 10%);
  border-radius: 50%;
  background: #f0f5fb;
  color: #002a54;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.gfc-map__popover-close:hover {
  background: #f00075;
  color: white;
  transform: rotate(5deg);
}

.gfc-map__popover-close:focus-visible {
  outline: 3px solid rgb(8 102 255 / 28%);
  outline-offset: 2px;
}

.gfc-map__popover-close svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 1.9;
}

.gfc-map__popover-list {
  display: grid;
  min-height: 0;
  gap: 0.42rem;
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 0.15rem 0 0;
  list-style: none;
  scrollbar-color: rgb(0 42 84 / 25%) transparent;
  scrollbar-width: thin;
}

.gfc-map__popover-list > li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  min-height: 3.7rem;
  padding: 0.48rem;
  border-radius: 0.72rem;
  background: #f4f8fc;
}

.gfc-map__popover-list > li > div:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 0.14rem;
}

.gfc-map__popover-list strong,
.gfc-map__popover-list small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gfc-map__popover-list strong {
  color: #0b1f33;
  font-size: 0.76rem;
}

.gfc-map__popover-list small {
  color: #748394;
  font-size: 0.62rem;
}

.gfc-map__popover-list > li > a {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.gfc-map__popover-list > li > a:hover {
  background: #0866ff;
  color: white;
}

.gfc-map__popover-list > li > a:focus-visible {
  outline: 3px solid rgb(8 102 255 / 25%);
  outline-offset: 2px;
}

.gfc-map__popover-list > li > a svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.gfc-map__visual figcaption {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  color: rgb(255 255 255 / 54%);
  font-size: 0.75rem;
  line-height: 1.5;
}

.gfc-map__browser {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.2rem;
  background: #f5f8fc;
  color: #0b1f33;
}

.gfc-map__browser-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.25rem 1rem;
  border-bottom: 1px solid rgb(0 42 84 / 11%);
}

.gfc-map__browser-heading h4 {
  margin: 0;
  color: #002a54;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.gfc-map__browser-heading p {
  margin: 0.22rem 0 0;
  color: #627386;
  font-size: 0.72rem;
}

.gfc-map__browser-icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.85rem;
  background: #002a54;
  color: white;
}

.gfc-map__browser-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gfc-map__country-list {
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  gap: 0.55rem;
  margin-top: 0.8rem;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 0 0.2rem 0.5rem 0;
  scrollbar-color: rgb(0 42 84 / 25%) transparent;
  scrollbar-width: thin;
}

.gfc-map__country[hidden],
.gfc-map__country li[hidden],
.gfc-map__country-list[hidden] {
  display: none;
}

.gfc-map__country {
  overflow: hidden;
  border: 1px solid rgb(0 42 84 / 10%);
  border-radius: 0.9rem;
  background: white;
  box-shadow: 0 0.45rem 1.2rem rgb(0 42 84 / 4%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.gfc-map__country:hover,
.gfc-map__country.is-selected {
  border-color: rgb(8 102 255 / 34%);
  box-shadow: 0 0.7rem 1.7rem rgb(0 42 84 / 9%);
}

.gfc-map__country.is-selected {
  transform: translateX(-0.2rem);
}

.gfc-map__country summary {
  display: flex;
  min-height: 3.8rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.85rem;
  cursor: pointer;
  list-style: none;
}

.gfc-map__country summary::-webkit-details-marker {
  display: none;
}

.gfc-map__country summary:focus-visible {
  border-radius: 0.85rem;
  outline: 3px solid rgb(8 102 255 / 28%);
  outline-offset: -3px;
}

.gfc-map__country summary > span:first-child {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  gap: 0.55rem;
}

.gfc-map__country summary strong {
  overflow: hidden;
  color: #002a54;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gfc-map__country summary small {
  color: #5e6b78;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gfc-map__country-total {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.35rem;
  color: #5e6b78;
  font-size: 0.63rem;
}

.gfc-map__country-total b {
  display: grid;
  min-width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: #e7efff;
  color: #0052cc;
  font-size: 0.68rem;
}

.gfc-map__country-total svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.gfc-map__country[open] .gfc-map__country-total svg {
  transform: rotate(180deg);
}

.gfc-map__country ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0 0.55rem 0.55rem;
  list-style: none;
}

.gfc-map__country li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  min-height: 3.8rem;
  padding: 0.5rem;
  border-radius: 0.7rem;
  background: #f5f8fc;
}

.gfc-map__organization-mark {
  display: grid;
  width: 3.25rem;
  height: 2.7rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(0 42 84 / 8%);
  border-radius: 0.55rem;
  background: white;
}

.gfc-map__organization-mark img {
  display: block;
  max-width: calc(100% - 0.45rem);
  max-height: calc(100% - 0.45rem);
  object-fit: contain;
}

.gfc-map__organization-mark span {
  color: #0866ff;
  font-weight: 850;
}

.gfc-map__country li > div:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 0.16rem;
}

.gfc-map__country li strong {
  overflow: hidden;
  color: #0b1f33;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gfc-map__country li small {
  overflow: hidden;
  color: #748394;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gfc-map__country li > a {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #0866ff;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.gfc-map__country li > a:hover {
  background: #0866ff;
  color: white;
}

.gfc-map__country li > a:focus-visible {
  outline: 3px solid rgb(8 102 255 / 25%);
  outline-offset: 2px;
}

.gfc-map__country li > a svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.gfc-map__empty {
  margin: 1.2rem 0 0;
  padding: 1rem;
  border: 1px dashed rgb(0 42 84 / 18%);
  border-radius: 0.9rem;
  color: #627386;
  font-size: 0.78rem;
  line-height: 1.5;
}

:root[data-theme="dark"] .gfc-service-map {
  border-color: rgb(255 255 255 / 18%);
  box-shadow: 0 2.25rem 5.5rem rgb(0 0 0 / 30%);
}

:root[data-theme="dark"] .gfc-map__browser {
  background: #071c32;
  color: #ecf4fb;
}

:root[data-theme="dark"] .gfc-map__browser-heading {
  border-color: rgb(255 255 255 / 10%);
}

:root[data-theme="dark"] .gfc-map__browser-heading h4,
:root[data-theme="dark"] .gfc-map__country summary strong,
:root[data-theme="dark"] .gfc-map__country li strong {
  color: #f7fbff;
}

:root[data-theme="dark"] .gfc-map__browser-heading p,
:root[data-theme="dark"] .gfc-map__country summary small,
:root[data-theme="dark"] .gfc-map__country-total,
:root[data-theme="dark"] .gfc-map__country li small,
:root[data-theme="dark"] .gfc-map__empty {
  color: #9fb2c6;
}

:root[data-theme="dark"] .gfc-map__browser-icon {
  background: #0866ff;
}

:root[data-theme="dark"] .gfc-map__country {
  border-color: rgb(255 255 255 / 10%);
  background: #0c2945;
  box-shadow: 0 0.45rem 1.2rem rgb(0 0 0 / 14%);
}

:root[data-theme="dark"] .gfc-map__country:hover,
:root[data-theme="dark"] .gfc-map__country.is-selected {
  border-color: rgb(109 164 255 / 48%);
  box-shadow: 0 0.7rem 1.7rem rgb(0 0 0 / 24%);
}

:root[data-theme="dark"] .gfc-map__country-total b {
  background: rgb(8 102 255 / 20%);
  color: #8ab6ff;
}

:root[data-theme="dark"] .gfc-map__country li {
  background: #08213a;
}

:root[data-theme="dark"] .gfc-map__organization-mark {
  border-color: rgb(255 255 255 / 14%);
  background: #f5f8fc;
}

:root[data-theme="dark"] .gfc-map__country li > a {
  color: #8ab6ff;
}

:root[data-theme="dark"] .gfc-map__empty {
  border-color: rgb(255 255 255 / 16%);
}

:root[data-theme="dark"] .gfc-map__popover {
  border-color: rgb(255 255 255 / 13%);
  background: rgb(7 28 50 / 98%);
  box-shadow: 0 1.25rem 3.5rem rgb(0 0 0 / 45%);
  color: #ecf4fb;
}

:root[data-theme="dark"] .gfc-map__popover::after {
  border-color: rgb(255 255 255 / 13%);
  background: #071c32;
}

:root[data-theme="dark"] .gfc-map__popover-header {
  border-color: rgb(255 255 255 / 10%);
}

:root[data-theme="dark"] .gfc-map__popover-header h4,
:root[data-theme="dark"] .gfc-map__popover-list strong {
  color: #f7fbff;
}

:root[data-theme="dark"] .gfc-map__popover-header span,
:root[data-theme="dark"] .gfc-map__popover-list small {
  color: #9fb2c6;
}

:root[data-theme="dark"] .gfc-map__popover-close {
  border-color: rgb(255 255 255 / 12%);
  background: #0c2945;
  color: white;
}

:root[data-theme="dark"] .gfc-map__popover-list > li {
  background: #0c2945;
}

:root[data-theme="dark"] .gfc-map__popover-list > li > a {
  color: #8ab6ff;
}

@media (max-width: 980px) {
  .gfc-map__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gfc-map__summary {
    justify-content: flex-start;
  }

  .gfc-map__tools {
    grid-template-columns: 1fr 1fr;
  }

  .gfc-map__search {
    grid-column: 1 / -1;
  }

  .gfc-map__explorer {
    grid-template-columns: 1fr;
  }

  .gfc-map__visual {
    min-height: 32rem;
  }

  .gfc-map__browser {
    min-height: 30rem;
  }

  .gfc-map__country-list {
    max-height: 30rem;
  }
}

@media (max-width: 620px) {
  .gfc-service-map {
    border-radius: 1.35rem;
  }

  .gfc-map__header {
    padding: 1.35rem;
  }

  .gfc-map__summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .gfc-map__summary > div {
    min-width: 0;
    min-height: 5.7rem;
  }

  .gfc-map__tools {
    grid-template-columns: 1fr;
    margin: 0 0.75rem 0.75rem;
    padding: 0.8rem;
  }

  .gfc-map__search {
    grid-column: auto;
  }

  .gfc-map__reset {
    width: 100%;
  }

  .gfc-map__explorer {
    margin: 0 0.75rem 0.75rem;
  }

  .gfc-map__visual {
    min-height: 32rem;
    padding: 0.9rem;
  }

  .gfc-map__canvas {
    min-height: 27rem;
  }

  .gfc-map__world {
    max-height: 21rem;
  }

  .gfc-map__live-key {
    display: none;
  }

  .gfc-map__visual-actions {
    margin-left: auto;
  }

  .gfc-map__popover,
  .gfc-map__popover.is-below {
    top: 50% !important;
    left: 50% !important;
    width: calc(100% - 0.5rem);
    height: min(25rem, calc(100% - 0.5rem));
    max-height: calc(100% - 0.5rem) !important;
    padding: 0.9rem;
    border-radius: 1.1rem;
    transform: translate(-50%, -50%) scale(0.97);
    transform-origin: center;
  }

  .gfc-map__popover.is-open,
  .gfc-map__popover.is-below.is-open {
    transform: translate(-50%, -50%) scale(1);
  }

  .gfc-map__popover::after,
  .gfc-map__popover.is-below::after {
    display: none;
  }

  .gfc-map__popover-header {
    flex: 0 0 auto;
    padding: 0.25rem 0.18rem 0.72rem;
  }

  .gfc-map__popover-header h4 {
    font-size: 1.18rem;
  }

  .gfc-map__popover-header span {
    font-size: 0.72rem;
  }

  .gfc-map__popover-close {
    width: 2.2rem;
    height: 2.2rem;
  }

  .gfc-map__popover-list {
    flex: 1 1 auto;
    align-content: start;
  }

  .gfc-map__popover-list > li {
    min-height: 3.85rem;
  }

  .gfc-map__browser {
    min-height: 28rem;
    padding: 0.8rem;
  }

  .gfc-map__country-total > span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gfc-service-map *,
  .gfc-service-map *::before,
  .gfc-service-map *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .gfc-map__world {
    transition: none !important;
  }
}

.gfc-service-map--preview {
  display: grid;
  min-height: clamp(31rem, 48vw, 38rem);
  grid-template-areas:
    "copy visual"
    "summary visual";
  grid-template-columns: minmax(19rem, 0.82fr) minmax(28rem, 1.18fr);
  grid-template-rows: 1fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: 0;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.gfc-map-preview__copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-area: copy;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.gfc-map-preview__mark {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: rgb(255 255 255 / 9%);
}

.gfc-map-preview__mark svg,
.gfc-map-preview__link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gfc-map-preview__link svg {
  transition: transform 200ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.gfc-map-preview__copy h2 {
  max-width: 13ch;
  margin: 0;
  color: white;
  font-family: "Aptos Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 4.15rem);
  font-weight: 660;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.gfc-map-preview__copy p {
  max-width: 34rem;
  margin: 1.15rem 0 1.5rem;
  color: rgb(255 255 255 / 68%);
  line-height: 1.7;
}

.gfc-map-preview__link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  background: white;
  color: #002a54;
  font-size: 0.88rem;
  font-weight: 780;
  text-decoration: none;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.gfc-map-preview__link:hover,
.gfc-map-preview__link:focus-visible {
  box-shadow: 0 1.1rem 2.4rem rgb(0 0 0 / 22%);
  transform: translateY(-3px);
}

.gfc-map-preview__link:hover svg,
.gfc-map-preview__link:focus-visible svg {
  transform: translateX(0.2rem);
}

.gfc-map-preview__summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-area: summary;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}

.gfc-map-preview__summary > div {
  padding: 0.9rem;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 7%);
}

.gfc-map-preview__summary dd {
  margin: 0 0 0.3rem;
  color: white;
  font-family: "Aptos Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 680;
  letter-spacing: -0.04em;
}

.gfc-map-preview__summary dt {
  color: rgb(255 255 255 / 54%);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.gfc-map-preview__visual {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 27rem;
  grid-area: visual;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: clamp(1.25rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 58% 48%, rgb(8 102 255 / 22%), transparent 20rem),
    rgb(0 18 40 / 32%);
}

.gfc-map-preview__visual::after {
  position: absolute;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgb(255 255 255 / 2%),
    0 0 0 8rem rgb(255 255 255 / 2%);
  content: "";
}

.gfc-map-preview__canvas {
  position: relative;
  z-index: 1;
  width: 125%;
  transform: translateX(5%);
}

.gfc-map-preview__canvas .gfc-map__world {
  max-height: 30rem;
}

.gfc-map-preview__canvas .gfc-map__world path.is-served {
  fill: #0866ff;
  stroke: #70a8ff;
  cursor: default;
  filter: drop-shadow(0 0 0.18rem rgb(8 102 255 / 35%));
  opacity: 1;
}

.gfc-service-map--preview.is-enhanced .gfc-map-preview__canvas {
  animation: gfc-preview-map-in 850ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

@keyframes gfc-preview-map-in {
  from {
    opacity: 0;
    transform: translateX(8%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(5%) scale(1);
  }
}

@media (max-width: 980px) {
  .gfc-service-map--preview {
    grid-template-areas:
      "copy"
      "visual"
      "summary";
    grid-template-columns: 1fr;
  }

  .gfc-map-preview__visual {
    min-height: 23rem;
  }

  .gfc-map-preview__canvas {
    width: 110%;
    transform: none;
  }

  @keyframes gfc-preview-map-in {
    from {
      opacity: 0;
      transform: scale(0.96);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}

@media (max-width: 620px) {
  .gfc-service-map--preview {
    min-height: 0;
    padding: 1.25rem;
  }

  .gfc-map-preview__copy {
    grid-template-columns: 1fr;
  }

  .gfc-map-preview__mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .gfc-map-preview__copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.15rem);
  }

  .gfc-map-preview__summary {
    grid-template-columns: 1fr;
  }

  .gfc-map-preview__summary > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .gfc-map-preview__visual {
    min-height: 17rem;
  }

  .gfc-map-preview__canvas {
    width: 145%;
  }
}
