:root {
  /* Color System - Global Tech Premium Dark Theme */
  --bg-base:       #0a0a0a;
  --bg-deep:       #121212;
  --bg-card:       #1a1a1a;
  --border:        #2a2a2a;
  --theme-primary: #10b981;
  --theme-hover:   #059669;
  --theme-glow:    rgba(16, 185, 129, 0.5);
  --theme-bg:      rgba(16, 185, 129, 0.1);
  --text-primary:   #ffffff;
  --text-secondary: #a0a0a0;
  --text-dim:       #666666;
  --green-success:  #00c853;
  --glass-bg:      rgba(26, 26, 26, 0.7);
  --glass-border:  rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --section-gap: 60px;
  --r-md: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

/* ---- BACKGROUND PATTERNS ---- */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(#ffffff08 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}

.bg-lines {
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 70% 30%, transparent 20%, rgba(16, 185, 129, 0.08) 21%, transparent 22%),
    radial-gradient(circle at 30% 70%, transparent 25%, rgba(16, 185, 129, 0.05) 26%, transparent 27%),
    radial-gradient(circle at 70% 30%, transparent 35%, rgba(16, 185, 129, 0.03) 36%, transparent 37%);
  z-index: -1;
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ---- NEON GLOW EFFECTS ---- */
.neon-glow {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3),
              0 0 40px rgba(16, 185, 129, 0.2),
              0 0 60px rgba(16, 185, 129, 0.1);
}

.neon-text {
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.8),
               0 0 20px rgba(16, 185, 129, 0.5),
               0 0 30px rgba(16, 185, 129, 0.3);
}

/* ---- GLASSMORPHISM ---- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.glass-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.logo-text span { color: var(--theme-primary); }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-link-login { font-size: 0.9rem; font-weight: 500; color: var(--text-primary); }
.btn-nav-register {
  background: var(--theme-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-nav-register:hover {
  background: var(--theme-hover);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

/* ---- HERO SECTION ---- */
.hero { padding: 80px 0 100px; }
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  color: var(--theme-primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(10px);
}
.badge-dot { 
  width: 8px; height: 8px; 
  background: var(--theme-primary); 
  border-radius: 50%;
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-highlight { position: relative; color: var(--theme-primary); }
.underline {
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  height: 12px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.4), rgba(16, 185, 129, 0.1));
  opacity: 1;
  z-index: -1;
  border-radius: 6px;
  filter: blur(2px);
}

.hero-sub { 
  font-size: 1.15rem; 
  color: var(--text-secondary); 
  max-width: 520px; 
  margin-bottom: 40px; 
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover));
  color: white;
  padding: 18px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 18px 28px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn-hero-ghost:hover {
  border-color: var(--theme-primary);
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.hero-features { display: flex; gap: 32px; font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.check { color: var(--theme-primary); margin-right: 6px; }

/* ---- TERMINAL MOCKUP ---- */
.terminal-mockup {
  background: linear-gradient(180deg, #0f0f0f, #0a0a0a);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(16, 185, 129, 0.1);
  font-family: var(--font-mono);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.terminal-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
  animation: scanline 3s linear infinite;
}

@keyframes scanline {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.term-header {
  background: rgba(26, 26, 26, 0.8);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.term-dots { display: flex; gap: 8px; }
.term-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f56; } .dot-y { background: #ffbd2e; } .dot-g { background: #27c93f; }
.term-title { color: #666; font-size: 0.75rem; }
.term-status-live { color: #27c93f; font-size: 0.7rem; font-weight: bold; display: flex; align-items: center; gap: 8px; }
.live-dot { width: 8px; height: 8px; background: #27c93f; border-radius: 50%; animation: pulseLive 1.5s ease-in-out infinite; }

@keyframes pulseLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.term-body { padding: 24px; font-size: 0.85rem; line-height: 1.8; color: #ccc; }
.prompt { color: #888; margin-right: 10px; }
.dim { color: #666; }
.time { color: #444; margin-right: 14px; }
.op { color: #ff9800; font-weight: bold; margin-right: 14px; }
.price { color: #eee; flex-grow: 1; }
.badge-sold {
  color: #27c93f;
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  padding: 2px 8px;
  font-size: 0.65rem;
  border-radius: 4px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}
.term-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: #888;
}
.total-val { color: #fff; font-size: 1.2rem; }
.cursor { color: var(--theme-primary); animation: blink 1s infinite; text-shadow: 0 0 10px var(--theme-primary); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.term-line.new-line {
  animation: slideInTerminal 0.4s ease-out forwards;
}
@keyframes slideInTerminal {
  from { opacity: 0; transform: translateX(-15px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---- INTEGRATION SECTION ---- */
.integration { background: var(--bg-deep); padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.integration-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tagline { color: var(--theme-primary); font-family: var(--font-mono); font-weight: bold; margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 0.05em; }
.section-title { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; margin-bottom: 24px; line-height: 1.1; letter-spacing: -0.02em; }
.theme-color { color: var(--theme-primary); }
.integration-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; margin-bottom: 40px; }
.check-item { font-weight: 600; font-size: 1rem; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
.check-item::before { content: '✓'; color: var(--theme-primary); font-weight: bold; }

.integration-actions { display: flex; align-items: center; gap: 24px; }
.btn-theme {
  background: var(--theme-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.btn-theme:hover {
  background: var(--theme-hover);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}
.compat-box { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--text-dim); max-width: 200px; }
.compat-box img { width: 36px; filter: grayscale(100%); transition: filter 0.3s; }
.compat-box:hover img { filter: grayscale(0%); }

/* ---- CODE MOCKUP ---- */
.code-mockup { background: linear-gradient(180deg, #0f0f0f, #0a0a0a); border-radius: 16px; overflow: hidden; font-family: var(--font-mono); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.code-header { background: rgba(26, 26, 26, 0.8); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); }
.code-title { color: #666; font-size: 0.75rem; }
.btn-copy { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #888; font-size: 0.75rem; padding: 6px 14px; border-radius: 6px; display: flex; align-items: center; gap: 8px; transition: all 0.3s; cursor: pointer; }
.btn-copy:hover { background: rgba(16, 185, 129, 0.1); border-color: var(--theme-primary); color: var(--theme-primary); }
.code-body { padding: 24px; font-size: 0.85rem; line-height: 1.6; color: #bbb; }
.ln { color: #444; margin-right: 20px; user-select: none; }
.c-comment { color: #666; }
.c-kw { color: #ff9800; }

/* ---- FEATURES GRID ---- */
.features { padding: 100px 0; }
.features-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.features-header .section-title { font-size: 3.5rem; }
.features-header .section-sub { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.6; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }

.feat-card-main {
  grid-column: span 2;
  grid-row: span 2;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 48px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 30px rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-card-main:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 40px rgba(16, 185, 129, 0.2);
}
.feat-card-main::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.2), transparent 60%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.feat-card-main:hover::before {
  opacity: 1;
}

.feat-icon-box { 
  font-size: 2.5rem; 
  margin-bottom: 24px; 
  color: var(--theme-primary); 
  background: rgba(16, 185, 129, 0.1);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}
.feat-icon-box.small { font-size: 1.8rem; margin-bottom: 20px; width: 48px; height: 48px; border-radius: 12px; }
.feat-tag { 
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover)); 
  color: #fff; 
  padding: 6px 14px; 
  font-size: 0.75rem; 
  font-family: var(--font-mono);
  font-weight: 900; 
  border-radius: 8px; 
  align-self: flex-start;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}
.feat-card-main h3 { 
  font-family: var(--font-display); 
  font-size: 2.5rem; 
  font-weight: 800; 
  margin-bottom: 16px; 
  letter-spacing: -0.02em; 
  background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feat-card-main p { color: var(--text-secondary); margin-bottom: auto; line-height: 1.7; font-size: 1.1rem; }

.feat-stats { display: flex; gap: 24px; margin-top: 48px; }
.f-stat { 
  display: flex; 
  flex-direction: column; 
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.f-stat::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--theme-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.f-stat:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-3px);
}
.f-stat:hover::after {
  opacity: 1;
}
.f-stat .val { 
  font-family: var(--font-display); 
  font-size: 2rem; 
  font-weight: 800; 
  color: var(--theme-primary); 
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
  margin-bottom: 4px;
}
.f-stat .lbl { font-size: 0.75rem; color: var(--text-dim); font-weight: bold; letter-spacing: 0.05em; font-family: var(--font-mono); }

.feat-card {
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 16px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.feat-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.01em; }
.feat-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

@keyframes scanLaser {
  0% { transform: translateY(-5px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(5px); opacity: 0; }
}
.laser-line {
  animation: scanLaser 2s infinite ease-in-out;
  transform-origin: center;
}

@keyframes barPulse {
  0%, 100% { transform: scaleY(0.7); }
  50% { transform: scaleY(1.1); }
}
.bar-anim {
  transform-origin: bottom;
  transform-box: fill-box;
}
.bar-1 { animation: barPulse 1.5s infinite ease-in-out; }
.bar-2 { animation: barPulse 1.5s infinite ease-in-out 0.3s; }
.bar-3 { animation: barPulse 1.5s infinite ease-in-out 0.6s; }

/* Dynamic Icons Animations */
@keyframes boltFlash {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.2)); stroke-width: 1.5; }
  50% { filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8)); stroke-width: 2.5; }
}
.lightning-bolt { animation: boltFlash 1.5s infinite ease-in-out; }

@keyframes cloudFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.cloud-arrow { animation: cloudFloat 2s infinite ease-in-out; }

@keyframes wifiPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}
.wifi-1 { animation: wifiPulse 1.5s infinite ease-in-out; }
.wifi-2 { animation: wifiPulse 1.5s infinite ease-in-out 0.3s; }

@keyframes paperPrint {
  0% { transform: translateY(-6px); clip-path: inset(6px 0 0 0); }
  50%, 100% { transform: translateY(0); clip-path: inset(0 0 0 0); }
}
.print-paper { animation: paperPrint 2s infinite cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes nodePulse {
  0%, 100% { stroke-width: 1.5; opacity: 0.4; }
  50% { stroke-width: 2.5; opacity: 1; }
}
.node-link-1 { animation: nodePulse 2s infinite 0s; }
.node-link-2 { animation: nodePulse 2s infinite 0.4s; }
.node-link-3 { animation: nodePulse 2s infinite 0.8s; }

@keyframes clockSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.clock-hands { transform-origin: 12px 12px; animation: clockSpin 4s linear infinite; }

@keyframes shieldPing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}
.shield-ring { transform-origin: 12px 12px; animation: shieldPing 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
.shield-pulse { animation: wifiPulse 2s infinite ease-in-out; }

/* ---- PAYMENT STRIP ---- */
.payment-strip { padding: 60px 0; border-bottom: 1px solid var(--border); background: var(--bg-deep); }
.strip-logos, .countries-grid-new { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
/* Taille fixe (ne grandit pas avec le logo) : les fichiers sources sont soit
   des bannières pleine couleur (ratio ~1.5-1.8), soit des badges 110x82
   (ratio ~1.34) où l'espace autour de l'icône fait partie du dessin — donc
   pas rognable. La boîte reprend ce ratio ~1.34 et l'image remplit toute
   la boîte (largeur ET hauteur, pas seulement la hauteur) pour maximiser
   son occupation sans jamais déborder ni agrandir le cadre. */
.pay-pill { background: #ffffff; border: 1px solid rgba(255, 255, 255, 0.1); width: 128px; height: 96px; padding: 6px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: all 0.3s; }
.pay-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2); }
.pay-pill img { width: 100%; height: 100%; object-fit: contain; }

/* ---- HOW IT WORKS ---- */
.hiw { padding: 100px 0; background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hiw-steps { display: flex; align-items: center; gap: 24px; margin-top: 60px; }
.hiw-step { flex: 1; position: relative; text-align: center; }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: rgba(255, 255, 255, 0.1); margin-bottom: 20px; letter-spacing: -0.05em; }
.hiw-step h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; color: var(--text-primary); }
.hiw-step p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.hiw-connector { flex: 0.2; height: 2px; background: linear-gradient(90deg, var(--border), var(--theme-primary), var(--border)); }

/* ---- APP MOBILE ---- */
.mobile-app { padding: 120px 0; background: var(--bg-base); }
.mobile-app-container { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.app-features-list { list-style: none; margin: 40px 0; display: grid; gap: 20px; }
.app-features-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--text-secondary); font-size: 1rem; }
.app-features-list li::before { content: '✓'; color: var(--theme-primary); font-weight: bold; font-size: 1.2rem; }

.app-download-btns { display: flex; gap: 16px; }
.btn-download { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); padding: 14px 24px; border-radius: 10px; background: var(--bg-card); font-weight: 700; transition: 0.3s; color: var(--text-primary); backdrop-filter: blur(10px); }
.btn-download:hover { border-color: var(--theme-primary); background: rgba(16, 185, 129, 0.1); transform: translateY(-2px); }

.phone-mockup-new {
  width: 340px;
  height: 680px;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border-radius: 48px;
  padding: 14px;
  box-shadow: 0 60px 120px rgba(0,0,0,0.4), 0 0 40px rgba(16, 185, 129, 0.1);
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-screen {
  background: linear-gradient(180deg, #121212, #0a0a0a);
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.phone-header { padding: 20px 28px; display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 800; color: var(--text-secondary); }
.phone-content { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.p-date { font-size: 0.85rem; color: var(--text-dim); font-weight: 700; }
.p-revenue { font-size: 2.5rem; font-weight: 800; margin: 12px 0; background: linear-gradient(135deg, #ffffff, #a0a0a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.p-trend { font-size: 0.8rem; color: var(--green-success); font-weight: 700; }

.p-notif { background: rgba(16, 185, 129, 0.1); padding: 16px; border-radius: 16px; display: flex; gap: 16px; margin: 28px 0; border: 1px solid rgba(16, 185, 129, 0.2); backdrop-filter: blur(10px); }
.p-notif-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover)); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 900; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
.p-notif-text { display: flex; flex-direction: column; gap: 4px; }
.p-notif-text strong { font-size: 0.85rem; color: var(--text-primary); }
.p-notif-text span { font-size: 0.75rem; color: var(--text-secondary); }

.p-list { display: grid; gap: 16px; margin-bottom: 28px; }
.p-item { display: flex; justify-content: space-between; font-size: 0.9rem; padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.p-item span { color: var(--text-dim); }

.btn-p-action { background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover)); color: #fff; text-align: center; padding: 16px; border-radius: 14px; font-weight: 700; margin-top: auto; font-size: 0.95rem; border: 1px solid rgba(16, 185, 129, 0.3); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 120px 0; background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 60px; }
.testi-card-big { grid-column: span 2; background: var(--bg-card); padding: 64px; border-radius: 24px; border: 1px solid var(--border); backdrop-filter: blur(10px); position: relative; overflow: hidden; }
.testi-card-big::before { content: '"'; position: absolute; top: 20px; right: 30px; font-size: 8rem; color: rgba(16, 185, 129, 0.1); font-family: var(--font-display); line-height: 1; }
.testi-card { background: var(--bg-card); padding: 40px; border-radius: 20px; border: 1px solid var(--border); backdrop-filter: blur(10px); }

.quote { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1.3; margin-bottom: 36px; letter-spacing: -0.02em; color: var(--text-primary); }
.testi-card .quote { font-size: 1.4rem; }

.testi-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: var(--theme-primary); border: 1px solid rgba(16, 185, 129, 0.3); }
.author-info { display: flex; flex-direction: column; gap: 4px; }
.author-info strong { font-size: 1.1rem; color: var(--text-primary); }
.author-info span { font-size: 0.9rem; color: var(--text-secondary); }

/* ---- COUNTRIES ---- */
.countries-section { background: var(--bg-base); color: var(--text-primary); padding: 120px 0; border-top: 1px solid var(--border); }
.countries-container { display: flex; flex-direction: column; gap: 60px; }
.countries-text .section-title { font-size: 4rem; line-height: 1.05; margin-bottom: 32px; color: var(--text-primary); letter-spacing: -0.03em; }
.countries-text .section-sub { color: var(--text-secondary); font-size: 1.15rem; max-width: 480px; margin-bottom: 48px; line-height: 1.7; }

.all-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--theme-primary);
  background: rgba(16, 185, 129, 0.1);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.countries-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.country-card-new { background: var(--bg-card); padding: 24px; border-radius: 12px; text-align: center; transition: all 0.3s ease; border: 1px solid var(--border); backdrop-filter: blur(10px); }
.country-card-new:hover { transform: translateY(-4px); border-color: var(--theme-primary); box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15); }
.country-card-new h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.country-card-new .c-stats { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.country-card-new .h-count { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.85rem; }
.country-card-new .status { color: var(--green-success); font-family: var(--font-mono); font-size: 0.8rem; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.country-card-new .status .dot { width: 6px; height: 6px; background: var(--green-success); border-radius: 50%; animation: pulseStatus 2s ease-in-out infinite; }

@keyframes pulseStatus {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---- FAQ ---- */
.faq-section { padding: 100px 0; background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { margin-top: 48px; display: grid; gap: 16px; max-width: 900px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--bg-card); backdrop-filter: blur(10px); transition: all 0.3s ease; }
.faq-q { padding: 24px 28px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-primary); font-size: 1.05rem; }
.faq-q::after { content: '+'; color: var(--theme-primary); font-size: 1.4rem; font-weight: 300; transition: transform 0.3s ease; }

/* ---- CTA FINAL ---- */
.cta-final { background: var(--bg-base); color: var(--text-primary); padding: 120px 0; text-align: center; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05), transparent 70%); pointer-events: none; }
.cta-container { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.cta-final .section-title { font-size: 4.5rem; line-height: 1; color: var(--text-primary); margin-bottom: 32px; letter-spacing: -0.03em; }
.cta-final .section-sub { color: var(--text-secondary); margin-bottom: 48px; font-size: 1.15rem; max-width: 600px; line-height: 1.6; }

.cta-form { display: flex; gap: 0; background: var(--bg-card); border: 1px solid var(--border); padding: 8px; border-radius: 12px; width: 100%; max-width: 540px; margin-bottom: 56px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); backdrop-filter: blur(10px); }
.input-group { display: flex; align-items: center; gap: 14px; padding: 0 20px; flex-grow: 1; }
.mail-icon { color: var(--text-dim); }
.cta-form input { background: none; border: none; color: var(--text-primary); width: 100%; font-size: 1rem; outline: none; }
.cta-form input::placeholder { color: var(--text-dim); }
.btn-cta-start { background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover)); color: #fff; border: none; padding: 16px 36px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s; border: 1px solid rgba(16, 185, 129, 0.3); }
.btn-cta-start:hover { background: var(--theme-hover); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4); transform: translateY(-2px); }

.cta-trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; max-width: 900px; }
.t-badge { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }
.check-icon { color: var(--theme-primary); font-weight: bold; }

/* ---- FOOTER ---- */
.footer { background: var(--bg-deep); color: var(--text-primary); padding: 100px 0 48px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 48px; margin-bottom: 72px; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; }
.footer-logo span { color: var(--theme-primary); }
.footer-brand p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; max-width: 360px; margin-bottom: 32px; }

.footer-social-new { display: flex; gap: 14px; }
.social-box { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: 0.3s; background: var(--bg-card); backdrop-filter: blur(10px); }
.social-box:hover { border-color: var(--theme-primary); color: var(--theme-primary); background: rgba(16, 185, 129, 0.1); transform: translateY(-2px); }

.footer-col-new h4 { font-family: var(--font-mono); font-size: 0.75rem; color: var(--theme-primary); letter-spacing: 0.15em; margin-bottom: 28px; font-weight: 700; text-transform: uppercase; }
.footer-col-new { display: flex; flex-direction: column; gap: 16px; }
.footer-col-new a { color: var(--text-secondary); font-size: 0.95rem; transition: 0.3s; }
.footer-col-new a:hover { color: var(--text-primary); padding-left: 6px; }

.trust-item-footer { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 16px; }
.trust-item-footer svg { color: var(--theme-primary); }

.footer-bottom-new { border-top: 1px solid var(--border); padding-top: 48px; text-align: left; color: var(--text-dim); font-size: 0.85rem; display: flex; justify-content: space-between; align-items: center; }

/* ---- MOBILE MENU ---- */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-base);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mob-link { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-primary); transition: 0.3s; }
.mob-link:hover { color: var(--theme-primary); }
.mob-actions { display: flex; flex-direction: column; gap: 16px; width: 80%; }
.btn-outline-full { text-align: center; padding: 16px; border: 1px solid var(--border); border-radius: 12px; font-weight: bold; color: var(--text-primary); background: var(--bg-card); backdrop-filter: blur(10px); }
.btn-primary-full { text-align: center; padding: 16px; background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover)); color: #fff; border-radius: 12px; font-weight: bold; border: 1px solid rgba(16, 185, 129, 0.3); }

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---- PREMIUM HOVER EFFECTS & TRANSITIONS ---- */
.btn-hero-primary, .btn-hero-ghost, .btn-nav-register, .btn-theme, .social-box, .btn-copy, .btn-download, .faq-item, .feat-card, .country-card-new, .fab-wifi, .btn-calc-cta, .btn-cta-start, .pay-pill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary:hover, .btn-nav-register:hover, .btn-theme:hover, .btn-calc-cta:hover, .btn-cta-start:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.5);
}

.btn-hero-ghost:hover {
  border-color: var(--theme-primary);
  color: var(--theme-primary);
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.feat-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(16, 185, 129, 0.1);
  background: rgba(26, 26, 26, 0.8);
}

.feat-card-main {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-card-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(16, 185, 129, 0.2);
}

.country-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--theme-primary);
}

/* Nav Links Hover and Underline Animation */
.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--theme-primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--theme-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* ---- FAQ ACCORDION STYLES ---- */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
  border-color: var(--theme-primary);
  transform: translateY(-2px);
}
.faq-q {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-q::after {
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item.open {
  border-color: var(--theme-primary);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  background: rgba(16, 185, 129, 0.05);
}
.faq-item.open .faq-q {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--theme-primary);
}
.faq-item.open .faq-q::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--theme-primary);
}
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-deep);
}
.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
}
.faq-answer {
  padding: 24px 28px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---- EARNINGS CALCULATOR ---- */
.calculator-section {
  background: var(--bg-base);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  margin-top: 48px;
  align-items: center;
}
.calc-inputs {
  background: var(--bg-card);
  padding: 48px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: grid;
  gap: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.calc-input-group {
  display: grid;
  gap: 16px;
}
.calc-label-val {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
}
.calc-val-display {
  color: var(--theme-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
}
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover));
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover));
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}
.slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
}

.calc-results {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 48px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}
.result-box {
  margin-bottom: 28px;
  width: 100%;
}
.result-lbl {
  font-size: 0.8rem;
  color: var(--theme-primary);
  font-weight: 800;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.result-val {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  transition: transform 0.2s ease-out;
}
.result-val.pulse-val {
  transform: scale(1.08);
}

.result-breakdown {
  display: flex;
  width: 100%;
  justify-content: space-around;
  padding: 24px 0;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 28px;
}
.breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.breakdown-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.breakdown-item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.calc-insight {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
  background: rgba(26, 26, 26, 0.8);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  width: 100%;
  text-align: left;
  backdrop-filter: blur(10px);
}
.theme-text {
  color: var(--theme-primary);
  font-weight: 700;
}

.btn-calc-cta {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover));
  color: #fff;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  width: 100%;
  display: block;
  transition: all 0.3s;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .hero-container, .integration-container, .mobile-app-container, .countries-container, .calc-grid { grid-template-columns: 1fr; gap: 60px; }
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: 3.2rem; }
  .section-title { font-size: 2.5rem; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .feat-card-main, .testi-card-big { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-final .section-title { font-size: 3rem; }
  .countries-text .section-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-features { flex-direction: column; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card-main { grid-column: span 1; grid-row: span 1; }
  .footer-top {
      grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-brand { grid-column: span 2; margin-bottom: 16px; }
  .countries-grid-new { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { flex-direction: column; gap: 40px; }
  .hiw-connector { display: none; }
}

/* ---- FLOATING BUTTON & GLOW ---- */
.fab-wifi {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
  cursor: pointer;
  z-index: 1000;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 1.5rem;
  animation: pulseGlow 2s infinite;
}
.fab-wifi:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.6);
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}


.strip-logos, .countries-grid-new {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: hidden !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.countries-grid-new {
  /* Ajout d'un fondu sur les bords pour adoucir la coupure dans la colonne */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.strip-logos::-webkit-scrollbar, .countries-grid-new::-webkit-scrollbar {
  display: none;
}

.country-card-new, .pay-pill {
  flex-shrink: 0;
}

.country-card-new {
  min-width: 260px;
}

/* ---- SCROLLBAR CUSTOMIZATION ---- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #333; }

/* ---- SELECTION COLORS ---- */
::selection { background: rgba(16, 185, 129, 0.3); color: var(--text-primary); }

/* ---- PREMIUM SVG ICONS ---- */
.feat-icon-box svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.2));
}
.feat-card:hover .feat-icon-box svg {
  filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.5));
  transform: scale(1.1);
}
.premium-icon {
  animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.2)); }
  50% { filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.4)); }
}
