/* ============================================
   MAGNA PORTA — Modern Light Theme
   ============================================ */

:root {
  /* Brand Orange */
  --orange:        #FF7F00;
  --orange-dark:   #D96B00;
  --orange-light:  #FFA040;
  --orange-pale:   #FFF4E6;
  --orange-mid:    #FFE0BD;

  /* Backgrounds */
  --bg-white:      #FFFFFF;
  --bg-light:      #F8F9FC;
  --bg-section:    #F2F4F9;
  --bg-card:       #FFFFFF;
  --bg-dark:       #0F1623;

  /* Text */
  --text-primary:  #0F1623;
  --text-secondary:#4A5568;
  --text-muted:    #94A3B8;

  /* Borders */
  --border:        #E6E9EF;
  --border-light:  #EEF0F5;
  --border-orange: rgba(255,127,0,0.25);

  /* Gradients */
  --gradient-orange:  linear-gradient(135deg, #FF7F00 0%, #FFA040 100%);
  --gradient-orange-bold: linear-gradient(135deg, #D96B00 0%, #FF7F00 50%, #FFA040 100%);
  --gradient-hero:    linear-gradient(135deg, #FFF8F3 0%, #F8F9FC 60%, #FFFFFF 100%);
  --gradient-warm:    linear-gradient(135deg, #FFFAF5 0%, #FFFFFF 100%);

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(15,22,35,0.05);
  --shadow-md:   0 4px 20px rgba(15,22,35,0.07);
  --shadow-lg:   0 12px 50px rgba(15,22,35,0.1);
  --shadow-xl:   0 20px 70px rgba(15,22,35,0.15);
  --shadow-card: 0 2px 12px rgba(15,22,35,0.06);
  --shadow-orange:    0 8px 32px rgba(255,127,0,0.32);
  --shadow-orange-lg: 0 16px 50px rgba(255,127,0,0.4);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-2xl: 36px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.gradient-text {
  background: var(--gradient-orange-bold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-pale);
  border: 1px solid var(--border-orange);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-orange);
  color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange-lg);
}

.btn-outline {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-pale);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-wordmark {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(255,127,0,0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,127,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,127,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,127,0,0.32) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,160,64,0.25) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
}

.hero > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-orange);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 3px rgba(255,127,0,0.2);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,127,0,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(255,127,0,0); }
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ============ Hero Visual ============ */
/* ============ Hero Visual ============ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  padding-top: 20px;
}

/* Soft radial glow behind the girl */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: 520px;
  background: radial-gradient(ellipse at center,
    rgba(255,127,0,0.15) 0%,
    rgba(255,160,64,0.07) 45%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Hero girl image */
.hero-girl-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 30px 60px rgba(255,100,0,0.12));
}

/* Hero feature chips */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hero-chip {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(15,22,35,0.09);
  z-index: 4;
  white-space: nowrap;
}

.hero-chip-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-chip strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.hero-chip span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Positions + staggered float animations */
.hero-chip-1 {
  top: 60px; left: -10px;
  animation: float 7s ease-in-out infinite;
  animation-delay: 0s;
}
.hero-chip-2 {
  top: 160px; right: 0px;
  animation: float 8s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-chip-3 {
  bottom: 160px; left: -10px;
  animation: float 9s ease-in-out infinite;
  animation-delay: -4s;
}
.hero-chip-4 {
  bottom: 60px; right: 0px;
  animation: float 7.5s ease-in-out infinite;
  animation-delay: -1s;
}

/* ============================================
   TRUSTED LOGOS
   ============================================ */
.trusted-section {
  padding: 50px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.trusted-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.55;
}

.trust-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 5px;
  transition: var(--transition);
}
.trust-logo span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ============================================
   INTERACTIVE WORLD MAP
   ============================================ */
.map-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,127,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.map-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,160,64,0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.world-map-wrap {
  position: relative;
  z-index: 1;
}

.map-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 16px 36px;
  max-width: 540px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-md);
}

.map-stat {
  flex: 1;
  text-align: center;
}

.map-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-orange-bold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.map-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin: 0 24px;
}

.world-map-canvas {
  position: relative;
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.world-map-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 660 / 320;
}

.world-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

/* Country Pins */
.country-pin {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 5;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.pin-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg-white);
  box-shadow: 0 4px 12px rgba(255,127,0,0.45), 0 0 0 4px rgba(255,127,0,0.15);
  transition: var(--transition);
}

.pin-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
  animation: pinPulse 2s infinite;
  pointer-events: none;
}

@keyframes pinPulse {
  0%   { transform: scale(0.7); opacity: 0.5; }
  100% { transform: scale(2);   opacity: 0; }
}

.pin-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-white);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border);
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--transition);
  pointer-events: none;
}

.country-pin:hover .pin-label,
.country-pin.active .pin-label {
  opacity: 1;
  transform: translateY(0);
}

.country-pin:hover .pin-dot,
.country-pin.active .pin-dot {
  transform: scale(1.25);
  box-shadow: 0 6px 18px rgba(255,127,0,0.6), 0 0 0 6px rgba(255,127,0,0.2);
}

/* Country Popup */
.country-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 32px 36px;
  box-shadow: var(--shadow-xl);
  z-index: 20;
  min-width: 360px;
  max-width: 460px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.country-popup.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

.popup-flag {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.popup-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16A34A;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.popup-country {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.15;
}

.popup-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 16px;
}

.popup-currencies-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.popup-currencies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.cur-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-pale);
  border: 1px solid var(--border-orange);
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.popup-cta {
  width: 100%;
  justify-content: center;
}

.map-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
}

.legend-dot.supported {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,127,0,0.2);
}

.legend-dot.transfer {
  background: #94A3B8;
  box-shadow: 0 0 0 3px rgba(148,163,184,0.2);
}

/* Backdrop when popup is open */
.map-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.map-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   CURRENCY CONVERTER
   ============================================ */
/* ============================================
   SME SECTION
   ============================================ */
.sme-section {
  padding: 120px 0;
  background: var(--bg-white);
  overflow: hidden;
}

.sme-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sme-visual[data-animate] {
  opacity: 0;
  transform: translateX(-30px);
}
.sme-visual.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sme-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(15,22,35,0.13));
}

.sme-content[data-animate] {
  opacity: 0;
  transform: translateX(30px);
}
.sme-content.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sme-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0 40px;
}

.sme-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.sme-feat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--orange-pale);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.sme-feat h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sme-feat p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* old converter section kept as dead CSS — harmless */
.converter-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.converter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.converter-content .section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.converter-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.conv-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.conv-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.conv-feat strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.conv-feat span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Widget */
.converter-widget {
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.conv-input-group {
  margin-bottom: 8px;
}

.conv-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.conv-input-row {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 12px 18px;
  gap: 14px;
  transition: var(--transition);
}

.conv-input-row:focus-within {
  border-color: var(--orange);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(255,127,0,0.1);
}

.conv-input-row.recipient {
  border-color: var(--border-orange);
  background: var(--orange-pale);
}

.conv-amount {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  outline: none;
  width: 100%;
  letter-spacing: -0.02em;
  -moz-appearance: textfield;
}

.conv-amount::-webkit-outer-spin-button,
.conv-amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.conv-currency-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.conv-currency-select:hover {
  border-color: var(--orange);
}

.conv-flag { font-size: 16px; }

.conv-details {
  padding: 20px 4px;
  position: relative;
  border-left: 2px dashed var(--border);
  margin-left: 24px;
  padding-left: 24px;
}

.conv-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
}

.conv-detail-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.conv-detail-label svg { color: var(--text-muted); flex-shrink: 0; }

.conv-detail-val {
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.conv-detail-row.rate-row .conv-detail-val {
  color: var(--orange-dark);
}

.conv-arrival {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, rgba(34,197,94,0.03) 100%);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 14px;
  color: #15803D;
  font-size: 14px;
}

.conv-arrival svg { flex-shrink: 0; }

.conv-cta {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.conv-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* ============================================
   COMPARISON
   ============================================ */
.compare-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.compare-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.compare-card:hover {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
}

.compare-card.best {
  background: linear-gradient(135deg, var(--orange-pale) 0%, #FFFAF7 100%);
  border-color: var(--orange);
  border-width: 2px;
  box-shadow: var(--shadow-orange);
  transform: scale(1.03);
}

.compare-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}

.compare-rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.compare-card.best .compare-rank {
  background: var(--orange);
  color: white;
}

.compare-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.compare-fee-row {
  margin-bottom: 14px;
}

.compare-fee {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.compare-card.best .compare-fee {
  background: var(--gradient-orange-bold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compare-fee-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.compare-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.compare-bar-track {
  height: 8px;
  background: var(--bg-light);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.compare-bar {
  height: 100%;
  width: var(--w);
  border-radius: 100px;
}

.compare-bar.bad  { background: linear-gradient(90deg, #EF4444, #DC2626); }
.compare-bar.med  { background: linear-gradient(90deg, #F59E0B, #D97706); }
.compare-bar.good { background: var(--gradient-orange); }

.compare-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.compare-card.best .compare-bar-label strong {
  color: var(--orange-dark);
  font-weight: 800;
}

.compare-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 24px auto 0;
  line-height: 1.6;
}

/* Testimonial location flag */
.t-flag {
  font-size: 13px;
  margin-left: 4px;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
  padding: 72px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-orange-bold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-suffix {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 10px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.product-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-orange);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card:hover::before { opacity: 1; }

.card-featured {
  background: linear-gradient(135deg, var(--orange-pale) 0%, #FFFAF7 100%);
  border-color: var(--border-orange);
}
.card-featured::before { opacity: 1; }

.product-icon {
  width: 60px; height: 60px;
  background: var(--orange-pale);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 24px;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.product-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.product-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: var(--transition);
}
.product-link:hover { color: var(--orange-dark); letter-spacing: 0.02em; }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.industry-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.industry-card:hover {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.industry-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.industry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.industry-card:hover .industry-img-wrap img {
  transform: scale(1.06);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,22,35,0.4) 100%);
}

.industry-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 14px;
  border-radius: 100px;
  color: var(--orange-dark);
  border: 1px solid rgba(255,127,0,0.2);
}

.industry-content { padding: 28px 32px 32px; }

.industry-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.industry-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.story-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 540px;
  opacity: 0;
  transform: translateX(-30px);
  box-shadow: var(--shadow-xl);
}
.story-image.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
}

.story-content {
  opacity: 0;
  transform: translateX(30px);
}
.story-content.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.story-quote {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 24px 0 32px;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
}

.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.story-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bg-white);
  box-shadow: var(--shadow-md);
}
.story-avatar img { width: 100%; height: 100%; object-fit: cover; }

.story-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.story-role {
  font-size: 13px;
  color: var(--text-muted);
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-metric {
  padding: 20px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.story-metric:hover {
  border-color: var(--border-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.metric-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-orange-bold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 120px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-container { display: flex; align-items: flex-start; }

.step {
  flex: 1;
  padding: 40px 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}
.step.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-number {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-orange-bold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.5;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin-top: 72px;
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--orange);
  border-top: 1.5px solid var(--orange);
  transform: rotate(45deg);
}

/* How-It-Works: comparison bar */
.how-compare-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto 64px;
  padding: 32px 36px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(24px);
}
.how-compare-bar.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.how-compare-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.how-compare-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 140px;
  flex-shrink: 0;
}
.how-compare-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.how-compare-fill {
  height: 100%;
  border-radius: 100px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.how-compare-bar.animate-in .bad-fill  { width: 100%; background: var(--border); }
.how-compare-bar.animate-in .good-fill { width: 16%;  background: var(--gradient-orange); }
.how-compare-time {
  font-size: 13px;
  font-weight: 700;
  width: 72px;
  text-align: right;
  flex-shrink: 0;
}
.how-compare-bank .how-compare-time { color: var(--text-secondary); }
.how-compare-mp   .how-compare-time { color: var(--orange); }
.how-compare-mp .how-compare-label  { color: var(--orange); }

/* Step time badge */
.step-time-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,127,0,0.1);
  border: 1px solid rgba(255,127,0,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

/* ============================================
   TRUST / SECURITY SECTION
   ============================================ */
.trust-section {
  padding: 120px 0;
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
}
.trust-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255,127,0,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(255,160,64,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.trust-section .section-tag {
  background: rgba(255,127,0,0.15);
  color: var(--orange-light);
  border-color: rgba(255,127,0,0.3);
}
.trust-section .section-title {
  color: #FFFFFF;
}
.trust-section .section-subtitle {
  color: rgba(255,255,255,0.55);
}
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.trust-pillar {
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.trust-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.trust-pillar:hover::before { opacity: 1; }
.trust-pillar.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.trust-pillar-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.trust-pillar-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255,127,0,0.12);
  border: 1px solid rgba(255,127,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-light);
  margin-bottom: 24px;
}
.trust-pillar h3 {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.trust-pillar p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.trust-pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-light);
  background: rgba(255,127,0,0.1);
  border: 1px solid rgba(255,127,0,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.trust-stat {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.trust-stat.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.trust-stat-number {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.trust-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.trust-banks {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.trust-bank-badge {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
}

/* ============================================
   COVERAGE
   ============================================ */
.coverage-section {
  padding: 120px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage-content[data-animate],
.coverage-visual[data-animate] {
  opacity: 0;
  transform: translateY(30px);
}
.coverage-content.animate-in,
.coverage-visual.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.coverage-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 40px 0;
}

.cov-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cov-stat:hover {
  border-color: var(--border-orange);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.cov-number {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-orange-bold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 80px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cov-label { font-size: 14px; color: var(--text-secondary); line-height: 1.5; font-weight: 600; }
.cov-label small { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* Globe photo */
.globe-photo-wrap {
  position: relative;
  height: 500px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.globe-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,127,0,0.85) 0%, rgba(217,107,0,0.9) 100%);
  z-index: 1;
}

.globe {
  width: 340px; height: 340px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.4);
  animation: globeRotate 20s linear infinite;
}
.globe-ring { width: 100%; height: 100%; }
.globe-ring.ring-2 {
  width: 75%; height: 75%;
  animation-duration: 15s;
  animation-direction: reverse;
  border-color: rgba(255,255,255,0.3);
}
.globe-ring.ring-3 {
  width: 50%; height: 50%;
  animation-duration: 10s;
  border-color: rgba(255,255,255,0.5);
}

@keyframes globeRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.globe-dot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
}
.globe-dot span {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-dark);
  background: rgba(255,255,255,0.98);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.globe-dot::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 12px rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.dot-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.dot-2 { top: 25%; right: 0; }
.dot-3 { top: 65%; right: 5%; }
.dot-4 { top: 10%; left: 2%; }
.dot-5 { bottom: 15%; left: 5%; }
.dot-6 { bottom: 5%; left: 50%; transform: translateX(-50%); }

.globe-center {
  width: 78px; height: 78px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255,255,255,0.5);
  z-index: 3;
  padding: 10px;
}
.globe-center-logo {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   CARDS SHOWCASE
   ============================================ */
.cards-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.cards-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cards-content {
  opacity: 0;
  transform: translateX(-30px);
}
.cards-content.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cards-content .section-subtitle {
  margin-bottom: 40px;
}

.cards-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-feature-item { display: flex; gap: 16px; align-items: flex-start; }

.cf-icon {
  width: 44px; height: 44px;
  background: var(--orange-pale);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.card-feature-item h4 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.card-feature-item p  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.card-visual-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
}
.card-visual-container.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cards-product-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.22));
}

.visa-card {
  width: 320px; height: 200px;
  border-radius: 18px;
  padding: 22px;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  z-index: 2;
  transition: var(--transition);
}

.card-primary {
  background: linear-gradient(135deg, #D96B00 0%, #FF7F00 50%, #FFA040 100%);
  top: 60px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 3;
}
.card-secondary {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  top: 200px;
  left: 50%;
  transform: translateX(-50%) rotate(5deg) translateX(40px);
  z-index: 2;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-bank {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.card-chip {
  width: 36px; height: 28px;
  background: linear-gradient(135deg, #f5d789, #c9a227);
  border-radius: 4px;
  position: relative;
}
.card-chip::before {
  content: '';
  position: absolute;
  inset: 4px 6px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 2px;
}

.card-logo {
  font-size: 22px; font-weight: 900;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.05em;
  text-align: right;
  font-style: italic;
}
.card-number {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.95);
  font-family: 'Courier New', monospace;
  font-weight: 600;
}
.card-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.card-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
  font-weight: 600;
}
.card-value { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.95); letter-spacing: 0.06em; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}

.testimonial.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial:hover {
  border-color: var(--border-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial.featured {
  background: linear-gradient(135deg, var(--orange-pale) 0%, #FFFAF7 100%);
  border-color: var(--border-orange);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  padding: 120px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.why-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.why-card:hover {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--gradient-warm);
}

.why-icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border: 1px solid var(--border-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}

.why-card h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.why-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-orange); }
.faq-item.open { border-color: var(--border-orange); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--orange); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 240px; }

.faq-answer p {
  padding: 16px 26px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-bg-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,107,0,0.95) 0%, rgba(255,127,0,0.92) 50%, rgba(255,160,64,0.88) 100%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  max-width: 700px;
  margin: 0 auto;
}
.cta-content.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.cta-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.15);
  padding: 6px;
  border-radius: 100px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
}

.cta-input {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 15px;
  font-family: inherit;
  color: white;
  outline: none;
}
.cta-input::placeholder { color: rgba(255,255,255,0.7); }

.cta-form .btn-primary {
  background: white;
  color: var(--orange-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-form .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-note { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 40px;
}

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

.footer .nav-wordmark { filter: brightness(0) invert(1); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 14px;
  max-width: 300px;
}

.footer-contact { font-size: 13px; margin: 6px 0 10px; }
.footer-contact a { color: var(--orange-light); transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-powered { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-powered strong { color: rgba(255,255,255,0.7); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.95); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-disclaimer { max-width: 500px; text-align: right; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
}
[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero > .container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; min-height: 440px; }
  .hero-girl-img { max-width: 400px; }
  .hero-chip-1 { top: 40px; left: 0; }
  .hero-chip-2 { top: 140px; right: 0; }
  .hero-chip-3 { bottom: 120px; left: 0; }
  .hero-chip-4 { bottom: 40px; right: 0; }

  .products-grid, .industries-grid { grid-template-columns: 1fr; }
  .converter-wrap { grid-template-columns: 1fr; gap: 60px; }
  .compare-grid { grid-template-columns: 1fr; gap: 16px; }
  .compare-card.best { transform: none; }
  .world-map-canvas { padding: 20px 12px; }
  .pin-label { font-size: 9px; padding: 2px 6px; }
  .country-popup { min-width: 280px; max-width: 320px; padding: 24px; }
  .popup-country { font-size: 22px; }
  .coverage-inner, .story-grid, .cards-showcase, .sme-inner { grid-template-columns: 1fr; gap: 60px; }
  .story-image { height: 400px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* World map */
  .map-stats-bar { padding: 12px 20px; max-width: 100%; }
  .map-stat-num { font-size: 22px; }
  .map-stat-divider { margin: 0 12px; }
  .pin-label { display: none; }
  .country-popup { min-width: 260px; max-width: 92%; padding: 22px; }
  .popup-country { font-size: 20px; }
  .popup-flag { font-size: 36px; }
  .map-legend { gap: 16px; font-size: 12px; }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 68px;
    background: var(--bg-white);
    padding: 32px 24px;
    gap: 8px;
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-links.open .nav-link { font-size: 18px; padding: 16px; }

  .hero { padding: 110px 0 60px; text-align: center; }
  .hero > .container { grid-template-columns: 1fr; }
  .hero-actions  { justify-content: center; }
  .hero-trust    { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 380px; }
  .hero-chip-1, .hero-chip-2, .hero-chip-3, .hero-chip-4 { display: none; }

  .steps-container { flex-direction: column; }
  .step-connector {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, transparent, var(--orange), transparent);
    align-self: center;
    margin: 0;
  }
  .step-connector::after { display: none; }

  .how-compare-bar { padding: 24px 20px; }
  .how-compare-label { width: 110px; font-size: 12px; }
  .trust-pillars { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .story-metrics { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }

  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }

  .trusted-logos { gap: 20px; }
  .trust-logo { font-size: 14px; }

  .cta-form { flex-direction: column; padding: 8px; border-radius: 20px; gap: 8px; }
  .cta-input { text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .section-title    { font-size: 30px; }
  .section-subtitle { font-size: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-section, .industries-section, .how-section, .coverage-section,
  .cards-section, .testimonials-section, .why-section, .faq-section, .story-section { padding: 80px 0; }
  .cta-section { padding: 100px 0; }
  .visa-card { width: 280px; height: 175px; }
}
