/* ============================================================
   KOYN — Fully Responsive Styles
   ============================================================ */

/* ============ FONT IMPORTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'SF Pro Display';
  src: local('SF Pro Display'), local('SFProDisplay-Regular');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: local('SF Pro Text'), local('SFProText-Regular');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #14123a;
  --navy-900: #1a1840;
  --navy-800: #221f52;
  --navy-700: #2b2766;
  --ink-900: #12112b;
  --ink-700: #3d3f5c;
  --ink-500: #6b6f8d;
  --gray-600: #6b7280;
  --gray-400: #9aa1b5;
  --gray-200: #e6e8f0;
  --gray-100: #eef0f7;
  --gray-50: #f7f8fc;
  --blue-600: #2f5bed;
  --blue-500: #3d6bff;
  --blue-100: #e8edff;
  --white: #ffffff;

  --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-fallback: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 2px rgba(20, 18, 58, .04), 0 8px 24px rgba(20, 18, 58, .06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body), var(--font-fallback);
  font-weight: 400;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), var(--font-fallback);
  font-weight: 700;
  color: var(--ink-900);
  margin: 0;
  letter-spacing: -0.01em;
}

p, li, span {
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   GLOBAL UTILITY CLASSES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 10px;
  border: none;
  padding: 20px 45px;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
  white-space: nowrap;
  font-family: var(--font-body), var(--font-fallback);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy-950);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-900);
}

.btn-blue {
  background: var(--blue-600);
  color: #fff;
}

.btn-blue:hover {
  background: var(--blue-500);
}

.btn-text {
  background: transparent;
  color: #000000;
  padding: 13px 4px;
  font-weight: 400;
  gap: 20px;
}

.btn-text-on-dark {
  background: transparent;
  color: #fff;
  padding: 13px 4px;
  font-weight: 400;
  gap: 20px;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.eyebrow {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0048FF;
  margin: 0 0 12px;
  display: block;
}

/* ============================================================
   NAVIGATION — COMPLETE
   ============================================================ */

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 2000;
  width: 100%;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-container {
  position: relative;

  width: 100%;
  max-width: 1451px;
  height: 140px;

  margin: 0 auto;
  padding: 16px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ============================================================
   LOGO
   ============================================================ */

.nav-logo {
  display: flex;
  align-items: center;

  flex-shrink: 0;

  text-decoration: none;
}

.nav-logo-img {
  display: block;

  width: 166px;
  height: 51px;

  object-fit: contain;

  flex-shrink: 0;
}


/* ============================================================
   MAIN NAVIGATION
   ============================================================ */

.nav-links {
  display: flex;
  align-items: center;

  gap: 50px;
}

.nav-item {
  position: relative;
}


/* ============================================================
   NAVIGATION LINK
   ============================================================ */

.nav-link {
  position: relative;

  display: flex;
  align-items: center;

  gap: 5px;

  padding: 26px 0;

  border: 0;
  outline: 0;

  background: transparent;

  font-family: var(--font-body), var(--font-fallback);
  font-size: 16px;
  font-weight: 400;

  line-height: 1;

  color: #000000;

  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;

  transition: color 0.25s ease;
}

.nav-link-chevron {
  width: 13px;
  height: 13px;

  flex-shrink: 0;

  transition: transform 0.25s ease;
}

.nav-item.open > .nav-link .nav-link-chevron {
  transform: rotate(180deg);
}

.nav-item.open > .nav-link,
.nav-link-active {
  color: var(--blue-600, #0048ff);
}


/* ============================================================
   NAV LINK UNDERLINE
   ============================================================ */

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 20px;

  width: 0;
  height: 2px;

  background: #161342;

  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  width: 100%;
}


/* ============================================================
   RIGHT CONTROLS
   ============================================================ */

.nav-right-controls {
  display: flex;
  align-items: center;

  gap: 30px;

  flex-shrink: 0;
}


/* ============================================================
   GET STARTED BUTTON
   ============================================================ */

.nav-right-controls .btn-primary {
  width: 146px;
  height: 51px;

  padding: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  border: none;
  border-radius: 7px;

  background: #14123a;

  color: #ffffff;

  font-family: var(--font-body), var(--font-fallback);
  font-size: 16px;
  font-weight: 600;

  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;

  flex-shrink: 0;

  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.nav-right-controls .btn-primary:hover {
  background: #0048ff;

  transform: translateY(-2px);

  box-shadow: 0 8px 25px rgba(0, 72, 255, 0.3);
}

.nav-right-controls .btn-primary svg {
  width: 16px;
  height: 16px;

  flex-shrink: 0;
}


/* ============================================================
   LOCALE / COUNTRY
   ============================================================ */

.nav-locale-wrapper {
  position: relative;
}

.nav-locale {
  display: flex;
  align-items: center;

  gap: 6px;

  padding: 8px 4px;

  border: none;

  background: transparent;

  font-family: var(--font-body), var(--font-fallback);
  font-size: 16px;
  font-weight: 400;

  color: #000000;

  white-space: nowrap;

  cursor: pointer;
}

.flag-icon,
.nav-locale-flag,
.locale-flag {
  width: 20px;
  height: 14px;

  object-fit: cover;

  border-radius: 2px;

  flex-shrink: 0;
}

.nav-locale-chevron {
  width: 12px;
  height: 12px;

  flex-shrink: 0;

  transition: transform 0.25s ease;
}

.nav-locale-wrapper.open .nav-locale-chevron {
  transform: rotate(180deg);
}


/* ============================================================
   LOCALE DROPDOWN
   ============================================================ */

.locale-dropdown {
  position: absolute;

  top: calc(100% + 10px);
  right: 0;

  width: 210px;

  padding: 8px;

  background: #ffffff;

  border: 1px solid #e8e8ee;
  border-radius: 10px;

  box-shadow: 0 16px 35px rgba(20, 18, 58, 0.12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(8px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;

  z-index: 2100;
}

.nav-locale-wrapper.open .locale-dropdown,
.locale-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

.locale-dropdown-item {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 10px;

  border-radius: 7px;

  font-family: var(--font-body), var(--font-fallback);
  font-size: 14px;

  color: #111111;

  cursor: pointer;

  transition: background 0.2s ease;
}

.locale-dropdown-item:hover,
.locale-dropdown-item.active {
  background: #f5f5ff;
}


/* ============================================================
   MOBILE TOGGLE
   ============================================================ */

.nav-mobile-toggle {
  display: none;

  padding: 6px;

  border: none;

  background: transparent;

  color: #111111;

  cursor: pointer;

  flex-shrink: 0;
}

.nav-mobile-toggle svg {
  display: block;

  width: 24px;
  height: 24px;
}


/* ============================================================
   GENERAL DROPDOWN
   ============================================================ */

.nav-dropdown {
  position: absolute;

  top: 100%;
  left: 0;

  width: 430px;
  min-width: 430px;

  padding: 14px 12px;

  background: #ffffff;

  border: 1px solid #e4e4e8;
  border-radius: 14px;

  box-shadow:
    0 20px 50px rgba(20, 18, 58, 0.12),
    0 4px 12px rgba(20, 18, 58, 0.05);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(8px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease,
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  z-index: 2050;
}

.nav-item.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}


/* ============================================================
   DROPDOWN HEADING
   ============================================================ */

.nav-dropdown-heading {
  padding: 3px 12px 10px;

  font-family: var(--font-body), var(--font-fallback);
  font-size: 12px;
  font-weight: 400;

  line-height: 1.3;

  color: #777777;

  text-transform: none;
  letter-spacing: 0;
}


/* ============================================================
   PRODUCTS DROPDOWN
   ============================================================ */

/*
   CLOSED DESKTOP STATE:

   ┌────────────────────────────┐
   │ All Products               │
   │ Product                  > │
   │ Product                  > │
   └────────────────────────────┘
*/

#dd-products > .nav-dropdown {
  width: 395px !important;
  min-width: 395px !important;
  overflow: hidden;
  transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

#dd-products > .nav-dropdown.has-active-submenu {
  width: 678px !important;
  min-width: 678px !important;
}


/* ============================================================
   PRODUCT ITEM
   ============================================================ */

.nav-dropdown-item {
  /*
     This is intentionally static on desktop.

     It allows every .nav-sub-dropdown to position itself
     relative to the complete .nav-dropdown instead of the
     individual product row.
  */
  position: static;
}


/* ============================================================
   PRODUCT / INDUSTRY ROW
   ============================================================ */

.nav-dropdown-row {
  width: 342px !important;
  max-width: 342px !important;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-row:hover,
.nav-dropdown-item.open > .nav-dropdown-row {
  background: #f6f6ff;
}


/* ============================================================
   DROPDOWN ICON
   ============================================================ */

.nav-dropdown-icon {
  width: 56px;
  height: 56px;

  flex: 0 0 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #eeeeff;

  overflow: hidden;
}

.nav-dropdown-icon img {
  display: block;

  width: 32px !important;
  height: 32px !important;

  object-fit: contain;
}

.nav-dropdown-icon svg {
  display: block;

  width: 30px;
  height: 30px;
}


/* ============================================================
   DROPDOWN TEXT
   ============================================================ */

.nav-dropdown-text {
  flex: 1;

  min-width: 0;
}

.nav-dropdown-text strong {
  display: block;

  margin: 0 0 4px;

  font-family: var(--font-body), var(--font-fallback);
  font-size: 14px;
  font-weight: 700;

  line-height: 1.2;

  color: #111111;
}

.nav-dropdown-text span {
  display: block;

  font-family: var(--font-body), var(--font-fallback);
  font-size: 10px;
  font-weight: 400;

  line-height: 1.35;

  color: #929292;
}


/* ============================================================
   PRODUCT ARROW
   ============================================================ */

.nav-dropdown-arrow {
  width: 17px;
  height: 17px;

  margin-left: auto;

  flex-shrink: 0;

  color: #111111;

  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s ease;
}

.nav-dropdown-item.open > .nav-dropdown-row .nav-dropdown-arrow {
  color: #0048ff;
}


/* ============================================================
   DESKTOP SUBCATEGORY PANEL
   ============================================================ */

/*
   The important part:

   It is NOT a separate floating white popup.

   It sits inside the expanded Products dropdown.
*/

.nav-sub-dropdown {
  position: absolute;
  top: 14px;
  left: 55%;
  width: 293.67px !important;
  min-width: 293.67px !important;
  padding: 0 0 10px 20px;
  background: transparent;
  border: none;
  border-left: 2px solid #D3D3D3;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-18px);
  transition: opacity 0.2s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s ease;
  z-index: 10;
  /* Add height to match subcategory content */
  min-height: 450px;
  height: auto;
}

/*
   Only selected/hovered item's submenu appears.
*/

.nav-dropdown-item.open > .nav-sub-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(0);
}


/* ============================================================
   SUBCATEGORY HEADING
   ============================================================ */

.nav-sub-dropdown > .nav-dropdown-heading {
  padding: 3px 10px 10px;
}


/* ============================================================
   SUBCATEGORY ROW
   ============================================================ */

.nav-sub-dropdown-row {
  width: 100%;
  min-height: 70px;

  display: flex;
  align-items: center;

  gap: 16px;

  padding: 8px 10px;

  border-radius: 10px;

  color: inherit;
  text-decoration: none;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.nav-sub-dropdown-row:hover {
  background: #f6f6ff;

  transform: translateX(3px);
}


/* ============================================================
   INDUSTRIES DROPDOWN
   ============================================================ */

/*
   Industries stays as a normal one-column dropdown.
*/

#dd-industries > .nav-dropdown {
  width: 420px;
  min-width: 420px;

  overflow: visible;
}

#dd-industries .nav-dropdown-row {
  width: 100%;
}


/* ============================================================
   DESKTOP
   ============================================================ */

@media (min-width: 1025px) {

  #dd-products > .nav-dropdown {
    max-width: calc(100vw - 40px);
  }

}


/* ============================================================
   TABLET + MOBILE - FIXED WITH !important
   <= 1024px

   Products become an accordion:

   Card Processing          ↓

   After tap:

   Card Processing          ↑
       Pay In
       Pay Out
       Pay By Link
   ============================================================ */

@media (max-width: 1024px) {

  /* ==========================================================
     NAVBAR
     ========================================================== */

  .nav-container {
    height: 80px;

    padding: 16px 24px;
  }


  /* ==========================================================
     LOGO
     ========================================================== */

  .nav-logo-img {
    width: 135px;
    height: auto;
  }


  /* ==========================================================
     MOBILE MAIN NAV
     ========================================================== */

  .nav-links {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    width: 100%;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 4px;

    padding: 14px 24px 24px;

    background: #ffffff;

    box-shadow: 0 20px 40px rgba(20, 18, 58, 0.12);

    z-index: 2000;

    max-height: calc(100vh - 80px);

    overflow-y: auto;
    overflow-x: hidden;

    overscroll-behavior: contain;

    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    display: flex;
  }


  .nav-item {
    width: 100%;
  }


  /* ==========================================================
     MAIN NAV LINK
     ========================================================== */

  .nav-link {
    width: 100%;

    justify-content: space-between;

    padding: 11px 0;

    font-size: 15px;
  }

  .nav-link::after {
    bottom: 5px;
  }


  /* ==========================================================
     RIGHT CONTROLS
     ========================================================== */

  .nav-right-controls {
    gap: 16px;
  }


  .nav-locale .country-name {
    display: none;
  }


  /* ==========================================================
     GET STARTED
     ========================================================== */

  .nav-right-controls .btn-primary {
    width: 120px;
    height: 44px;

    padding: 8px;

    border-radius: 6px;

    font-size: 14px;
  }

  .nav-right-controls .btn-primary svg {
    width: 14px;
    height: 14px;
  }


  /* ==========================================================
     HAMBURGER
     ========================================================== */

  .nav-mobile-toggle {
    display: block;
  }


  /* ==========================================================
     MAIN DROPDOWNS - MOBILE OVERRIDES
     ========================================================== */

  .nav-dropdown,
  #dd-products > .nav-dropdown,
  #dd-products > .nav-dropdown.has-active-submenu,
  #dd-industries > .nav-dropdown {

    position: static !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    padding: 0 6px !important;

    background: #ffffff !important;

    border: none !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform: none !important;

    max-height: 0 !important;

    overflow: hidden !important;

    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s ease,
      padding 0.3s ease,
      visibility 0.3s ease;
  }


  .nav-item.open > .nav-dropdown,
  #dd-products.nav-item.open > .nav-dropdown,
  #dd-industries.nav-item.open > .nav-dropdown {

    max-height: 2500px !important;

    padding-top: 8px !important;
    padding-bottom: 12px !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }


  /* ==========================================================
     DROPDOWN HEADING
     ========================================================== */

  .nav-dropdown-heading {
    padding: 4px 8px 8px;

    font-size: 11px;
  }


  /* ==========================================================
     PRODUCT ITEM
     ========================================================== */

  .nav-dropdown-item {
    position: relative !important;

    width: 100%;
  }


  /* ==========================================================
     PRODUCT ROW
     ========================================================== */

  .nav-dropdown-row,
  #dd-industries .nav-dropdown-row {

    width: 100% !important;
    max-width: 100% !important;
    min-height: 60px !important;

    padding: 8px !important;

    gap: 12px;

    border-radius: 9px !important;
  }


  /*
     Don't depend on hover on touch layouts.
  */

  .nav-dropdown-row:hover {
    background: transparent;
  }

  .nav-dropdown-item.open > .nav-dropdown-row {
    background: #f6f6ff !important;
    border-radius: 9px !important;
  }


  /* ==========================================================
     MOBILE ICON
     ========================================================== */

  .nav-dropdown-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 8px;
  }

  .nav-dropdown-icon img {
    width: 27px !important;
    height: 27px !important;
  }


  /* ==========================================================
     MOBILE TEXT
     ========================================================== */

  .nav-dropdown-text strong {
    margin-bottom: 3px;

    font-size: 14px;
  }

  .nav-dropdown-text span {
    font-size: 11.5px;

    line-height: 1.3;
  }


  /* ==========================================================
     MOBILE ARROW - FIXED WITH !important
     ========================================================== */

  .nav-dropdown-arrow {
    width: 16px;
    height: 16px;

    transform: rotate(90deg) !important;

    transition:
      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      color 0.2s ease;
  }

  .nav-dropdown-item.open >
  .nav-dropdown-row
  .nav-dropdown-arrow {

    transform: rotate(-90deg) !important;

    color: #0048ff !important;
  }


  /* ==========================================================
     MOBILE SUBCATEGORY ACCORDION - OVERRIDE DESKTOP STYLES
     ========================================================== */

  .nav-sub-dropdown {

    position: static !important;

    top: auto !important;
    left: auto !important;

    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 8px 0 20px !important;

    background: #fafaff !important;

    border: none !important;
    border-left: none !important;
    border-radius: 0 0 9px 9px !important;

    box-shadow: none !important;

    max-height: 0 !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    overflow: hidden !important;

    transform: translateY(-6px) !important;

    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s ease,
      transform 0.3s ease,
      padding 0.3s ease,
      visibility 0.3s ease;
  }


  /* OPEN - Subcategories */
  .nav-dropdown-item.open > .nav-sub-dropdown {

    max-height: 800px !important;

    padding: 6px 8px 10px 20px !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: translateY(0) !important;
  }


  /*
     Mobile doesn't need the separate
     "Subcategories" title.
  */

  .nav-sub-dropdown > .nav-dropdown-heading {
    display: none !important;
  }


  /* ==========================================================
     MOBILE SUBCATEGORY ROW
     ========================================================== */

  .nav-sub-dropdown-row {

    width: 100% !important;
    min-height: 56px !important;

    padding: 7px 8px !important;

    gap: 12px !important;

    border-radius: 8px !important;

    transform: none !important;
  }

  .nav-sub-dropdown-row:hover {
    background: #f4f4ff !important;

    transform: none !important;
  }

}


/* ============================================================
   MOBILE <= 768px
   ============================================================ */

@media (max-width: 768px) {

  .nav-container {
    height: 70px;

    padding: 12px 16px;
  }


  .nav-logo-img {
    width: 120px;
    height: 37px;
  }


  .nav-links {
    padding: 12px 16px 20px;

    max-height: calc(100vh - 70px);
  }


  .nav-right-controls {
    gap: 12px;
  }


  .nav-right-controls .btn-primary {
    width: 100px;
    height: 38px;

    padding: 6px 10px;

    font-size: 13px;

    gap: 4px;
  }

  .nav-right-controls .btn-primary svg {
    width: 12px;
    height: 12px;
  }


  .nav-dropdown-row {
    min-height: 58px !important;
  }

}


/* ============================================================
   SMALL MOBILE <= 480px
   ============================================================ */

@media (max-width: 480px) {

  .nav-container {
    padding: 10px 12px;
  }


  .nav-logo-img {
    width: 100px;
    height: 32px;
  }


  .nav-links {
    padding: 10px 12px 18px;
  }


  .nav-link {
    padding: 9px 0;

    font-size: 13px;
  }


  .nav-right-controls {
    gap: 8px;
  }


  /*
     Hide country button on very small screens
     except flag if required.
  */

  .nav-locale {
    padding: 5px 2px;
  }

  .nav-locale-chevron {
    width: 10px;
    height: 10px;
  }

  .flag-icon {
    width: 18px;
    height: 13px;
  }


  /* ==========================================================
     GET STARTED
     ========================================================== */

  .nav-right-controls .btn-primary {
    width: 80px;
    height: 34px;

    padding: 4px 8px;

    font-size: 11px;

    border-radius: 5px;

    gap: 3px;
  }

  .nav-right-controls .btn-primary svg {
    width: 10px;
    height: 10px;
  }


  /* ==========================================================
     DROPDOWN
     ========================================================== */

  .nav-dropdown,
  #dd-products > .nav-dropdown {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }


  .nav-dropdown-heading {
    padding: 4px 6px 7px;

    font-size: 10px;
  }


  /* ==========================================================
     PRODUCT ROW
     ========================================================== */

  .nav-dropdown-row,
  #dd-industries .nav-dropdown-row {

    min-height: 52px !important;

    padding: 7px 5px !important;

    gap: 10px;
  }


  /* ==========================================================
     ICON
     ========================================================== */

  .nav-dropdown-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border-radius: 7px;
  }

  .nav-dropdown-icon img {

    width: 24px !important;
    height: 24px !important;
  }


  /* ==========================================================
     TEXT
     ========================================================== */

  .nav-dropdown-text strong {

    margin-bottom: 2px;

    font-size: 12.5px;

    line-height: 1.2;
  }

  .nav-dropdown-text span {

    font-size: 10px;

    line-height: 1.3;
  }


  /* ==========================================================
     ARROW
     ========================================================== */

  .nav-dropdown-arrow {

    width: 14px;
    height: 14px;
  }


  /* ==========================================================
     SUBCATEGORY
     ========================================================== */

  .nav-sub-dropdown {

    padding-left: 14px !important;
  }

  .nav-dropdown-item.open > .nav-sub-dropdown {

    padding:
      5px
      4px
      8px
      14px !important;
  }

  .nav-sub-dropdown-row {

    min-height: 48px !important;

    padding: 6px 5px !important;

    gap: 10px;
  }

}


/* ============================================================
   VERY SMALL MOBILE <= 380px
   ============================================================ */

@media (max-width: 380px) {

  .nav-container {
    padding-left: 10px;
    padding-right: 10px;
  }


  .nav-logo-img {
    width: 90px;
    height: auto;
  }


  .nav-right-controls {
    gap: 5px;
  }


  .nav-right-controls .btn-primary {
    width: 70px;
    height: 30px;

    padding: 4px 6px;

    font-size: 10px;

    border-radius: 4px;
  }


  .nav-right-controls .btn-primary svg {
    width: 8px;
    height: 8px;
  }


  .nav-mobile-toggle {
    padding: 4px;
  }

  .nav-mobile-toggle svg {
    width: 21px;
    height: 21px;
  }


  .nav-dropdown-text strong {
    font-size: 12px;
  }

  .nav-dropdown-text span {
    font-size: 9.5px;
  }

}


/* ============================================================
   HERO SECTION — COMPLETE
   ============================================================ */

.hero {
  padding: 64px 0 48px;
  width: 100%;
}

.hero-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1451px;
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 16px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  /* gap: 40px; */
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

.hero-eyebrow {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0048FF;
  margin: 0 0 12px;
  display: block;
}

.hero-title {
  font-size: 110px;
  font-weight: bold;
  line-height: 0.95;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  font-family: var(--font-display), var(--font-fallback);
  color: #000000;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 64px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 28px;
  }
}

.hero-title-blue {
  color: #000088;
  font-weight: 700;
}

.hero-lead {
  font-size: 24px;
  color: var(--gray-600);
  max-width: 550px;
  margin-bottom: 28px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .hero-lead {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-lead {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-lead {
    font-size: 16px;
  }
}

/* ============================================================
   HERO CTAS — EXACT FIGMA SPECS
   ============================================================ */

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
}

/* ============ "GET STARTED" BUTTON — EXACT FIGMA ============ */
.hero-ctas .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  width: 194px;
  height: 68px;
  border-radius: 13px;
  background: #14123a;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body), var(--font-fallback);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* HOVER: #0048FF */
.hero-ctas .btn-primary:hover {
  background: #0048FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 72, 255, 0.3);
}

.hero-ctas .btn-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============ "TALK TO SALES" BUTTON — TEXT HIGHLIGHT ============ */
.hero-ctas .btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  height: 68px;
  border-radius: 13px;
  background: transparent;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body), var(--font-fallback);
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}

/* HOVER: Text changes to #0048FF with underline highlight */
.hero-ctas .btn-text:hover {
  color: #0048FF;
  transform: translateY(-2px);
}

/* Underline highlight effect on hover */
.hero-ctas .btn-text::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: #0048FF;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.hero-ctas .btn-text:hover::after {
  width: 80%;
  left: 10%;
}

/* Arrow color change on hover */
.hero-ctas .btn-text:hover svg {
  stroke: #0048FF;
}

.hero-ctas .btn-text svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: stroke 0.3s ease;
}

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 768px) {
  .hero-ctas .btn-primary {
    width: 170px;
    height: 58px;
    padding: 8px;
    font-size: 16px;
    border-radius: 11px;
  }
  
  .hero-ctas .btn-text {
    height: 58px;
    padding: 8px;
    font-size: 16px;
    border-radius: 11px;
  }
  
  .hero-ctas .btn-primary svg,
  .hero-ctas .btn-text svg {
    width: 18px;
    height: 18px;
  }
  
  .hero-ctas {
    gap: 14px;
  }
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  
  .hero-ctas .btn-primary {
    width: 100%;
    height: 54px;
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 10px;
    justify-content: center;
  }
  
  .hero-ctas .btn-text {
    width: 100%;
    height: 54px;
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 10px;
    justify-content: center;
  }
  
  .hero-ctas .btn-primary svg,
  .hero-ctas .btn-text svg {
    width: 16px;
    height: 16px;
  }
}

/* ============ RESPONSIVE — SMALL MOBILE ============ */
@media (max-width: 380px) {
  .hero-ctas .btn-primary {
    height: 48px;
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 12px;
  }
  
  .hero-ctas .btn-text {
    height: 48px;
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 12px;
  }
  
  .hero-ctas .btn-primary svg,
  .hero-ctas .btn-text svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   HERO GLOBE
   ============================================================ */

.hero-globe-wrap {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-globe-wrap {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hero-globe-wrap {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-globe-wrap {
    height: 220px;
  }
}

.hero-globe-gif {
  width: 800px;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero-globe-gif {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-globe-gif {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .hero-globe-gif {
    width: 280px;
    height: 280px;
  }
}

/* ============================================================
   TRUSTED SECTION — RESPONSIVE
   ============================================================ */
.trusted {
  padding: 36px 0;
}

.trusted-container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1451px;
}

@media (max-width: 768px) {
  .trusted-container {
    padding: 0 16px;
  }
}

.trusted-label {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
  color: #5E5E5E;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.trusted-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.trusted-scroll-track {
  display: flex;
  width: 100%;
}

.trusted-scroll-gif {
  width: 50%;
  height: auto;
  max-height: 80px;
  display: block;
}

@media (max-width: 768px) {
  .trusted-scroll-gif {
    max-height: 50px;
    width: 100%;
  }
  
}

/* ============================================================
   STATS SECTION — RESPONSIVE
   ============================================================ */
.stats {
  padding: 20px 0 40px;
}

.stats-container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1451px;
}

@media (max-width: 768px) {
  .stats-container {
    padding: 0 16px;
  }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 10px;
}

@media (max-width: 900px) {
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
    padding: 20px 10px;
  }
}

@media (max-width: 600px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
    padding: 16px 8px;
  }
}

@media (max-width: 400px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 12px 6px;
    padding: 12px 6px;
  }
}

.stats-item {
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid var(--gray-200);
  transition: transform 0.3s ease;
}

.stats-item:last-child {
  border-right: none;
}

.stats-item:hover {
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .stats-item {
    border-right: none;
    padding: 0 10px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .stats-item {
    padding: 0 4px;
    gap: 6px;
  }
}

.stats-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .stats-item-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .stats-item-icon {
    width: 32px;
    height: 32px;
  }
}

.stats-item-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .stats-item-icon-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .stats-item-icon-img {
    width: 32px;
    height: 32px;
  }
}

.stats-item-number {
  display: block;
  font-family: var(--font-display), var(--font-fallback);
  font-size: 40px;
  font-weight: 700;
  color: #000088;
  transition: color 0.3s ease;
}

.stats-item:hover .stats-item-number {
  color: #161342;
}

@media (max-width: 900px) {
  .stats-item-number {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .stats-item-number {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .stats-item-number {
    font-size: 18px;
  }
}

.stats-item-label {
  font-size: 24px;
  color: #5E5E5E;
  font-weight: 350;
}

@media (max-width: 900px) {
  .stats-item-label {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .stats-item-label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .stats-item-label {
    font-size: 11px;
  }
}

/* ============================================================
   PRODUCTS SECTION — RESPONSIVE
   ============================================================ */
/* ============================================================
   PRODUCTS SECTION — RESPONSIVE
   ============================================================ */
.products {
  padding: 72px 0;
}

.products-container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1451px;
}

@media (max-width: 768px) {
  .products-container {
    padding: 0 16px;
  }
}

.products-eyebrow {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0048FF;
  margin: 0 0 12px;
  display: block;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.products-title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.12;
  font-family: var(--font-display), var(--font-fallback);
}

@media (max-width: 1024px) {
  .products-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .products-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .products-title {
    font-size: 28px;
  }
}

@media (max-width: 380px) {
  .products-title {
    font-size: 24px;
  }
}

.products-link-arrow {
  font-weight: 400;
  color: #000;
  font-size: 16px;
  white-space: nowrap;
  padding-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.products-link-arrow:hover {
  color: #0048FF;
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .products-link-arrow {
    font-size: 14px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCTS CARD
   ============================================================ */

.products-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 28px 26px;
  overflow: hidden;
  transition: all .35s ease;
}

.products-card:hover {
  background:
    radial-gradient(
      circle at top right,
      #5149ff 0%,
      #3b30df 25%,
      #2b239d 60%,
      #17144f 100%
    );
  border-color: transparent;
  box-shadow:
    0 20px 40px rgba(20, 18, 79, .35);
  transform: translateY(-6px);
}

.products-card:hover .products-card-tag,
.products-card:hover .products-card-title,
.products-card:hover .products-card-description,
.products-card:hover .products-card-list-item,
.products-card:hover .products-card-explore {
  color: #fff;
}

.products-card:hover .products-card-icon-img {
  transform: scale(1.05);
}

/* ============================================================
   TOP RIGHT CHECK ICON
   ============================================================ */

.products-card-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  opacity: 0;
  transform: scale(.8);
  transition: all .35s ease;
}

.products-card:hover .products-card-check {
  opacity: 1;
  transform: scale(1);
}

.products-card-check svg {
  width: 100%;
  height: 100%;
}

.products-card-check .outer-circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

.products-card-check .inner-circle {
  fill: #ffffff;
}

.products-card-check .check-path {
  fill: none;
  stroke: #2b248b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   CARD ICON
   ============================================================ */

.products-card-icon {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .products-card-icon {
    width: 100px;
    height: 100px;
  }
}

.products-card-icon-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: transform .35s ease;
}

@media (max-width: 480px) {
  .products-card-icon-img {
    width: 100px;
    height: 100px;
  }
}

/* ============================================================
   CARD TEXT — WITH ANIMATION SUPPORT
   ============================================================ */

.products-card-tag {
  display: block;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .06em;
  color: #5E5E5E;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: color .35s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, color .35s ease;
}

.products-card-tag.visible {
  opacity: 1;
  transform: translateY(0);
}

.products-card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font-display), var(--font-fallback);
  transition: color .35s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, color .35s ease;
}

.products-card-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.products-card-description {
  font-size: 16px;
  color: #000;
  margin-bottom: 14px;
  font-weight: 400;
  transition: color .35s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, color .35s ease;
}

.products-card-description.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CARD LIST
   ============================================================ */

.products-card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.products-card-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 400;
  transition: all .35s ease;
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.5s ease, transform 0.5s ease, color .35s ease;
}

.products-card-list-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.products-card-list-item:hover {
  transform: translateX(4px);
}

/* ============================================================
   FEATURE ICON (BULLET)
   ============================================================ */

.feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-circle {
  fill: transparent;
  stroke: #d6d6d6;
  stroke-width: 2;
  transition: all .3s ease;
}

.feature-check {
  fill: none;
  stroke: #1f1f1f;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all .3s ease;
}

.products-card:hover .feature-circle {
  fill: #1557ff;
  stroke: #1557ff;
}

.products-card:hover .feature-check {
  stroke: #ffffff;
}

/* ============================================================
   EXPLORE LINK
   ============================================================ */

.products-card-explore {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  transition: all .35s ease;
  display: inline-block;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, color .35s ease;
}

.products-card-explore.visible {
  opacity: 1;
  transform: translateY(0);
}

.products-card-explore:hover {
  transform: translateX(4px);
}

/* ============================================================
   ICON IMAGE ANIMATION
   ============================================================ */

.products-card-icon-img {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.products-card-icon-img.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   PRODUCT CARD VISIBLE STATE (Triggered by JS)
   ============================================================ */

.products-card.visible .products-card-tag,
.products-card.visible .products-card-title,
.products-card.visible .products-card-description,
.products-card.visible .products-card-explore {
  opacity: 1;
  transform: translateY(0);
}

.products-card.visible .products-card-list-item {
  opacity: 1;
  transform: translateX(0);
}

.products-card.visible .products-card-icon-img {
  opacity: 1;
  transform: scale(1);
}
/* ============================================================
   PRODUCT CARD CHILDREN — ANIMATION READY
   ============================================================ */

.products-card-tag,
.products-card-title,
.products-card-description,
.products-card-list-item,
.products-card-explore,
.products-card-icon-img {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.products-card-tag {
  transform: translateY(20px);
}

.products-card-title {
  transform: translateY(20px);
}

.products-card-description {
  transform: translateY(20px);
}

.products-card-list-item {
  transform: translateX(-15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.products-card-explore {
  transform: translateY(20px);
}

.products-card-icon-img {
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* VISIBLE STATES */
.products-card-tag.visible,
.products-card-title.visible,
.products-card-description.visible,
.products-card-explore.visible {
  opacity: 1;
  transform: translateY(0);
}

.products-card-list-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.products-card-icon-img.visible {
  opacity: 1;
  transform: scale(1);
}
/* ============================================================
   PAYMENT SECTION — FULLY RESPONSIVE
   ============================================================ */
/* ============================================================
   PAYMENT SECTION — EXACT FIGMA SPECS
   ============================================================ */

.payment {
  padding: 10px 0 80px;
}

.payment-container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1451px;
}

@media (max-width: 1024px) {
  .payment-container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .payment-container {
    padding: 0 16px;
  }
}

.payment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .payment-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================================
   LEFT CARD — DARK
   ============================================================ */

.payment-dark-card {
  background: #03030d;
  border-radius: 32px;
  padding: 40px 45px;
  min-height: 510px;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("../images/wave-bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;

}

@media (max-width: 1024px) {
  .payment-dark-card {
    min-height: 540px;
    padding: 35px 35px;
  }
}

@media (max-width: 768px) {
  .payment-dark-card {
    min-height: 480px;
    padding: 30px 28px;
  }
}

@media (max-width: 480px) {
  .payment-dark-card {
    min-height: 420px;
    padding: 24px 20px;
  }
}

.payment-dark-card-eyebrow {
  color: #0048FF;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;

  position: relative;
  z-index: 2;
  font-weight: 400;
}

@media (max-width: 480px) {
  .payment-dark-card-eyebrow {
    font-size: 13px;
  }
}

.payment-dark-card-title {
  font-size: 48px;
  line-height: 1.11;
  color: #FFFFFF;
  margin: 5px 0 5px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .payment-dark-card-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .payment-dark-card-title {
    font-size: 32px;
    margin: 12px 0 14px;
  }
}

@media (max-width: 480px) {
  .payment-dark-card-title {
    font-size: 26px;
    margin: 10px 0 12px;
  }
}

.payment-dark-card-description {
  font-size: 17px;
  line-height: 1.6;
  color: #FFFFFF;
  max-width: 260px;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .payment-dark-card-description {
    font-size: 15px;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .payment-dark-card-description {
    font-size: 14px;
    max-width: 180px;
  }
}

/* "Get Started" Button */
.payment-dark-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  background: #0048FF;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.payment-dark-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 72, 255, 0.35);
  background: #0055ff;
}

.payment-dark-card-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .payment-dark-card-btn {
    font-size: 16px;
    padding: 12px 28px;
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  .payment-dark-card-btn {
    font-size: 15px;
    padding: 12px 24px;
    margin-top: 18px;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ICON GRID
   ============================================================ */

.payment-dark-icon-grid {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 260px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 12px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .payment-dark-icon-grid {
    top: 32px;
    right: 30px;
    width: 210px;
    gap: 25px 10px;
  }
}

@media (max-width: 768px) {
  .payment-dark-icon-grid {
    top: 28px;
    right: 20px;
    width: 160px;
    gap: 18px 8px;
  }
}

@media (max-width: 480px) {
  .payment-dark-icon-grid {
    display: none;
  }
}

.payment-dark-icon-grid img {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .payment-dark-icon-grid img {
    max-width: 90px;
  }
}

@media (max-width: 768px) {
  .payment-dark-icon-grid img {
    max-width: 65px;
  }
}

/* ============================================================
   MARKET AREA
   ============================================================ */

.payment-dark-market-area {
  position: absolute;
  left: 45px;
  bottom: 30px;
  z-index: 2;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .payment-dark-market-area {
    left: 35px;
    bottom: 40px;
  }
}

@media (max-width: 768px) {
  .payment-dark-market-area {
    left: 28px;
    bottom: 28px;
  }
}

@media (max-width: 480px) {
  .payment-dark-market-area {
    left: 20px;
    bottom: 18px;
  }
}

.payment-dark-market-title {
  color: #0f5dff;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .payment-dark-market-title {
    font-size: 12px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .payment-dark-market-title {
    font-size: 11px;
    margin-bottom: 10px;
  }
}

.payment-dark-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

@media (max-width: 1024px) {
  .payment-dark-flag-row {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-row {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-row {
    gap: 6px;
  }
}

.payment-dark-flag-circ {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.payment-dark-flag-circ:hover {
  transform: scale(1.1);
  border-color: #ffffff;
}

@media (max-width: 1024px) {
  .payment-dark-flag-circ {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-circ {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-circ {
    width: 30px;
    height: 30px;
  }
}

.payment-dark-flag-circ img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .payment-dark-flag-circ img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-circ img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-circ img {
    width: 22px;
    height: 22px;
  }
}

.payment-dark-flag-circ-more {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .payment-dark-flag-circ-more {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-circ-more {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-circ-more {
    font-size: 11px;
  }
}

/* ============================================================
   RIGHT CARD — CONVERTER
   ============================================================ */

.payment-converter-card {
  background: #fff;
  border-radius: 32px;
  padding: 40px 45px;
  min-height: 510px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .payment-converter-card {
    min-height: 540px;
    padding: 35px 35px;
  }
}

@media (max-width: 768px) {
  .payment-converter-card {
    min-height: 480px;
    padding: 30px 28px;
  }
}

@media (max-width: 480px) {
  .payment-converter-card {
    min-height: 420px;
    padding: 24px 20px;
  }
}

.payment-converter-eyebrow {
  color: #0f5dff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}

@media (max-width: 480px) {
  .payment-converter-eyebrow {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.payment-converter-title {
  font-size: 40px;
  line-height: 1.1;
  color: #07072b;
  margin-bottom: 14px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .payment-converter-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .payment-converter-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .payment-converter-title {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.payment-converter-sub {
  font-size: 15px;
  color: #5E5E5E;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .payment-converter-sub {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .payment-converter-sub {
    font-size: 13px;
    margin-bottom: 18px;
  }
}

/* ============================================================
   CONVERTER ROW
   ============================================================ */

.payment-converter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .payment-converter-row {
    flex-direction: column;
    gap: 10px;
  }
}

.payment-currency-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  height: 50px;
  border: 1px solid #E4E4E4;
  border-radius: 12px;
  overflow: visible;
  background: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .payment-currency-item {
    min-width: 100%;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .payment-currency-item {
    height: 38px;
  }
}

/* ============================================================
   CURRENCY SELECT
   ============================================================ */

.payment-currency-select {
  position: relative;
  cursor: pointer;
  min-width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-right: 1px solid #E5E5E5;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.payment-currency-select:hover {
  background: var(--gray-50);
}

@media (max-width: 768px) {
  .payment-currency-select {
    min-width: 100px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .payment-currency-select {
    min-width: 70px;
    padding: 0 8px;
    gap: 4px;
  }
}

.payment-currency-select .dropdown-arrow {
  margin-left: auto;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: #666;
}

.payment-currency-select.active .dropdown-arrow {
  transform: rotate(180deg);
}

.payment-currency-select .currency-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
  background: var(--gray-50);
}

@media (max-width: 768px) {
  .payment-currency-select .currency-flag {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .payment-currency-select .currency-flag {
    width: 20px;
    height: 20px;
  }
}

.payment-currency-select .currency-code-display {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .payment-currency-select .currency-code-display {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .payment-currency-select .currency-code-display {
    font-size: 10px;
  }
}

/* ============================================================
   CURRENCY INPUT
   ============================================================ */

.payment-currency-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  min-width: 0;
  width: 100%;
  font-family: var(--font-body), var(--font-fallback);
}

.payment-currency-input:focus {
  outline: none;
}

.payment-currency-input[readonly] {
  cursor: default;
  background: var(--gray-50);
}

@media (max-width: 768px) {
  .payment-currency-input {
    font-size: 13px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .payment-currency-input {
    font-size: 12px;
    padding: 0 8px;
  }
}

/* ============================================================
   SWAP BUTTON
   ============================================================ */

.payment-swap-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #17174d;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.payment-swap-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 20px rgba(22, 19, 66, 0.3);
  background: #22227a;
}

@media (max-width: 768px) {
  .payment-swap-btn {
    width: 34px;
    height: 34px;
    transform: rotate(90deg);
  }
  .payment-swap-btn:hover {
    transform: rotate(90deg) scale(1.12);
  }
}

@media (max-width: 480px) {
  .payment-swap-btn {
    width: 28px;
    height: 28px;
  }
}

.payment-swap-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .payment-swap-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   CHART
   ============================================================ */

.payment-chart-wrap {
  margin-top: 16px;
  position: relative;
  padding-top: 6px;
  height: 150px;
  min-height: 120px;
}

@media (max-width: 768px) {
  .payment-chart-wrap {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .payment-chart-wrap {
    height: 100px;
  }
}

.payment-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.chart-pair-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

@media (max-width: 480px) {
  .chart-pair-label {
    font-size: 10px;
  }
}

.chart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-400);
  font-size: 13px;
  gap: 10px;
}

.chart-loading .spinner {
  width: 20px;
  height: 20px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   CURRENCY DROPDOWN
   ============================================================ */

.currency-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 300px;
  max-height: 280px;
  overflow: hidden;
  background: #ffffff !important; /* Force solid white background */
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(20, 18, 58, .14);
  z-index: 9999 !important; /* High z-index to stay above chart */
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease;
}

.currency-dropdown-menu.open {
  display: flex !important;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .currency-dropdown-menu {
    width: 250px;
    max-height: 230px;
    left: -10px;
    z-index: 9999 !important;
  }
}

@media (max-width: 480px) {
  .currency-dropdown-menu {
    width: 200px;
    max-height: 180px;
    left: -15px;
    z-index: 9999 !important;
  }
}

/* ============================================================
   DROPDOWN SEARCH WRAP
   ============================================================ */

.currency-dropdown-search-wrap {
  position: sticky;
  top: 0;
  background: #ffffff !important;
  padding: 6px 8px 8px;
  border-bottom: 1px solid var(--gray-200);
  z-index: 2;
  flex-shrink: 0;
}

.currency-dropdown-search {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-family: var(--font-body), var(--font-fallback);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff !important;
}

.currency-dropdown-search:focus {
  border-color: var(--blue-600);
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(47, 91, 237, 0.1);
}

/* ============================================================
   DROPDOWN ITEMS CONTAINER
   ============================================================ */

.currency-dropdown-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 4px 6px 6px;
  background: #ffffff !important;
}

.currency-dropdown-items-container::-webkit-scrollbar {
  width: 4px;
}

.currency-dropdown-items-container::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

.currency-dropdown-items-container::-webkit-scrollbar-track {
  background: #f5f5f5;
}

/* ============================================================
   DROPDOWN ITEM
   ============================================================ */

.currency-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  background: #ffffff !important;
}

.currency-dropdown-item:hover {
  background: var(--gray-50) !important;
  transform: translateX(2px);
}

.currency-dropdown-item.selected {
  background: var(--blue-100) !important;
}

.currency-dropdown-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
  background: var(--gray-50);
}

@media (max-width: 480px) {
  .currency-dropdown-item img {
    width: 22px;
    height: 22px;
  }
}

.currency-emoji-fallback {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
  font-size: 14px;
}

@media (max-width: 480px) {
  .currency-emoji-fallback {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}

.currency-dropdown-item .currency-code {
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-900);
  min-width: 35px;
}

.currency-dropdown-item .currency-name {
  font-size: 11px;
  color: var(--gray-600);
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}

@media (max-width: 480px) {
  .currency-dropdown-item .currency-name {
    display: none;
  }
}

.currency-dropdown-no-results {
  padding: 16px 10px;
  text-align: center;
  color: var(--gray-400);
  font-size: 13px;
  background: #ffffff !important;
}

/* ============================================================
   CURRENCY SELECT — FIXED Z-INDEX
   ============================================================ */

.payment-currency-select {
  position: relative;
  cursor: pointer;
  min-width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-right: 1px solid #E5E5E5;
  flex-shrink: 0;
  transition: background 0.2s ease;
  z-index: 100;
}

.payment-currency-select:hover {
  background: var(--gray-50);
}

.payment-currency-select.active {
  z-index: 10000 !important;
}

/* ============================================================
   CHART — LOWER Z-INDEX
   ============================================================ */

.payment-chart-wrap {
  margin-top: 16px;
  position: relative;
  padding-top: 6px;
  height: 150px;
  min-height: 120px;
  z-index: 1;
}

#exchangeRateChart {
  z-index: 0;
  position: relative;
}

/* ============================================================
   PAYMENT CONVERTER CARD — FIX OVERFLOW
   ============================================================ */

.payment-converter-card {
  background: #fff;
  border-radius: 32px;
  padding: 40px 45px;
  min-height: 510px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  overflow: visible !important; /* Allow dropdown to overflow */
  position: relative;
}

/* ============================================================
   PAYMENT CONVERTER ROW — FIX OVERFLOW
   ============================================================ */

.payment-converter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  overflow: visible !important;
}

/* ============================================================
   PAYMENT CURRENCY ITEM — FIX OVERFLOW
   ============================================================ */

.payment-currency-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  height: 50px;
  border: 1px solid #E4E4E4;
  border-radius: 12px;
  overflow: visible !important;
  background: #fff;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .payment-currency-item {
    min-width: 100%;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .payment-currency-item {
    height: 38px;
  }
}

/* ============================================================
   DROPDOWN ARROW
   ============================================================ */

.payment-currency-select .dropdown-arrow {
  margin-left: auto;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: #666;
}

.payment-currency-select.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* ============================================================
   CURRENCY FLAG
   ============================================================ */

.payment-currency-select .currency-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
  background: var(--gray-50);
}

@media (max-width: 768px) {
  .payment-currency-select .currency-flag {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .payment-currency-select .currency-flag {
    width: 20px;
    height: 20px;
  }
}

/* ============================================================
   CURRENCY CODE DISPLAY
   ============================================================ */

.payment-currency-select .currency-code-display {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .payment-currency-select .currency-code-display {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .payment-currency-select .currency-code-display {
    font-size: 10px;
  }
}

/* ============================================================
   CURRENCY INPUT
   ============================================================ */

.payment-currency-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  min-width: 0;
  width: 100%;
  font-family: var(--font-body), var(--font-fallback);
}

.payment-currency-input:focus {
  outline: none;
}

.payment-currency-input[readonly] {
  cursor: default;
  background: var(--gray-50);
}

@media (max-width: 768px) {
  .payment-currency-input {
    font-size: 13px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .payment-currency-input {
    font-size: 12px;
    padding: 0 8px;
  }
}

/* ============================================================
   SWAP BUTTON
   ============================================================ */

.payment-swap-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #17174d;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 20;
  position: relative;
}

.payment-swap-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 20px rgba(22, 19, 66, 0.3);
  background: #22227a;
}

@media (max-width: 768px) {
  .payment-swap-btn {
    width: 34px;
    height: 34px;
    transform: rotate(90deg);
  }
  .payment-swap-btn:hover {
    transform: rotate(90deg) scale(1.12);
  }
}

@media (max-width: 480px) {
  .payment-swap-btn {
    width: 28px;
    height: 28px;
  }
}

.payment-swap-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .payment-swap-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   CHART LOADING
   ============================================================ */

.chart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-400);
  font-size: 13px;
  gap: 10px;
}

.chart-loading .spinner {
  width: 20px;
  height: 20px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.chart-pair-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

@media (max-width: 480px) {
  .chart-pair-label {
    font-size: 10px;
  }
}

/* ============================================================
   RESPONSIVE — ADDITIONAL FIXES
   ============================================================ */

@media (max-width: 768px) {
  .payment-converter-card {
    padding: 30px 28px;
    overflow: visible !important;
  }
  
  .payment-converter-row {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .payment-converter-card {
    padding: 24px 20px;
    overflow: visible !important;
  }
}

/* ============================================================
   PAYMENT METHODS — RESPONSIVE
   ============================================================ */
.payment-methods {
  padding: 0 0 80px;
}

.payment-methods-container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1451px;
}

@media (max-width: 768px) {
  .payment-methods-container {
    padding: 0 16px;
  }
}

.payment-methods-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .payment-methods-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .payment-methods-card {
    padding: 24px 16px;
  }
}

.payment-methods-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 55px;
}

@media (max-width: 1200px) {
  .payment-methods-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
  }
}

.payment-methods-eyebrow {
  display: block;
  color: #0f5dff;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 400;
}

.payment-methods-title {
  font-size: 36px;
  line-height: 1.05;
  font-weight: bold;
  color: #000000;
  max-width: 730px;
}

@media (max-width: 768px) {
  .payment-methods-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .payment-methods-title {
    font-size: 24px;
  }
}

.payment-methods-view-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-size: 20px;
  white-space: nowrap;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .payment-methods-view-link {
    font-size: 16px;
  }
}

.payment-methods-logos img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* ============================================================
   GET STARTED — RESPONSIVE
   ============================================================ */


.get-started {
  padding: 0 0 80px;
}

.get-started-container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1451px;
}

@media (max-width: 768px) {
  .get-started-container {
    padding: 0 16px;
  }
}

.get-started-card {
  background: #fff;
  border-radius: 32px;
  padding: 55px;
  box-shadow: 0 10px 40px rgba(0,0,0,.05);
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 40px;
  align-items: center;
}

@media (max-width: 1400px) {
  .get-started-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .get-started-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .get-started-card {
    padding: 24px 16px;
  }
}

/* ============================================================
   LEFT SIDE — TEXT CONTENT
   ============================================================ */

.get-started-left-eyebrow {
  display: block;
  color: #0f5dff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 400;
}

@media (max-width: 480px) {
  .get-started-left-eyebrow {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

.get-started-left-title {
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .get-started-left-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .get-started-left-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .get-started-left-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}

.get-started-left-lead {
  font-size: 18px;
  line-height: 1.6;
  color: #5E5E5E;
  margin-bottom: 40px;
  max-width: 380px;
}

@media (max-width: 768px) {
  .get-started-left-lead {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .get-started-left-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/* ============================================================
   GET STARTED CTAS — MATCHES HERO CTAS
   ============================================================ */

.get-started-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .get-started-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
}

/* ============ "START NOW" BUTTON — MATCHES HERO ============ */
.get-started-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  width: 169px;
  height: 68px;
  border-radius: 13px;
  background: #14123a;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body), var(--font-fallback);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* HOVER: #0048FF — MATCHES HERO */
.get-started-btn-primary:hover {
  background: #0048FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 72, 255, 0.3);
}

.get-started-btn-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============ "TALK TO SALES" BUTTON — MATCHES HERO ============ */
.get-started-btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  height: 68px;
  border-radius: 13px;
  background: transparent;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body), var(--font-fallback);
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}

/* HOVER: Text changes to #0048FF with underline highlight */
.get-started-btn-text:hover {
  color: #0048FF;
  transform: translateY(-2px);
}

/* Underline highlight effect on hover */
.get-started-btn-text::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: #0048FF;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.get-started-btn-text:hover::after {
  width: 80%;
  left: 10%;
}

/* Arrow color change on hover */
.get-started-btn-text:hover svg {
  stroke: #0048FF;
}

.get-started-btn-text svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: stroke 0.3s ease;
}

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 768px) {
  .get-started-btn-primary {
    width: 170px;
    height: 58px;
    padding: 8px;
    font-size: 16px;
    border-radius: 11px;
  }
  
  .get-started-btn-text {
    height: 58px;
    padding: 8px;
    font-size: 16px;
    border-radius: 11px;
  }
  
  .get-started-btn-primary svg,
  .get-started-btn-text svg {
    width: 18px;
    height: 18px;
  }
  
  .get-started-ctas {
    gap: 14px;
  }
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 480px) {
  .get-started-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  
  .get-started-btn-primary {
    width: 100%;
    height: 54px;
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 10px;
    justify-content: center;
  }
  
  .get-started-btn-text {
    width: 100%;
    height: 54px;
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 10px;
    justify-content: center;
  }
  
  .get-started-btn-primary svg,
  .get-started-btn-text svg {
    width: 16px;
    height: 16px;
  }
}

/* ============ RESPONSIVE — SMALL MOBILE ============ */
@media (max-width: 380px) {
  .get-started-btn-primary {
    height: 48px;
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 12px;
  }
  
  .get-started-btn-text {
    height: 48px;
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 12px;
  }
  
  .get-started-btn-primary svg,
  .get-started-btn-text svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   RIGHT SIDE — STEPS
   ============================================================ */

.get-started-right-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.get-started-steps-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

@media (max-width: 1400px) {
  .get-started-steps-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .get-started-steps-row {
    gap: 30px 20px;
  }
}

@media (max-width: 480px) {
  .get-started-steps-row {
    gap: 20px 12px;
  }
}

.get-started-step {
  width: 170px;
  text-align: center;
  position: relative;
  margin-top: 45px;
  padding: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-started-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(20, 18, 58, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .get-started-step {
    width: 140px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .get-started-step {
    width: 110px;
    margin-top: 20px;
    padding: 6px;
  }
}

.get-started-step img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.get-started-step:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .get-started-step img {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .get-started-step img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
}

/* Step connector line */
.get-started-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 55px;
  left: calc(100% - 8px);
  width: 40px;
  height: 2px;
  background:
    linear-gradient(
      to right,
      #1118a8 0 4px,
      transparent 4px 10px,
      #1118a8 10px 18px,
      transparent 18px 24px,
      #1118a8 24px 32px,
      transparent 32px 36px,
      #1118a8 36px 40px
    );
}

@media (max-width: 1400px) {
  .get-started-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .get-started-step:not(:last-child)::after {
    top: 45px;
    width: 30px;
  }
}

.get-started-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  .get-started-step-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
}

.get-started-step-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .get-started-step-description {
    font-size: 12px;
  }
}

/* ============================================================
   APPROVED BADGE
   ============================================================ */

.get-started-approved {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1118a8;
  font-size: 18px;
  margin-top: 40px;
  margin-left: 280px;
}

@media (max-width: 1400px) {
  .get-started-approved {
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .get-started-approved {
    font-size: 15px;
    margin-top: 20px;
  }
}

.get-started-approved-bolt {
  font-size: 24px;
}

/* ============================================================
   FOOTER — COMPLETE WITH HEIGHT 398px
   ============================================================ */

.footer {
  background: var(--navy-950);
  color: #c7cade;
  padding: 56px 24px 0;
  height: 398px;
  display: flex;
  flex-direction: column;
}

.footer-container {
  margin: 0 auto;
  max-width: 1451px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 0;
    height: auto;
    min-height: 398px;
  }
}

@media (max-width: 480px) {
  .footer {
    height: auto;
    min-height: auto;
    padding: 30px 16px 0;
  }
}

/* ============================================================
   FOOTER TOP — BRAND + COLUMNS
   ============================================================ */

.footer-top {
  display: flex;
  gap: 40px;
  flex: 1;
}

@media (max-width: 1100px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    gap: 30px;
  }
}

/* Brand Column — Separate */
.footer-brand {
  flex: 0 0 auto;
  width: 213px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .footer-brand {
    width: 100%;
  }
}

/* Remaining Columns Group — Fixed width 978px */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: 978px;
  flex-shrink: 0;
  margin-left: 250px;
}

@media (max-width: 1300px) {
  .footer-columns {
    width: auto;
    flex: 1;
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .footer-columns {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    margin-left: 250px;
  }
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 400px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   BRAND COLUMN
   ============================================================ */

.footer-brand .footer-logo {
  color: #fff;
  margin-bottom: 14px;
  display: inline-block;
}

.footer-brand .nav-logo-img {
  width: 166px;
  height: 51px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .footer-brand .nav-logo-img {
    width: 140px;
    height: 44px;
  }
}

.footer-brand-description {
  font-size: 16px;
  color: #FFFFFF;
  max-width: 201px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-brand-description {
    font-size: 14px;
    max-width: 100%;
  }
}

.footer-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  text-decoration: none;
  background: transparent;
}

.footer-social-row a:hover {
  transform: translateY(-2px);
}

.footer-social-row a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-social-row a:hover img {
  opacity: 0.8;
}

/* ============================================================
   FOOTER COLUMNS
   ============================================================ */

.footer-col h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-body), var(--font-fallback);
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  font-size: 13.5px;
  color: #9a9dbb;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

/* ============================================================
   FOOTER BOTTOM
   ============================================================ */

.footer-bottom {
  padding: 0 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 400;
  flex-shrink: 0;
}

.footer-bottom span:first-child {
  width: 236px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
  }
  
  .footer-bottom span:first-child {
    width: 100%;
    flex-shrink: 0;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-section {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   ENHANCED ANIMATIONS
   ============================================================ */
p.type-text {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

p.type-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-from-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-from-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-from-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-from-bottom {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-from-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

.products-card-list-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.products-card-list-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.products-card.visible .products-card-icon-img {
  transform: scale(1);
  animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes iconPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.payment-dark-icon-grid img,
.payment-dark-flag-circ,
.payment-chart-wrap,
.get-started-step {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-dark-icon-grid.visible img,
.payment-dark-flag-row.visible .payment-dark-flag-circ,
.payment-chart-wrap.visible,
.get-started-step.visible {
  opacity: 1;
}

.payment-dark-icon-grid.visible img:nth-child(1) { transition-delay: 0.05s; }
.payment-dark-icon-grid.visible img:nth-child(2) { transition-delay: 0.10s; }
.payment-dark-icon-grid.visible img:nth-child(3) { transition-delay: 0.15s; }
.payment-dark-icon-grid.visible img:nth-child(4) { transition-delay: 0.20s; }
.payment-dark-icon-grid.visible img:nth-child(5) { transition-delay: 0.25s; }
.payment-dark-icon-grid.visible img:nth-child(6) { transition-delay: 0.30s; }

.payment-dark-flag-row.visible .payment-dark-flag-circ:nth-child(1) { transition-delay: 0.02s; }
.payment-dark-flag-row.visible .payment-dark-flag-circ:nth-child(2) { transition-delay: 0.06s; }
.payment-dark-flag-row.visible .payment-dark-flag-circ:nth-child(3) { transition-delay: 0.10s; }
.payment-dark-flag-row.visible .payment-dark-flag-circ:nth-child(4) { transition-delay: 0.14s; }
.payment-dark-flag-row.visible .payment-dark-flag-circ:nth-child(5) { transition-delay: 0.18s; }
.payment-dark-flag-row.visible .payment-dark-flag-circ:nth-child(6) { transition-delay: 0.22s; }
.payment-dark-flag-row.visible .payment-dark-flag-circ:nth-child(7) { transition-delay: 0.26s; }
.payment-dark-flag-row.visible .payment-dark-flag-circ:nth-child(8) { transition-delay: 0.30s; }

.payment-chart-wrap.visible {
  transform: translateY(0);
}

.get-started-step.visible {
  transform: translateY(0) scale(1);
}

/* Force product descriptions to always be visible */
.products-card .products-card-description.type-text,
.products-card .products-card-description.type-text .reveal-word {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
  transition: none !important;
  display: block !important;
}

/* ============================================================
   RESPONSIVE — Max-width 1451px container
   ============================================================ */
@media (max-width: 1451px) {
  .nav-container,
  .hero-container,
  .trusted-container,
  .stats-container,
  .products-container,
  .payment-container,
  .payment-methods-container,
  .get-started-container,
  .footer-container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1451px) and (min-width: 1025px) {
  .hero-title {
    font-size: 90px;
  }
}

/* ============================================================
   EXTRA RESPONSIVE FIXES — ALL DEVICES
   ============================================================ */

/* TVs & Large Screens (1920px+) */
@media (min-width: 1920px) {
  .hero-title {
    font-size: 130px;
  }
  
  .hero-container,
  .nav-container,
  .trusted-container,
  .stats-container,
  .products-container,
  .payment-container,
  .payment-methods-container,
  .get-started-container,
  .footer-container {
    max-width: 1600px;
  }
}

/* Landscape Phones (max-height: 600px) */
@media (max-height: 600px) and (orientation: landscape) {
  .nav-container {
    height: 60px;
  }
  
  .hero {
    padding: 30px 0;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-globe-wrap {
    height: 180px;
  }
  
  .hero-globe-gif {
    width: 140px;
    height: 140px;
  }
  
  .payment-dark-card,
  .payment-converter-card {
    min-height: 340px;
    padding: 20px;
  }
  
  .payment-dark-card-title {
    font-size: 24px;
  }
  
  .payment-dark-card-description {
    font-size: 13px;
    max-width: 160px;
  }
  
  .payment-dark-card-btn {
    padding: 10px 18px;
    font-size: 14px;
    margin-top: 16px;
  }
  
  .payment-currency-item {
    height: 34px;
  }
  
  .payment-currency-select {
    min-width: 60px;
    padding: 0 6px;
  }
  
  .payment-currency-input {
    font-size: 11px;
    padding: 0 8px;
  }
  
  .payment-swap-btn {
    width: 24px;
    height: 24px;
  }
  
  .payment-swap-btn svg {
    width: 12px;
    height: 12px;
  }
  
  .payment-chart-wrap {
    height: 80px;
  }
  
  .payment-dark-flag-circ {
    width: 24px;
    height: 24px;
  }
  
  .payment-dark-flag-circ img {
    width: 18px;
    height: 18px;
  }
  
  .payment-dark-flag-row {
    gap: 4px;
  }
  
  .payment-dark-icon-grid {
    display: none;
  }
  
  .payment-dark-market-area {
    left: 16px;
    bottom: 12px;
  }
  
  .footer {
    height: auto;
    min-height: 300px;
    padding: 30px 16px 0;
  }
  
  .footer-top {
    gap: 20px;
  }
  
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .footer-brand .nav-logo-img {
    width: 100px;
    height: 32px;
  }
  
  .footer-brand-description {
    font-size: 12px;
    max-width: 100%;
    margin-bottom: 12px;
  }
  
  .footer-social-row a {
    width: 30px;
    height: 30px;
  }
  
  .footer-social-row a img {
    width: 14px;
    height: 14px;
  }
  
  .footer-bottom {
    padding: 10px 0 20px;
    font-size: 11px;
  }
}

/* Portrait Phones (max-width: 480px) */
@media (max-width: 480px) and (orientation: portrait) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-lead {
    font-size: 15px;
  }
  
  .hero-ctas .btn-primary,
  .hero-ctas .btn-text {
    height: 48px;
    font-size: 14px;
  }
  
  .hero-ctas .btn-primary svg,
  .hero-ctas .btn-text svg {
    width: 14px;
    height: 14px;
  }
  
  .payment-dark-card,
  .payment-converter-card {
    min-height: 380px;
    padding: 20px 16px;
  }
  
  .payment-dark-card-title {
    font-size: 24px;
  }
  
  .payment-dark-card-description {
    font-size: 13px;
    max-width: 160px;
  }
  
  .payment-dark-card-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .payment-currency-item {
    height: 36px;
  }
  
  .payment-currency-select {
    min-width: 60px;
    padding: 0 6px;
  }
  
  .payment-currency-input {
    font-size: 11px;
    padding: 0 6px;
  }
  
  .payment-swap-btn {
    width: 26px;
    height: 26px;
  }
  
  .payment-swap-btn svg {
    width: 12px;
    height: 12px;
  }
  
  .payment-chart-wrap {
    height: 80px;
  }
  
  .payment-dark-flag-circ {
    width: 35px;
    height: 35px;
  }
  
  .payment-dark-flag-circ img {
    width: 26px;
    height: 26px;
  }
  
  .payment-dark-flag-row {
    gap: 6px;
  }
  
  .payment-dark-icon-grid {
    display: none;
  }
  
  .payment-dark-market-area {
    left: 14px;
    bottom: 14px;
  }
  
  .get-started-card {
    padding: 20px 16px;
  }
  
  .get-started-left-title {
    font-size: 24px;
  }
  
  .get-started-left-lead {
    font-size: 14px;
  }
  
  .get-started-btn-primary {
    height: 48px;
    font-size: 14px;
  }
  
  .get-started-btn-text {
    height: 48px;
    font-size: 14px;
  }
  
  .get-started-step {
    width: 90px;
    margin-top: 16px;
  }
  
  .get-started-step img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  
  .get-started-step-title {
    font-size: 12px;
  }
  
  .get-started-step-description {
    font-size: 11px;
  }
  
  .footer {
    height: auto;
    padding: 24px 12px 0;
  }
  
  .footer-top {
    gap: 20px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .footer-brand .nav-logo-img {
    width: 100px;
    height: 32px;
  }
  
  .footer-brand-description {
    font-size: 12px;
    max-width: 100%;
  }
  
  .footer-social-row a {
    width: 32px;
    height: 32px;
  }
  
  .footer-social-row a img {
    width: 16px;
    height: 16px;
  }
  
  .footer-bottom {
    padding: 12px 0 20px;
    font-size: 11px;
  }
  
  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .footer-col a {
    font-size: 12px;
  }
  
  .footer-col li {
    margin-bottom: 6px;
  }
}

/* iPad / Tablet Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .hero-title {
    font-size: 48px;
  }
  
  .hero-ctas .btn-primary {
    width: 160px;
    height: 56px;
    font-size: 16px;
  }
  
  .hero-ctas .btn-text {
    height: 56px;
    font-size: 16px;
  }
  
  .payment-dark-card,
  .payment-converter-card {
    min-height: 460px;
    padding: 30px;
  }
  
  .payment-dark-card-title {
    font-size: 32px;
  }
  
  .payment-dark-flag-circ {
    width: 40px;
    height: 40px;
  }
  
  .payment-dark-flag-circ img {
    width: 32px;
    height: 32px;
  }
  
  .payment-dark-icon-grid {
    width: 180px;
    gap: 20px 8px;
  }
  
  .payment-dark-icon-grid img {
    max-width: 70px;
  }
  
  .payment-currency-item {
    height: 42px;
  }
  
  .payment-chart-wrap {
    height: 110px;
  }
  
  .footer {
    height: auto;
    min-height: 360px;
  }
  
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* iPad / Tablet Landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .hero-title {
    font-size: 72px;
  }
  
  .payment-dark-card,
  .payment-converter-card {
    min-height: 480px;
    padding: 35px;
  }
  
  .payment-dark-card-title {
    font-size: 38px;
  }
  
  .payment-dark-flag-circ {
    width: 46px;
    height: 46px;
  }
  
  .payment-dark-flag-circ img {
    width: 36px;
    height: 36px;
  }
  
  .footer {
    height: 398px;
  }
  
  .footer-columns {
    width: auto;
    flex: 1;
    margin-left: 0;
  }
  
  .footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Tablets & Small Laptops (1366px - 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .hero-title {
    font-size: 90px;
  }
  
  .payment-dark-card,
  .payment-converter-card {
    min-height: 500px;
    padding: 38px 40px;
  }
  
  .footer-columns {
    width: auto;
    flex: 1;
    margin-left: 250px;
  }
}

/* Small Laptops (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
  .footer-columns {
    width: auto;
    flex: 1;
    margin-left: 250px;
  }
}

/* Very Small Screens (320px - 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 26px;
  }
  
  .hero-ctas .btn-primary {
    height: 44px;
    font-size: 13px;
  }
  
  .hero-ctas .btn-text {
    height: 44px;
    font-size: 13px;
  }
  
  .payment-dark-card,
  .payment-converter-card {
    min-height: 340px;
    padding: 16px 12px;
  }
  
  .payment-dark-card-title {
    font-size: 20px;
  }
  
  .payment-dark-card-description {
    font-size: 12px;
    max-width: 140px;
  }
  
  .payment-dark-card-btn {
    padding: 8px 14px;
    font-size: 12px;
    margin-top: 12px;
  }
  
  .payment-currency-item {
    height: 32px;
  }
  
  .payment-currency-select {
    min-width: 50px;
    padding: 0 4px;
  }
  
  .payment-currency-input {
    font-size: 10px;
    padding: 0 4px;
  }
  
  .payment-swap-btn {
    width: 22px;
    height: 22px;
  }
  
  .payment-swap-btn svg {
    width: 10px;
    height: 10px;
  }
  
  .payment-chart-wrap {
    height: 70px;
  }
  
  .get-started-left-title {
    font-size: 20px;
  }
  
  .get-started-btn-primary {
    height: 44px;
    font-size: 13px;
  }
  
  .get-started-btn-text {
    height: 44px;
    font-size: 13px;
  }
  
  .footer {
    padding: 16px 8px 0;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-brand .nav-logo-img {
    width: 80px;
    height: 26px;
  }
  
  .footer-brand-description {
    font-size: 11px;
  }
  
  .footer-social-row a {
    width: 28px;
    height: 28px;
  }
  
  .footer-social-row a img {
    width: 14px;
    height: 14px;
  }
  
  .footer-bottom {
    font-size: 10px;
    padding: 10px 0 16px;
  }
}

/* ============================================================
   NAV LOCALE DROPDOWN
   ============================================================ */

.nav-locale-wrapper {
  position: relative;
  flex-shrink: 0;
  min-width: 160px;
}

.nav-locale {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  padding: 8px 4px;
  border: none;
  background: none;
  font-family: var(--font-body), var(--font-fallback);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 100%;
  justify-content: flex-start;
  min-width: 150px;
}

.nav-locale:hover {
  color: #0048FF;
}

.nav-locale .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
}

/* Fix for country name - fixed width to prevent layout shift */
.nav-locale .country-name {
  display: inline-block;
  min-width: 110px;
  text-align: left;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .nav-locale-wrapper {
    min-width: auto;
  }
  
  .nav-locale {
    min-width: auto;
    padding: 6px 2px;
  }
  
  .nav-locale .country-name {
    display: none;
  }
  
  .nav-locale .flag-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .nav-locale .flag-icon {
    width: 18px;
    height: 18px;
  }
}

.nav-locale-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav-locale-wrapper.open .nav-locale-chevron {
  transform: rotate(180deg);
}
/* ============================================================
   LOCALE DROPDOWN
   ============================================================ */

.locale-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(20, 18, 58, .14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 150;
  pointer-events: none;
}

.nav-locale-wrapper.open .locale-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.locale-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 400;
}

.locale-dropdown-item:hover {
  background: var(--gray-50);
  transform: translateX(4px);
}

.locale-dropdown-item.active {
  background: var(--blue-100);
  color: var(--blue-600);
}

.locale-dropdown-item .locale-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .locale-dropdown {
    min-width: 160px;
  }
  
  .locale-dropdown-item {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .locale-dropdown-item .locale-flag {
    width: 20px;
    height: 20px;
  }
}

/* ============================================================
   RESPONSIVE FIXES FOR LOCALE DROPDOWN
   ============================================================ */

@media (max-width: 480px) {
  .locale-dropdown {
    min-width: 140px;
    right: -10px;
  }
  
  .locale-dropdown-item {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .locale-dropdown-item .locale-flag {
    width: 18px;
    height: 18px;
  }
}

/* ============================================================
   FOOTER — COMPLETE WITH HEIGHT 398px
   ============================================================ */

.footer {
  background: var(--navy-950);
  color: #c7cade;
  padding: 56px 24px 0;
  height: 398px;
  display: flex;
  flex-direction: column;
}

.footer-container {
  margin: 0 auto;
  max-width: 1451px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 0;
    height: auto;
    min-height: 398px;
  }
}

@media (max-width: 480px) {
  .footer {
    height: auto;
    min-height: auto;
    padding: 30px 16px 0;
  }
}

/* ============================================================
   FOOTER TOP — BRAND + COLUMNS
   ============================================================ */

.footer-top {
  display: flex;
  gap: 40px;
  flex: 1;
}

@media (max-width: 1100px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    gap: 30px;
  }
}

/* Brand Column — Separate */
.footer-brand {
  flex: 0 0 auto;
  width: 213px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .footer-brand {
    width: 100%;
  }
}

/* ============================================================
   FIXED: FOOTER COLUMNS — MOBILE STACK & CENTER
   ============================================================ */

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: 978px;
  flex-shrink: 0;
  margin-left: 250px;
}

@media (max-width: 1300px) {
  .footer-columns {
    width: auto;
    flex: 1;
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .footer-columns {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    margin-left: 0; /* Remove left margin on tablet */
  }
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

/* ============================================================
   MOBILE: STACK ONE AFTER ANOTHER & CENTER
   ============================================================ */
@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr; /* Single column */
    gap: 24px;
    text-align: center; /* Center all content */
    width: 100%;
    margin: 0 auto;
  }
  
  /* Center the column headings and links */
  .footer-col {
    text-align: center;
  }
  
  .footer-col h4 {
    text-align: center;
  }
  
  .footer-col ul {
    text-align: center;
  }
  
  .footer-col li {
    text-align: center;
  }
}

/* ============================================================
   BRAND COLUMN — Mobile Center
   ============================================================ */

.footer-brand .footer-logo {
  color: #fff;
  margin-bottom: 14px;
  display: inline-block;
}

.footer-brand .nav-logo-img {
  width: 166px;
  height: 51px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .footer-brand .nav-logo-img {
    width: 140px;
    height: 44px;
  }
}

/* Center brand on mobile */
@media (max-width: 480px) {
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand .nav-logo-img {
    margin: 0 auto;
  }
  
  .footer-brand-description {
    margin: 0 auto 20px;
    text-align: center;
  }
  
  .footer-social-row {
    justify-content: center;
  }
}

.footer-brand-description {
  font-size: 16px;
  color: #FFFFFF;
  max-width: 201px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-brand-description {
    font-size: 14px;
    max-width: 100%;
  }
}

.footer-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  text-decoration: none;
  background: transparent;
}

.footer-social-row a:hover {
  transform: translateY(-2px);
}

.footer-social-row a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-social-row a:hover img {
  opacity: 0.8;
}

/* ============================================================
   FOOTER COLUMNS
   ============================================================ */

.footer-col h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-body), var(--font-fallback);
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  font-size: 13.5px;
  color: #9a9dbb;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

/* ============================================================
   FOOTER BOTTOM
   ============================================================ */

.footer-bottom {
  padding: 0 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 400;
  flex-shrink: 0;
}

.footer-bottom span:first-child {
  width: 236px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
  }
  
  .footer-bottom span:first-child {
    width: 100%;
    flex-shrink: 0;
  }
}
@media (max-width: 1024px) {
  .nav-sub-dropdown {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 8px 0 20px !important;
    background: #fafaff !important;
    border: none !important;
    border-left: none !important;  /* Remove the divider on mobile */
    border-radius: 0 0 9px 9px !important;
    box-shadow: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: hidden !important;
    transform: translateY(-6px) !important;
    min-height: 0 !important;
    height: auto !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, transform 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
  }

  .nav-dropdown-item.open > .nav-sub-dropdown {
    max-height: 800px !important;
    padding: 6px 8px 10px 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}
/* ============================================================
   LEGAL PAGES - BULLET POINTS
   ============================================================ */

/* Small dot bullet points for legal pages */
.content ul {
    list-style: none;
    padding-left: 20px;
    margin: 12px 0;
}

.content ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    line-height: 1.6;
}

.content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #9a9b9e;
    font-size: 14px;
    font-weight: bold;
}

/* Nested lists (sub-bullets) */
.content ul ul {
    padding-left: 20px;
    margin: 4px 0;
}

.content ul ul li::before {
    content: '◦';
    color: #666;
    font-size: 12px;
}

/* For the meta-block section */
.meta-block ul {
    list-style: none;
    padding-left: 0;
    margin: 8px 0;
}

.meta-block ul li {
    padding-left: 0;
}

.meta-block ul li::before {
    content: none;
}
/* ============================================================
   LEGAL PAGES - CONTENT STRUCTURE
   ============================================================ */

/* Content paragraphs spacing */
.content p {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Content headings */
.content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

/* Section spacing */
.content section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Table of Contents styling */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 6px;
    padding-left: 0;
}

.toc-list li::before {
    content: none !important;
}

.toc-list a {
    display: block;
    padding: 6px 10px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 13px;
}

.toc-list a:hover {
    background: #f5f5f5;
}

.toc-list a.active {
    background: #e8edff;
    color: #0048FF;
    font-weight: 600;
}
/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e8e8ee;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  padding: 30px 40px;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-container {
  max-width: 1451px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Section */
.cookie-consent-left {
  flex: 1;
}

.cookie-consent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-consent-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0048FF;
  text-transform: uppercase;
}

.cookie-consent-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: var(--font-body), var(--font-fallback);
}

.cookie-consent-text {
  font-size: 14px;
  color: #5E5E5E;
  margin-bottom: 12px;
  line-height: 1.5;
}

.cookie-policy-link {
  font-size: 14px;
  color: #0048FF;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookie-policy-link:hover {
  color: #0033cc;
  text-decoration: underline;
}

/* Right Section - Buttons */
.cookie-consent-right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body), var(--font-fallback);
  white-space: nowrap;
}

.cookie-btn-manage {
  background: transparent;
  color: #000000;
  border: 1px solid #d0d0d8;
}

.cookie-btn-manage:hover {
  background: #f5f5f5;
  border-color: #b0b0b8;
}

.cookie-btn-reject {
  background: transparent;
  color: #000000;
  border: 1px solid #d0d0d8;
}

.cookie-btn-reject:hover {
  background: #f5f5f5;
  border-color: #b0b0b8;
}

.cookie-btn-accept {
  background: #0048FF;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #0033cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 72, 255, 0.3);
}

/* ============================================================
   COOKIE MODAL (POPUP)
   ============================================================ */

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-modal {
  background: #ffffff;
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 45px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cookie-modal-title {
  font-size: 26px;
  font-weight: 700;
  color: #0048FF;
  font-family: var(--font-display), var(--font-fallback);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.3s ease;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: #000;
}

.cookie-modal-subtitle {
  font-size: 14px;
  color: #5E5E5E;
  margin-bottom: 28px;
  line-height: 1.6;
}

.cookie-modal-subtitle a {
  color: #0048FF;
  text-decoration: none;
  font-weight: 500;
}

.cookie-modal-subtitle a:hover {
  text-decoration: underline;
}

/* Cookie Options */
.cookie-modal-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.cookie-option {
  border-bottom: 1px solid #e8e8ee;
  padding-bottom: 20px;
}

.cookie-option:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-option-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
  font-family: var(--font-body), var(--font-fallback);
}

.cookie-option-info p {
  font-size: 13px;
  color: #5E5E5E;
  margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-toggle-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle input {
  display: none;
}

.cookie-toggle-switch {
  cursor: pointer;
}

.cookie-toggle-track {
  display: block;
  width: 48px;
  height: 28px;
  background: #d0d0d8;
  border-radius: 14px;
  position: relative;
  transition: background 0.3s ease;
}

.cookie-toggle-thumb {
  display: block;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-toggle input:checked + .cookie-toggle-switch .cookie-toggle-track {
  background: #0048FF;
}

.cookie-toggle input:checked + .cookie-toggle-switch .cookie-toggle-track .cookie-toggle-thumb {
  transform: translateX(20px);
}

.cookie-toggle-label {
  font-size: 12px;
  color: #5E5E5E;
  font-weight: 500;
}

.cookie-toggle-disabled .cookie-toggle-track {
  background: #0048FF;
  opacity: 0.7;
}

.cookie-toggle-disabled .cookie-toggle-thumb {
  transform: translateX(20px);
}

/* Modal Footer Buttons */
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid #e8e8ee;
}

.cookie-modal-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body), var(--font-fallback);
}

.cookie-modal-btn-save {
  background: transparent;
  color: #000000;
  border: 1px solid #d0d0d8;
}

.cookie-modal-btn-save:hover {
  background: #f5f5f5;
  border-color: #b0b0b8;
}

.cookie-modal-btn-accept-all {
  background: #0048FF;
  color: #ffffff;
}

.cookie-modal-btn-accept-all:hover {
  background: #0033cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 72, 255, 0.3);
}

/* ============================================================
   COOKIE CONSENT - RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .cookie-consent {
    padding: 24px 30px;
  }
  
  .cookie-consent-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-consent-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 20px;
  }
  
  .cookie-consent-title {
    font-size: 16px;
  }
  
  .cookie-consent-text {
    font-size: 13px;
  }
  
  .cookie-modal {
    padding: 30px 24px;
  }
  
  .cookie-modal-title {
    font-size: 22px;
  }
  
  .cookie-option-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cookie-consent {
    padding: 16px;
  }
  
  .cookie-consent-right {
    flex-direction: column;
    gap: 8px;
  }
  
  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-modal {
    padding: 24px 16px;
  }
  
  .cookie-modal-title {
    font-size: 20px;
  }
}
/* ============================================================
   PAYMENT METHODS VIEW LINK — TEXT ONLY HOVER
   ============================================================ */

.payment-methods-view-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
  font-family: var(--font-body), var(--font-fallback);
  position: relative;
}

.payment-methods-view-link .arrow-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-methods-view-link .arrow-icon path {
  stroke: #000000;
  transition: stroke 0.3s ease;
}

/* HOVER STATE — Text changes to #0048FF */
.payment-methods-view-link:hover {
  color: #0048FF;
}

.payment-methods-view-link:hover .arrow-icon path {
  stroke: #0048FF;
}

.payment-methods-view-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .payment-methods-view-link {
    font-size: 16px;
  }
  
  .payment-methods-view-link .arrow-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .payment-methods-view-link {
    font-size: 14px;
  }
  
  .payment-methods-view-link .arrow-icon {
    width: 14px;
    height: 14px;
  }
}
/* ============================================================
   STATS SECTION — MOBILE CENTER FIX
   ============================================================ */

/* Mobile: Center all stats items */
@media (max-width: 768px) {
  .stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 10px;
    border-right: none;
  }
  
  .stats-item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .stats-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  .stats-item-number {
    text-align: center;
  }
  
  .stats-item-label {
    text-align: center;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .stats-item {
    padding: 0 4px;
    gap: 4px;
  }
  
  .stats-item-icon {
    width: 32px;
    height: 32px;
  }
  
  .stats-item-icon-img {
    width: 32px;
    height: 32px;
  }
  
  .stats-item-number {
    font-size: 18px;
    text-align: center;
  }
  
  .stats-item-label {
    font-size: 11px;
    text-align: center;
  }
}

/* Very Small Mobile (380px and below) */
@media (max-width: 380px) {
  .stats-item {
    padding: 0 2px;
    gap: 2px;
  }
  
  .stats-item-icon {
    width: 28px;
    height: 28px;
  }
  
  .stats-item-icon-img {
    width: 28px;
    height: 28px;
  }
  
  .stats-item-number {
    font-size: 16px;
  }
  
  .stats-item-label {
    font-size: 10px;
  }
}
/* ============================================================
   PAYMENT CONVERTER ROW — MOBILE FIX
   Keep items in same row horizontally, not stacked vertically
   ============================================================ */

/* Override the vertical stacking on mobile */
@media (max-width: 768px) {
  .payment-converter-row {
    display: flex;
    flex-direction: row !important; /* Force horizontal layout */
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap !important; /* Prevent wrapping */
    overflow: visible !important;
  }
  
  .payment-currency-item {
    flex: 1;
    min-width: 0; /* Allow shrinking */
    width: auto;
    height: 40px;
  }
  
  .payment-currency-item .payment-currency-select {
    min-width: 60px;
    padding: 0 8px;
  }
  
  .payment-currency-item .payment-currency-input {
    font-size: 12px;
    padding: 0 6px;
    min-width: 50px;
    width: auto;
  }
  
  .payment-swap-btn {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transform: none !important; /* Remove rotation on mobile */
  }
  
  .payment-swap-btn:hover {
    transform: scale(1.1) !important;
  }
  
  .payment-swap-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .payment-currency-select .currency-flag {
    width: 20px;
    height: 20px;
  }
  
  .payment-currency-select .currency-code-display {
    font-size: 10px;
  }
  
  .payment-currency-select .dropdown-arrow {
    width: 10px;
    height: 10px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .payment-converter-row {
    gap: 4px;
  }
  
  .payment-currency-item {
    height: 34px;
  }
  
  .payment-currency-item .payment-currency-select {
    min-width: 50px;
    padding: 0 4px;
    gap: 3px;
  }
  
  .payment-currency-item .payment-currency-input {
    font-size: 10px;
    padding: 0 4px;
    min-width: 40px;
  }
  
  .payment-swap-btn {
    width: 26px;
    height: 26px;
  }
  
  .payment-swap-btn svg {
    width: 12px;
    height: 12px;
  }
  
  .payment-currency-select .currency-flag {
    width: 18px;
    height: 18px;
  }
  
  .payment-currency-select .currency-code-display {
    font-size: 9px;
  }
  
  .payment-currency-select .dropdown-arrow {
    width: 8px;
    height: 8px;
  }
}

/* Very Small Mobile (380px and below) */
@media (max-width: 380px) {
  .payment-converter-row {
    gap: 3px;
  }
  
  .payment-currency-item {
    height: 30px;
  }
  
  .payment-currency-item .payment-currency-select {
    min-width: 40px;
    padding: 0 3px;
    gap: 2px;
  }
  
  .payment-currency-item .payment-currency-input {
    font-size: 9px;
    padding: 0 3px;
    min-width: 30px;
  }
  
  .payment-swap-btn {
    width: 22px;
    height: 22px;
  }
  
  .payment-swap-btn svg {
    width: 10px;
    height: 10px;
  }
  
  .payment-currency-select .currency-flag {
    width: 16px;
    height: 16px;
  }
  
  .payment-currency-select .currency-code-display {
    font-size: 8px;
  }
}
/* ============================================================
   PAYMENT DARK FLAG CIRCLES — DOUBLE RING FOR FLAGS ONLY
   ============================================================ */

/* Base circle - shared styles */
.payment-dark-flag-circ {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
  
  /* Outer ring */
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  padding: 6px;
}

/* Inner circle — ONLY for flag images (not for "120+") */
.payment-dark-flag-circ:not(.payment-dark-flag-circ-more)::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 4px solid #DCE6FF;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

/* Flag image — centered inside the inner border */
.payment-dark-flag-circ img {
  width: 100%;
  height: 100%;
  max-width: 38px;
  max-height: 38px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* "120+" text — ONLY outer circle, NO inner circle */
.payment-dark-flag-circ-more {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
  /* Remove padding so text fills the circle */
  padding: 0;
}

/* Hover effect */
.payment-dark-flag-circ:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.payment-dark-flag-circ:not(.payment-dark-flag-circ-more):hover::before {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   RESPONSIVE — FLAG CIRCLES
   ============================================================ */

@media (max-width: 1024px) {
  .payment-dark-flag-circ {
    width: 46px;
    height: 46px;
    padding: 5px;
  }
  
  .payment-dark-flag-circ:not(.payment-dark-flag-circ-more)::before {
    inset: 3px;
    border-width: 3px;
  }
  
  .payment-dark-flag-circ img {
    max-width: 32px;
    max-height: 32px;
  }
  
  .payment-dark-flag-circ-more {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-circ {
    width: 38px;
    height: 38px;
    padding: 4px;
    border-width: 1.5px;
  }
  
  .payment-dark-flag-circ:not(.payment-dark-flag-circ-more)::before {
    inset: 2.5px;
    border-width: 2.5px;
  }
  
  .payment-dark-flag-circ img {
    max-width: 26px;
    max-height: 26px;
  }
  
  .payment-dark-flag-circ-more {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-circ {
    width: 32px;
    height: 32px;
    padding: 3px;
    border-width: 1.5px;
  }
  
  .payment-dark-flag-circ:not(.payment-dark-flag-circ-more)::before {
    inset: 2px;
    border-width: 2px;
  }
  
  .payment-dark-flag-circ img {
    max-width: 22px;
    max-height: 22px;
  }
  
  .payment-dark-flag-circ-more {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .payment-dark-flag-circ {
    width: 28px;
    height: 28px;
    padding: 2.5px;
    border-width: 1px;
  }
  
  .payment-dark-flag-circ:not(.payment-dark-flag-circ-more)::before {
    inset: 1.5px;
    border-width: 1.5px;
  }
  
  .payment-dark-flag-circ img {
    max-width: 19px;
    max-height: 19px;
  }
  
  .payment-dark-flag-circ-more {
    font-size: 8px;
  }
}
/* ============================================================
   PRODUCTS CARD — CLICKABLE
   ============================================================ */

/* Card link wrapper */
.products-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-card-link:hover {
  transform: translateY(-4px);
}

.products-card-link:hover .products-card {
  background: radial-gradient(
    circle at top right,
    #5149ff 0%,
    #3b30df 25%,
    #2b239d 60%,
    #17144f 100%
  );
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(20, 18, 79, .35);
}

.products-card-link:hover .products-card .products-card-tag,
.products-card-link:hover .products-card .products-card-title,
.products-card-link:hover .products-card .products-card-description,
.products-card-link:hover .products-card .products-card-list-item,
.products-card-link:hover .products-card .products-card-explore {
  color: #fff;
}

.products-card-link:hover .products-card .products-card-icon-img {
  transform: scale(1.05);
}

.products-card-link:hover .products-card .products-card-check {
  opacity: 1;
  transform: scale(1);
}

.products-card-link:hover .products-card .feature-circle {
  fill: #1557ff;
  stroke: #1557ff;
}

.products-card-link:hover .products-card .feature-check {
  stroke: #ffffff;
}

/* Individual card styles */
.products-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 28px 26px;
  overflow: hidden;
  transition: all .35s ease;
  height: 100%;
  min-height: 420px;
}

/* Make sure check icon still works */
.products-card-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  opacity: 0;
  transform: scale(.8);
  transition: all .35s ease;
  pointer-events: none;
}

/* Keep explore link as text, not clickable separately */
.products-card-explore {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  transition: all .35s ease;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, color .35s ease;
  pointer-events: none; /* Prevents separate click */
}

.products-card-explore.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .products-card {
    min-height: 350px;
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .products-card {
    min-height: 300px;
    padding: 20px 16px;
  }
}

/* ============================================================
   PAYMENT METHODS — MP4 VIDEO
   ============================================================ */

.payment-methods-logos {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.payment-methods-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Optional: Add a subtle overlay or shadow */
.payment-methods-logos {
    position: relative;
}

.payment-methods-logos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.02) 100%
    );
    pointer-events: none;
}