.pwb-global-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) 0 30px;
  border-top: 1px solid rgba(145, 210, 236, 0.32);
  background: #06131c;
  color: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}

.pwb-global-footer::before {
  content: "";
  position: absolute;
  top: -370px;
  right: -250px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(145, 210, 236, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 95px rgba(82, 169, 210, 0.025),
    0 0 0 190px rgba(82, 169, 210, 0.015);
  pointer-events: none;
}

.pwb-global-footer * {
  box-sizing: border-box;
}

.pwb-global-footer a {
  color: inherit;
  text-decoration: none;
}

.pwb-global-footer-shell {
  position: relative;
  z-index: 1;
  width: min(1420px, calc(100vw - 9vw));
  margin-inline: auto;
}

.pwb-global-footer-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1.15fr) minmax(250px, 0.8fr);
  gap: clamp(35px, 6vw, 92px);
  align-items: start;
  padding-bottom: clamp(44px, 5vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pwb-global-footer-logo {
  display: block;
  width: 220px;
  height: 84px;
}

.pwb-global-footer-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
}

.pwb-global-footer-kicker {
  display: block;
  margin-bottom: 16px;
  color: #91d2ec;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pwb-global-footer-statement p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.25vw, 36px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.pwb-global-footer-contact {
  display: grid;
  gap: 10px;
}

.pwb-global-footer-contact a {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.pwb-global-footer-contact a:hover {
  border-color: rgba(145, 210, 236, 0.65);
  background: rgba(255, 255, 255, 0.04);
}

.pwb-global-footer-contact span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pwb-global-footer-contact strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 650;
}

.pwb-global-footer-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px clamp(22px, 3.2vw, 54px);
  padding: clamp(48px, 5vw, 72px) 0;
}

.pwb-global-footer-group {
  min-width: 0;
}

.pwb-global-footer-group h2 {
  margin: 0 0 17px;
  color: #91d2ec;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.pwb-global-footer-group a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.42;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.pwb-global-footer-group a:hover,
.pwb-global-footer-group a.is-active {
  color: #fff;
  transform: translateX(3px);
}

.pwb-global-footer-group a.is-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #efb33f;
  transform: translateY(-50%);
}

.pwb-global-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pwb-global-footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1180px) {
  .pwb-global-footer-intro {
    grid-template-columns: 220px 1fr;
  }
  .pwb-global-footer-contact {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
  .pwb-global-footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .pwb-global-footer {
    padding-top: 64px;
  }
  .pwb-global-footer-shell {
    width: calc(100vw - 36px);
  }
  .pwb-global-footer-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pwb-global-footer-logo {
    width: 190px;
    height: 72px;
  }
  .pwb-global-footer-contact {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .pwb-global-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 25px;
  }
  .pwb-global-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pwb-global-footer-contact a,
  .pwb-global-footer-group a {
    transition: none;
  }
}
