:root {
  --color-brand-red: #E8383B;
  --color-brand-blue: #5983BC;
  --color-white: #fff;
  --color-black: #000;
  --color-transparent: transparent;
  --color-white-90: rgba(255, 255, 255, 0.9);
  --color-white-88: rgba(255, 255, 255, 0.88);
  --color-white-55: rgba(255, 255, 255, 0.55);
  --color-white-0: rgba(255, 255, 255, 0);
  --color-black-0: rgba(0, 0, 0, 0);
  --color-footer-muted: #7d8790;
  --color-body-copy: #d6dee7;
}

*,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html,
    body {
      width: 100%;
      min-height: 100%;
      margin: 0;
      padding: 0;
      background: var(--color-black);
      color: var(--color-white);
      font-family: 'Montserrat', Arial, sans-serif;
      overflow-x: hidden;
    }

    body {
      position: relative;
      background:
        radial-gradient(900px 620px at 18% 8%, rgba(16, 24, 38, 0.4), var(--color-black-0) 68%),
        radial-gradient(760px 520px at 88% 82%, rgba(24, 34, 52, 0.34), var(--color-black-0) 64%),
        var(--color-black);
    }

    body > :not(.stellar-bg) {
      position: relative;
      z-index: 1;
    }

    .stellar-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .stellar-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(640px 420px at 16% 12%, rgba(255, 255, 255, 0.045), var(--color-white-0) 72%),
        radial-gradient(580px 340px at 84% 88%, rgba(89, 131, 188, 0.08), var(--color-white-0) 74%);
    }

    .feature-stars,
    .spark-stars {
      position: absolute;
      inset: 0;
    }

    .feature-star {
      position: absolute;
      border-radius: 999px;
      mix-blend-mode: screen;
      opacity: 1;
      filter: blur(0.45px);
      box-shadow:
        0 0 24px var(--star-glow),
        0 0 52px var(--star-glow),
        0 0 96px var(--star-shadow),
        0 0 156px var(--star-shadow);
    }

    .feature-star::after {
      content: "";
      position: absolute;
      inset: -170%;
      border-radius: inherit;
      background: radial-gradient(circle,
          var(--star-glow) 0%,
          color-mix(in srgb, var(--star-glow) 56%, var(--color-transparent)) 24%,
          color-mix(in srgb, var(--star-shadow) 28%, var(--color-transparent)) 52%,
          var(--color-transparent) 74%);
      opacity: 0.2;
      transform: scale(0.84);
      transform-origin: center;
      animation: feature-pulse var(--pulse-duration, 5.8s) ease-in-out infinite;
      animation-delay: var(--pulse-delay, 0s);
    }

    .spark-star {
      position: absolute;
      border-radius: 999px;
      opacity: 1;
    }

    .spark-star::before,
    .spark-star::after {
      content: "";
      position: absolute;
      border-radius: inherit;
      inset: 0;
    }

    .spark-star::before {
      background: rgba(255, 255, 255, 0.98);
      box-shadow:
        0 0 10px var(--color-white-90),
        0 0 18px rgba(255, 255, 255, 0.5);
    }

    .spark-star::after {
      inset: -260%;
      background: radial-gradient(circle,
          rgba(255, 255, 255, 0.96) 0%,
          rgba(255, 255, 255, 0.42) 22%,
          rgba(255, 255, 255, 0.16) 46%,
          var(--color-white-0) 72%);
      filter: blur(0.7px);
      opacity: 0.08;
      transform: scale(0.72);
      transform-origin: center;
      animation: twinkle var(--twinkle-duration, 3.4s) ease-in-out infinite;
      animation-delay: var(--twinkle-delay, 0s);
    }

    @keyframes feature-pulse {

      0%,
      100% {
        opacity: 0.16;
        transform: scale(0.9);
      }

      40% {
        opacity: 0.28;
        transform: scale(1.08);
      }

      58% {
        opacity: 0.38;
        transform: scale(1.16);
      }

      76% {
        opacity: 0.22;
        transform: scale(1.02);
      }
    }

    @keyframes twinkle {

      0%,
      100% {
        opacity: 0.08;
        transform: scale(0.72);
      }

      34% {
        opacity: 0.24;
        transform: scale(1);
      }

      50% {
        opacity: 0.98;
        transform: scale(1.58);
      }

      68% {
        opacity: 0.22;
        transform: scale(1.06);
      }
    }

    .page-shell {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      padding-top: 20px;
    }

    .page-content {
      padding: 0 24px;
    }

    .page-header,
    .page-card,
    .page-footer {
      max-width: 1140px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-header {
      margin: 80px auto 40px;
      text-align: center;
    }

    .page-title {
      position: relative;
      margin: 0 auto 14px;
      width: fit-content;
      max-width: 100%;
      text-align: center;
      font-size: 60px;
      font-weight: 800;
      line-height: 1.1;
      background: linear-gradient(90deg, var(--color-brand-red) 0%, var(--color-brand-blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: var(--color-transparent);
      background-clip: text;
      color: var(--color-transparent);
      z-index: 2;
    }

    .page-meta {
      margin: 0;
      color: #cad3dd;
      font-size: 16px;
      line-height: 1.75;
      max-width: 880px;
    }

    .page-card {
      position: relative;
      padding: 34px;
      border: 1px solid var(--color-transparent);
      border-radius: 28px;
      background:
        linear-gradient(var(--color-black), var(--color-black)) padding-box,
        linear-gradient(90deg, var(--color-brand-red), var(--color-brand-blue)) border-box;
      box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(8, 14, 24, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(34px) saturate(160%) brightness(1.05);
      -webkit-backdrop-filter: blur(34px) saturate(160%) brightness(1.05);
      overflow: hidden;
    }

    .page-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(520px 260px at 14% 2%, rgba(255, 255, 255, 0.2), var(--color-white-0) 62%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05) 34%, var(--color-white-0) 58%),
        radial-gradient(circle, rgba(228, 233, 244, 0.12) 0 1px, var(--color-transparent) 1.7px) 0 0 / 150px 150px,
        radial-gradient(circle, rgba(228, 233, 244, 0.08) 0 1px, var(--color-transparent) 1.8px) 72px 34px / 180px 180px;
      opacity: 0.26;
      pointer-events: none;
    }

    .page-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(420px 220px at 100% 100%, rgba(89, 131, 188, 0.1), rgba(89, 131, 188, 0) 62%),
        radial-gradient(360px 180px at 0% 100%, rgba(232, 56, 59, 0.08), rgba(232, 56, 59, 0) 58%);
      opacity: 0.34;
      pointer-events: none;
    }

    .page-card>* {
      position: relative;
      z-index: 1;
    }

    .legal-content {
      display: grid;
      gap: 30px;
    }

    .legal-block {
      display: grid;
      gap: 14px;
    }

    .page-card .legal-block h2,
    .page-card .legal-block h3 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      color: var(--color-white) !important;
      font-weight: 700 !important;
      line-height: 1.25 !important;
      font-family: 'Montserrat', Arial, sans-serif !important;
    }

    .page-card .legal-block h2 {
      font-size: clamp(22px, 3vw, 30px) !important;
    }

    .page-card .legal-block h3 {
      font-size: clamp(22px, 3vw, 30px) !important;
      text-decoration: none !important;
    }

    .page-card .legal-block .legal-section-title {
      margin: 0 !important;
      color: var(--color-white) !important;
      font-size: clamp(16px, 2.2vw, 18px) !important;
      font-weight: 700 !important;
      line-height: 1.25 !important;
      font-family: 'Montserrat', Arial, sans-serif !important;
      text-decoration: none !important;
    }

    .page-card .legal-content p,
    .page-card .legal-content li {
      margin: 0;
      color: var(--color-body-copy) !important;
      font-size: 16px !important;
      line-height: 1.82 !important;
      font-family: 'Montserrat', Arial, sans-serif !important;
    }

    .page-card .legal-content ul,
    .page-card .legal-content ol {
      margin: 0 !important;
      padding-left: 52px !important;
      color: var(--color-body-copy) !important;
      display: grid !important;
      gap: 10px !important;
    }

    .page-card .legal-content li::marker {
      color: var(--color-body-copy) !important;
      font-size: 1em !important;
    }

    .site-footer {
      margin-top: 50px;
      background: #020814;
      color: #f4f7fb;
      padding: 100px;
      padding-bottom: 44px;
      font-size: 16px;
      isolation: isolate;
    }

    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
    }

    .footer-desktop-layout {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0;
    }

    .footer-desktop-nav {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 96px;
      flex: 0 0 45%;
      width: 45%;
    }

    .footer-nav-section {
      flex: 0 0 auto;
      min-width: 0;
    }

    .footer-section-heading {
      margin: 0 0 20px;
      line-height: 1.25;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--color-white-90);
    }

    .footer-section-heading--meta {
      margin-bottom: 12px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
    }

    .footer-links a,
    .footer-links a:link,
    .footer-links a:visited {
      text-decoration: none;
      color: var(--color-white-90) !important;
      transition: color 0.3s ease;
      white-space: nowrap;
      display: inline-block;
      width: fit-content;
      font-size: 16px;
      line-height: 1.35;
      font-weight: 100;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--color-brand-blue) !important;
      text-decoration: none;
    }

    .footer-links a[aria-current="page"],
    .footer-links a[aria-current="page"]:hover,
    .footer-links a[aria-current="page"]:focus-visible,
    .footer-links a[aria-current="page"]:visited {
      background: linear-gradient(90deg, var(--color-brand-red) 0%, var(--color-brand-blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: var(--color-transparent) !important;
      background-clip: text;
      color: var(--color-transparent) !important;
      text-decoration: none;
    }

    body[data-page="home"] .footer-links a[href="/"],
    body[data-page="about"] .footer-links a[href="/about-us"],
    body[data-page="contact"] .footer-links a[href="/contact-us"],
    body[data-page="career"] .footer-links a[href="/careers"],
    body[data-page="new-client"] .footer-links a[href="/new-client-setup"],
    body[data-page="support"] .footer-legal-links a[href="/support"],
    body[data-page="privacy"] .footer-legal-links a[href="/privacy-policy"],
    body[data-page="licence"] .footer-legal-links a[href="/licence-agreement"] {
      background: linear-gradient(90deg, var(--color-brand-red) 0%, var(--color-brand-blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: var(--color-transparent) !important;
      background-clip: text;
      color: var(--color-transparent) !important;
      text-decoration: none;
    }

    .footer-meta-column {
      display: flex;
      flex-direction: column;
      gap: 56px;
      flex: 0 0 25%;
      width: 25%;
      align-items: flex-start;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    .footer-meta-section {
      width: 100%;
    }

    .footer-meta-column,
    .footer-meta-column * {
      font-size: 14px !important;
    }

    .footer-meta-text,
    .footer-meta-inline {
      margin: 0;
      color: var(--color-white-88);
      font-size: 14px;
      line-height: 1.85;
      font-weight: 100;
      letter-spacing: 0.02em;
    }

    .footer-meta-text {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-meta-inline {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      line-height: 1.25;
      text-transform: uppercase;
    }

    .footer-meta-inline span[aria-hidden="true"] {
      color: var(--color-white-55);
    }

    .footer-map-link,
    .footer-map-link:link,
    .footer-map-link:visited {
      width: fit-content;
      max-width: 100%;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: var(--color-transparent);
      appearance: none;
      -webkit-appearance: none;
      box-shadow: none;
      color: var(--color-white-90) !important;
      font: inherit;
      font-family: inherit;
      text-align: left;
      cursor: pointer;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .footer-map-link:hover,
    .footer-map-link:focus-visible {
      color: var(--color-brand-blue) !important;
      text-decoration: underline;
    }

    .footer-map-link.footer-meta-text,
    .footer-map-link.footer-mobile-meta--stack,
    .footer-map-link.footer-meta-text span,
    .footer-map-link.footer-mobile-meta--stack span {
      font-weight: 100 !important;
    }

    .footer-map-link:focus-visible {
      outline: none;
    }

    .footer-mobile-layout {
      display: none;
    }

    .footer-logo {
      height: 38px;
      width: auto;
      margin-bottom: 25px;
    }

    .footer-bottom {
      text-align: center;
      font-size: 14px;
      color: var(--color-footer-muted);
      padding-top: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .footer-legal-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-legal-links a,
    .footer-legal-links a:link,
    .footer-legal-links a:visited {
      color: var(--color-white-90) !important;
      text-decoration: none;
      transition: color 0.3s ease;
      white-space: nowrap;
      font-weight: 100;
      letter-spacing: 0.02em;
    }

    .footer-legal-links a:hover,
    .footer-legal-links a:focus-visible {
      color: var(--color-brand-blue) !important;
      text-decoration: none;
    }

    .footer-legal-links a[aria-current="page"],
    .footer-legal-links a[aria-current="page"]:hover,
    .footer-legal-links a[aria-current="page"]:focus-visible,
    .footer-legal-links a[aria-current="page"]:visited {
      background: linear-gradient(90deg, var(--color-brand-red) 0%, var(--color-brand-blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: var(--color-transparent) !important;
      background-clip: text;
      color: var(--color-transparent) !important;
      text-decoration: none;
    }

    .footer-legal-links span {
      color: var(--color-footer-muted);
    }

    .footer-legal-links--desktop {
      justify-content: center;
      margin-top: 0;
      margin-bottom: 0;
    }

    .footer-legal-links--mobile {
      display: none;
      justify-content: center;
      margin-top: 16px;
    }

    .footer-brand--desktop {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .footer-brand--mobile {
      display: none;
    }

    .footer-logo--bottom {
      width: auto;
      height: auto;
      max-width: 217.06px;
      max-height: 86.2px;
      display: block;
      margin: 0;
    }

    .footer-logo--mobile {
      height: clamp(62.4px, 16.64vw, 76.96px);
      margin: 0;
    }

    .footer-copyright {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      line-height: 1.4;
      font-weight: 100;
      letter-spacing: 0.02em;
    }

    .footer-copyright--mobile {
      display: none;
    }

    .footer-copyright--desktop {
      display: block;
      margin-top: 20px;
    }

    .site-footer,
    .site-footer a,
    .site-footer p,
    .site-footer span,
    .site-footer h4 {
      font-size: 16px;
    }

    @media (max-width: 900px) {
      .page-shell {
        padding-top: 0;
      }

      .page-content {
        padding: 0 18px;
      }

      .page-title {
        font-size: 32px;
      }

      .page-card {
        padding: 22px 16px;
        border-radius: 24px;
      }

      .legal-content {
        gap: 24px;
      }
    }

    @media (max-width: 900px) {
      body > [data-global-resource-path*="header"] {
        z-index: 20;
      }

      .site-footer {
        position: relative;
        z-index: 4;
        isolation: isolate;
        padding: 28px 24px 34px;
      }

      .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }

      .footer-desktop-layout {
        display: none;
      }

      .footer-mobile-layout {
        display: block;
      }

      .footer-mobile-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 40px 44px;
        align-items: flex-start;
      }

      .footer-mobile-column {
        display: contents;
      }

      .footer-mobile-section {
        min-width: 0;
      }

      .footer-mobile-section--discover {
        grid-column: 1;
        grid-row: 1;
      }

      .footer-mobile-section--connect {
        grid-column: 1;
        grid-row: 2;
      }

      .footer-mobile-section--resources {
        grid-column: 1;
        grid-row: 3;
      }

      .footer-mobile-section--headquarters {
        grid-column: 2;
        grid-row: 1;
      }

      .footer-mobile-section--offices {
        grid-column: 2;
        grid-row: 2;
      }

      .footer-mobile-layout .footer-section-heading {
        margin: 0 0 18px;
        font-size: 14px !important;
        line-height: 1.2;
        letter-spacing: 0.03em;
      }

      .footer-mobile-section--resources .footer-section-heading {
        width: max-content;
        max-width: none;
        white-space: nowrap;
      }

      .footer-mobile-links {
        position: static;
        z-index: auto;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
      }

      .footer-mobile-links a {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        font-size: 14px !important;
        line-height: 1.4;
        font-weight: 100;
        letter-spacing: 0.02em;
        text-transform: uppercase;
      }

      .footer-mobile-layout .footer-section-heading,
      .footer-mobile-links a,
      .footer-legal-links--mobile,
      .footer-legal-links--mobile a,
      .footer-legal-links--mobile span {
        font-size: 14px !important;
      }

      .footer-mobile-meta {
        margin: 0;
        color: var(--color-white-88);
        font-size: 13px !important;
        line-height: 1.7;
        font-weight: 100;
        letter-spacing: 0.02em;
      }

      .footer-mobile-meta--stack {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .footer-mobile-meta--inline {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        text-transform: uppercase;
      }

      .footer-mobile-section--offices .footer-mobile-meta--inline {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .footer-mobile-section--headquarters .footer-section-heading,
      .footer-mobile-section--offices .footer-section-heading {
        font-size: 14px !important;
      }

      .footer-mobile-section--headquarters .footer-mobile-meta,
      .footer-mobile-section--headquarters .footer-mobile-meta span,
      .footer-mobile-section--offices .footer-mobile-meta,
      .footer-mobile-section--offices .footer-mobile-meta span {
        font-size: 13px !important;
      }

      .footer-mobile-section--headquarters .footer-mobile-meta,
      .footer-mobile-section--headquarters .footer-mobile-meta span {
        line-height: 1.7 !important;
      }

      .footer-mobile-meta--inline span[aria-hidden="true"] {
        color: var(--color-white-55);
      }
      .footer-mobile-layout .footer-map-link {
        width: 100%;
        max-width: 100%;
        color: var(--color-white-90);
      }

      .footer-bottom {
        position: relative;
        z-index: 5;
        margin-top: 46px;
        gap: 0;
      }

      .footer-legal-links {
        position: relative;
        z-index: 5;
        margin-top: 0;
        font-size: 14px !important;
        line-height: 1.7;
        justify-content: center;
      }

      .footer-legal-links--desktop {
        display: none;
      }

      .footer-legal-links--mobile {
        display: flex;
        margin-bottom: 0;
      }

      .footer-brand--desktop {
        display: none;
      }

      .footer-copyright--desktop {
        display: none;
      }

      .footer-brand--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
      }

      .footer-copyright--mobile {
        display: block;
        margin: 18px 0 0;
        color: var(--color-white-90);
        font-size: 14px !important;
        line-height: 1.7;
        font-weight: 100;
        letter-spacing: 0.02em;
      }
    }
