/* =========================================================
   TRANSAXION
   LIQUID GLASS PREMIUM EDITION
========================================================= */


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;

  scroll-behavior: smooth;

  background: #020b14;
}

body {
  width: 100%;
  min-height: 100vh;

  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;

  color: #ffffff;

  background: #020b14;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.mobile-menu-open {
  overflow: hidden;
}

main,
header,
footer,
section {
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #07100a;
  background: #c8f22b;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --navy: #020b14;
  --navy-2: #04111d;
  --navy-3: #071827;

  --white: #ffffff;
  --off-white: #f7f8f8;

  --lime: #b7e51d;
  --lime-bright: #c8f22b;
  --lime-soft: rgba(183, 229, 29, 0.1);

  --text-soft: #aab4bd;
  --text-muted: #7f8b94;
  --text-dark: #071321;

  --border-dark: rgba(255, 255, 255, 0.09);
  --border-dark-strong: rgba(255, 255, 255, 0.14);
  --border-light: rgba(7, 19, 33, 0.11);

  --shadow-soft:
    0 24px 60px rgba(0, 0, 0, 0.16);

  --shadow-card:
    0 18px 44px rgba(4, 14, 24, 0.08);

  --glass-bg:
    rgba(8, 24, 37, 0.48);

  --glass-bg-strong:
    rgba(7, 23, 36, 0.68);

  --glass-border:
    rgba(255, 255, 255, 0.12);

  --glass-highlight:
    rgba(255, 255, 255, 0.13);

  --glass-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --section-space:
    clamp(84px, 8vw, 132px);

  --ease-premium:
    cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
  width:
    min(1280px, calc(100% - 48px));

  margin-left: auto;
  margin-right: auto;
}

section {
  position: relative;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

p,
small,
strong,
a,
button {
  overflow-wrap: anywhere;
}

p {
  text-wrap: pretty;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline:
    2px solid rgba(200, 242, 43, 0.95);

  outline-offset: 4px;
}

button:active,
.primary-cta:active,
.secondary-cta:active,
.dark-cta:active,
.floating-contact:active {
  transform:
    translateY(1px)
    scale(0.985);
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-cta,
.secondary-cta,
.dark-cta {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 0 22px;

  border-radius: 999px;

  border: 1px solid transparent;

  font-size:
    clamp(11px, 0.8vw, 12px);

  font-weight: 700;

  letter-spacing: -0.01em;

  transition:
    transform 0.28s var(--ease-premium),
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease;
}

.primary-cta {
  color: #07100a;

  background:
    linear-gradient(
      180deg,
      #d4f758,
      var(--lime-bright)
    );

  border-color:
    rgba(226, 255, 111, 0.82);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 8px 24px rgba(183, 229, 29, 0.12);
}

.primary-cta:hover {
  transform: translateY(-2px);

  background:
    linear-gradient(
      180deg,
      #ddfa70,
      #cdf33f
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 15px 36px rgba(183, 229, 29, 0.2);
}

.secondary-cta {
  position: relative;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );

  border-color:
    rgba(255, 255, 255, 0.14);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.08);

  backdrop-filter:
    blur(18px) saturate(130%);

  -webkit-backdrop-filter:
    blur(18px) saturate(130%);
}

.secondary-cta:hover {
  transform: translateY(-2px);

  background:
    linear-gradient(
      145deg,
      rgba(183, 229, 29, 0.09),
      rgba(255, 255, 255, 0.035)
    );

  border-color:
    rgba(183, 229, 29, 0.34);

  color: var(--lime-bright);
}

.dark-cta {
  color: #ffffff;

  background: #071522;

  border-color:
    rgba(7, 19, 33, 0.11);
}

.dark-cta:hover {
  transform: translateY(-2px);

  color: var(--lime);

  background: #0a1c2c;
}

.primary-cta span,
.secondary-cta span,
.dark-cta span {
  transition: transform 0.25s ease;
}

.primary-cta:hover span:last-child,
.secondary-cta:hover span:last-child,
.dark-cta:hover span:last-child {
  transform: translateX(4px);
}

.large-cta {
  min-height: 54px;

  padding: 0 26px;

  font-size:
    clamp(12px, 0.9vw, 13px);
}


/* =========================================================
   LIQUID GLASS HEADER
========================================================= */

.site-header {
  position: absolute;

  top: 0;
  left: 0;

  z-index: 100;

  width: 100%;

  background:
    linear-gradient(
      180deg,
      rgba(10, 27, 40, 0.56),
      rgba(3, 14, 24, 0.34)
    );

  border-bottom:
    1px solid rgba(255, 255, 255, 0.09);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  backdrop-filter:
    blur(22px)
    saturate(145%);

  -webkit-backdrop-filter:
    blur(22px)
    saturate(145%);

  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    opacity 0.28s ease;
}

.site-header::after {
  content: "";

  position: absolute;

  left: 5%;
  right: 5%;
  top: 0;

  height: 1px;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent
    );
}

.site-header.scrolled {
  position: fixed;

  background:
    linear-gradient(
      180deg,
      rgba(6, 21, 33, 0.80),
      rgba(2, 12, 21, 0.70)
    );

  border-color:
    rgba(255, 255, 255, 0.11);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 44px rgba(0, 0, 0, 0.25);

  backdrop-filter:
    blur(28px)
    saturate(155%);

  -webkit-backdrop-filter:
    blur(28px)
    saturate(155%);
}

.navbar {
  min-height: 72px;

  display: flex;
  align-items: center;

  gap: 24px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: 205px;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.logo:hover img {
  opacity: 0.93;

  transform: translateY(-1px);
}

.nav-links {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 28px;

  min-width: 0;
}

.nav-links a {
  position: relative;

  padding:
    26px 0 24px;

  color:
    rgba(255, 255, 255, 0.72);

  font-size:
    clamp(10px, 0.75vw, 11px);

  font-weight: 600;

  letter-spacing: -0.01em;

  white-space: nowrap;

  transition: color 0.24s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 17px;

  height: 1px;

  transform: scaleX(0);

  transform-origin: center;

  background:
    var(--lime-bright);

  box-shadow:
    0 0 9px rgba(200, 242, 43, 0.34);

  transition:
    transform 0.3s var(--ease-premium);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 1 auto;

  min-width: 170px;

  white-space: nowrap;
}


/* =========================================================
   LIQUID GLASS LANGUAGE SELECTOR
========================================================= */

.language-selector {
  position: relative;

  flex: 0 0 auto;
}

.language-toggle {
  min-height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  padding: 0 12px;

  color: #e3ebef;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 999px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 10px 24px rgba(0, 0, 0, 0.08);

  backdrop-filter:
    blur(18px)
    saturate(140%);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(140%);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.05em;

  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.language-toggle:hover,
.language-selector.open
.language-toggle {
  color: var(--lime-bright);

  background:
    linear-gradient(
      145deg,
      rgba(183, 229, 29, 0.10),
      rgba(255, 255, 255, 0.035)
    );

  border-color:
    rgba(183, 229, 29, 0.30);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.12);
}

.language-globe {
  color: var(--lime);
}

.language-chevron {
  opacity: 0.6;

  transition: transform 0.2s ease;
}

.language-selector.open
.language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;

  top:
    calc(100% + 10px);

  right: 0;

  z-index: 300;

  width: 184px;

  padding: 8px;

  opacity: 0;
  visibility: hidden;

  transform:
    translateY(-6px)
    scale(0.98);

  transform-origin:
    top right;

  background:
    linear-gradient(
      145deg,
      rgba(13, 32, 46, 0.82),
      rgba(3, 14, 24, 0.76)
    );

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 16px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 26px 62px rgba(0, 0, 0, 0.38);

  backdrop-filter:
    blur(28px)
    saturate(155%);

  -webkit-backdrop-filter:
    blur(28px)
    saturate(155%);

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.language-selector.open
.language-menu {
  opacity: 1;
  visibility: visible;

  transform:
    translateY(0)
    scale(1);
}

.language-menu button {
  width: 100%;
  min-height: 38px;

  display: flex;
  align-items: center;

  padding: 0 11px;

  color: #aeb9c1;

  background: transparent;

  border: none;

  border-radius: 9px;

  font-size: 10px;

  text-align: left;

  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.language-menu button:hover {
  color: #ffffff;

  background:
    rgba(255, 255, 255, 0.06);
}

.language-menu button.active {
  color: var(--lime-bright);

  background:
    linear-gradient(
      90deg,
      rgba(183, 229, 29, 0.10),
      rgba(183, 229, 29, 0.035)
    );
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-button {
  display: none;

  margin-left: auto;

  width: 44px;
  height: 44px;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 50%;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);
}

.mobile-menu-button span {
  width: 18px;
  height: 1.5px;

  background: #ffffff;
}

.mobile-nav {
  position: fixed;

  inset: 0;

  z-index: 900;

  visibility: hidden;

  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;

  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;

  inset: 0;

  opacity: 0;

  background:
    rgba(0, 5, 10, 0.60);

  backdrop-filter:
    blur(14px)
    saturate(120%);

  -webkit-backdrop-filter:
    blur(14px)
    saturate(120%);

  transition: opacity 0.3s ease;
}

.mobile-nav.is-open
.mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;

  top: 12px;
  right: 12px;
  bottom: 12px;

  width:
    min(390px, calc(90vw - 12px));

  height: auto;

  padding:
    22px 24px 32px;

  overflow-y: auto;

  transform:
    translateX(110%);

  background:
    linear-gradient(
      150deg,
      rgba(14, 36, 52, 0.82),
      rgba(3, 14, 24, 0.82) 68%
    );

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 26px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    -28px 20px 80px rgba(0, 0, 0, 0.42);

  backdrop-filter:
    blur(34px)
    saturate(155%);

  -webkit-backdrop-filter:
    blur(34px)
    saturate(155%);

  transition:
    transform 0.38s var(--ease-premium);
}

.mobile-nav-panel::before {
  content: "";

  position: absolute;

  top: 0;
  left: 8%;
  right: 8%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );

  pointer-events: none;
}

.mobile-nav.is-open
.mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-top {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 18px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-logo img {
  width: 164px;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.025)
    );

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 50%;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  font-size: 22px;
}

.mobile-nav-label {
  display: block;

  margin:
    24px 0 10px;

  color: var(--lime);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links a {
  min-height: 56px;

  display: flex;
  align-items: center;

  gap: 18px;

  color: #edf2f4;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.065);

  font-size: 15px;
  font-weight: 600;
}

.mobile-nav-links a span {
  color: var(--lime);

  font-size: 8px;
}

.mobile-nav-links a strong {
  font: inherit;
}

.mobile-region-list,
.mobile-social-row {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 8px;
}

.mobile-region-list a,
.mobile-social-row a {
  min-height: 42px;

  display: grid;
  place-items: center;

  padding: 8px;

  color: #c7d0d7;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.02)
    );

  border:
    1px solid rgba(255, 255, 255, 0.09);

  border-radius: 12px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  font-size: 9px;

  text-align: center;
}

.mobile-social-row {
  margin-bottom: 20px;
}

.mobile-partner-button {
  width: 100%;
}

.mobile-language-selector {
  display: none;

  margin-top: 18px;
}

.mobile-language-selector
.language-toggle {
  width: 100%;

  min-height: 44px;

  justify-content: space-between;
}

.mobile-language-selector
.language-menu {
  position: relative;

  top: auto;
  right: auto;

  width: 100%;

  margin-top: 8px;

  display: none;

  opacity: 1;
  visibility: visible;

  transform: none;

  box-shadow: none;
}

.mobile-language-selector.open
.language-menu {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 5px;
}


/* =========================================================
   HERO
========================================================= */

.hero-v2 {
  position: relative;

  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background:
    #010812;
}

.hero-v2::after {
  content: "";

  position: absolute;

  inset:
    auto 0 0;

  z-index: 2;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(183, 229, 29, 0.12),
      transparent
    );
}

.hero-v2-background {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.hero-v2-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform:
    scale(1.01);

  backface-visibility: hidden;
}

.hero-v2-shade {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    radial-gradient(
      circle at 64% 44%,
      rgba(183, 229, 29, 0.035),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(1, 8, 17, 1) 0%,
      rgba(1, 8, 17, 0.96) 31%,
      rgba(1, 8, 17, 0.62) 53%,
      rgba(1, 8, 17, 0.16) 79%
    ),
    linear-gradient(
      180deg,
      rgba(1, 8, 17, 0.08),
      rgba(1, 8, 17, 0.34)
    );
}

.hero-v2-content {
  position: relative;

  z-index: 2;

  flex: 1;

  display: flex;
  align-items: center;

  padding-top: 132px;
  padding-bottom: 74px;
}

.hero-v2-copy {
  width:
    min(740px, 56vw);

  min-width: 0;
}

.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 25px;

  color: var(--lime);

  font-size:
    clamp(9px, 0.8vw, 11px);

  font-weight: 700;

  letter-spacing: 0.28em;
}

.hero-v2-eyebrow::before {
  content: "";

  width: 28px;
  height: 1px;

  background:
    var(--lime);
}

.hero-v2-copy h1 {
  display: flex;
  flex-direction: column;

  margin:
    0 0 28px;

  color: #ffffff;

  font-size:
    clamp(52px, 5.25vw, 88px);

  font-weight: 760;

  line-height: 0.94;

  letter-spacing:
    -0.045em;
}

.hero-v2-copy h1 strong {
  color:
    var(--lime-bright);

  font-weight: inherit;

  text-shadow:
    0 0 28px rgba(183, 229, 29, 0.08);
}

.hero-v2-copy > p {
  max-width: 610px;

  margin-bottom: 34px;

  color:
    rgba(222, 230, 235, 0.76);

  font-size:
    clamp(14px, 1.1vw, 16px);

  line-height: 1.78;

  letter-spacing:
    -0.01em;
}


/* =========================================================
   LIQUID GLASS HERO REGION RAIL
========================================================= */

.hero-region-rail {
  position: relative;

  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  margin-bottom: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(16, 36, 50, 0.42),
      rgba(3, 15, 25, 0.24)
    );

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 20px;

  backdrop-filter:
    blur(24px)
    saturate(145%);

  -webkit-backdrop-filter:
    blur(24px)
    saturate(145%);

  overflow: hidden;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 22px 52px rgba(0, 0, 0, 0.15);
}

.hero-region-rail::before {
  content: "";

  position: absolute;

  top: 0;
  left: 6%;
  right: 6%;

  z-index: 3;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.22),
      transparent
    );

  pointer-events: none;
}

.hero-region-link {
  position: relative;

  min-height: 104px;

  display: grid;

  grid-template-columns:
    auto minmax(0, 1fr) auto;

  align-items: center;

  gap: 13px;

  padding:
    19px 20px;

  border-right:
    1px solid rgba(255, 255, 255, 0.08);

  transition:
    background 0.28s ease,
    transform 0.28s var(--ease-premium);
}

.hero-region-link:last-child {
  border-right: 0;
}

.hero-region-link::before {
  content: "";

  position: absolute;

  inset: 0;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.07),
      transparent 52%
    ),
    linear-gradient(
      180deg,
      rgba(183, 229, 29, 0.075),
      rgba(183, 229, 29, 0.012)
    );

  transition:
    opacity 0.28s ease;
}

.hero-region-link::after {
  content: "";

  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 0;

  height: 2px;

  transform:
    scaleX(0);

  transform-origin:
    center;

  background:
    var(--lime-bright);

  box-shadow:
    0 0 10px rgba(200, 242, 43, 0.24);

  transition:
    transform 0.3s var(--ease-premium);
}

.hero-region-link:hover {
  transform:
    translateY(-1px);
}

.hero-region-link:hover::before {
  opacity: 1;
}

.hero-region-link:hover::after {
  transform:
    scaleX(1);
}

.hero-region-number,
.hero-region-content,
.hero-region-arrow {
  position: relative;

  z-index: 2;
}

.hero-region-number {
  color: var(--lime);

  font-size: 9px;
  font-weight: 800;

  letter-spacing:
    0.06em;
}

.hero-region-content {
  min-width: 0;
}

.hero-region-content strong {
  display: block;

  margin-bottom: 7px;

  color: #ffffff;

  font-size:
    clamp(10px, 0.8vw, 11px);

  letter-spacing:
    0.02em;
}

.hero-region-content small {
  display: block;

  color:
    rgba(174, 187, 197, 0.76);

  font-size:
    clamp(8px, 0.7vw, 9px);

  line-height: 1.5;
}

.hero-region-arrow {
  color:
    rgba(200, 242, 43, 0.72);

  font-size: 17px;

  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.hero-region-link:hover
.hero-region-arrow {
  color:
    var(--lime-bright);

  transform:
    translateX(4px);
}

.hero-v2-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.hero-trust-strip {
  position: relative;

  z-index: 3;

  background:
    linear-gradient(
      180deg,
      rgba(8, 25, 38, 0.63),
      rgba(2, 11, 20, 0.76)
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.09);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  backdrop-filter:
    blur(24px)
    saturate(135%);

  -webkit-backdrop-filter:
    blur(24px)
    saturate(135%);
}

.hero-trust-grid {
  min-height: 112px;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}

.hero-trust-item {
  display: flex;
  align-items: center;

  gap: 15px;

  min-width: 0;

  padding:
    22px 27px;

  border-right:
    1px solid rgba(255, 255, 255, 0.075);
}

.hero-trust-item:first-child {
  padding-left: 0;
}

.hero-trust-item:last-child {
  border-right: 0;
}

.hero-trust-icon {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  color: var(--lime);

  background:
    linear-gradient(
      145deg,
      rgba(183, 229, 29, 0.06),
      rgba(255, 255, 255, 0.02)
    );

  border:
    1px solid rgba(183, 229, 29, 0.32);

  border-radius: 50%;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  font-size: 18px;

  transition:
    transform 0.25s var(--ease-premium),
    border-color 0.25s ease;
}

.hero-trust-item:hover
.hero-trust-icon {
  transform:
    scale(1.04);

  border-color:
    rgba(183, 229, 29, 0.52);
}

.hero-trust-item strong {
  display: block;

  margin-bottom: 5px;

  font-size:
    clamp(10px, 0.8vw, 11px);

  letter-spacing:
    -0.01em;
}

.hero-trust-item small {
  display: block;

  color:
    rgba(154, 167, 176, 0.78);

  font-size:
    clamp(8px, 0.7vw, 9px);

  line-height: 1.5;
}


/* =========================================================
   SHARED SECTION LABEL
========================================================= */

.section-label,
.markets-label,
.partnership-label,
.cta-label,
.page-eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  color: var(--lime);

  font-size:
    clamp(8px, 0.7vw, 9px);

  font-weight: 800;

  letter-spacing:
    0.18em;
}

.section-label::before,
.markets-label::before,
.partnership-label::before,
.cta-label::before,
.page-eyebrow::before {
  content: "";

  width: 22px;
  height: 1px;

  background:
    currentColor;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {
  padding:
    var(--section-space) 0;

  color:
    var(--text-dark);

  background:
    linear-gradient(
      180deg,
      #fafbfb,
      #f4f6f6
    );
}

.solutions-section::before {
  content: "";

  position: absolute;

  inset:
    0 0 auto;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(7, 19, 33, 0.07),
      transparent
    );
}

.solutions-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 2.18fr);

  gap:
    clamp(52px, 6vw, 88px);

  align-items: center;
}

.solutions-copy {
  max-width: 390px;

  min-width: 0;
}

.solutions-copy h2,
.markets-copy h2 {
  margin:
    18px 0 22px;

  font-size:
    clamp(36px, 3.6vw, 54px);

  line-height: 1.02;

  letter-spacing:
    -0.04em;
}

.solutions-copy p,
.markets-copy p {
  margin-bottom: 30px;

  color: #6e7880;

  font-size:
    clamp(13px, 0.95vw, 14px);

  line-height: 1.82;
}

.solutions-cards {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;
}

.solution-card {
  position: relative;

  min-height: 350px;

  padding:
    34px 24px 28px;

  background:
    rgba(255, 255, 255, 0.84);

  border:
    1px solid rgba(7, 19, 33, 0.08);

  border-radius: 18px;

  box-shadow:
    0 8px 26px rgba(5, 20, 33, 0.025);

  overflow: hidden;

  transition:
    transform 0.35s var(--ease-premium),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.solution-card::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 0;

  height: 2px;

  transform:
    scaleX(0);

  transform-origin:
    left;

  background:
    var(--lime);

  transition:
    transform 0.35s ease;
}

.solution-card:hover {
  transform:
    translateY(-7px);

  border-color:
    rgba(112, 168, 19, 0.24);

  box-shadow:
    0 24px 48px
    rgba(5, 20, 33, 0.09);
}

.solution-card:hover::before {
  transform:
    scaleX(1);
}

.solution-icon {
  width: 46px;
  height: 46px;

  margin-bottom: 34px;
}

.solution-icon svg {
  width: 40px;
  height: 40px;

  fill: none;

  stroke: #72a915;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  margin-bottom: 15px;

  color: #081522;

  font-size:
    clamp(14px, 1.15vw, 16px);

  line-height: 1.35;

  letter-spacing:
    -0.02em;
}

.solution-card p {
  color: #707a82;

  font-size:
    clamp(11.5px, 0.9vw, 12.5px);

  line-height: 1.74;
}


/* =========================================================
   MARKETS
========================================================= */

.markets-section {
  padding:
    var(--section-space) 0;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(183, 229, 29, 0.055),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #020a12,
      #061521 55%,
      #020a12
    );
}

.markets-section::before {
  content: "";

  position: absolute;

  inset:
    0 0 auto;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(183, 229, 29, 0.09),
      transparent
    );
}

.markets-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.76fr)
    minmax(0, 2.24fr);

  gap:
    clamp(52px, 6vw, 88px);

  align-items: center;
}

.markets-copy {
  max-width: 385px;

  min-width: 0;
}

.markets-copy p {
  color:
    rgba(184, 196, 204, 0.74);
}

.markets-cards {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.market-card {
  position: relative;

  min-height: 500px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(11, 31, 46, 0.98),
      rgba(5, 19, 31, 0.98)
    );

  border:
    1px solid rgba(255, 255, 255, 0.075);

  border-radius: 20px;

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.35s var(--ease-premium),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.market-card:hover {
  transform:
    translateY(-8px);

  border-color:
    rgba(183, 229, 29, 0.26);

  box-shadow:
    0 28px 60px
    rgba(0, 0, 0, 0.22);
}

.market-image {
  position: relative;

  isolation: isolate;

  height: 288px;

  padding:
    20px 24px 0;

  overflow: hidden;
}

.market-image > img {
  position: relative;

  z-index: 2;

  width: 100%;
  height: 100%;

  object-fit: contain;

  transition:
    opacity 0.5s ease,
    transform 0.5s var(--ease-premium),
    filter 0.5s ease;
}

.market-image::before {
  content: "";

  position: absolute;

  inset:
    12px 18px 0;

  z-index: 1;

  opacity: 0;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  transform:
    scale(0.97);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.markets-cards
.market-card:nth-child(1)
.market-image::before {
  background-image:
    url("images/global/africa-countries.png");
}

.markets-cards
.market-card:nth-child(2)
.market-image::before {
  background-image:
    url("images/global/latin-america-countries.png");
}

.markets-cards
.market-card:nth-child(3)
.market-image::before {
  background-image:
    url("images/global/south-asia-countries.png");
}

.market-card-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  min-width: 0;

  padding:
    8px 26px 28px;
}

.market-number,
.benefit-number {
  display: block;

  margin-bottom: 10px;

  color: var(--lime);

  font-size: 8px;
  font-weight: 800;

  letter-spacing:
    0.12em;
}

.market-card h3 {
  margin-bottom: 14px;

  font-size:
    clamp(16px, 1.25vw, 18px);

  letter-spacing:
    -0.02em;
}

.market-card p {
  margin-bottom: 23px;

  color:
    rgba(173, 187, 197, 0.74);

  font-size:
    clamp(11.5px, 0.9vw, 12.5px);

  line-height: 1.76;
}

.market-card a {
  width: fit-content;

  margin-top: auto;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: var(--lime);

  font-size: 11px;
  font-weight: 700;

  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.market-card a:hover {
  gap: 15px;

  color: var(--lime-bright);
}

@media (hover: hover) and (pointer: fine) {

  .market-card:hover
  .market-image > img {
    opacity: 0.21;

    transform:
      scale(1.035);

    filter:
      brightness(0.7)
      saturate(0.78);
  }

  .market-card:hover
  .market-image::before {
    opacity: 1;

    transform:
      scale(1);
  }

}


/* =========================================================
   PARTNERSHIPS
========================================================= */

.partnership-section {
  padding:
    var(--section-space) 0;

  color:
    var(--text-dark);

  background:
    #f6f8f8;
}

.partnership-heading {
  margin-bottom: 50px;
}

.partnership-title-row {
  display: grid;

  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(0, 0.88fr);

  gap:
    clamp(46px, 6vw, 78px);

  margin-top: 17px;

  align-items: end;
}

.partnership-title-row h2 {
  font-size:
    clamp(38px, 4vw, 58px);

  line-height: 1.02;

  letter-spacing:
    -0.04em;
}

.partnership-title-row p {
  max-width: 470px;

  color: #717b83;

  font-size:
    clamp(13px, 0.95vw, 14px);

  line-height: 1.82;
}

.partnership-benefits {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  background:
    rgba(255, 255, 255, 0.58);

  border:
    1px solid rgba(7, 19, 33, 0.075);

  border-radius: 18px;

  overflow: hidden;
}

.benefit-card {
  min-height: 194px;

  padding:
    34px 28px;

  background:
    transparent;

  border-right:
    1px solid rgba(7, 19, 33, 0.075);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card:hover {
  background:
    rgba(183, 229, 29, 0.035);

  transform:
    translateY(-2px);
}

.benefit-card h3 {
  margin-bottom: 12px;

  font-size:
    clamp(14px, 1.05vw, 15px);

  letter-spacing:
    -0.02em;
}

.benefit-card p {
  color: #727c84;

  font-size:
    clamp(11.5px, 0.9vw, 12.5px);

  line-height: 1.75;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
  position: relative;

  min-height: 390px;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.cta-image {
  position: absolute;

  inset: 0;
}

.cta-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform:
    scale(1.02);
}

.cta-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 11, 20, 0.98) 0%,
      rgba(2, 11, 20, 0.84) 43%,
      rgba(2, 11, 20, 0.24) 79%
    );
}

.cta-content {
  position: relative;

  z-index: 2;

  min-height: 390px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 52px;
}

.cta-copy {
  max-width: 650px;
}

.cta-copy h2 {
  margin:
    16px 0 18px;

  font-size:
    clamp(40px, 4.2vw, 62px);

  line-height: 1.02;

  letter-spacing:
    -0.04em;
}

.cta-copy p {
  max-width: 560px;

  color:
    rgba(202, 212, 219, 0.78);

  font-size:
    clamp(13px, 0.95vw, 14px);

  line-height: 1.8;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background:
    linear-gradient(
      180deg,
      #04111b,
      #020910
    );
}

.footer-main {
  padding:
    74px 0 62px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(0, 0.8fr)
    minmax(0, 0.8fr)
    minmax(0, 0.75fr)
    minmax(0, 1.35fr);

  gap:
    clamp(30px, 4vw, 52px);
}

.footer-logo {
  display: inline-block;

  margin-bottom: 22px;
}

.footer-logo img {
  width: 194px;
}

.footer-brand p {
  max-width: 260px;

  color:
    rgba(157, 170, 179, 0.72);

  font-size: 12px;

  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3,
.footer-connect h3 {
  margin-bottom: 20px;

  color:
    rgba(255, 255, 255, 0.96);

  font-size: 9px;

  letter-spacing:
    0.16em;
}

.footer-column a {
  margin-bottom: 12px;

  color:
    rgba(163, 176, 185, 0.72);

  font-size: 11px;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--lime);

  transform:
    translateX(2px);
}

.footer-connect p {
  max-width: 275px;

  margin-bottom: 16px;

  color:
    rgba(157, 170, 179, 0.72);

  font-size: 11px;

  line-height: 1.7;
}

.footer-social-pills {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 20px;
}

.footer-social-pills a {
  min-height: 35px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 12px;

  color:
    rgba(199, 210, 217, 0.78);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.015)
    );

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 999px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);

  font-size: 9px;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.footer-social-pills a:hover {
  color:
    var(--lime-bright);

  border-color:
    rgba(183, 229, 29, 0.24);

  background:
    rgba(183, 229, 29, 0.04);

  transform:
    translateY(-1px);
}

.footer-partner-cta {
  min-height: 43px;

  font-size: 10px;
}

.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-content {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-content p,
.footer-legal a,
.footer-legal span {
  color:
    rgba(121, 137, 147, 0.72);

  font-size: 10px;
}

.footer-legal {
  display: flex;
  align-items: center;

  gap: 11px;
}


/* =========================================================
   INTERNAL PAGES
========================================================= */

.page-hero {
  position: relative;

  min-height: 72vh;

  display: flex;
  align-items: center;

  padding:
    150px 0 100px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 42%,
      rgba(183, 229, 29, 0.07),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #020a12,
      #071827
    );
}

.page-hero::after {
  content: "";

  position: absolute;

  inset:
    auto 0 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent
    );
}

.page-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(0, 0.98fr);

  gap:
    clamp(58px, 7vw, 100px);

  align-items: center;
}

.page-hero h1 {
  margin:
    18px 0 24px;

  max-width: 760px;

  font-size:
    clamp(46px, 5vw, 76px);

  line-height: 0.98;

  letter-spacing:
    -0.045em;
}

.page-hero p {
  max-width: 690px;

  color:
    rgba(190, 203, 211, 0.78);

  font-size:
    clamp(14px, 1vw, 15px);

  line-height: 1.82;
}

.page-hero-image {
  position: relative;

  height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-image::before {
  content: "";

  position: absolute;

  width: 72%;

  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(183, 229, 29, 0.07),
      transparent 65%
    );

  filter:
    blur(15px);
}

.page-hero-image img {
  position: relative;

  z-index: 2;

  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 0 24px
      rgba(183, 229, 29, 0.06)
    );
}

.page-section {
  padding:
    var(--section-space) 0;

  color:
    var(--text-dark);

  background:
    #f7f8f8;
}

.page-section-dark {
  padding:
    var(--section-space) 0;

  background:
    #03101b;
}

.page-section h2,
.page-section-dark h2 {
  margin:
    16px 0 20px;

  font-size:
    clamp(34px, 3.6vw, 50px);

  line-height: 1.05;

  letter-spacing:
    -0.035em;
}

.page-section p {
  color: #6d7780;

  font-size:
    clamp(13px, 0.95vw, 14px);

  line-height: 1.82;
}

.page-section-dark p {
  color:
    rgba(174, 188, 197, 0.76);

  font-size:
    clamp(13px, 0.95vw, 14px);

  line-height: 1.82;
}

.info-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;

  margin-top: 42px;
}

.info-card {
  min-height: 205px;

  padding:
    32px 30px;

  background:
    rgba(255, 255, 255, 0.85);

  border:
    1px solid rgba(7, 19, 33, 0.08);

  border-radius: 18px;

  box-shadow:
    0 10px 30px
    rgba(5, 20, 33, 0.03);

  transition:
    transform 0.32s var(--ease-premium),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.info-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0 22px 44px
    rgba(5, 20, 33, 0.08);

  border-color:
    rgba(112, 168, 19, 0.22);
}

.info-card h3 {
  margin-bottom: 13px;

  font-size:
    clamp(14px, 1.1vw, 16px);

  letter-spacing:
    -0.02em;
}

.info-card p {
  color: #707a82;

  font-size:
    clamp(11.5px, 0.9vw, 12.5px);

  line-height: 1.76;
}

.content-narrow {
  max-width: 860px;
}


/* =========================================================
   LIQUID GLASS REGION SWITCHER
========================================================= */

.region-switcher {
  padding:
    72px 0;

  background:
    linear-gradient(
      180deg,
      #020b14,
      #03111c
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.065);
}

.region-switcher-header {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 28px;
}

.region-switcher-header h2 {
  margin-top: 10px;

  font-size:
    clamp(27px, 3vw, 40px);

  letter-spacing:
    -0.03em;
}

.region-switcher-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}

.region-switcher-card {
  position: relative;

  min-height: 110px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  padding: 24px;

  color: #edf2f4;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.018)
    );

  border:
    1px solid rgba(255, 255, 255, 0.10);

  border-radius: 18px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 16px 38px rgba(0, 0, 0, 0.10);

  backdrop-filter:
    blur(18px)
    saturate(130%);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(130%);

  overflow: hidden;

  transition:
    transform 0.3s var(--ease-premium),
    border-color 0.3s ease,
    background 0.3s ease;
}

.region-switcher-card::before {
  content: "";

  position: absolute;

  inset: 0;

  opacity: 0;

  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      rgba(183, 229, 29, 0.09),
      transparent 58%
    );

  transition:
    opacity 0.3s ease;
}

.region-switcher-card > * {
  position: relative;

  z-index: 2;
}

.region-switcher-card small {
  display: block;

  margin-bottom: 6px;

  color: var(--lime);

  font-size: 8px;

  letter-spacing:
    0.12em;
}

.region-switcher-card strong {
  font-size:
    clamp(12px, 0.95vw, 14px);

  letter-spacing:
    -0.01em;
}

.region-switcher-card:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(183, 229, 29, 0.30);
}

.region-switcher-card:hover::before {
  opacity: 1;
}

.region-switcher-card.current {
  background:
    linear-gradient(
      145deg,
      rgba(183, 229, 29, 0.10),
      rgba(255, 255, 255, 0.025)
    );

  border-color:
    rgba(183, 229, 29, 0.28);
}


/* =========================================================
   LIQUID GLASS FLOATING CONTACT DOCK
========================================================= */

.floating-contact-dock {
  position: fixed;

  right: 24px;
  bottom: 26px;

  z-index: 850;

  display: flex;
  flex-direction: column;

  gap: 12px;

  opacity: 1;

  transform:
    translateY(0)
    scale(1);

  transition:
    opacity 0.32s ease,
    transform 0.32s var(--ease-premium);

  animation:
    floatingDockIntro
    0.7s
    var(--ease-premium)
    0.65s
    backwards;

  will-change:
    opacity,
    transform;
}

/*
   IMPORTANT:
   this must remain compatible with the
   working scroll hide/show JavaScript.
*/

.floating-contact-dock.is-hidden {
  opacity: 0;

  transform:
    translateY(90px)
    scale(0.9);

  pointer-events: none;
}

.floating-contact {
  position: relative;

  width: 56px;
  height: 56px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  color: #ffffff;

  border-radius: 50%;

  backdrop-filter:
    blur(26px)
    saturate(165%);

  -webkit-backdrop-filter:
    blur(26px)
    saturate(165%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    0 14px 34px rgba(0, 0, 0, 0.20);

  overflow: visible;

  isolation: isolate;

  transition:
    transform 0.28s var(--ease-premium),
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.floating-contact > svg {
  display: none;
}

.floating-contact::before {
  content: "";

  position: relative;

  z-index: 2;

  display: block;

  width: 25px;
  height: 25px;

  background-color:
    currentColor;

  -webkit-mask-repeat:
    no-repeat;

  mask-repeat:
    no-repeat;

  -webkit-mask-position:
    center;

  mask-position:
    center;

  -webkit-mask-size:
    contain;

  mask-size:
    contain;

  transition:
    transform 0.28s var(--ease-premium),
    opacity 0.28s ease;
}


/* TELEGRAM ICON */

.floating-contact-telegram::before,
.floating-contact-channel::before {
  width: 26px;
  height: 26px;

  -webkit-mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M21.54 3.37a1.5 1.5 0 0 0-1.55-.16L2.95 10.45c-1.28.54-1.24 2.37.07 2.85l4.15 1.52 1.61 5.01c.4 1.24 2.01 1.55 2.84.54l2.36-2.87 4.29 3.15c.98.72 2.38.18 2.62-1.01l2.56-14.59a1.5 1.5 0 0 0-.91-1.68ZM9.12 14.02l8.73-6.17-7.16 7.38-.53 3.04-1.04-4.25Z'/%3E%3C/svg%3E");

  mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M21.54 3.37a1.5 1.5 0 0 0-1.55-.16L2.95 10.45c-1.28.54-1.24 2.37.07 2.85l4.15 1.52 1.61 5.01c.4 1.24 2.01 1.55 2.84.54l2.36-2.87 4.29 3.15c.98.72 2.38.18 2.62-1.01l2.56-14.59a1.5 1.5 0 0 0-.91-1.68ZM9.12 14.02l8.73-6.17-7.16 7.38-.53 3.04-1.04-4.25Z'/%3E%3C/svg%3E");
}


/* WHATSAPP ICON */

.floating-contact-whatsapp::before {
  width: 27px;
  height: 27px;

  -webkit-mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12.04 2C6.53 2 2.05 6.46 2.05 11.95c0 1.76.46 3.47 1.34 4.97L2 22l5.22-1.37a10.08 10.08 0 0 0 4.82 1.23h.01c5.5 0 9.98-4.46 9.98-9.95C22.03 6.43 17.55 2 12.04 2Zm4.56 11.99c-.25-.12-1.48-.73-1.71-.81-.23-.08-.4-.12-.57.12-.17.25-.65.81-.8.98-.15.16-.29.18-.54.06-.25-.12-1.05-.39-2-1.23-.74-.66-1.24-1.47-1.39-1.72-.15-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.15.16-.25.25-.42.08-.16.04-.31-.02-.43-.06-.12-.57-1.37-.78-1.88-.2-.49-.41-.43-.57-.44h-.48c-.17 0-.44.06-.67.31-.23.25-.88.86-.88 2.09s.9 2.42 1.02 2.58c.12.16 1.77 2.69 4.28 3.77.6.26 1.06.41 1.43.52.6.19 1.14.16 1.57.1.48-.07 1.48-.6 1.69-1.18.21-.58.21-1.08.15-1.18-.06-.1-.23-.16-.48-.28Z'/%3E%3C/svg%3E");

  mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12.04 2C6.53 2 2.05 6.46 2.05 11.95c0 1.76.46 3.47 1.34 4.97L2 22l5.22-1.37a10.08 10.08 0 0 0 4.82 1.23h.01c5.5 0 9.98-4.46 9.98-9.95C22.03 6.43 17.55 2 12.04 2Zm4.56 11.99c-.25-.12-1.48-.73-1.71-.81-.23-.08-.4-.12-.57.12-.17.25-.65.81-.8.98-.15.16-.29.18-.54.06-.25-.12-1.05-.39-2-1.23-.74-.66-1.24-1.47-1.39-1.72-.15-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.15.16-.25.25-.42.08-.16.04-.31-.02-.43-.06-.12-.57-1.37-.78-1.88-.2-.49-.41-.43-.57-.44h-.48c-.17 0-.44.06-.67.31-.23.25-.88.86-.88 2.09s.9 2.42 1.02 2.58c.12.16 1.77 2.69 4.28 3.77.6.26 1.06.41 1.43.52.6.19 1.14.16 1.57.1.48-.07 1.48-.6 1.69-1.18.21-.58.21-1.08.15-1.18-.06-.1-.23-.16-.48-.28Z'/%3E%3C/svg%3E");
}


/* INSTAGRAM ICON */

.floating-contact-instagram::before {
  width: 26px;
  height: 26px;

  -webkit-mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7.2 2h9.6A5.2 5.2 0 0 1 22 7.2v9.6a5.2 5.2 0 0 1-5.2 5.2H7.2A5.2 5.2 0 0 1 2 16.8V7.2A5.2 5.2 0 0 1 7.2 2Zm0 1.8a3.4 3.4 0 0 0-3.4 3.4v9.6a3.4 3.4 0 0 0 3.4 3.4h9.6a3.4 3.4 0 0 0 3.4-3.4V7.2a3.4 3.4 0 0 0-3.4-3.4H7.2ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.8a3.2 3.2 0 1 0 0 6.4 3.2 3.2 0 0 0 0-6.4Zm5.25-2.98a1.17 1.17 0 1 1 0 2.34 1.17 1.17 0 0 1 0-2.34Z'/%3E%3C/svg%3E");

  mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7.2 2h9.6A5.2 5.2 0 0 1 22 7.2v9.6a5.2 5.2 0 0 1-5.2 5.2H7.2A5.2 5.2 0 0 1 2 16.8V7.2A5.2 5.2 0 0 1 7.2 2Zm0 1.8a3.4 3.4 0 0 0-3.4 3.4v9.6a3.4 3.4 0 0 0 3.4 3.4h9.6a3.4 3.4 0 0 0 3.4-3.4V7.2a3.4 3.4 0 0 0-3.4-3.4H7.2ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.8a3.2 3.2 0 1 0 0 6.4 3.2 3.2 0 0 0 0-6.4Zm5.25-2.98a1.17 1.17 0 1 1 0 2.34 1.17 1.17 0 0 1 0-2.34Z'/%3E%3C/svg%3E");
}


/* PLATFORM GLASS */

.floating-contact-telegram {
  color: #75cff5;

  background:
    linear-gradient(
      145deg,
      rgba(64, 182, 237, 0.20),
      rgba(24, 102, 152, 0.08)
    );

  border:
    1px solid rgba(94, 201, 246, 0.42);
}

.floating-contact-channel {
  color: #9fddf6;

  background:
    linear-gradient(
      145deg,
      rgba(64, 182, 237, 0.14),
      rgba(24, 102, 152, 0.05)
    );

  border:
    1px solid rgba(94, 201, 246, 0.28);
}

.floating-contact-whatsapp {
  color: #57e88b;

  background:
    linear-gradient(
      145deg,
      rgba(37, 211, 102, 0.16),
      rgba(20, 116, 57, 0.05)
    );

  border:
    1px solid rgba(52, 225, 116, 0.34);
}

.floating-contact-instagram {
  color: #f193bd;

  background:
    linear-gradient(
      145deg,
      rgba(225, 48, 108, 0.15),
      rgba(131, 58, 180, 0.08)
    );

  border:
    1px solid rgba(232, 94, 154, 0.32);
}

.floating-contact::after {
  content: "";

  position: absolute;

  inset: 5px;

  z-index: 0;

  border:
    1px solid rgba(255, 255, 255, 0.06);

  border-radius: inherit;

  background:
    radial-gradient(
      circle at 30% 15%,
      rgba(255, 255, 255, 0.11),
      transparent 37%
    );

  pointer-events: none;

  transition:
    border-color 0.28s ease,
    background 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {

  .floating-contact:hover {
    transform:
      translateX(-4px)
      scale(1.055);
  }

  .floating-contact:hover::before {
    transform:
      scale(1.08);
  }

  .floating-contact:hover::after {
    border-color:
      rgba(255, 255, 255, 0.11);

    background:
      radial-gradient(
        circle at 30% 15%,
        rgba(255, 255, 255, 0.18),
        transparent 38%
      );
  }

  .floating-contact-telegram:hover,
  .floating-contact-channel:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 17px 38px rgba(0, 0, 0, 0.24),
      0 0 28px rgba(42, 177, 239, 0.14);
  }

  .floating-contact-whatsapp:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 17px 38px rgba(0, 0, 0, 0.22),
      0 0 27px rgba(37, 211, 102, 0.14);
  }

  .floating-contact-instagram:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 17px 38px rgba(0, 0, 0, 0.22),
      0 0 27px rgba(225, 72, 136, 0.14);
  }

}

.floating-tooltip {
  position: absolute;

  right:
    calc(100% + 12px);

  top: 50%;

  min-width: max-content;

  padding:
    8px 11px;

  opacity: 0;
  visibility: hidden;

  transform:
    translateY(-50%)
    translateX(7px);

  color: #edf3f6;

  background:
    linear-gradient(
      145deg,
      rgba(15, 34, 47, 0.86),
      rgba(3, 14, 24, 0.82)
    );

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 9px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 30px rgba(0, 0, 0, 0.24);

  backdrop-filter:
    blur(20px)
    saturate(140%);

  -webkit-backdrop-filter:
    blur(20px)
    saturate(140%);

  font-size: 10px;
  font-weight: 650;

  white-space: nowrap;

  pointer-events: none;

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.floating-contact:hover
.floating-tooltip,
.floating-contact:focus-visible
.floating-tooltip {
  opacity: 1;

  visibility: visible;

  transform:
    translateY(-50%)
    translateX(0);
}

.floating-mini-badge {
  position: absolute;

  top: -4px;
  right: -4px;

  z-index: 5;

  min-width: 21px;
  height: 21px;

  display: grid;
  place-items: center;

  padding: 0 4px;

  color: #061008;

  background:
    linear-gradient(
      180deg,
      #dcfa6e,
      var(--lime-bright)
    );

  border:
    2px solid #020b14;

  border-radius: 999px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 5px 12px rgba(0, 0, 0, 0.25);

  font-size: 6.5px;
  font-weight: 900;

  line-height: 1;

  letter-spacing:
    0.02em;
}

@keyframes floatingDockIntro {

  from {
    opacity: 0;

    transform:
      translateY(28px)
      scale(0.92);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


/* =========================================================
   LIQUID GLASS PARTNER MODAL
========================================================= */

.partner-modal {
  position: fixed;

  inset: 0;

  z-index: 1000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 24px;
}

.partner-modal.is-open {
  display: flex;
}

.partner-modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(0, 5, 10, 0.66);

  backdrop-filter:
    blur(18px)
    saturate(115%);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(115%);
}

.partner-modal-panel {
  position: relative;

  z-index: 2;

  width:
    min(760px, 100%);

  max-height:
    calc(100vh - 48px);

  padding: 40px;

  overflow-y: auto;

  background:
    linear-gradient(
      145deg,
      rgba(15, 38, 54, 0.82),
      rgba(3, 14, 24, 0.88)
    );

  border:
    1px solid rgba(255, 255, 255, 0.13);

  border-radius: 26px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025),
    0 42px 110px rgba(0, 0, 0, 0.48);

  backdrop-filter:
    blur(36px)
    saturate(165%);

  -webkit-backdrop-filter:
    blur(36px)
    saturate(165%);

  overscroll-behavior: contain;
}

.partner-modal-panel::before {
  content: "";

  position: absolute;

  top: 0;
  left: 8%;
  right: 8%;

  height: 1px;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.24),
      transparent
    );
}

.partner-modal-close {
  position: absolute;

  top: 18px;
  right: 20px;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.025)
    );

  border:
    1px solid rgba(255, 255, 255, 0.10);

  border-radius: 50%;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);

  font-size: 23px;
}

.partner-modal-label {
  color: var(--lime);

  font-size: 9px;
  font-weight: 800;

  letter-spacing:
    0.15em;
}

.partner-modal-header h2 {
  margin:
    12px 0 13px;

  font-size:
    clamp(30px, 4vw, 42px);

  letter-spacing:
    -0.03em;
}

.partner-modal-header p {
  max-width: 600px;

  margin-bottom: 30px;

  color:
    rgba(185, 198, 206, 0.78);

  font-size: 12.5px;

  line-height: 1.72;
}


/* =========================================================
   FORM
========================================================= */

.form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 19px;
}

.form-group-full {
  grid-column:
    1 / -1;
}

.form-group label,
.choice-group legend {
  display: block;

  margin-bottom: 9px;

  color: #dce4e9;

  font-size: 11px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    );

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 12px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045);

  outline: none;

  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.form-group input,
.form-group select {
  height: 49px;

  padding: 0 14px;
}

.form-group textarea {
  min-height: 120px;

  padding: 14px;

  resize: vertical;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color:
    rgba(255, 255, 255, 0.17);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:
    rgba(183, 229, 29, 0.52);

  background:
    rgba(255, 255, 255, 0.065);

  box-shadow:
    0 0 0 4px
    rgba(183, 229, 29, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-group select option {
  color: #111111;
}

.choice-group {
  border: 0;
}

.field-help {
  margin-bottom: 11px;

  color:
    rgba(151, 165, 175, 0.74);

  font-size: 10px;
}

.choice-options {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 9px;
}

.choice-options-three {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.choice-card {
  position: relative;
}

.choice-card input {
  position: absolute;

  opacity: 0;
}

.choice-card span {
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding:
    8px 12px;

  color: #cbd4da;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );

  border:
    1px solid rgba(255, 255, 255, 0.10);

  border-radius: 12px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045);

  text-align: center;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.choice-card:hover span {
  border-color:
    rgba(255, 255, 255, 0.17);
}

.choice-card input:focus-visible + span {
  outline:
    2px solid rgba(200, 242, 43, 0.95);

  outline-offset: 3px;
}

.choice-card
input:checked + span {
  color: #07110c;

  background:
    linear-gradient(
      180deg,
      #dcfa6e,
      var(--lime-bright)
    );

  border-color:
    var(--lime-bright);
}

.form-alert {
  margin-top: 19px;

  padding:
    13px 15px;

  color: #ffd6d6;

  background:
    rgba(255, 70, 70, 0.08);

  border:
    1px solid rgba(255, 90, 90, 0.18);

  border-radius: 12px;

  font-size: 11px;
}

.partner-form-footer {
  margin-top: 26px;

  padding-top: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(26px);

  transition:
    opacity 0.8s var(--ease-premium),
    transform 0.8s var(--ease-premium);
}

.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"]
.nav-links {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"]
.language-menu {
  right: auto;
  left: 0;

  transform-origin:
    top left;
}

html[dir="rtl"]
.language-menu button {
  text-align: right;
}

html[dir="rtl"]
.hero-v2-shade {
  background:
    radial-gradient(
      circle at 36% 44%,
      rgba(183, 229, 29, 0.035),
      transparent 28%
    ),
    linear-gradient(
      270deg,
      rgba(1, 8, 17, 1) 0%,
      rgba(1, 8, 17, 0.96) 31%,
      rgba(1, 8, 17, 0.62) 53%,
      rgba(1, 8, 17, 0.16) 79%
    );
}

html[dir="rtl"]
.hero-region-link {
  border-right: 0;

  border-left:
    1px solid rgba(255, 255, 255, 0.075);
}

html[dir="rtl"]
.mobile-nav-panel {
  right: auto;
  left: 12px;

  transform:
    translateX(-110%);
}

html[dir="rtl"]
.mobile-nav.is-open
.mobile-nav-panel {
  transform:
    translateX(0);
}

html[dir="rtl"]
.floating-contact-dock {
  right: auto;
  left: 24px;
}

html[dir="rtl"]
.floating-tooltip {
  right: auto;

  left:
    calc(100% + 12px);

  transform:
    translateY(-50%)
    translateX(-7px);
}

html[dir="rtl"]
.floating-contact:hover
.floating-tooltip,
html[dir="rtl"]
.floating-contact:focus-visible
.floating-tooltip {
  transform:
    translateY(-50%)
    translateX(0);
}

@media (hover: hover) and (pointer: fine) {

  html[dir="rtl"]
  .floating-contact:hover {
    transform:
      translateX(4px)
      scale(1.055);
  }

}


/* =========================================================
   LARGE SCREEN
========================================================= */

@media (min-width: 1400px) {

  .container {
    width:
      min(1400px, calc(100% - 96px));
  }

  .navbar {
    min-height: 78px;
  }

  .logo img {
    width: 218px;
  }

  .nav-links {
    gap: 32px;
  }

  .header-cta {
    min-width: 180px;
    min-height: 50px;
  }

  .hero-v2-content {
    padding-top: 145px;
    padding-bottom: 80px;
  }

  .hero-v2-copy {
    width:
      min(790px, 55vw);
  }

  .hero-v2-copy h1 {
    font-size:
      clamp(76px, 5.2vw, 96px);
  }

  .hero-v2-copy > p {
    max-width: 640px;

    font-size: 17px;
  }

  .hero-region-rail {
    max-width: 790px;
  }

  .hero-region-link {
    min-height: 112px;
  }

  .hero-trust-grid {
    min-height: 120px;
  }

  .floating-contact-dock {
    right: 34px;
    bottom: 34px;
  }

  html[dir="rtl"]
  .floating-contact-dock {
    right: auto;
    left: 34px;
  }

}


/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1220px) {

  .nav-links {
    gap: 20px;
  }

  .header-cta {
    min-width: 150px;

    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-v2-copy {
    width:
      min(700px, 60vw);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .desktop-language-selector {
    display: none;
  }

  .mobile-language-selector {
    display: block;
  }

  .solutions-layout,
  .markets-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .solutions-copy,
  .markets-copy {
    max-width: 650px;
  }

  .solutions-cards {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .page-hero-image {
    height: 390px;
  }

  .footer-main {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 900px) {

  .site-header {
    position: relative;

    background:
      linear-gradient(
        180deg,
        rgba(7, 23, 35, 0.88),
        rgba(2, 11, 20, 0.84)
      );

    backdrop-filter:
      blur(24px);

    -webkit-backdrop-filter:
      blur(24px);
  }

  .nav-links,
  .header-cta,
  .desktop-language-selector {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .mobile-language-selector {
    display: block;
  }

  .hero-v2 {
    min-height:
      calc(100svh - 72px);
  }

  .hero-v2-content {
    padding:
      74px 0 58px;
  }

  .hero-v2-copy {
    width: 100%;
    max-width: 720px;
  }

  .hero-region-rail {
    grid-template-columns: 1fr;

    max-width: 620px;
  }

  .hero-region-link {
    min-height: 78px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.075);
  }

  .hero-region-link:last-child {
    border-bottom: 0;
  }

  .hero-trust-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .markets-cards {
    grid-template-columns: 1fr;
  }

  .market-card {
    min-height: 0;
  }

  .partnership-title-row {
    grid-template-columns: 1fr;
  }

  .partnership-benefits {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .cta-content {
    padding:
      70px 0;

    flex-direction: column;

    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  :root {
    --section-space: 78px;
  }

  .container {
    width:
      calc(100% - 32px);
  }

  .navbar {
    min-height: 66px;
  }

  .logo img {
    width: 154px;
  }

  .hero-v2 {
    min-height:
      calc(100svh - 66px);
  }

  .hero-v2-background {
    opacity: 0.58;
  }

  .hero-v2-shade {
    background:
      linear-gradient(
        180deg,
        rgba(1, 8, 17, 0.76),
        rgba(1, 8, 17, 0.92) 38%,
        rgba(1, 8, 17, 0.99) 72%
      );
  }

  .hero-v2-content {
    padding:
      54px 0 46px;
  }

  .hero-v2-eyebrow {
    margin-bottom: 20px;

    font-size: 9px;

    letter-spacing:
      0.22em;
  }

  .hero-v2-copy h1 {
    margin-bottom: 22px;

    font-size:
      clamp(38px, 11.8vw, 56px);

    line-height: 0.96;

    letter-spacing:
      -0.04em;
  }

  .hero-v2-copy > p {
    margin-bottom: 28px;

    font-size: 13.5px;

    line-height: 1.72;
  }

  .hero-region-rail {
    margin-bottom: 24px;

    border-radius: 16px;
  }

  .hero-region-link {
    min-height: 78px;

    padding: 16px;
  }

  .hero-v2-actions {
    width: 100%;

    flex-direction: column;
  }

  .hero-v2-actions
  .primary-cta,
  .hero-v2-actions
  .secondary-cta {
    width: 100%;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-item,
  .hero-trust-item:first-child {
    padding:
      18px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.075);
  }

  .hero-trust-item:last-child {
    border-bottom: 0;
  }

  .solutions-cards,
  .partnership-benefits,
  .footer-main,
  .region-switcher-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 0;

    padding:
      28px 24px;
  }

  .market-image {
    height: 250px;
  }

  .partnership-benefits {
    border-radius: 16px;
  }

  .benefit-card {
    min-height: 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(7, 19, 33, 0.075);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: auto;

    padding:
      86px 0 72px;
  }

  .page-hero h1 {
    font-size:
      clamp(38px, 11.5vw, 56px);
  }

  .page-hero-image {
    height: 290px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: auto;
  }

  .choice-options,
  .choice-options-three {
    grid-template-columns: 1fr;
  }

  .partner-form-footer {
    flex-direction: column;

    align-items: stretch;
  }

  .partner-modal {
    padding: 10px;
  }

  .partner-modal-panel {
    width: 100%;

    max-height:
      calc(100svh - 20px);

    padding:
      34px 20px 24px;

    border-radius: 22px;
  }

  .footer-bottom-content {
    padding:
      20px 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }

  .floating-contact-dock {
    right: 14px;
    bottom: 18px;

    gap: 9px;
  }

  html[dir="rtl"]
  .floating-contact-dock {
    right: auto;
    left: 14px;
  }

  .floating-contact {
    width: 49px;
    height: 49px;
  }

  .floating-contact::before {
    width: 22px;
    height: 22px;
  }

  .floating-contact-telegram::before,
  .floating-contact-channel::before {
    width: 23px;
    height: 23px;
  }

  .floating-contact-whatsapp::before {
    width: 24px;
    height: 24px;
  }

  .floating-contact-instagram::before {
    width: 23px;
    height: 23px;
  }

  .floating-tooltip {
    display: none;
  }

  .floating-mini-badge {
    min-width: 19px;
    height: 19px;

    font-size: 6px;
  }

  .mobile-nav-panel {
    top: 8px;
    right: 8px;
    bottom: 8px;

    width:
      calc(100% - 16px);

    border-radius: 22px;
  }

  html[dir="rtl"]
  .mobile-nav-panel {
    left: 8px;
    right: auto;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

  .container {
    width:
      calc(100% - 24px);
  }

  .hero-v2-copy h1 {
    font-size:
      clamp(34px, 11.5vw, 46px);
  }

  .hero-region-link {
    grid-template-columns:
      auto minmax(0, 1fr) auto;

    gap: 10px;

    padding: 14px;
  }

  .primary-cta,
  .secondary-cta,
  .dark-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mobile-nav-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

  .market-image::before {
    display: none;
  }

  .solution-card:hover,
  .market-card:hover,
  .info-card:hover,
  .region-switcher-card:hover,
  .benefit-card:hover,
  .floating-contact:hover {
    transform: none;
  }

  .floating-contact:hover::before {
    transform: none;
  }

  .primary-cta:hover,
  .secondary-cta:hover,
  .dark-cta:hover {
    transform: none;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }

  .floating-contact-dock {
    animation: none;
  }

}


/* =========================================================
   BACKDROP FILTER FALLBACK
========================================================= */

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {

  .site-header,
  .language-menu,
  .hero-region-rail,
  .hero-trust-strip,
  .mobile-nav-panel,
  .partner-modal-panel {
    background:
      rgba(4, 17, 28, 0.96);
  }

  .floating-contact {
    background-color:
      rgba(8, 25, 38, 0.95);
  }

}


/* =========================================================
   FORCED COLORS
========================================================= */

@media (forced-colors: active) {

  .primary-cta,
  .secondary-cta,
  .dark-cta,
  .floating-contact,
  .solution-card,
  .market-card,
  .info-card,
  .region-switcher-card {
    forced-color-adjust: auto;
  }

}/* =========================================================
   SUPERVISOR-APPROVED REGIONAL MARKET LISTS
========================================================= */

.regional-market-list {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  max-width: 900px;

  margin:
    30px 0 26px;
}

.regional-market-list span {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding:
    0 17px;

  color: #17222b;

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid rgba(7, 19, 33, 0.09);

  border-radius: 999px;

  box-shadow:
    0 8px 24px
    rgba(5, 20, 33, 0.035);

  font-size:
    clamp(11px, 0.9vw, 12px);

  font-weight: 700;

  transition:
    transform 0.25s var(--ease-premium),
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.regional-market-list span::before {
  content: "";

  width: 6px;
  height: 6px;

  margin-right: 9px;

  flex: 0 0 auto;

  background:
    var(--lime);

  border-radius: 50%;

  box-shadow:
    0 0 0 4px
    rgba(183, 229, 29, 0.10);
}

.regional-market-list span:hover {
  transform:
    translateY(-2px);

  background:
    #ffffff;

  border-color:
    rgba(112, 168, 19, 0.26);

  box-shadow:
    0 12px 28px
    rgba(5, 20, 33, 0.06);
}

.regional-market-closing {
  max-width: 840px;

  margin-bottom: 42px;
}

html[dir="rtl"]
.regional-market-list span::before {
  margin-right: 0;

  margin-left: 9px;
}

@media (max-width: 600px) {

  .regional-market-list {
    gap: 8px;

    margin:
      24px 0;
  }

  .regional-market-list span {
    min-height: 39px;

    padding:
      0 14px;
  }

  .regional-market-closing {
    margin-bottom: 34px;
  }

}