:root {
  --primary: #0F4C81;
  --secondary: #236899;
  --dark: #031D40;
  --light: #E8EEF4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: system-ui, -apple-system, sans-serif; overflow-x: hidden; background: #fff; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease forwards; }

/* Section common */
.section-badge { display: inline-block; background: #EEF2F7; color: var(--primary); font-weight: 600; font-size: 0.85rem; padding: 6px 16px; border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.section-heading { font-size: 2rem; font-weight: 800; color: #0f172a; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 1rem; }
.section-desc { font-size: 1.1rem; color: #64748b; line-height: 1.7; max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }

/* Hero */
.hero-section { position: relative; overflow: hidden; padding: 4rem 0 6rem; min-height: auto; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #031D40 0%, #0F4C81 50%, #236899 100%); overflow: hidden; }
.hero-shape { position: absolute; border-radius: 50%; }
.hero-shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: rgba(255,255,255,0.05); }
.hero-shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: rgba(255,255,255,0.03); }
.hero-shape-3 { width: 200px; height: 200px; top: 50%; left: 30%; background: rgba(35,104,153,0.1); }
.hero-grid-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 40px 40px; }
.hero-content { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.hero-left { flex: 1; color: white; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; animation: pulse 2s infinite; }
.hero-title { font-size: 2.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; justify-content: center; }
.btn-hero-outline { display: inline-flex; align-items: center; padding: 14px 32px; background: rgba(255,255,255,0.15); color: #fff; font-weight: 700; font-size: 1rem; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; text-decoration: none; transition: all 0.3s ease; backdrop-filter: blur(4px); }
.btn-hero-outline:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat-value { font-size: 1.5rem; font-weight: 800; color: white; line-height: 1; }
.hero-stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-right { flex: 1; display: flex; justify-content: center; align-items: center; }

/* Dashboard mockup */
.hero-mockup-wrapper { perspective: 1200px; }
.hero-mockup { position: relative; transform: rotateY(-5deg) rotateX(2deg); transition: transform 0.5s ease; }
.hero-mockup:hover { transform: rotateY(-3deg) rotateX(1deg); }
.mockup-main { background: white; border-radius: 1.5rem; box-shadow: 0 25px 60px rgba(0,0,0,0.3); overflow: hidden; width: 440px; max-width: 100%; }
.mockup-topbar { display: flex; align-items: center; padding: 10px 16px; background: #f8f9fa; border-bottom: 1px solid #e9ecef; }
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.mockup-app-title { flex: 1; text-align: center; font-size: 0.75rem; font-weight: 600; color: #6c757d; }
.mockup-avatar-sm { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }
.mockup-avatar-md { width: 40px; height: 40px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.mockup-welcome { display: flex; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid #f1f5f9; }
.mockup-welcome-name { font-weight: 600; font-size: 0.875rem; color: #1e293b; }
.mockup-welcome-date { font-size: 0.75rem; color: #94a3b8; }
.mockup-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 0 16px 16px; }
.mockup-metric { background: #f8fafc; border-radius: 8px; padding: 10px; text-align: center; }
.mockup-metric-value { font-weight: 800; font-size: 1rem; color: #0f172a; }
.mockup-metric-label { font-size: 0.7rem; color: #94a3b8; margin-top: 2px; }
.mockup-metric-trend { font-size: 0.7rem; font-weight: 600; margin-top: 4px; }
.mockup-metric-trend.up { color: #10b981; }
.mockup-metric-trend.neutral { color: #94a3b8; }
.mockup-chart { display: flex; align-items: flex-end; gap: 4px; padding: 16px; height: 80px; border-bottom: 1px solid #f1f5f9; }
.mockup-bar { flex: 1; background: #e2e8f0; border-radius: 4px 4px 0 0; height: var(--h); }
.mockup-bar.active { background: linear-gradient(to top, #0F4C81, #236899); }
.mockup-transactions { padding: 8px 16px 16px; }
.mockup-tx { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; }
.mockup-tx-avatar { width: 32px; height: 32px; border-radius: 50%; color: white; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mockup-tx-name { font-size: 0.8rem; font-weight: 600; color: #1e293b; }
.mockup-tx-status { font-size: 0.65rem; }
.mockup-tx-status.success { color: #10b981; }
.mockup-tx-status.pending { color: #f59e0b; }
.mockup-tx-amount { margin-left: auto; font-weight: 700; font-size: 0.85rem; color: #0f172a; }
.mockup-float-card { position: absolute; background: white; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); padding: 12px 16px; display: flex; align-items: center; gap: 10px; z-index: 10; }
.mockup-notification { bottom: -20px; left: -30px; animation: floatUp 3s ease-in-out infinite; }
.mockup-notif-check { width: 28px; height: 28px; border-radius: 50%; background: #10b981; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mockup-notif-title { font-weight: 600; font-size: 0.8rem; color: #1e293b; }
.mockup-notif-amount { font-weight: 700; font-size: 0.9rem; color: #10b981; }
.mockup-users { top: 20px; right: -20px; animation: floatDown 3.5s ease-in-out infinite; }
.mockup-avatar-stack { display: flex; }
.mockup-stack-avatar { width: 30px; height: 30px; border-radius: 50%; border: 2px solid white; font-size: 0.6rem; font-weight: 700; color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mockup-stack-avatar:not(:first-child) { margin-left: -8px; }
.mockup-stack-avatar.more { background: #94a3b8; }
.mockup-users-label { font-size: 0.75rem; color: #64748b; font-weight: 500; }

/* Features */
.features-section { padding: 6rem 0; background: white; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.feature-card { background: white; border-radius: 1.5rem; padding: 2rem; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.feature-card.featured { border-color: var(--primary); position: relative; overflow: hidden; }
.feature-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #0F4C81, #236899); }
.feature-icon-wrap { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.feature-icon-wrap.cash-in { background: rgba(15,76,129,0.1); color: var(--primary); }
.feature-icon-wrap.dashboard { background: var(--primary); color: white; }
.feature-icon-wrap.cash-out { background: rgba(15,76,129,0.1); color: var(--primary); }
.feature-title { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-bottom: 0.75rem; }
.feature-desc { font-size: 0.95rem; color: #64748b; line-height: 1.6; }
.feature-methods { list-style: none; padding: 0; margin: 0; }
.feature-methods li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: #475569; font-size: 0.95rem; }
.feature-methods li i { color: var(--primary); font-size: 1.1rem; }
.feature-mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 48px; margin-top: 1.5rem; }
.mini-bar { flex: 1; background: #e2e8f0; border-radius: 4px 4px 0 0; height: var(--h); }

/* How it works */
.how-section { padding: 6rem 0; background: linear-gradient(180deg, #F0F5FA 0%, white 100%); }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto; }
.step-card { text-align: center; flex: 1; padding: 2rem; }
.step-number { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: white; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.step-icon-wrap { width: 64px; height: 64px; background: rgba(15,76,129,0.08); border-radius: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--primary); }
.step-title { font-weight: 700; font-size: 1.1rem; color: #0f172a; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.9rem; color: #64748b; line-height: 1.6; }
.step-connector { display: flex; align-items: center; color: #cbd5e1; flex-shrink: 0; }

/* Withdraw */
.withdraw-section { padding: 6rem 0; background: white; }
.withdraw-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.withdraw-left { display: flex; justify-content: center; }
.withdraw-right .section-heading { text-align: left; margin-bottom: 1rem; }
.withdraw-right .section-desc { text-align: left; margin: 0 0 2rem 0; }
.phone-mockup { position: relative; width: 280px; background: #0f172a; border-radius: 2.5rem; padding: 10px; box-shadow: 0 25px 60px rgba(0,0,0,0.2); }
.phone-notch { width: 120px; height: 24px; background: #0f172a; border-radius: 0 0 16px 16px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 2; }
.phone-screen { background: white; border-radius: 2rem; overflow: hidden; min-height: 480px; }
.phone-header { display: flex; align-items: center; justify-content: space-between; padding: 36px 16px 12px; }
.phone-brand { font-weight: 800; color: var(--primary); font-size: 1.1rem; }
.phone-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: white; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.phone-balance-card { background: linear-gradient(135deg, #0F4C81, #236899); border-radius: 12px; margin: 0 16px; padding: 16px; color: white; }
.phone-balance-label { font-size: 0.75rem; opacity: 0.7; }
.phone-balance-value { font-size: 1.5rem; font-weight: 800; margin-top: 4px; }
.phone-balance-change { font-size: 0.75rem; color: #6ee7b7; margin-top: 4px; }
.phone-quick-actions { display: flex; justify-content: space-around; padding: 20px 16px; }
.phone-action { text-align: center; }
.phone-action span { font-size: 0.7rem; color: #64748b; font-weight: 500; display: block; }
.phone-action-circle { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 6px; }
.phone-action-circle.send { background: var(--primary); }
.phone-action-circle.receive { background: var(--secondary); }
.phone-action-circle.history { background: var(--dark); }
.phone-tx-list { padding: 0 16px 16px; }
.phone-tx-title { font-size: 0.75rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; margin-bottom: 8px; }
.phone-tx-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f1f5f9; }
.phone-tx-avatar { width: 36px; height: 36px; border-radius: 50%; color: white; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-tx-details { flex: 1; display: flex; flex-direction: column; }
.phone-tx-name { font-size: 0.85rem; font-weight: 600; color: #1e293b; }
.phone-tx-time { font-size: 0.7rem; color: #94a3b8; }
.phone-tx-amount { font-weight: 700; color: #10b981; font-size: 0.9rem; }
.speed-badge-float { position: absolute; bottom: 40px; right: -20px; background: white; border-radius: 9999px; padding: 8px 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 6px; color: #f59e0b; font-weight: 600; font-size: 0.85rem; animation: floatUp 2.5s ease-in-out infinite; }
.withdraw-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2rem; }
.withdraw-benefit { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: #1e293b; font-weight: 500; }
.benefit-check { width: 24px; height: 24px; border-radius: 50%; background: #10b981; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Benefits/Stats */
.benefits-section { padding: 6rem 0; background: linear-gradient(135deg, #031D40 0%, #0F4C81 100%); position: relative; overflow: hidden; color: #fff; }
.benefits-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(35,104,153,0.2) 0%, transparent 70%); border-radius: 50%; }
.benefits-section .section-heading { color: #fff; }
.benefits-section .section-desc { color: rgba(255,255,255,0.7); }
.benefits-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.benefits-header .section-heading { color: #fff; }
.benefits-header .section-desc { color: rgba(255,255,255,0.6); }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; z-index: 1; }
.stat-card-modern { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.5rem; padding: 2rem; text-align: center; backdrop-filter: blur(10px); transition: all 0.3s ease; }
.stat-card-modern:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); }
.stat-card-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: white; }
.stat-card-value { font-size: 2rem; font-weight: 800; color: white; }
.stat-card-label { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* Testimonials */
.testimonials-section { padding: 6rem 0; background: white; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.testimonial-card { background: white; border-radius: 1.5rem; padding: 2rem; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.testimonial-text { font-size: 1rem; color: #475569; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; color: white; font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name { font-weight: 600; color: #0f172a; }
.testimonial-role { font-size: 0.85rem; color: #94a3b8; }

/* Contact */
.contact-section { padding: 6rem 0; background: linear-gradient(135deg, #0F4C81 0%, #236899 100%); position: relative; overflow: hidden; color: #fff; }
.contact-section::before { content: ''; position: absolute; top: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%; }
.contact-section::after { content: ''; position: absolute; bottom: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%; }
.contact-section .section-heading { color: #fff; }
.contact-section .section-desc { color: rgba(255,255,255,0.7); }
.contact-content { text-align: center; position: relative; z-index: 1; }
.contact-content .section-desc { margin-bottom: 2.5rem; }
.btn-contact-cta { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: #fff; color: var(--primary); font-weight: 700; font-size: 1.1rem; border: none; border-radius: 9999px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
.btn-contact-cta:hover { background: #f0f4f8; transform: translateY(-2px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* Footer */
.footer-modern { background: #F8FAFC; border-top: 1px solid #e2e8f0; padding: 3rem 0 2rem; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-bottom: 2rem; }
.footer-logo-modern { height: 36px; width: auto; opacity: 0.8; transition: opacity 0.3s ease; }
.footer-logo-modern:hover { opacity: 1; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.footer-link { color: #64748b; font-size: 0.9rem; text-decoration: none; transition: color 0.3s ease; }
.footer-link:hover { color: var(--primary); }
.footer-divider { height: 1px; background: #e2e8f0; margin: 2rem 0; }
.footer-bottom { text-align: center; }
.footer-copyright { color: #94a3b8; font-size: 0.875rem; margin: 0; }

/* Countries Section */
.countries-section { padding: 0; background: white; padding-top: 7rem;}
.countries-content { background: rgba(255,255,255,0); padding: 0; position: relative; display: flex; align-items: center; gap: 3rem; max-width: 1200px; margin: 0 auto; border-radius: 1.5rem; overflow: visible; }
.countries-content::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(35,104,153,0.2) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.map-container { flex: 1; min-width: 0; position: relative; overflow: visible; }
#d3-map { width: 100%; height: 600px; position: relative; overflow: visible; }
#globe-loading { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: #94a3b8; font-size: 0.9rem; }

/* Globe markers */
.marker-trigger {
  width: 30px; height: 30px;
  background: transparent;
  cursor: pointer;
  pointer-events: auto !important;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
}
.marker-trigger .pulse {
  width: 8px; height: 8px;
  background: #0F4C81;
  border-radius: 50%;
  box-shadow: 0 0 10px #0F4C81;
  position: relative;
}
.marker-trigger .pulse::after {
  content: '';
  position: absolute; inset: -2px;
  border: 2px solid #0F4C81;
  border-radius: 50%;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.8; }
  80%, 100% { transform: scale(3); opacity: 0; }
}

/* Globe tooltip */
.map-label {
  padding: 6px 14px;
  background: rgba(15, 76, 129, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 13px; font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none !important;
  white-space: nowrap;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: scale(0.8) translateY(0);
  visibility: hidden;
}
.map-label.visible {
  opacity: 1;
  transform: scale(1) translateY(-60px);
  visibility: visible;
}

.countries-grid { display: flex; flex-direction: column; gap: 1rem; flex: 0 0 380px; position: relative; z-index: 2; }
.country-card { background: #0F4C81; border-radius: 1rem; padding: 1.25rem 1.75rem; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; gap: 1.25rem; text-decoration: none; transition: all 0.3s ease; }
.country-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.4); background: #236899; }
.country-flag { width: 48px; height: 34px; border-radius: 4px; overflow: hidden; flex-shrink: 0; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.country-flag img { width: 100%; height: 100%; object-fit: cover; }
.country-info { flex: 1; }
.country-name { font-size: 1.1rem; font-weight: 700; color: #ffffff; margin-bottom: 2px; }
.country-domain { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.country-arrow { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #ffffff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
.country-card:hover .country-arrow { background: rgba(255,255,255,0.25); }

/* Responsive */
@media (min-width: 768px) {
  .section-heading { font-size: 2.5rem; }
  .hero-title { font-size: 3.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .hero-section { min-height: 100vh; display: flex; align-items: center; }
  .hero-content { flex-direction: row; gap: 4rem; }
  .hero-left { text-align: left; }
  .hero-buttons { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .withdraw-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1023px) {
  .hero-mockup-wrapper { display: none; }
  .hero-stat-sep { display: none; }
  .step-connector { transform: rotate(90deg); }
}
@media (max-width: 768px) {
  .section-heading { font-size: 1.75rem; }
  .hero-title { font-size: 2rem; }
  .steps-grid { flex-direction: column; gap: 2rem; }
  .countries-content { flex-direction: column; padding: 2.5rem 1rem; }
  .countries-grid { flex: none; width: 100%; }
  #d3-map { height: 350px; }
}
@media (max-width: 576px) {
  .hero-section { padding: 3rem 0 4rem; }
  .hero-title { font-size: 1.75rem; }
  .section-heading { font-size: 1.5rem; }
  .hero-shape { display: none; }
  .features-section, .how-section, .withdraw-section, .benefits-section, .countries-section, .testimonials-section, .contact-section { padding: 4rem 0; }
}