/* ============================================================
   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
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  width: 100%;
}

.nav-container {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: 100%;
  margin: 0 auto;
  max-width: 1451px;
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 16px 24px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 12px 16px;
    height: 70px;
  }
}

/* ============ LOGO ============ */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display), var(--font-fallback);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy-950);
  letter-spacing: .01em;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 172px;
  height: 70px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .nav-logo-img {
    width: 120px;
    height: 37px;
  }
}

@media (max-width: 480px) {
  .nav-logo-img {
    width: 100px;
    height: 32px;
  }
}

/* ============ NAV LINKS ============ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(20, 18, 58, .14);
    z-index: 100;
    gap: 6px;
    width: 100%;
  }
  .nav-links.open {
    display: flex !important;
  }
}

.nav-item {
  position: relative;
  width: 100%;
}

/* ============ NAV LINK ============ */
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  padding: 26px 0;
  background: none;
  border: none;
  font-family: var(--font-body), var(--font-fallback);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .nav-link {
    padding: 10px 0;
    font-size: 15px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .nav-link {
    padding: 8px 0;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .nav-link {
    padding: 6px 0;
    font-size: 12px;
    white-space: nowrap;
  }
}

.nav-item-has-dd.open > .nav-link,
.nav-link-active {
  color: var(--blue-600);
}

.nav-link-chevron {
  width: 13px;
  height: 13px;
  transition: transform .15s;
  flex-shrink: 0;
}

.nav-item.open .nav-link-chevron {
  transform: rotate(180deg);
}

/* Underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 0;
  height: 2px;
  background: #161342;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-item-has-dd .nav-link::after {
  bottom: 20px;
}

@media (max-width: 1024px) {
  .nav-link::after {
    bottom: 6px;
  }
}

/* ============ NAV RIGHT CONTROLS ============ */
.nav-right-controls {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-right-controls {
    gap: 16px;
  }
}

/* ============ NAV "GET STARTED" BUTTON — FIGMA SPECS ============ */
.nav-right-controls .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  width: 146px;
  height: 51px;
  border-radius: 7px;
  background: #14123a;
  color: #ffffff;
  font-size: 16px;
  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;
}

.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;
}

@media (max-width: 1024px) {
  .nav-right-controls .btn-primary {
    width: 120px;
    height: 44px;
    padding: 8px;
    font-size: 14px;
    border-radius: 6px;
  }
  .nav-right-controls .btn-primary svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .nav-right-controls .btn-primary {
    width: 100px;
    height: 38px;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    gap: 4px;
  }
  .nav-right-controls .btn-primary svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .nav-right-controls .btn-primary {
    width: 80px;
    height: 34px;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 5px;
    gap: 3px;
  }
  .nav-right-controls .btn-primary svg {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 380px) {
  .nav-right-controls .btn-primary {
    width: 70px;
    height: 30px;
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 4px;
    gap: 2px;
  }
  .nav-right-controls .btn-primary svg {
    width: 8px;
    height: 8px;
  }
}

/* ============ NAV LOCALE ============ */
.nav-locale {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 21px;
  font-weight: 500;
  color: #000000;
  padding: 8px 4px;
  border: none;
  background: none;
  font-family: var(--font-body), var(--font-fallback);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .nav-locale span {
    display: none;
  }
}

.nav-locale-flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-locale-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ============ MOBILE TOGGLE ============ */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}

.nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .nav-mobile-toggle {
    display: block;
  }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 340px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(20, 18, 58, .14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 50;
  pointer-events: none;
}

.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .nav-dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    transition: max-height .3s ease, opacity .3s ease, padding .3s ease;
    min-width: unset;
  }
  .nav-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 600px;
    padding: 10px;
    pointer-events: auto;
  }
  .nav-item.open .nav-dropdown .nav-dropdown-row {
    padding: 8px 0;
  }
}

.nav-dropdown-heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 10px 6px;
}

.nav-dropdown-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background .15s ease;
  cursor: pointer;
}

.nav-dropdown-row:hover {
  background: var(--gray-50);
}

.nav-dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dropdown-icon svg {
  width: 19px;
  height: 19px;
}

.nav-dropdown-text {
  flex: 1;
  min-width: 0;
}

.nav-dropdown-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 2px;
  font-family: var(--font-body), var(--font-fallback);
}

.nav-dropdown-text span {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.4;
  font-weight: 400;
  display: block;
}

.nav-dropdown-arrow {
  margin-left: auto;
  width: 14px;
  height: 14px;
  color: var(--gray-400);
  flex-shrink: 0;
  margin-top: 12px;
}

/* ============================================================
   SUB-DROPDOWN
   ============================================================ */
.nav-dropdown-item {
  position: relative;
}

.nav-sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 340px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(20, 18, 58, .14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 60;
  pointer-events: none;
}

.nav-dropdown-item.open .nav-sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .nav-sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    pointer-events: auto;
    min-width: unset;
  }
  .nav-dropdown-item.open .nav-sub-dropdown {
    max-height: 400px;
    padding: 10px 10px 10px 20px;
  }
  .nav-sub-dropdown-row {
    padding: 6px 0;
  }
}

.nav-sub-dropdown-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background .15s ease, transform .15s ease;
  cursor: pointer;
}

.nav-sub-dropdown-row:hover {
  background: var(--gray-50);
  transform: translateX(4px);
}


/* ============================================================
   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: 500px;
  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: 180px;
    height: 180px;
  }
}

/* ============================================================
   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;
  }
}

/* ============================================================
   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 {
  justify-items: center;
  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 {
  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: #000000;
  font-size: 16px;
  white-space: nowrap;
  padding-bottom: 8px;
}

@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 {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.products-card:hover {
  background: #161342;
  box-shadow: 0 8px 30px rgba(22, 19, 66, 0.2), 0 2px 8px rgba(22, 19, 66, 0.1);
  transform: translateY(-6px);
  border-color: #161342;
}

.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: #ffffff;
}

.products-card:hover .products-card-list-item svg circle,
.products-card:hover .products-card-list-item svg path {
  stroke: #ffffff;
}

.products-card:hover .products-card-icon-img {
  transform: scale(1.05);
}

.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 0.3s ease;
}

@media (max-width: 480px) {
  .products-card-icon-img {
    width: 100px;
    height: 100px;
  }
}

.products-card-tag {
  display: block;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .06em;
  color: #5E5E5E;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.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 0.3s ease;
}

.products-card-description {
  font-size: 16px;
  color: #000000;
  margin-bottom: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.products-card-list {
  margin-bottom: 16px;
}

.products-card-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #000000;
  margin-bottom: 7px;
  font-weight: 400;
  transition: color 0.3s ease, transform 0.3s ease;
}

.products-card-list-item:hover {
  transform: translateX(4px);
}

.products-card-list-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: stroke 0.3s ease;
}

.products-card-list-item svg circle {
  stroke: #D1D5DB;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}

.products-card-list-item svg path {
  stroke: #000000;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}

.products-card-explore {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.products-card-explore:hover {
  transform: translateX(4px);
}

/* ============================================================
   PAYMENT SECTION — FULLY RESPONSIVE
   ============================================================ */
.payment {
  padding: 70px 0;
}

.payment-container {
  margin: 0 auto;
  padding: 0 30px;
  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: 35px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .payment-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.payment-dark-card {
  background: #03030d;
  border-radius: 32px;
  padding: 50px;
  min-height: 680px;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: url("../images/wave-bg.png") center bottom no-repeat;
  background-size: cover;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .payment-dark-card {
    min-height: 600px;
    padding: 45px 40px;
  }
}

@media (max-width: 768px) {
  .payment-dark-card {
    min-height: 520px;
    padding: 32px 28px;
  }
}

@media (max-width: 480px) {
  .payment-dark-card {
    min-height: 440px;
    padding: 24px 20px;
  }
}

.payment-dark-card-eyebrow {
  color: #0f5dff;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

@media (max-width: 480px) {
  .payment-dark-card-eyebrow {
    font-size: 14px;
  }
}

.payment-dark-card-title {
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
  margin: 25px 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .payment-dark-card-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .payment-dark-card-title {
    font-size: 36px;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .payment-dark-card-title {
    font-size: 28px;
    margin: 16px 0;
  }
}

.payment-dark-card-description {
  font-size: 18px;
  line-height: 1.6;
  color: #FFFFFF;
  max-width: 280px;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .payment-dark-card-description {
    font-size: 16px;
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .payment-dark-card-description {
    font-size: 14px;
    max-width: 200px;
  }
}

.payment-dark-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  background: #0048FF;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 14px;
  font-size: 20px;
  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) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 72, 255, 0.35);
  background: #0055ff;
}

@media (max-width: 768px) {
  .payment-dark-card-btn {
    font-size: 18px;
    padding: 12px 28px;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .payment-dark-card-btn {
    font-size: 16px;
    padding: 12px 24px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
}

.payment-dark-icon-grid {
  position: absolute;
  top: 50px;
  right: 45px;
  width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 43px 15px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .payment-dark-icon-grid {
    top: 40px;
    right: 30px;
    width: 240px;
    gap: 30px 12px;
  }
}

@media (max-width: 768px) {
  .payment-dark-icon-grid {
    top: 30px;
    right: 20px;
    width: 180px;
    gap: 20px 10px;
  }
}

@media (max-width: 480px) {
  .payment-dark-icon-grid {
    display: none;
  }
}

.payment-dark-icon-grid img {
  width: 100%;
  max-width: 170px;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .payment-dark-icon-grid img {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .payment-dark-icon-grid img {
    max-width: 75px;
  }
}

.payment-dark-market-area {
  position: absolute;
  left: 51px;
  bottom: 70px;
  z-index: 2;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .payment-dark-market-area {
    left: 40px;
    bottom: 50px;
  }
}

@media (max-width: 768px) {
  .payment-dark-market-area {
    left: 28px;
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .payment-dark-market-area {
    left: 20px;
    bottom: 20px;
  }
}

.payment-dark-market-title {
  color: #0f5dff;
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .payment-dark-market-title {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .payment-dark-market-title {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.payment-dark-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1024px) {
  .payment-dark-flag-row {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-row {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-row {
    gap: 8px;
  }
}

.payment-dark-flag-circ {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  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: 52px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-circ {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-circ {
    width: 36px;
    height: 36px;
  }
}

.payment-dark-flag-circ img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .payment-dark-flag-circ img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-circ img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-circ img {
    width: 28px;
    height: 28px;
  }
}

.payment-dark-flag-circ-more {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .payment-dark-flag-circ-more {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .payment-dark-flag-circ-more {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .payment-dark-flag-circ-more {
    font-size: 13px;
  }
}

/* Converter Card */
.payment-converter-card {
  background: #fff;
  border-radius: 32px;
  padding: 50px;
  min-height: 680px;
  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: 600px;
    padding: 45px 40px;
  }
}

@media (max-width: 768px) {
  .payment-converter-card {
    min-height: 520px;
    padding: 32px 28px;
  }
}

@media (max-width: 480px) {
  .payment-converter-card {
    min-height: 440px;
    padding: 24px 20px;
  }
}

.payment-converter-eyebrow {
  color: #0f5dff;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

@media (max-width: 480px) {
  .payment-converter-eyebrow {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.payment-converter-title {
  font-size: 48px;
  line-height: 1.1;
  color: #07072b;
  margin-bottom: 20px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .payment-converter-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .payment-converter-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .payment-converter-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

.payment-converter-sub {
  font-size: 16px;
  color: #5E5E5E;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .payment-converter-sub {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .payment-converter-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.payment-converter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .payment-converter-row {
    flex-direction: column;
    gap: 12px;
  }
}

.payment-currency-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  height: 56px;
  border: 1px solid #E4E4E4;
  border-radius: 12px;
  overflow: visible;
  background: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .payment-currency-item {
    min-width: 100%;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .payment-currency-item {
    height: 42px;
  }
}

.payment-currency-select {
  position: relative;
  cursor: pointer;
  min-width: 140px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  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: 110px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .payment-currency-select {
    min-width: 80px;
    padding: 0 8px;
    gap: 4px;
  }
}

.payment-currency-select .dropdown-arrow {
  margin-left: auto;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: #666;
}

.payment-currency-select.active .dropdown-arrow {
  transform: rotate(180deg);
}

.payment-currency-select .currency-flag {
  width: 32px;
  height: 32px;
  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: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .payment-currency-select .currency-flag {
    width: 24px;
    height: 24px;
  }
}

.payment-currency-select .currency-code-display {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .payment-currency-select .currency-code-display {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .payment-currency-select .currency-code-display {
    font-size: 11px;
  }
}

.payment-currency-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 16px;
  font-size: 16px;
  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: 14px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .payment-currency-input {
    font-size: 13px;
    padding: 0 8px;
  }
}

.payment-swap-btn {
  width: 44px;
  height: 44px;
  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: 38px;
    height: 38px;
    transform: rotate(90deg);
  }
  .payment-swap-btn:hover {
    transform: rotate(90deg) scale(1.12);
  }
}

@media (max-width: 480px) {
  .payment-swap-btn {
    width: 32px;
    height: 32px;
  }
}

.payment-swap-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .payment-swap-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Currency Dropdown */
.currency-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 340px;
  max-height: 320px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(20, 18, 58, .14);
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease;
}

.currency-dropdown-menu.open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .currency-dropdown-menu {
    width: 280px;
    max-height: 260px;
    left: -10px;
  }
}

@media (max-width: 480px) {
  .currency-dropdown-menu {
    width: 240px;
    max-height: 200px;
    left: -20px;
  }
}

.currency-dropdown-search-wrap {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 8px 10px 10px;
  border-bottom: 1px solid var(--gray-200);
  z-index: 2;
  flex-shrink: 0;
}

.currency-dropdown-search {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-body), var(--font-fallback);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--gray-50);
}

.currency-dropdown-search:focus {
  border-color: var(--blue-600);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47, 91, 237, 0.1);
}

.currency-dropdown-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 4px 8px 8px;
}

.currency-dropdown-items-container::-webkit-scrollbar {
  width: 4px;
}

.currency-dropdown-items-container::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

.currency-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.currency-dropdown-item:hover {
  background: var(--gray-50);
  transform: translateX(2px);
}

.currency-dropdown-item.selected {
  background: var(--blue-100);
}

.currency-dropdown-item img {
  width: 32px;
  height: 32px;
  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: 24px;
    height: 24px;
  }
}

.currency-emoji-fallback {
  width: 32px;
  height: 32px;
  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: 16px;
}

@media (max-width: 480px) {
  .currency-emoji-fallback {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

.currency-dropdown-item .currency-code {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-900);
  min-width: 40px;
}

.currency-dropdown-item .currency-name {
  font-size: 12px;
  color: var(--gray-600);
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

@media (max-width: 480px) {
  .currency-dropdown-item .currency-name {
    display: none;
  }
}

.currency-dropdown-no-results {
  padding: 20px 12px;
  text-align: center;
  color: var(--gray-400);
  font-size: 14px;
}

/* Chart */
.payment-chart-wrap {
  margin-top: 20px;
  position: relative;
  padding-top: 10px;
  height: 180px;
  min-height: 150px;
}

@media (max-width: 768px) {
  .payment-chart-wrap {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .payment-chart-wrap {
    height: 120px;
  }
}

.payment-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.payment-chart-today {
  position: absolute;
  right: 10px;
  bottom: -10px;
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 400;
  background: rgba(255,255,255,0.8);
  padding: 2px 10px;
  border-radius: 12px;
}

.chart-pair-label {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

@media (max-width: 480px) {
  .chart-pair-label {
    font-size: 11px;
  }
}

.chart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-400);
  font-size: 14px;
  gap: 12px;
}

.chart-loading .spinner {
  width: 24px;
  height: 24px;
  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); }
}

/* ============================================================
   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: 18px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.payment-methods-title {
  font-size: 36px;
  line-height: 1.05;
  font-weight: 700;
  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;
  }
}

.get-started-left-eyebrow {
  display: block;
  color: #0f5dff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 35px;
}

.get-started-left-title {
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .get-started-left-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .get-started-left-title {
    font-size: 28px;
  }
}

.get-started-left-lead {
  font-size: 20px;
  line-height: 1.5;
  color: #222;
  margin-bottom: 50px;
  max-width: 360px;
}

@media (max-width: 768px) {
  .get-started-left-lead {
    font-size: 17px;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.get-started-ctas {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 768px) {
  .get-started-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.get-started-btn-primary {
  background: #17174d;
  color: #fff;
  text-decoration: none;
  padding: 24px 35px;
  border-radius: 20px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.get-started-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(22, 19, 66, 0.25);
  background: #22227a;
}

@media (max-width: 480px) {
  .get-started-btn-primary {
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}

.get-started-btn-text {
  color: #111;
  text-decoration: none;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 480px) {
  .get-started-btn-text {
    font-size: 16px;
  }
}

.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;
  }
}

.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: 12px;
}

@media (max-width: 480px) {
  .get-started-step-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

.get-started-step-description {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .get-started-step-description {
    font-size: 12px;
  }
}

.get-started-approved {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1118a8;
  font-size: 20px;
  margin-top: 50px;
  margin-left: 320px;
}

@media (max-width: 1400px) {
  .get-started-approved {
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .get-started-approved {
    font-size: 16px;
    margin-top: 20px;
  }
}

.get-started-approved-bolt {
  font-size: 28px;
}

/* ============================================================
   FOOTER — RESPONSIVE
   ============================================================ */
.footer {
  background: var(--navy-950);
  color: #c7cade;
  padding: 56px 24px 0;
}

.footer-container {
  margin: 0 auto;
  max-width: 1451px;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 0;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 24px;
  padding-bottom: 44px;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}

@media (max-width: 400px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-brand .footer-logo {
  color: #fff;
  margin-bottom: 14px;
  display: inline-block;
}

.footer-brand-description {
  font-size: 13.5px;
  color: #8d90ad;
  max-width: 230px;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer-social-row a:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

.footer-social-row a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.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 {
  border-top: 1px solid var(--navy-800);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7d80a0;
  font-weight: 400;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ============================================================
   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;
  }
}