:root {
  /* Light Mode (Default) Variables */
  --primary: #67D10D;
  --primary-hover: #0D8C3A;
  
  --bg-main: #FFFFFF;
  --bg-alt: #F5F7FA;
  --bg-navy: #0A1830;
  
  --bg-card: #FFFFFF;
  
  --border-color: #E2E8F0;
  
  --text-primary: #0A1830;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;
  
  --font-main: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --card-shadow: 0 4px 6px -1px rgba(10, 24, 48, 0.05), 0 2px 4px -1px rgba(10, 24, 48, 0.03);
  --card-shadow-hover: 0 10px 15px -3px rgba(10, 24, 48, 0.08), 0 4px 6px -2px rgba(10, 24, 48, 0.04);
}

[data-theme="dark"] {
  --bg-main: #0B0B0B;
  --bg-alt: #111111;
  --bg-navy: #0A1830;
  --bg-card: #1A1A1A;
  --border-color: #222222;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 24px; }
.mt-4 { margin-top: 24px; }

/* Effects - Hidden in clean mode */
.bg-glow, .visual-glow, .showcase-glow {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #FFF;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 140, 58, 0.25);
  color: #FFF;
}

.btn-outline {
  background: #FFF;
  color: var(--bg-navy);
  border: 1px solid var(--bg-navy);
}

.btn-outline:hover {
  background: var(--bg-alt);
}

[data-theme="dark"] .btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
  background: rgba(11, 11, 11, 0.8);
}

.nav-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img { height: 72px; }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-link {
  color: var(--text-primary);
  font-weight: 600;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.icon-btn:hover {
  background: rgba(10, 24, 48, 0.05);
  color: var(--text-primary);
}
[data-theme="dark"] .icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(103, 209, 13, 0.1);
  color: var(--primary-hover);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(103, 209, 13, 0.2);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.text-gradient {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-cards-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  position: absolute;
  transition: transform 0.3s ease;
}

.card-wallet {
  top: 40px; right: 20px;
  width: 280px;
  z-index: 2;
}

.card-wallet .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.card-wallet .header-icon {
  width: 32px; height: 32px;
  background: rgba(103, 209, 13, 0.1);
  color: var(--primary-hover);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-wallet .card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.card-wallet .card-trend {
  color: var(--primary-hover);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-number {
  top: 200px; left: 0;
  width: 300px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.num-flag {
  font-size: 2rem;
}

.num-details {
  flex: 1;
}

.num-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.num-val {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
}

.num-status {
  background: rgba(103, 209, 13, 0.1);
  color: var(--primary-hover);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-message {
  bottom: 20px; right: 40px;
  width: 340px;
  z-index: 3;
}

.msg-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.msg-body {
  color: var(--text-secondary);
  line-height: 1.5;
}

.msg-body .highlight {
  color: var(--primary-hover);
  font-weight: 700;
  font-family: var(--font-mono);
}

/* Trust Section */
.trust-section {
  padding: 60px 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
}

/* Countries Section */
.countries-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 16px auto 48px;
}

.search-wrapper {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}

.country-search {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-main);
  box-shadow: var(--card-shadow);
  outline: none;
}

.country-search:focus {
  border-color: var(--primary);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}

.country-flag {
  font-size: 2.5rem;
}

.country-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.available {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.speed-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-hover);
  background: rgba(103, 209, 13, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Features Section (Navy) */
.features-section {
  padding: 100px 0;
  background: var(--bg-navy);
  color: #FFFFFF;
}

.features-section h2, .features-section p {
  color: #FFFFFF;
}

.features-section .section-header p {
  color: #94A3B8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  width: 56px; height: 56px;
  background: rgba(103, 209, 13, 0.15);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.feature-card p {
  color: #94A3B8;
  line-height: 1.6;
}

/* API Section */
.api-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.api-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.api-features {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.api-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.api-features i {
  color: var(--primary);
  font-size: 1.5rem;
}

.api-window {
  background: var(--bg-navy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
}

.window-header {
  background: rgba(0,0,0,0.2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.window-dots span:nth-child(1) { background: #FF5F56; }
.window-dots span:nth-child(2) { background: #FFBD2E; }
.window-dots span:nth-child(3) { background: #27C93F; }

.window-tabs {
  display: flex;
  gap: 16px;
}

.tab {
  color: #64748B;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  cursor: pointer;
}

.tab.active {
  color: #FFFFFF;
}

.window-body {
  padding: 32px;
  overflow-x: auto;
}

pre {
  font-family: var(--font-mono);
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.keyword { color: #818CF8; }
.string { color: #A3E635; }
.comment { color: #64748B; }

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Showcase Section */
.showcase-section {
  padding: 120px 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
}
.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.showcase-content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 90%;
}
.showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  position: relative;
  width: 320px;
  height: 650px;
  background: var(--bg-card);
  border-radius: 40px;
  border: 8px solid #000;
  box-shadow: var(--card-shadow-hover);
  overflow: hidden;
  z-index: 2;
  color: var(--text-primary);
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 25px;
  background: #000;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}
.phone-screen {
  padding: 40px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.phone-logo {
  height: 24px;
  width: auto;
}
.phone-header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #222;
  object-fit: cover;
}
.phone-header-icons i {
  font-size: 1.2rem;
  color: var(--text-primary);
}
.phone-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phone-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}
.phone-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.phone-inline-logo {
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.phone-input span {
  display: flex;
  align-items: center;
  flex: 1;
  color: var(--text-primary);
}
.phone-input i {
  color: #94A3B8;
}
.phone-badge {
  background: rgba(103, 209, 13, 0.15);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  margin-left: 8px;
}
.phone-terms {
  background: rgba(239, 68, 68, 0.1);
  padding: 12px;
  border-radius: 8px;
}
.phone-terms h4 {
  color: #EF4444;
  font-size: 0.75rem;
  margin-bottom: 4px;
}
.phone-terms p {
  color: #EF4444;
  font-size: 0.65rem;
  line-height: 1.4;
  opacity: 0.8;
}
.phone-btn {
  background: var(--primary);
  color: #FFF;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.95rem;
}
.phone-recent {
  margin-top: auto;
}
.phone-recent h4 {
  font-size: 0.75rem;
  color: #94A3B8;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.phone-see-all {
  color: var(--primary);
  cursor: pointer;
}
.phone-tx {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
.phone-tx-logo {
  height: 20px;
  width: 20px;
  object-fit: contain;
}
.phone-tx-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tx-title { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.tx-desc { font-size: 0.65rem; color: var(--text-muted); }
.phone-tx-amt {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.amt-val { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.amt-date { font-size: 0.65rem; color: var(--text-muted); }

/* Footer */
.footer {
  background: var(--bg-navy);
  color: #FFFFFF;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-desc {
  color: #94A3B8;
  line-height: 1.6;
}

.payment-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #CBD5E1;
  border: 1px solid rgba(255,255,255,0.2);
}

.footer-links h4 {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer-links a {
  display: block;
  color: #94A3B8;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #94A3B8;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: justify;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94A3B8;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 1.2rem;
  color: #94A3B8;
}

.social-links a:hover {
  color: #FFFFFF;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}
.sticky-whatsapp:hover {
  transform: scale(1.1);
  color: #FFF;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container, .api-grid, .showcase-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    height: 400px;
  }
  .card-wallet { top: 20px; right: auto; left: 50%; transform: translateX(-50%); }
  .card-number { top: 160px; left: 50%; transform: translateX(-50%); }
  .card-message { bottom: 20px; right: auto; left: 50%; transform: translateX(-50%); }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==============================================================
   PREMIUM INTERACTIVE BACKGROUNDS & EFFECTS
   ============================================================== */

/* Interactive Background Container */
.interactive-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Animated Mesh Gradient */
.mesh-gradient {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(103, 209, 13, 0.05), transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(103, 209, 13, 0.03), transparent 30%);
  animation: mesh-rotate 40s linear infinite;
}

@keyframes mesh-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Floating Glow Blobs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.blob-1 {
  width: 400px; height: 400px;
  background: rgba(103, 209, 13, 0.1);
  top: -10%; left: 10%;
  animation: float-blob 15s ease-in-out infinite alternate;
}

.blob-2 {
  width: 300px; height: 300px;
  background: rgba(13, 140, 58, 0.08);
  bottom: 10%; right: -5%;
  animation: float-blob 20s ease-in-out infinite alternate-reverse;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 100px) scale(1.2); }
}

/* Animated Grid Pattern */
.grid-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(10, 24, 48, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(10, 24, 48, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  animation: grid-move 20s linear infinite;
}

[data-theme="dark"] .grid-overlay {
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Alternate Section Backgrounds */
.bg-type-a {
  background-color: var(--bg-main);
}

.bg-type-b {
  background-color: var(--bg-alt);
}

.bg-type-c {
  position: relative;
  background-color: var(--bg-main);
}
.bg-type-c::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(103, 209, 13, 0.04), rgba(255, 255, 255, 0));
  z-index: 0;
  pointer-events: none;
}
[data-theme="dark"] .bg-type-c::before {
  background: linear-gradient(180deg, rgba(103, 209, 13, 0.04), rgba(11, 11, 11, 0));
}

.bg-type-c > .container {
  position: relative;
  z-index: 1;
}

/* Card Tilt & Spotlight Effect */
.feature-card, .country-card, .faq-item {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-card::before, .country-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(103, 209, 13, 0.08), transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-card:hover::before, .country-card:hover::before {
  opacity: 1;
}

.feature-card > *, .country-card > * {
  position: relative;
  z-index: 1;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Global Network Visualization Section */
.network-section {
  padding: 120px 0;
  overflow: hidden;
}

.network-visual {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  border-radius: 24px;
  background: var(--bg-navy);
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(10, 24, 48, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.network-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(103, 209, 13, 0.2));
}

.route-line {
  stroke: rgba(103, 209, 13, 0.3);
  stroke-width: 2;
  stroke-dasharray: 10 5;
  animation: march-ants 30s linear infinite;
}

@keyframes march-ants {
  to { stroke-dashoffset: -1000; }
}

.network-node {
  fill: var(--primary);
  filter: drop-shadow(0 0 8px var(--primary));
}

.pulse-ring {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  opacity: 0;
  animation: ripple 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulse-ring:nth-child(2) { animation-delay: 0.5s; }
.pulse-ring:nth-child(3) { animation-delay: 1s; }

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

.data-packet {
  filter: drop-shadow(0 0 5px #FFF);
}

/* Magnetic Button Support */
.magnetic {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hero Network Background */
.hero-network-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

[data-theme="dark"] .hero-network-bg {
  opacity: 0.3;
}

.hero-network-map {
  width: 100%;
  height: 100%;
}

.hero-route {
  stroke: rgba(103, 209, 13, 0.15);
  stroke-width: 1.5;
  stroke-dasharray: 8 6;
}

.hero-packet {
  filter: drop-shadow(0 0 6px var(--primary));
}

.hero-container {
  position: relative;
  z-index: 1;
}

/* Theme Aware Logo */
.dark-logo {
  display: none;
}

[data-theme="dark"] .light-logo {
  display: none;
}

[data-theme="dark"] .dark-logo {
  display: block;
}

/* Crawling Gecko Background */
.crawling-gecko {
  position: absolute;
  color: var(--primary);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

[data-theme="dark"] .crawling-gecko {
  opacity: 0.15;
}

.gecko-1 {
  top: 60%;
  left: 10%;
  animation: gecko-crawl-up 35s linear infinite;
}

.gecko-2 {
  top: 40%;
  right: 10%;
  animation: gecko-crawl-left 40s linear infinite;
}

@keyframes gecko-crawl-up {
  0% { transform: translateY(200px) rotate(-15deg); }
  50% { transform: translateY(-400px) rotate(10deg); }
  100% { transform: translateY(-1000px) rotate(-15deg); }
}

@keyframes gecko-crawl-left {
  0% { transform: translateX(200px) rotate(-105deg); }
  50% { transform: translateX(-600px) rotate(-80deg); }
  100% { transform: translateX(-1400px) rotate(-105deg); }
}

/* ==============================================================
   TESTIMONIALS SECTION
   ============================================================== */

.testimonials-section {
  padding: 120px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  margin-bottom: 60px;
  position: relative;
}

.quote-mark {
  font-size: 180px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-200px);
  font-family: Georgia, serif;
  z-index: 0;
}

.display-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 40px;
}

.chat-bubble-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(10, 24, 48, 0.05);
  position: relative;
  max-width: 480px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-bubble-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(10, 24, 48, 0.1);
}

[data-theme="dark"] .chat-bubble-card {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.chat-tail {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; 
  height: 0; 
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--bg-main);
  filter: drop-shadow(4px 0 2px rgba(10, 24, 48, 0.02));
  z-index: 1;
}

.chat-tail::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -16px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid var(--border-color);
  z-index: -1;
}

[data-theme="dark"] .chat-tail {
  filter: drop-shadow(4px 0 2px rgba(0, 0, 0, 0.2));
}

.bubble-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bubble-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.bubble-name {
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  font-size: 1.1rem;
}

.bubble-actions {
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  font-size: 1.2rem;
}

.bubble-stars {
  color: #FBBF24; /* Yellow star color */
  margin-bottom: 16px;
  font-size: 1.2rem;
  display: flex;
  gap: 4px;
}

.bubble-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.bubble-content {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonials-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .testimonials-list {
    padding-left: 0;
  }
  .chat-bubble-card {
    margin-left: 0 !important;
    max-width: 100%;
  }
  .chat-tail {
    right: auto;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--bg-main);
    border-bottom: none;
  }
  .chat-tail::after {
    right: -16px;
    top: -2px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid var(--border-color);
    border-bottom: none;
  }
  .quote-mark {
    transform: translateX(-50%);
    top: -100px;
  }
}

/* ==============================================================
   MARKETPLACE SERVICES SECTION
   ============================================================== */
.services-showcase {
  padding: 100px 0;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.marketplace-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.marketplace-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(103, 209, 13, 0.3);
}

.marketplace-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(103, 209, 13, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.marketplace-card:hover .card-icon {
  transform: scale(1.1);
}

.marketplace-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.marketplace-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ==============================================================
   BENEFITS SECTION
   ============================================================== */
.benefits-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(103, 209, 13, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.benefit-card h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
}

/* ==============================================================
   RESPONSIVE OPTIMIZATION OVERRIDES
   ============================================================== */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }
  
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-cta { justify-content: center; }
  
  .api-grid { grid-template-columns: 1fr; }
  
  .showcase-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .showcase-visual { grid-row: 1; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Typography Scaling */
  .hero-content h1 { font-size: clamp(2.5rem, 8vw, 3rem); }
  .section-header h2 { font-size: clamp(2rem, 6vw, 2.5rem); }
  
  /* Layout Adjustments */
  .features-grid { grid-template-columns: 1fr; }
  .marketplace-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  /* Form Inputs to prevent iOS zoom */
  input, select, textarea { font-size: 16px !important; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
}

/* Mobile Nav Slide-in Menu Styles */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 24, 48, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  overflow-y: auto;
}

[data-theme="dark"] .mobile-nav-menu {
  box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.mobile-nav-menu.active {
  transform: translateX(-300px);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.close-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.mobile-nav-socials a {
  color: var(--text-muted);
  font-size: 1.5rem;
}

