/* ── Payoneer Landing — Modern Dark Theme ── */

:root {
  --bg:       #0a0a0f;
  --surface:  #111118;
  --surface2: #18181f;
  --border:   rgba(255,255,255,0.07);
  --text:     #f0f0f8;
  --muted:    #6b6b80;
  --red:      #e5243b;
  --red2:     #ff3d55;
  --radius:   12px;
  --font:     'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.6; }

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--text); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); }
.btn-ghost { color: var(--muted); background: transparent; }
.btn-ghost:hover { color: var(--text); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 10px; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(229,36,59,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(229,36,59,0.12);
  border: 1px solid rgba(229,36,59,0.3);
  color: var(--red2);
  font-size: 0.82rem;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.accent { color: var(--red); }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 580px; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── STATS ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.5rem 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
  justify-content: center;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  text-align: center;
}

/* ── ABOUT ── */
.about { border-top: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-text .section-eyebrow { text-align: left; }
.about-text p { color: var(--muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 1rem; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.about-card span { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.about-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.about-card p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ── FEATURES ── */
.features { border-top: 1px solid var(--border); }
.features h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.25;
}
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
}
.card:hover { border-color: rgba(229,36,59,0.3); transform: translateY(-2px); }
.card:hover::after { opacity: 1; }
.card-icon { font-size: 1.75rem; display: block; margin-bottom: 1rem; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ── PROOF ── */
.proof { border-top: 1px solid var(--border); background: var(--surface); text-align: center; }
.proof .section-eyebrow { margin-bottom: 2rem; }
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.logos-row span { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.2); letter-spacing: -0.02em; }
.testimonial { max-width: 700px; margin: 0 auto; }
.testimonial blockquote {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.testimonial cite { font-size: 0.85rem; color: var(--muted); font-style: normal; }
.testimonial cite strong { color: var(--text); }

/* ── CTA ── */
.cta { border-top: 1px solid var(--border); text-align: center; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta p { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer p { color: var(--muted); font-size: 0.82rem; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { gap: 1rem; padding: 1.25rem; }
  .stat-divider { display: none; }
}
@media (max-width: 640px) {
  .nav { padding: 1.25rem; }
  .nav-links a:not(.btn) { display: none; }
  .hero-content { padding: 3rem 1.25rem 4rem; }
  .section { padding: 4rem 1.25rem; }
  .footer { flex-direction: column; text-align: center; padding: 2rem; }
}
