/* Global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: #050505;
  background-color: #fffeff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji", sans-serif;
}

.landing-container {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(0, 0, 0, 0.02), transparent 55%),
    #fffeff;
  color: #050505;
}

/********************** MEGA MENU DROPDOWNS ************************************************/

/* Nav base */
.nav {
  display: flex;
  gap: 32px;
  position: relative;
  align-items: center;
}

/* Top-level nav links ONLY */
.nav > a,
.nav > .nav-item > a {
  text-decoration: none;
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.nav > a:hover,
.nav > .nav-item > a:hover {
  color: #111827;
}

/* Mega wrapper - add hover delay buffer */
.nav-item.has-mega {
  position: static;
  padding: 20px 0px;
}

/* Create invisible hover bridge using before pseudo-element */
.nav-item.has-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 30px;
  background: transparent;
  z-index: 29;
}

/* Mega dropdown panel - VIEWPORT EDGE TO EDGE */
.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 54px;
  width: 100%;
  background: #000;
  color: #fff;
  
  /* Slide DOWN from ABOVE animation */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(0);
  transition: max-height 0.35s ease, opacity 0.35s ease;
  /* transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease; */
  transition-delay: 0s;

  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  z-index: 30;
  border: none;
  outline: none;
}

/* Inner grid container */
.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 72px;
  display: grid;
  gap: 40px;
  background: #000;
}

/* Grid layouts per menu type */
.mega-menu--products .mega-menu-inner {
  grid-template-columns: repeat(4, 1fr);
}
.mega-menu--coverage .mega-menu-inner {
  grid-template-columns: repeat(5, 1fr);
}
.mega-menu--company .mega-menu-inner {
  grid-template-columns: repeat(2, 1fr);
}

/* Show on hover - SLIDE DOWN FROM ABOVE */
.nav-item.has-mega:hover .mega-menu,
.mega-menu:hover {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
  /* margin-top: 8px; */
}

/* Keep dropdown open when hovering the dropdown itself */
.nav-item.has-mega:hover::before {
  z-index: 31;
}

/* Column container */
.mega-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Column titles */
.mega-column-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}

/* Mega links */
.mega-link {
  color: #f0f0f0 !important;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.mega-link:hover {
  color: #d9fe57 !important;
  transform: translateX(4px);
}

/* Keep dropdown black when header turns black */
.header:hover .mega-menu {
  background: #000;
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  .mega-menu-inner {
    padding: 24px 40px;
    gap: 32px;
  }
  
  .mega-menu--products .mega-menu-inner,
  .mega-menu--coverage .mega-menu-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*********************************************************************************/

/* Header */
.header {
  color: #050505;
  position: sticky;
  top: 0;
  z-index: 20;
  transition: background 0.3s ease, box-shadow 0.3s ease;

  /* Background Image */
  background-image: url('dotted_bg2.jpg');
  background-size: 50%;
  background-position: center;
  background-repeat: repeat;
}

/* Overlay - TRANSPARENT by default */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 254, 255, 0.75);
  z-index: 0;
  pointer-events: none;
  transition: background 0.3s ease;
}

/* SCROLLED class - header turns BLACK */
.header.scrolled::before {
  background: rgba(0, 0, 0, 0.95);
}

/* DARK overlay when header is hovered */
.header:hover::before {
  background: rgba(0, 0, 0, 0.95);
}

/* Inner flex row - ABOVE overlay */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding: 0px 72px;
  position: relative;
  z-index: 1;
}


/* Logo with icon support */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease;
  min-height: 60px;
  position: relative;
  z-index: 2;
}

/* Logo icon container - FORCE BIGGER SIZE */
.logo-icon-container {
  width: 120px !important;
  height: 120px !important;
  min-width: 120px !important;
  min-height: 120px !important;
  max-width: 120px !important;
  max-height: 120px !important;
  position: relative;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.logo-default,
.logo-hover {
  width: 120px !important;
  height: 120px !important;
  min-width: 120px !important;
  min-height: 120px !important;
  max-width: 120px !important;
  max-height: 120px !important;
  object-fit: contain !important;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  display: block !important;
}

.logo-hover {
  opacity: 0;
}

/* Logo image switches when SCROLLED */
.header.scrolled .logo-default {
  opacity: 0 !important;
}

.header.scrolled .logo-hover {
  opacity: 1 !important;
}

/* Logo image switches on HEADER hover */
.header:hover .logo-default {
  opacity: 0 !important;
}

.header:hover .logo-hover {
  opacity: 1 !important;
}

/* Show hover logo when mobile menu is open */
body.menu-open .logo-default {
  opacity: 0 !important;
}

body.menu-open .logo-hover {
  opacity: 1 !important;
}

.logo i {
  font-style: italic;
}

.header-icons {
  display: flex;
  gap: 12px;
  margin-left: auto;
  position: relative;
  /* z-index: 2; */
  z-index: 40;
}

/* Header scrolled effects */
.header.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.header.scrolled .logo {
  color: #ffffff;
}

.header.scrolled .nav > a,
.header.scrolled .nav > .nav-item > a {
  color: #e5e7eb;
}

.header.scrolled .icon-btn {
  background: #19191a;
  border-color: rgba(243, 244, 246, 0.6);
}

.header.scrolled .icon-btn:hover {
  border-color: #ffffff;
}

/* Hamburger turns white when scrolled */
.header.scrolled .hamburger-btn span {
  background: #ffffff !important;
}

/* Header hover effects */
.header:hover {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.header:hover .logo {
  color: #ffffff;
}

.header:hover .nav > a,
.header:hover .nav > .nav-item > a {
  color: #e5e7eb;
}

.header:hover .icon-btn {
  background: #19191a;
  border-color: rgba(243, 244, 246, 0.6);
}

.header:hover .icon-btn:hover {
  border-color: #ffffff;
}

/**** client dashboard button ***********/
.client-dashboard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d9fe57 0%, #c4f043 100%);
  color: #0a0e1a;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(217, 254, 87, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 40;
}

.client-dashboard-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.client-dashboard-btn:hover::before {
  left: 100%;
}

.client-dashboard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(217, 254, 87, 0.35);
  background: linear-gradient(135deg, #c4f043 0%, #b8e639 100%);
}

.client-dashboard-btn:active {
  transform: translateY(0px);
  box-shadow: 0 2px 8px rgba(217, 254, 87, 0.25);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #0a0e1a;
}

.btn-text {
  line-height: 1;
}

/* Alternative Style 1 - Outlined */
.client-dashboard-btn.outlined {
  background: transparent;
  color: #0a0e1a;
  border: 2px solid #0a0e1a;
  box-shadow: none;
}

.client-dashboard-btn.outlined:hover {
  background: #0a0e1a;
  color: #d9fe57;
  border-color: #0a0e1a;
  box-shadow: 0 4px 16px rgba(10, 14, 26, 0.15);
}

.client-dashboard-btn.outlined .btn-icon {
  color: inherit;
}

/* Alternative Style 2 - Subtle */
.client-dashboard-btn.subtle {
  background: rgba(217, 254, 87, 0.1);
  color: #0a0e1a;
  border: 1px solid rgba(217, 254, 87, 0.3);
  box-shadow: none;
}

.client-dashboard-btn.subtle:hover {
  background: rgba(217, 254, 87, 0.2);
  border-color: rgba(217, 254, 87, 0.5);
  box-shadow: 0 2px 12px rgba(217, 254, 87, 0.15);
}

/* Alternative Style 3 - Minimal */
.client-dashboard-btn.minimal {
  background: transparent;
  color: #0a0e1a;
  border: none;
  box-shadow: none;
  padding: 10px 16px;
}

.client-dashboard-btn.minimal:hover {
  background: rgba(217, 254, 87, 0.15);
  transform: translateY(0);
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #f9fafb;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
  position: relative;
  z-index: 40;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: #0f172a;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}


/******************** HAMBURGER MENU (Mobile) *******************************/
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.hamburger-btn span {
  width: 25px;
  height: 3px;
  background: #050505;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Change hamburger to white when menu is active (X icon) */
.hamburger-btn.active span {
  background: #ffffff;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/*********************** Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  padding: 40px 24px;
}

.mobile-menu-section {
  margin-bottom: 32px;
}

.mobile-menu-section h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 16px;
}

.mobile-menu-section a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.mobile-menu-section a:hover {
  color: #d9fe57;
}

/* Base styling for all main links (Developers and Contact Us) */
.mobile-menu-main-link {
  font-size: 18px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-main-link:hover {
  background: rgba(217, 254, 87, 0.1);
  color: #d9fe57 !important;
  transform: translateX(4px);
}

/* Developers Link - second to last section */
.mobile-menu-section:nth-last-child(2) .mobile-menu-main-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

.mobile-menu-section:nth-last-child(2) .mobile-menu-main-link:hover {
  background: rgba(217, 254, 87, 0.1);
  border-color: rgba(217, 254, 87, 0.3);
  color: #d9fe57 !important;
}

/* Contact Us Link - last section (make it stand out) */
.mobile-menu-section:last-child {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-section:last-child .mobile-menu-main-link {
  background: rgba(217, 254, 87, 0.1);
  border: 1px solid rgba(217, 254, 87, 0.3);
  color: #d9fe57 !important;
}

.mobile-menu-section:last-child .mobile-menu-main-link:hover {
  background: rgba(217, 254, 87, 0.2);
  border-color: rgba(217, 254, 87, 0.5);
  color: #d9fe57 !important;
}

body.menu-open {
  overflow: hidden;
}


/*********************** HERO SECTION *******************************/

/* Hero Section WITH BACKGROUND */
.hero-section {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr) minmax(210px, 260px);
  align-items: start;
  padding: 40px 96px 30px;
  column-gap: 56px;
  perspective: 1200px;
  
  /* Background Image */
  background-image: url('dotted_bg2.jpg');
  background-size: 50%;
  background-position: center;
  background-repeat: repeat;
  position: relative;
}

/* Overlay for better readability */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 254, 255, 0.75);
  z-index: 0;
  pointer-events: none;
}

/* Make sure content is above overlay */
.hero-section > * {
  position: relative;
  z-index: 1;
}

/* Side cards */
.side-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- CARD HOVER 3D TILT + SLIDE ---- */

.card {
  background: transparent;
  padding: 0;
  overflow: hidden;
  border: none;
  max-width: 260px;
  transform-origin: center;
  opacity: 1;
  transform: translateY(-6px);
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.4s ease;
}

/* Image fills card and will parallax slightly */
.card img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
  transition:
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.4s ease;
}

/* No hover border highlight */
.card:hover {
  border: none;
  background-color: transparent;
}

/* 3D tilt + slight X-axis slide */
.card-left-top:hover,
.card-left-bottom:hover,
.card-right-top:hover,
.card-right-bottom:hover {
  transform:
    translateX(10px)
    translateY(-14px)
    perspective(900px)
    rotateX(8deg)
    rotateY(-8deg)
    scale(1.03);
  filter: brightness(1.05);
}

/* Inner parallax: image moves opposite for depth */
.card-left-top:hover img,
.card-left-bottom:hover img,
.card-right-top:hover img,
.card-right-bottom:hover img {
  transform: translateX(-6px) translateY(4px) scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

/* Video pill */
.video-container {
  position: relative;
  width: 380px;
  max-width: 100%;
  height: 120px;
  margin: 0 auto 28px;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #b5ff9b, transparent 55%),
    radial-gradient(circle at bottom right, #9aa9ff, transparent 60%);
  padding: 3px;
  box-shadow:
    0 0 26px rgba(181, 255, 155, 0.5),
    0 0 42px rgba(154, 169, 255, 0.4);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-title {
  font-size: 65px;
  line-height: 1.06;
  margin: 4px 0 4px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 56px;
  line-height: 1.06;
  margin: 4px 0 4px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-sector {
  display: inline-block;
}

/* subtle fade/slide when sector text changes */
.sector-fade {
  animation: sectorFade 0.4s ease-in-out;
}

@keyframes sectorFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.center-content {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.hero-description {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 800px !important;
  margin: 0 auto;
  transition: opacity 0.5s ease-in-out;
  margin-top: 10px;
}

/* Bottom row: left-bottom image + stats + CTA + right-bottom image in one row */
.bottom-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) minmax(180px, 220px);
  align-items: center;
  column-gap: 48px;
  padding: 20px 96px 44px;

  /* Background Image */
  background-image: url('dotted_bg2.jpg');
  background-size: 50%;
  background-position: center;
  background-repeat: repeat;
  position: relative;
}

/* Overlay for better readability */
.bottom-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 254, 255, 0.75);
  z-index: 0;
  pointer-events: none;
}

/* IMPORTANT: Bring all children above overlay */
.bottom-row > * {
  position: relative;
  z-index: 1;
}

.bottom-row .card {
  justify-self: center;
}

/* Center column: award + stats + CTA */
.bottom-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* top row inside center: award + numbers */
.stats-top-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 32px;
  row-gap: 0;
  padding-left: 90px;
}

/* Stats Section in bottom row */
.stats-section {
  color: #050505;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 0;
}

.stat-item {
  text-align: left;
  min-width: 120px;
}

.stat-number {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
}

.stats-cta {
  text-align: center;
  margin-top: 4px;
}

/* CTA button */
.cta-button {
  background-color: #d9fe57;
  color: #052e16;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 40px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(132, 204, 22, 0.4);
  filter: brightness(1.03);
}

.cta-button .arrow {
  font-size: 20px;
}

/* Fade animation for rotating hero images */
.fade-image {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============= RESPONSIVE BREAKPOINTS ============= */

/* Responsive */
@media (max-width: 1200px) {
  .hero-section {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 40px 24px 24px;
  }

  .side-images {
    flex-direction: row;
    justify-content: center;
  }

  .bottom-row {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 16px 24px 32px;
  }

  .stats-top-row {
    grid-template-columns: 1fr;
    row-gap: 12px;
    justify-items: center;
    padding-left: 90px;
  }

  .stats-section {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-item {
    text-align: center;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  /* Header adjustments */
  .header-inner {
    padding: 0px 20px;
    gap: 16px;
  }
  
  /* Mobile header - TRANSPARENT overlay to show dotted background */
  .header::before {
    /* background: transparent; */
    background: rgba(255, 254, 255, 0.75);
  }
  
  /* Mobile scrolled - turn black */
  .header.scrolled::before {
    background: rgba(0, 0, 0, 0.95);
  }
  
  /* Header hover on mobile */
  .header:hover::before {
    background: rgba(0, 0, 0, 0.95);
  }
  
  /* Mobile menu open - turn black */
  body.menu-open .header::before {
    background: rgba(0, 0, 0, 0.95) !important;
  }


  /* Hide desktop nav, show hamburger */
  .nav {
    display: none !important;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .nav-item.has-mega::before {
    display: none;
  }
  
  .mega-menu {
    top: 54px;
  }
  
  .mega-menu-inner {
    padding: 20px;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  /* LOGO STAYS 120px - NO CHANGES */
  
  /* Hamburger turns WHITE on header hover */
  .header:hover .hamburger-btn span {
    background: #ffffff !important;
  }

  /* Keep header black when mobile menu is open */
  body.menu-open .header::before {
    background: rgba(0, 0, 0, 0.95) !important;
  }

  body.menu-open .logo {
    color: #ffffff !important;
  }

  body.menu-open .hamburger-btn span {
    background: #ffffff !important;
  }

  /* Button adjustments */
  .client-dashboard-btn {
    font-size: 13px;
    padding: 9px 18px;
  }

  .btn-icon {
    width: 14px;
    height: 14px;
  }

  .btn-icon svg {
    width: 14px;
    height: 14px;
  }

  /* HIDE ANIMATION IMAGES ON MOBILE */
  .side-images {
    display: none !important;
  }
  
  .bottom-row .card-left-bottom,
  .bottom-row .card-right-bottom {
    display: none !important;
  }

  /* Hide globe/user icons on mobile */
  .globe-icon,
  .user-icon {
    display: none;
  }

  /* Adjust hero section */
  .hero-section {
    grid-template-columns: 1fr;
    padding: 32px 16px 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .video-container {
    width: 320px;
    height: 100px;
  }

  /* MOBILE: HORIZONTAL layout matching reference image exactly */
  .bottom-row {
    grid-template-columns: 1fr;
    padding: 20px 16px 32px;
  }
  
  .bottom-center {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Badge and stats in ONE horizontal row */
  .stats-top-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    /* padding-right: 90px; */
    padding-left: 0;
  }
  
  /* Stats in horizontal row (3 columns) */
  .stats-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    flex: 1;
  }
  
  .stat-item {
    text-align: center;
    min-width: auto;
    flex: 1;
  }
  
  .stat-number {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
    line-height: 1.2;
  }
  
  .stat-label {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.3;
  }
  
  /* Full width button below */
  .stats-cta {
    width: 100%;
    margin-top: 8px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  /* LOGO STAYS 120px - NO CHANGES */
  
  .client-dashboard-btn {
    font-size: 12px;
    padding: 8px 16px;
    gap: 6px;
  }
  
  /* Hide text on very small screens, show only icon */
  .client-dashboard-btn .btn-text {
    display: none;
  }
  
  .client-dashboard-btn {
    padding: 10px;
    border-radius: 8px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 24px;
  }
  
  .video-container {
    width: 280px;
    height: 90px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 10px;
  }
  
  .stats-section {
    gap: 12px;
  }
}



/********************************** Second Page *******************************************************************/

.payment-infrastructure {
  margin: 40px auto;
  padding: 40px 56px;        /* a bit less padding than 72px so content can breathe */
  max-width: 1250px;         /* was 1200px – makes whole section wider */
  border-radius: 26px;
  background: #020617;
  color: #f9fafb;
}


/* give more space to the right side where SVG/logo lives */
.payment-infrastructure__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: center;
  column-gap: 56px;
}

/* let logo actually fill that extra width */
.pi-logo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: visible;
}

/* Logo with speed motion effect on hover */
.payment-infrastructure__logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 380px;
  cursor: pointer;
  position: relative;
  
  /* Smooth transition */
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 15px rgba(217, 254, 87, 0.3));
}

.payment-infrastructure__logo:hover {
  transform: translateX(20px) skewX(-5deg) scale(1.05);
  filter: 
    drop-shadow(0 0 50px rgba(217, 254, 87, 1))
    drop-shadow(-40px 0 30px rgba(217, 254, 87, 0.6))
    drop-shadow(-80px 0 20px rgba(217, 254, 87, 0.3))
    drop-shadow(-120px 0 10px rgba(217, 254, 87, 0.1))
    brightness(1.4);
  animation: superSpeed 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes superSpeed {
  0% {
    transform: translateX(-30px) skewX(8deg) scale(0.9);
    filter: blur(4px);
  }
  30% {
    transform: translateX(25px) skewX(-8deg) scale(1.1);
  }
  100% {
    transform: translateX(20px) skewX(-5deg) scale(1.05);
  }
}




/* Optional: Add speed line trails (pseudo-element) */
.pi-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 55%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(217, 254, 87, 0.8), 
    rgba(217, 254, 87, 0.4),
    transparent
  );
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}

.payment-infrastructure__logo:hover ~ .pi-logo-wrap::before,
.pi-logo-wrap:hover::before {
  width: 40%;
  opacity: 1;
}

.payment-infrastructure__text {
  max-width: 420px;
}

.pi-eyebrow {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.pi-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pi-title span {
  color: #d9fe57;
}

.payment-infrastructure__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  align-items: center;
  column-gap: 32px;
}

.pi-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.pi-copy p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
}

/* CTA */
.pi-cta {
  background-color: #d9fe57;
  color: #052e16;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 34px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(132, 204, 22, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.pi-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 60px rgba(132, 204, 22, 0.55);
}

.pi-cta-arrow {
  font-size: 20px;
}

/* hide base path, use particles only (if using SVG) */
#targetPath {
  stroke: none;
  fill: none;
}



/* .payment-infrastructure__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: center;
  column-gap: 56px;
}


.pi-logo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}


.payment-infrastructure__logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 380px;
  cursor: pointer;
  
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 0 15px rgba(217, 254, 87, 0.3));
}

.payment-infrastructure__logo:hover {
  transform: rotate(3deg) scale(1.08);
  filter: drop-shadow(0 0 35px rgba(217, 254, 87, 0.9)) brightness(1.2);
}

.payment-infrastructure__text {
  max-width: 420px;
}

.pi-eyebrow {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.pi-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pi-title span {
  color: #d9fe57;
}

.payment-infrastructure__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  align-items: center;
  column-gap: 32px;
}

.pi-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.pi-copy p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
}

.pi-cta {
  background-color: #d9fe57;
  color: #052e16;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 34px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(132, 204, 22, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.pi-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 60px rgba(132, 204, 22, 0.55);
}

.pi-cta-arrow {
  font-size: 20px;
}

#targetPath {
  stroke: none;
  fill: none;
} */



/* Responsive */
@media (max-width: 1024px) {
  .payment-infrastructure__inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .payment-infrastructure__content {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .pi-logo-wrap {
    justify-content: center;
  }

  .payment-infrastructure {
    padding: 32px 24px;
    margin: 48px 16px;
  }

  .payment-infrastructure__logo {
    max-height: 280px;
  }
}

@media (max-width: 640px) {
  .pi-title {
    font-size: 30px;
  }

  .pi-copy h3 {
    font-size: 18px;
  }

  .payment-infrastructure__logo {
    max-height: 220px;
  }
}

/* existing keyframes */
@keyframes unBreath {
  0% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(2px, -3px) scale(1.04);
    opacity: 1;
  }
  100% {
    transform: translate(-2px, 2px) scale(0.98);
    opacity: 0.6;
  }
}


/****************************************************** Third Page ********************************************************/

.processing-section {
  max-width: 1250px;
  margin: 80px auto;
  padding: 40px 24px 72px;
  background: #f9fafb;
  border-radius: 32px;
}

.processing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  column-gap: 56px;
  align-items: center;
}

/* Left side */
.processing-left {
  max-width: 640px;
}

.processing-title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.processing-title span {
  position: relative;
  z-index: 1;
}

.processing-title span::before {
  content: "";
  position: absolute;
  inset: 65% 0 0 0;
  background: #d9fe57;
  z-index: -1;
}

.processing-subtitle {
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

/* Feature grid */
.processing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.processing-card {
  background: #f5f7f3;
  border-radius: 18px;
  padding: 22px 22px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.processing-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #111827;
}

/* small 3x3 dot motif */
.processing-card-dots {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(3, 6px);
  gap: 4px;
  width: fit-content;
}

.processing-card-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #111827;
  opacity: 0.9;
}

.processing-card-dots span:nth-child(5) {
  background: #e5e7eb;
}

/* CTA buttons row */
.processing-cta-row {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* base button style */
.processing-btn {
  border-radius: 999px;
  padding: 14px 42px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

/* black "Know more" */
.processing-btn--secondary {
  background: #020617;
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

/* lime "Get started" */
.processing-btn--primary {
  background: #d9fe57;
  color: #052e16;
  box-shadow: 0 18px 40px rgba(132, 204, 22, 0.4);
}

.processing-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.35);
}

.processing-btn-arrow {
  font-size: 18px;
}

/* Right side: video */
.processing-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* blend wrapper + video card into section background */
.processing-video-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  background: #f9fafb;
}

.processing-video {
  display: block;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: translate(-5%, -5%);
}

/* ============= RESPONSIVE BREAKPOINTS ============= */

/* Large tablet - 1200px and below */
@media (max-width: 1200px) {
  .processing-inner {
    column-gap: 40px;
  }
  
  .processing-left {
    max-width: 100%;
  }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  .processing-section {
    margin: 60px auto;
    padding: 32px 20px 56px;
  }
  
  .processing-inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  
  .processing-title {
    font-size: 36px;
  }
  
  /* Keep video centered on tablet */
  .processing-right {
    justify-content: center;
    order: 2; /* ensures video stays below content */
  }
  
  .processing-video-wrap {
    max-width: 400px;
  }
}

/* Small tablet - 768px and below */
@media (max-width: 768px) {
  .processing-title {
    font-size: 32px;
  }
  
  .processing-subtitle {
    font-size: 14px;
  }
  
  .processing-grid {
    gap: 16px;
  }
  
  .processing-video-wrap {
    max-width: 100%;
  }
  
  .processing-cta-row {
    gap: 12px;
  }
}

/* Mobile - 640px and below */
@media (max-width: 640px) {
  .processing-section {
    margin: 40px 16px;
    padding: 24px 16px 40px;
    border-radius: 24px;
  }
  
  .processing-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .processing-subtitle {
    margin-bottom: 24px;
  }
  
  /* Stack grid items vertically on mobile */
  .processing-grid {
    grid-template-columns: 1fr;
  }
  
  .processing-card {
    padding: 18px 18px 22px;
  }
  
  /* Stack buttons vertically on mobile */
  .processing-cta-row {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }
  
  .processing-btn {
    width: 100%;
    justify-content: center;
  }
  
  .processing-video-wrap {
    max-width: 100%;
    border-radius: 24px;
  }
}

/* Extra small mobile - 480px and below */
@media (max-width: 480px) {
  .processing-title {
    font-size: 24px;
  }
  
  .processing-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
}


/****************************************************** Fourth Page ********************************************************/

.india-section {
  max-width: 1250px;
  margin: 80px auto 80px;
  padding: 40px 24px 80px;
  border-radius: 32px;
  background: radial-gradient(circle at top left, #f9fafb, #f3f4ff 40%, #f9fafb);
}

.india-inner {
  position: relative;
}

/* Title */
.india-title {
  margin: 0 0 32px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.india-title span {
  position: relative;
  z-index: 1;
}

.india-title span::before {
  content: "";
  position: absolute;
  inset: 65% 0 0 0;
  background: #d9fe57;
  z-index: -1;
}

/* Cards row */
.india-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card base with smooth hover animation */
.india-card {
  background: #f7f3ff;
  border-radius: 22px;
  padding: 28px 26px 30px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05),
    0 1px 0 rgba(148, 163, 184, 0.18);
  transition:
    transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.26s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 0.26s ease;
  cursor: default;
}

.india-card:hover {
  transform: translateY(-10px) scale(1.02);
  background-color: #fefbff;
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(216, 180, 254, 0.5);
}

/* little icon area */
.india-card-icon {
  font-size: 20px;
  margin-bottom: 18px;
}

.india-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.india-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
}

/* bottom CTA */
.india-cta-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.india-cta {
  background-color: #d9fe57;
  color: #052e16;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 46px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(132, 204, 22, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.india-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow: 0 24px 70px rgba(132, 204, 22, 0.6);
}

.india-cta-arrow {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .india-grid {
    grid-template-columns: 1fr;
  }

  .india-card {
    padding: 24px 22px 26px;
  }

  .india-section {
    padding: 32px 20px 56px;
  }
}

@media (max-width: 640px) {
  .india-title {
    font-size: 32px;
  }
}




/****************************************************** 5th Page ********************************************************/


.global-section {
  max-width: 1400px;     /* wider */
  margin: 96px auto 80px;
  padding: 0 24px;
}

.global-inner {
  border-radius: 36px;
  overflow: hidden;
  background: #020617;
  color: #f9fafb;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  align-items: stretch;
}

/* Left content */
.global-left {
  padding: 56px 56px 56px 60px;   /* more breathing room */
  max-width: 520px;               /* keeps text column compact */
}

.global-title {
  margin: 0 0 24px;
  font-size: 46px;                /* bigger heading */
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.global-title span {
  color: #d9fe57;
}

.global-subtitle {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
}

.global-subtitle span {
  color: #d9fe57;
}

.global-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #9ca3af;
}

/* Right visual map */
.global-right {
  position: relative;
  padding: 32px 56px 32px 0;
}

.global-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;              /* taller banner */
  border-radius: 30px;
  overflow: hidden;
  background-color: #020617;
  background-image: url("https://www.in.unlimit.com/wp-content/themes/unlimintin/assets/images/grow-globally/map-india.png");
  background-size: cover;
  background-position: center;
}

.global-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(163, 230, 53, 0.22), transparent 60%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .global-section {
    max-width: 100%;
    margin: 72px auto 96px;
  }

  .global-inner {
    grid-template-columns: 1fr;
  }

  .global-left {
    padding: 32px 24px 24px;
    max-width: none;
  }

  .global-right {
    padding: 0 24px 32px;
  }

  .global-map {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .global-title {
    font-size: 34px;
  }

  .global-subtitle {
    font-size: 15px;
  }

  .global-body {
    font-size: 14px;
  }
}


/****************************************************** 6th Page ********************************************************/

.featured-section {
  padding: 48px 24px 80px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

/* top: 'as featured globally in' */
.featured-inner {
  max-width: 1100px;
  margin: 0 auto 56px;
  text-align: center;
}

.featured-title {
  margin: 0 0 32px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.featured-title span {
  position: relative;
  z-index: 1;
}

.featured-title span::before {
  content: "";
  position: absolute;
  inset: 65% 0 0 0;
  background: #d9fe57;
  z-index: -1;
}

/* logo row */
.featured-logos {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* base card */
.featured-logo-card {
  min-width: 170px;
  padding: 22px 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* glossy diagonal highlight */
.featured-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.65),
    transparent 55%
  );
  pointer-events: none;
}

/* shared text styling inside cards */
.featured-logo-card span {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* per-logo color themes */
.featured-logo-card--paypers {
  background: radial-gradient(circle at top left, #e0f2fe, #ffffff);
}
.featured-logo-card--paypers span {
  color: #0f172a;
  font-weight: 800;
}

.featured-logo-card--insider {
  background: radial-gradient(circle at top left, #e5f3ff, #ffffff);
}
.featured-logo-card--insider span {
  color: #020617;
  letter-spacing: 0.12em;
}

.featured-logo-card--ft {
  background: radial-gradient(circle at top left, #fef3c7, #ffffff);
}
.featured-logo-card--ft span {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #7c2d12;
}

.featured-logo-card--fdi {
  background: radial-gradient(circle at top left, #fce7f3, #ffffff);
}
.featured-logo-card--fdi span {
  text-transform: none;
  letter-spacing: 0.04em;
  color: #581c87;
}

.featured-logo-card--yahoo {
  background: radial-gradient(circle at top left, #ede9fe, #ffffff);
}
.featured-logo-card--yahoo span {
  text-transform: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #4c1d95;
}

.featured-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  filter: brightness(1.02);
}

/* bottom: coverage block */
.coverage-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.coverage-title {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.coverage-subtitle {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

/* CTA */
.coverage-cta {
  background-color: #d9fe57;
  color: #052e16;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 46px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(132, 204, 22, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.coverage-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow: 0 24px 70px rgba(132, 204, 22, 0.6);
}

.coverage-cta-arrow {
  font-size: 18px;
}


/* responsive */
@media (max-width: 768px) {
  .featured-title {
    font-size: 26px;
  }

  .featured-logo-card {
    min-width: 140px;
    padding: 18px 22px;
  }

  .featured-logo-card span {
    font-size: 13px;
  }

  .coverage-title {
    font-size: 28px;
  }
}


/****************************************************** 7th Page ********************************************************/

/* Hero CTA section */
.unlimit-cta {
  background: #d9fe57;
  padding: 64px 24px 72px;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.unlimit-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.unlimit-cta__inner h2 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #020617;
}

.unlimit-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  background: #020617;
  color: #f9fafb;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.unlimit-cta__btn span {
  font-size: 16px;
}

.unlimit-cta__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.45);
}

/* responsive CTA */
@media (max-width: 640px) {
  .unlimit-cta__inner h2 {
    font-size: 24px;
  }
}

/* Footer */
.unlimit-footer {
  background: #020202;
  color: #ffffff;
  padding: 80px 24px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.unlimit-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* top columns */
.unlimit-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.unlimit-footer__col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b3b3b3;
  margin-bottom: 16px;
}

.unlimit-footer__col a {
  display: block;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 6px;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.unlimit-footer__col a:hover {
  opacity: 1;
  color: #c9f73a;
}


/* bottom strip */
.unlimit-footer__bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.unlimit-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.unlimit-footer__bottom-links a {
  font-size: 11px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.unlimit-footer__bottom-links a:hover {
  color: #c9f73a;
}

.unlimit-footer__copy {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
}

/* responsive footer */
@media (max-width: 768px) {
  .unlimit-footer__cols {
    grid-template-columns: 1fr 1fr;
  }

  .unlimit-footer__newsletter {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .unlimit-footer__newsletter-form {
    max-width: none;
  }

  .unlimit-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .unlimit-footer__cols {
    grid-template-columns: 1fr;
  }
}


/*************************************** Dynamic page section ************************************
/* Page content containers */
.page-content {
  display: none;
  min-height: 100vh;
}

.page-content.active {
  display: block;
}


/* Fix: Hide all content panels by default */
#dynamic-content {
  display: none;
}

#dynamic-content.active {
  display: block;
}

.content-panel {
  display: none !important;
}

.content-panel.active {
  display: block !important;
}

/* Ensure sections inside panels don't leak out */
.content-panel > section,
.content-panel > div {
  width: 100%;
}



/* Dynamic content styling */
/* #dynamic-content {
  background: #fff;
} */
/* 
.content-panel {
  display: none;
  opacity: 0;
  animation: fadeInContent 0.5s ease forwards;
} */

/* .content-panel.active {
  display: block;
} */

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.content-wrapper h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.content-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 800px;
  margin-bottom: 40px;
}

.content-wrapper ul {
  font-size: 17px;
  line-height: 2;
  color: #374151;
  max-width: 600px;
  margin-bottom: 40px;
}

.content-wrapper ul li {
  margin-bottom: 12px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.feature-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.stat-box {
  text-align: center;
  padding: 40px 24px;
  background: #f9fafb;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
}

.stat-box h2 {
  margin: 0 0 8px;
  font-size: 48px;
  font-weight: 800;
  color: #000;
}

.stat-box p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* Back to home button */
.back-home-btn {
  background: #020617;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 60px 20px 80px;
  }
  
  .content-wrapper h1 {
    font-size: 36px;
  }
  
  .features-grid,
  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/******************* 1st payment processing *************************************************
/* ==================== PAYMENT HERO SECTION ==================== */

.payment-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #6ee7b7 0%, #a78bfa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-hero-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 72px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Content */
.payment-hero-left {
  max-width: 600px;
}

.payment-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  margin-bottom: 32px;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
}

.badge-dots {
  font-size: 8px;
  color: #000;
  opacity: 0.5;
}

.payment-hero-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: #000;
}

.payment-hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: #1f2937;
  margin: 0 0 40px;
}

.payment-hero-description strong {
  font-weight: 700;
  color: #000;
}

.payment-hero-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.payment-hero-btn:hover .btn-arrow {
  transform: translate(2px, 2px);
}

/* Right Visual Area */
.payment-hero-right {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-hero-visuals {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Payment method containers */
.payment-method-images {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.payment-method-images.active {
  opacity: 1;
  visibility: visible;
}

/* Individual payment images */
.payment-image {
  position: absolute;
  max-width: 90%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.8s ease;
}

/* Debit card layout (4 cards) */
.payment-method-debit .payment-image-1 {
  top: 0;
  left: 0;
  max-width: 320px;
  z-index: 4;
}

.payment-method-debit .payment-image-2 {
  top: 80px;
  right: 0;
  max-width: 200px;
  z-index: 3;
}

.payment-method-debit .payment-image-3 {
  top: 240px;
  right: 40px;
  max-width: 180px;
  z-index: 2;
}

.payment-method-debit .payment-image-4 {
  bottom: 40px;
  right: 80px;
  max-width: 180px;
  z-index: 1;
}

/* Credit card layout */
.payment-method-credit .payment-image-1 {
  top: 40px;
  left: 20px;
  max-width: 280px;
  z-index: 2;
}

.payment-method-credit .payment-image-2 {
  bottom: 60px;
  right: 40px;
  max-width: 320px;
  z-index: 1;
}

/* Wallet layout */
.payment-method-wallet .payment-image-1 {
  top: 20px;
  left: 0;
  max-width: 380px;
  z-index: 2;
}

.payment-method-wallet .payment-image-2 {
  bottom: 40px;
  right: 20px;
  max-width: 320px;
  z-index: 1;
}

/* APM layout */
.payment-method-apm .payment-image-1 {
  top: 0;
  left: 40px;
  max-width: 340px;
  z-index: 2;
}

.payment-method-apm .payment-image-2 {
  top: 100px;
  right: 0;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
}

.payment-image-row {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Cash layout */
.payment-method-cash .payment-image-1 {
  top: 20px;
  left: 20px;
  max-width: 300px;
  z-index: 2;
}

.payment-method-cash .payment-image-2 {
  bottom: 40px;
  right: 40px;
  max-width: 320px;
  z-index: 1;
}

/* Bank transfer layout */
.payment-method-bank .payment-image-1 {
  top: 40px;
  left: 40px;
  max-width: 300px;
  z-index: 2;
}

.payment-method-bank .payment-image-2 {
  bottom: 20px;
  right: 20px;
  max-width: 340px;
  z-index: 1;
}

/* Animated text with fade transition */
.payment-type-text {
  display: inline-block;
  font-weight: 800;
  color: #000;
  position: relative;
  min-width: 200px;
  transition: opacity 0.3s ease;
}

.payment-type-text.fade-out {
  opacity: 0;
}

/* ==================== ONE PLATFORM SECTION ==================== */

.one-platform-section {
  min-height: 100vh;
  padding: 80px 24px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.one-platform-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Left Content */
.one-platform-left {
  max-width: 650px;
}

.section-badge {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  margin-bottom: 36px;
}

.section-badge .badge-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
}

.one-platform-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: #000;
}

.highlight-yellow {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.highlight-yellow::before {
  content: "";
  position: absolute;
  inset: 60% 0 0 0;
  background: #d9fe57;
  z-index: -1;
}

.one-platform-description {
  font-size: 20px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* Right Video Section */
.one-platform-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 32px;
  overflow: visible;
} */

.video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 150px;
  border-radius: 94px;
  overflow: visible;
}



.platform-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

/* Floating Currency Cards */
.floating-cards {
  position: absolute;
  top: 0;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.currency-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 260px;
  animation: floatCard 3s ease-in-out infinite;
}

.currency-card-1 {
  animation-delay: 0s;
}

.currency-card-2 {
  animation-delay: 0.5s;
}

.currency-card-3 {
  animation-delay: 1s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.currency-flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  flex-shrink: 0;
}

.flag-icon {
  font-size: 28px;
}

.currency-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.currency-amount {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.01em;
}

.currency-amount .decimal {
  opacity: 0.5;
}

.currency-code {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.05em;
}

/* ==================== WE TAKE CARE SECTION ==================== */

.we-take-care-section {
  min-height: 100vh;
  padding: 80px 24px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-take-care-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Left Content */
.we-take-care-left {
  max-width: 650px;
}

.we-take-care-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: #000;
}

.we-take-care-description {
  font-size: 20px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 48px;
}

.integrate-btn {
  background: #d9fe57;
  color: #052e16;
  border: none;
  padding: 18px 48px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 12px 32px rgba(132, 204, 22, 0.3);
}

.integrate-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 20px 60px rgba(132, 204, 22, 0.4);
}

.integrate-btn:hover .btn-arrow {
  transform: translate(3px, 3px);
}

/* Right Video Section */
.we-take-care-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.network-video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.network-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

/* ==================== WHO WE'RE FOR SECTION ==================== */

.who-section {
  min-height: 100vh;
  max-width: 100%;
  margin: 0;
  padding: 100px 72px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* Header */
.who-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.who-title {
  margin: 0 0 20px;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.who-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
}

/* Content */
.who-content {
  text-align: center;
}

.who-content-title {
  margin: 0 0 48px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111827;
}

/* Cards Grid */
.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.who-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.who-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.9) 0%, 
    rgba(124, 58, 237, 0.95) 25%,
    rgba(109, 40, 217, 1) 50%,
    rgba(88, 28, 135, 1) 75%,
    rgba(59, 7, 100, 1) 100%
  );
  z-index: 1;
  transition: all 0.4s ease;
}

.who-card:hover::before {
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 1) 0%, 
    rgba(124, 58, 237, 1) 25%,
    rgba(109, 40, 217, 1) 50%,
    rgba(88, 28, 135, 1) 75%,
    rgba(59, 7, 100, 1) 100%
  );
}

.who-card:hover {
  transform: translateY(-8px);
}

/* Card gradient variations */
.who-card:nth-child(1)::before {
  background: linear-gradient(135deg, 
    rgba(136, 84, 192, 0.9) 0%, 
    rgba(120, 53, 200, 0.95) 30%,
    rgba(99, 35, 180, 1) 60%,
    rgba(75, 20, 140, 1) 85%,
    rgba(50, 10, 90, 1) 100%
  );
}

.who-card:nth-child(2)::before {
  background: linear-gradient(135deg, 
    rgba(156, 81, 182, 0.9) 0%, 
    rgba(138, 55, 190, 0.95) 30%,
    rgba(115, 38, 170, 1) 60%,
    rgba(88, 24, 130, 1) 85%,
    rgba(60, 12, 85, 1) 100%
  );
}

.who-card:nth-child(3)::before {
  background: linear-gradient(135deg, 
    rgba(168, 85, 247, 0.9) 0%, 
    rgba(147, 51, 234, 0.95) 30%,
    rgba(126, 34, 206, 1) 60%,
    rgba(98, 21, 158, 1) 85%,
    rgba(67, 10, 107, 1) 100%
  );
}

.who-card-inner {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
}

.who-card-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.who-card-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 280px;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Large Desktop - 1400px and below */
@media (max-width: 1400px) {
  .payment-hero-inner,
  .one-platform-inner,
  .we-take-care-inner {
    gap: 80px;
    padding-left: 60px;
    padding-right: 60px;
  }
  
  .payment-hero-title,
  .one-platform-title,
  .we-take-care-title,
  .who-title {
    font-size: 56px;
  }
  
  .who-content-title {
    font-size: 42px;
  }
  
  .video-container,
  .network-video-container {
    max-width: 600px;
  }
  
  .who-section {
    padding: 80px 60px;
  }
  
  .who-cards {
    gap: 28px;
  }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  .payment-hero,
  .one-platform-section,
  .we-take-care-section,
  .who-section {
    min-height: auto;
    padding: 80px 40px;
  }
  
  .payment-hero-inner,
  .one-platform-inner,
  .we-take-care-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0;
  }
  
  .payment-hero-left,
  .one-platform-left,
  .we-take-care-left {
    max-width: 100%;
  }
  
  .payment-hero-title,
  .one-platform-title,
  .we-take-care-title,
  .who-title {
    font-size: 48px;
  }
  
  .one-platform-description,
  .we-take-care-description {
    font-size: 18px;
  }
  
  .payment-hero-right {
    height: 500px;
  }
  
  .video-container,
  .network-video-container {
    max-width: 100%;
  }
  
  .floating-cards {
    right: -20px;
    gap: 12px;
  }
  
  .currency-card {
    min-width: 220px;
    padding: 16px 20px;
  }
  
  .currency-flag {
    width: 44px;
    height: 44px;
  }
  
  .flag-icon {
    font-size: 26px;
  }
  
  .currency-amount {
    font-size: 18px;
  }
  
  /* Who Section */
  .who-header {
    margin-bottom: 60px;
  }
  
  .who-subtitle {
    font-size: 17px;
  }
  
  .who-content-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .who-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .who-card {
    min-height: 240px;
  }
  
  .who-card-inner {
    padding: 32px 28px;
  }
  
  .who-card-title {
    font-size: 28px;
  }
  
  .who-card-text {
    font-size: 16px;
    max-width: 100%;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .payment-hero,
  .one-platform-section,
  .we-take-care-section,
  .who-section {
    padding: 60px 24px;
  }
  
  .payment-hero-inner,
  .one-platform-inner,
  .we-take-care-inner {
    gap: 48px;
  }
  
  .payment-hero-title,
  .one-platform-title,
  .we-take-care-title,
  .who-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .payment-hero-description,
  .one-platform-description,
  .we-take-care-description {
    font-size: 17px;
  }
  
  .section-badge {
    padding: 8px 20px;
  }
  
  .section-badge .badge-text {
    font-size: 12px;
  }
  
  .payment-hero-right {
    height: 400px;
  }
  
  .payment-image {
    max-width: 95% !important;
  }
  
  /* Debit card mobile adjustments */
  .payment-method-debit .payment-image-1 {
    max-width: 280px !important;
  }
  
  .payment-method-debit .payment-image-2 {
    max-width: 160px !important;
    top: 100px;
  }
  
  .payment-method-debit .payment-image-3 {
    max-width: 140px !important;
    top: 220px;
  }
  
  .payment-method-debit .payment-image-4 {
    max-width: 140px !important;
  }
  
  .integrate-btn {
    padding: 16px 40px;
    font-size: 16px;
  }
  
  .network-video-container {
    border-radius: 20px;
  }
  
  .network-video {
    border-radius: 20px;
  }
  
  /* Stack currency cards on mobile */
  .floating-cards {
    position: static;
    margin-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .currency-card {
    min-width: auto;
    flex: 1 1 calc(50% - 6px);
    padding: 14px 18px;
    animation: none;
  }
  
  .currency-flag {
    width: 40px;
    height: 40px;
  }
  
  .flag-icon {
    font-size: 24px;
  }
  
  .currency-amount {
    font-size: 16px;
  }
  
  /* Who Section */
  .who-header {
    margin-bottom: 48px;
  }
  
  .who-subtitle {
    font-size: 16px;
  }
  
  .who-content-title {
    font-size: 30px;
    margin-bottom: 32px;
  }
  
  .who-card {
    min-height: 220px;
  }
  
  .who-card-inner {
    padding: 28px 24px;
  }
  
  .who-card-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  
  .who-card-text {
    font-size: 15px;
  }
}

/* Extra Small Mobile - 480px and below */
@media (max-width: 480px) {
  .payment-hero,
  .one-platform-section,
  .we-take-care-section,
  .who-section {
    padding: 40px 20px;
  }
  
  .payment-hero-inner {
    padding-top: 80px;
  }
  
  .payment-hero-title,
  .one-platform-title,
  .we-take-care-title,
  .who-title {
    font-size: 30px;
  }
  
  .payment-hero-description,
  .one-platform-description,
  .we-take-care-description {
    font-size: 16px;
  }
  
  .payment-hero-btn {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .payment-hero-right {
    height: 350px;
  }
  
  /* Debit card extra small mobile */
  .payment-method-debit .payment-image-1 {
    max-width: 240px !important;
  }
  
  .payment-method-debit .payment-image-2 {
    max-width: 130px !important;
    top: 90px;
  }
  
  .payment-method-debit .payment-image-3 {
    max-width: 110px !important;
    top: 200px;
  }
  
  .payment-method-debit .payment-image-4 {
    max-width: 110px !important;
  }
  
  .section-badge {
    padding: 6px 16px;
  }
  
  .integrate-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 36px;
    font-size: 15px;
  }
  
  .btn-arrow {
    font-size: 18px;
  }
  
  .currency-card {
    flex: 1 1 100%;
  }
  
  .currency-flag {
    width: 36px;
    height: 36px;
  }
  
  .flag-icon {
    font-size: 20px;
  }
  
  .currency-amount {
    font-size: 15px;
  }
  
  .currency-code {
    font-size: 13px;
  }
  
  /* Who Section */
  .who-header {
    margin-bottom: 40px;
  }
  
  .who-subtitle {
    font-size: 15px;
  }
  
  .who-content-title {
    font-size: 26px;
    margin-bottom: 28px;
  }
  
  .who-card {
    min-height: 200px;
  }
  
  .who-card-inner {
    padding: 24px 20px;
  }
  
  .who-card-title {
    font-size: 24px;
  }
  
  .who-card-text {
    font-size: 14px;
  }
}


/***************** Payment Methods *****************************************************/

/* Content Panel - Payment Methods */
#content-payment-methods {
  min-height: 100vh;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #c9f73a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Changed from flex-start to center for better vertical centering */
}

#content-payment-methods .content-wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Payment Methods Section */
.payment-methods-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 72px 100px; /* Balanced padding top and bottom */
}

.payment-methods-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Main Title */
.payment-methods-main-title {
  margin: 0 0 60px;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000;
  text-align: center;
}

/* Featured Card (Black Box) */
.payment-methods-featured-card {
  background: #000;
  color: #fff;
  padding: 60px 56px;
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-methods-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.payment-methods-card-heading {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 48px;
  text-align: center; /* Center the heading */
}

.highlight-text {
  color: #c9f73a;
  font-weight: 700;
}

/* Payment Grid */
.payment-grid-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 80px;
}

.payment-column-left,
.payment-column-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Payment Items */
.payment-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 8px 0; /* Added padding for better spacing */
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer; /* Changed from default to pointer for better UX */
}

.payment-item:hover {
  transform: translateX(8px);
  color: #c9f73a;
}

.payment-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.payment-item:hover .payment-icon {
  filter: drop-shadow(0 0 8px rgba(201, 247, 58, 0.8));
  transform: scale(1.1);
}

/* Smooth icon color transition */
.payment-item:hover .payment-icon circle,
.payment-item:hover .payment-icon path,
.payment-item:hover .payment-icon rect {
  stroke: #c9f73a;
  fill: #c9f73a;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Large screens - 1400px and below */
@media (max-width: 1400px) {
  .payment-methods-section {
    padding: 10px 60px;
  }
  
  .payment-methods-main-title {
    font-size: 56px;
    margin-bottom: 50px;
  }
  
  .payment-methods-featured-card {
    padding: 56px 48px;
  }
  
  .payment-methods-card-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .payment-grid-two-column {
    gap: 28px 60px;
  }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  #content-payment-methods {
    min-height: auto;
    justify-content: flex-start; /* Reset to flex-start on tablet/mobile */
  }
  
  .payment-methods-section {
    padding: 10px 40px;
  }
  
  .payment-methods-main-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
  
  .payment-methods-featured-card {
    padding: 48px 40px;
    border-radius: 32px;
  }
  
  .payment-methods-card-heading {
    font-size: 32px;
    margin-bottom: 36px;
  }
  
  .payment-grid-two-column {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .payment-item {
    font-size: 17px;
    padding: 6px 0;
  }
  
  .payment-icon {
    width: 26px;
    height: 26px;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .payment-methods-section {
    padding: 10px 24px;
  }
  
  .payment-methods-main-title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  
  .payment-methods-featured-card {
    padding: 40px 28px;
    border-radius: 28px;
  }
  
  .payment-methods-card-heading {
    font-size: 28px;
    margin-bottom: 32px;
    line-height: 1.4;
  }
  
  .payment-column-left,
  .payment-column-right {
    gap: 24px;
  }
  
  .payment-item {
    font-size: 16px;
    gap: 14px;
    padding: 5px 0;
  }
  
  .payment-item:hover {
    transform: translateX(6px); /* Reduced movement for mobile */
  }
  
  .payment-icon {
    width: 24px;
    height: 24px;
  }
}

/* Extra small mobile - 480px and below */
@media (max-width: 480px) {
  .payment-methods-section {
    padding: 10px 20px;
  }
  
  .payment-methods-main-title {
    font-size: 30px;
    margin-bottom: 28px;
    line-height: 1.2;
  }
  
  .payment-methods-featured-card {
    padding: 32px 24px;
    border-radius: 24px;
  }
  
  .payment-methods-card-heading {
    font-size: 24px;
    margin-bottom: 28px;
    line-height: 1.4;
  }
  
  .payment-column-left,
  .payment-column-right {
    gap: 20px;
  }
  
  .payment-item {
    font-size: 15px;
    gap: 12px;
    padding: 4px 0;
  }
  
  .payment-item:hover {
    transform: translateX(5px); /* Even less movement on small screens */
  }
  
  .payment-icon {
    width: 22px;
    height: 22px;
  }
}

/* Extra extra small mobile - 360px and below */
@media (max-width: 360px) {
  .payment-methods-section {
    padding: 10px 16px;
  }
  
  .payment-methods-main-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  
  .payment-methods-featured-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  
  .payment-methods-card-heading {
    font-size: 22px;
    margin-bottom: 24px;
  }
  
  .payment-item {
    font-size: 14px;
    gap: 10px;
  }
  
  .payment-icon {
    width: 20px;
    height: 20px;
  }
}


/***************************/
.logo {
  cursor: pointer;
  transition: transform 0.3s ease;
  user-select: none;
}

.logo:hover {
  transform: scale(1.05);
}

.logo:active {
  transform: scale(0.98);
}



/****************************************************** CONTACT US PAGE ********************************************************/

/****************************************************** CONTACT US PAGE ********************************************************/

/* Contact Hero Section */
.contact-hero {
  background: #ffffff !important;
  color: #0a0e1a;
  padding: 60px 48px 80px;
  width: 100%;
  box-sizing: border-box;
}

.contact-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217, 254, 87, 0.2);
  border: 1.5px solid rgba(132, 204, 22, 0.4);
  padding: 10px 24px;
  border-radius: 999px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.contact-badge:hover {
  background: rgba(217, 254, 87, 0.3);
  border-color: rgba(132, 204, 22, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.15);
}

.contact-badge .badge-icon {
  font-size: 18px;
}

.contact-badge .badge-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3d4f0c;
}

.contact-hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  color: #0a0e1a;
}

.contact-hero-title .highlight-italic {
  font-style: italic;
  color: #84cc16;
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Contact Grid - Two Cards Side by Side */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Cards */
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(217, 254, 87, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(132, 204, 22, 0.12);
  border-color: #84cc16;
}

.contact-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(217, 254, 87, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: rgba(217, 254, 87, 0.3);
  transform: scale(1.08) rotate(5deg);
}

.contact-card-icon svg {
  filter: drop-shadow(0 2px 4px rgba(132, 204, 22, 0.15));
}

.contact-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.3;
  color: #0a0e1a;
}

.contact-card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 24px;
  flex-grow: 1;
}

.contact-link {
  color: #65a30d;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: all 0.3s ease;
  width: fit-content;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.contact-link:hover {
  gap: 12px;
  color: #4d7c0f;
  border-bottom-color: #84cc16;
}

.link-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.contact-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Override footer background for contact page */
#content-contactus .unlimit-footer {
  background: #ffffff !important;
  padding-top: 60px;
}

#content-contactus .unlimit-footer__inner {
  background: #ffffff !important;
}

#content-contactus .unlimit-footer h4 {
  color: #0a0e1a;
}

#content-contactus .unlimit-footer a {
  color: #64748b;
}

#content-contactus .unlimit-footer a:hover {
  color: #84cc16;
}

#content-contactus .unlimit-footer__newsletter-title {
  color: #0a0e1a !important;
}

#content-contactus .unlimit-footer__newsletter-sub {
  color: #64748b !important;
}

#content-contactus .unlimit-footer__copy {
  color: #64748b !important;
}

#content-contactus .unlimit-footer__bottom-links a {
  color: #64748b;
}

#content-contactus .unlimit-footer__newsletter-form input {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #0a0e1a;
}

#content-contactus .unlimit-footer__newsletter-form input::placeholder {
  color: #94a3b8;
}

#content-contactus .unlimit-footer__newsletter-form button {
  background: #84cc16;
}

#content-contactus .unlimit-footer__newsletter-form button:hover {
  background: #65a30d;
}

/* ============= RESPONSIVE BREAKPOINTS ============= */

/* Large Desktop - 1440px and below */
@media (max-width: 1440px) {
  .contact-hero {
    padding: 50px 40px 70px;
  }
  
  .contact-hero-title {
    font-size: 56px;
  }
  
  .contact-grid {
    gap: 28px;
  }
}

/* Desktop - 1200px and below */
@media (max-width: 1200px) {
  .contact-hero {
    padding: 50px 36px 60px;
  }
  
  .contact-hero-title {
    font-size: 52px;
  }
  
  .contact-hero-subtitle {
    font-size: 19px;
  }
  
  .contact-header {
    margin-bottom: 56px;
  }
  
  .contact-grid {
    gap: 24px;
  }
  
  .contact-card {
    padding: 36px 32px;
  }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  .contact-hero {
    padding: 45px 32px 55px;
  }

  .contact-hero-title {
    font-size: 48px;
  }
  
  .contact-hero-subtitle {
    font-size: 18px;
  }
  
  .contact-header {
    margin-bottom: 52px;
  }

  .contact-grid {
    gap: 24px;
  }
  
  .contact-card {
    padding: 34px 30px;
  }
  
  .contact-card-title {
    font-size: 23px;
  }
  
  .contact-card-description {
    font-size: 15px;
  }
}

/* Tablet Small - 768px and below */
@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 24px 50px;
  }

  .contact-hero-title {
    font-size: 40px;
    margin-bottom: 18px;
  }
  
  .contact-hero-subtitle {
    font-size: 17px;
  }
  
  .contact-header {
    margin-bottom: 44px;
  }
  
  .contact-badge {
    padding: 9px 22px;
    margin-bottom: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
  }

  .contact-card {
    padding: 32px 28px;
  }
  
  .contact-card-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  
  .contact-card-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .contact-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  #content-contactus .unlimit-footer {
    padding-top: 50px;
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  .contact-hero {
    padding: 35px 20px 45px;
  }

  .contact-hero-title {
    font-size: 34px;
    margin-bottom: 16px;
  }
  
  .contact-hero-subtitle {
    font-size: 16px;
  }
  
  .contact-header {
    margin-bottom: 36px;
  }

  .contact-badge {
    padding: 8px 20px;
    margin-bottom: 18px;
  }
  
  .contact-badge .badge-icon {
    font-size: 16px;
  }
  
  .contact-badge .badge-text {
    font-size: 10px;
  }

  .contact-grid {
    gap: 18px;
  }

  .contact-card {
    padding: 28px 24px;
    border-radius: 18px;
  }
  
  .contact-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }
  
  .contact-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .contact-card-description {
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
  }
  
  .contact-link {
    font-size: 15px;
    padding: 8px 0;
  }
  
  .link-arrow {
    font-size: 18px;
  }
  
  #content-contactus .unlimit-footer {
    padding-top: 45px;
  }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
  .contact-hero {
    padding: 30px 16px 40px;
  }
  
  .contact-hero-title {
    font-size: 30px;
  }
  
  .contact-hero-subtitle {
    font-size: 15px;
  }
  
  .contact-header {
    margin-bottom: 32px;
  }
  
  .contact-badge {
    padding: 7px 18px;
    margin-bottom: 16px;
  }
  
  .contact-grid {
    gap: 16px;
  }
  
  .contact-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .contact-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }
  
  .contact-card-title {
    font-size: 19px;
  }
  
  .contact-card-description {
    font-size: 14px;
  }
  
  .contact-link {
    font-size: 14px;
  }
  
  #content-contactus .unlimit-footer {
    padding-top: 40px;
  }
}

/* Landscape Mobile */
@media (max-width: 896px) and (max-height: 414px) and (orientation: landscape) {
  .contact-hero {
    padding: 30px 24px 40px;
    min-height: auto;
  }
  
  .contact-header {
    margin-bottom: 32px;
  }
  
  .contact-hero-title {
    font-size: 36px;
  }
  
  .contact-card {
    padding: 28px 24px;
  }
}
