/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:        #0057FF;
  --brand-dark:   #003FCC;
  --brand-light:  #EEF3FF;
  --accent:       #00C896;
  --dark:         #0A0F1E;
  --dark-2:       #111827;
  --dark-3:       #1F2937;
  --mid:          #374151;
  --muted:        #6B7280;
  --border:       #E5E7EB;
  --white:        #FFFFFF;
  --bg:           #F9FAFB;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,87,255,.3); }
.btn-ghost { color: var(--mid); }
.btn-ghost:hover { color: var(--brand); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* ===== PILLS ===== */
.pill {
  display: inline-block;
  padding: 6px 16px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 16px;
}
.pill-dark { background: rgba(255,255,255,.12); color: var(--white); }
.pill-light { background: rgba(255,255,255,.2); color: var(--white); }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #0057FF 0%, #00C896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION SHARED ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.section-title.left-aligned { text-align: left; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* ===== NAVIGATION ===== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 22px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--brand);
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
}
.logo-mark.sm { width: 28px; height: 28px; font-size: 14px; border-radius: 6px; }
.logo-text { color: var(--dark); }
.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--brand); background: var(--brand-light); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-links a.nav-highlight {
  color: var(--accent);
  background: rgba(0,200,150,.08);
  font-weight: 600;
}
.nav-links a.nav-highlight:hover {
  color: var(--white);
  background: var(--accent);
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .2s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #0a0f1e 0%, #0d1a3a 60%, #0a0f1e 100%);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0,87,255,.25);
  border: 1px solid rgba(0,87,255,.4);
  color: #7FB3FF;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.hero-headline {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,.3); }
.hero .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
}
.hero-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,87,255,.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 32px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container { text-align: center; }
.trust-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 20px; }
.trust-logos { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.trust-logo-item {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  box-shadow: var(--shadow-sm);
}

/* ===== SOLUTIONS GRID ===== */
.solutions { background: var(--white); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--brand);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.icon-blue   { background: #EEF3FF; color: #0057FF; }
.icon-green  { background: #ECFDF5; color: #059669; }
.icon-purple { background: #F5F3FF; color: #7C3AED; }
.icon-orange { background: #FFF7ED; color: #EA580C; }
.icon-teal   { background: #ECFEFF; color: #0891B2; }
.icon-red    { background: #FFF1F2; color: #E11D48; }
.solution-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.solution-card p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.card-link { font-size: 14px; font-weight: 600; color: var(--brand); }
.card-link:hover { text-decoration: underline; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1a3a 100%);
  color: var(--white);
}
.how-it-works .section-sub { color: rgba(255,255,255,.6); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 32px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  text-align: center;
}
.step-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .8;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.step p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.6; }
.step-arrow {
  font-size: 28px;
  color: var(--brand);
  padding: 0 12px;
  margin-top: 48px;
  opacity: .6;
}

/* ===== ECOMMERCE ===== */
.ecommerce { background: var(--bg); }
.ecommerce-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ecommerce-content p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.ecommerce-features { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.ecom-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--dark); font-weight: 500; }
.checkmark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ===== FLOW DIAGRAM ===== */
.flow-diagram {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  gap: 4px;
  min-width: 160px;
}
.flow-node strong { font-size: 15px; font-weight: 700; }
.flow-node span { font-size: 13px; color: var(--muted); }
.flow-icon { font-size: 28px; margin-bottom: 6px; }
.node-buyer  { background: #EEF3FF; border: 1px solid #C7D8FF; }
.node-rcash  {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--brand);
  box-shadow: 0 0 0 6px rgba(0,87,255,.12);
}
.node-rcash span { color: rgba(255,255,255,.6); }
.node-psp    { background: #ECFDF5; border: 1px solid #A7F3D0; }
.node-seller { background: #FFF7ED; border: 1px solid #FED7AA; }

.flow-arrow-down {
  font-size: 24px;
  color: var(--brand);
  padding: 8px 0;
}
.flow-connector {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 4px;
}
.connector-left, .connector-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.flow-arrow-side {
  font-size: 22px;
  color: var(--brand);
  padding: 8px 0;
}

/* ===== WHY R-CASH ===== */
.why-rcash { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: box-shadow .2s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ===== CORRIDORS ===== */
.corridors { background: var(--bg); }

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

.corridor-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.corridor-header { display: flex; flex-direction: column; gap: 6px; }
.corridor-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  width: fit-content;
}
.badge-blue   { background: #EEF3FF; color: var(--brand); }
.badge-green  { background: #ECFDF5; color: #059669; }
.badge-purple { background: #F5F3FF; color: #7C3AED; }

.corridor-note { font-size: 13px; color: var(--muted); }

.corridor-countries { display: flex; flex-direction: column; gap: 14px; }
.corridor-country {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.flag { font-size: 26px; flex-shrink: 0; }
.corridor-country strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.corridor-country span { font-size: 12px; color: var(--muted); }

.corridor-reg { margin-top: auto; }
.reg-badge {
  display: block;
  padding: 10px 14px;
  background: linear-gradient(135deg, #EEF3FF, #F0FFF9);
  border: 1px solid #C7D8FF;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.5;
}

.partner-wallet-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wallet-tag {
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
}

.corridors-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #0a0f1e, #0d1a3a);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.corridors-cta p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 540px; line-height: 1.6; }

@media (max-width: 960px) {
  .corridors-grid { grid-template-columns: 1fr; }
}

/* ===== MULTI-REG BADGES (Corridors) ===== */
.reg-badges-stack { display: flex; flex-direction: column; gap: 8px; }

.reg-badge-dubai {
  background: linear-gradient(135deg, #FFF8EE, #FFF3E0);
  border-color: #FED7AA;
  color: #C2410C;
}
.reg-badge-kenya {
  background: linear-gradient(135deg, #F0FFF4, #ECFDF5);
  border-color: #A7F3D0;
  color: #065F46;
}
.reg-badge-psp {
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  border-color: #C4B5FD;
  color: #5B21B6;
}

/* ===== ABOUT REG LIST ===== */
.about-reg-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.about-reg-item {
  display: block;
  padding: 7px 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ===== FOOTER REG STACK ===== */
.footer-reg-stack { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.footer-reg-badge {
  display: block;
  padding: 6px 12px;
  background: rgba(0,87,255,.15);
  border: 1px solid rgba(0,87,255,.25);
  color: #7FB3FF;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}
.footer-reg-psp {
  background: rgba(124,58,237,.15);
  border-color: rgba(124,58,237,.3);
  color: #C4B5FD;
}

/* ===== CORRIDOR DETAIL LIST (About) ===== */
.corridor-detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 24px;
}
.corridor-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}
.corridor-detail-item strong { color: var(--dark); }
.corridor-detail-item em { color: var(--brand); font-style: normal; font-weight: 600; }
.cd-flag { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.cd-wallets {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ===== STABLECOIN SECTION ===== */
.stablecoin { background: var(--dark-2); }
.stablecoin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stablecoin-content .pill { background: rgba(0,200,150,.2); color: var(--accent); }
.stablecoin-content .section-title { color: var(--white); }
.stablecoin-content p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 16px; }
.stablecoin-content .ecom-feature span { color: rgba(255,255,255,.8); }

.stable-networks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 4px;
}
.stable-coin-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  flex: 1;
  min-width: 180px;
}
.stable-coin-icon { font-size: 28px; flex-shrink: 0; }
.stable-coin-card strong { display: block; font-size: 16px; font-weight: 800; color: var(--white); }
.stable-coin-card span { font-size: 12px; color: rgba(255,255,255,.5); }

/* Visual card */
.stable-card {
  background: linear-gradient(145deg, #0d1a3a 0%, #0a0f1e 100%);
  border: 1px solid rgba(0,200,150,.25);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,200,150,.1);
}
.stable-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stable-card-header strong { display: block; font-size: 16px; font-weight: 700; color: var(--white); }
.stable-card-header span { font-size: 12px; color: rgba(255,255,255,.4); }

.stable-flow { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.stable-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
}
.stable-step-num {
  width: 26px; height: 26px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
}
.stable-step strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.stable-step span { font-size: 12px; color: rgba(255,255,255,.45); }
.stable-step-arrow { text-align: center; font-size: 18px; color: var(--accent); padding: 4px 0; opacity: .7; }

.stable-tokens {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.stable-token {
  flex: 1;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stable-token span:first-child { font-size: 20px; font-weight: 900; }
.stable-network { font-size: 11px; font-weight: 600; }
.usdc { background: rgba(39,117,202,.25); border: 1px solid rgba(39,117,202,.4); color: #93C5FD; }
.usdc .stable-network { color: rgba(147,197,253,.6); }
.usdt { background: rgba(38,161,123,.25); border: 1px solid rgba(38,161,123,.4); color: #6EE7B7; }
.usdt .stable-network { color: rgba(110,231,183,.6); }

.stable-badge {
  padding: 10px 16px;
  background: rgba(0,200,150,.12);
  border: 1px solid rgba(0,200,150,.25);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
}

@media (max-width: 960px) {
  .stablecoin-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== CTA CONTACT LINE ===== */
.cta-contact {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.cta-contact a { color: var(--accent); font-weight: 600; }
.cta-contact a:hover { text-decoration: underline; }

/* ===== FOOTER EXTRAS ===== */
.footer-reg-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(0,87,255,.18);
  border: 1px solid rgba(0,87,255,.3);
  color: #7FB3FF;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.footer-contact-email {
  margin-top: 10px;
  font-size: 14px;
}
.footer-contact-email a {
  color: var(--accent);
  font-weight: 600;
}
.footer-contact-email a:hover { text-decoration: underline; }

/* ===== SEND MONEY ===== */
.send-money { background: var(--white); }

.send-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.send-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.send-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
  transform: translateY(-3px);
}

.send-flag {
  font-size: 40px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.send-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.send-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.send-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.method-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
}
.method-direct {
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid #C7D8FF;
}
.method-partner {
  background: #F0FFF4;
  color: #059669;
  border: 1px solid #A7F3D0;
}

.send-rails {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Destination bar */
.send-destinations {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1a3a 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

.send-dest-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}

.send-dest-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.send-dest {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  text-align: left;
}
.send-dest-flag { font-size: 28px; flex-shrink: 0; }
.send-dest strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.send-dest span { font-size: 12px; color: rgba(255,255,255,.5); }

.send-dest-arrow {
  font-size: 22px;
  color: var(--brand);
  opacity: .7;
}

@media (max-width: 680px) {
  .send-grid { grid-template-columns: 1fr; }
  .send-dest-arrow { transform: rotate(90deg); }
}

/* ===== ISLIFY HIGHLIGHT BOX ===== */
.islify-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, #EEF3FF 0%, #F0FFF9 100%);
  border: 1px solid #C7D8FF;
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0 24px;
}
.islify-highlight-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.islify-highlight strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.islify-highlight p { font-size: 14px; color: var(--mid); line-height: 1.65; margin: 0; }

.coming-soon-inline {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  color: #C2410C;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* Coming Soon checkmark variant */
.coming-soon-check {
  background: #FFF7ED !important;
  color: #C2410C !important;
  font-size: 11px !important;
  font-weight: 700;
}
.ecom-feature em { color: #C2410C; font-style: normal; font-weight: 600; }

/* Flow diagram extra nodes */
.node-usaddress {
  background: #EEF3FF;
  border: 1px solid #C7D8FF;
  color: var(--dark);
}
.node-logistics {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: var(--dark);
}
.node-coming-soon-ea {
  background: #FFF7ED;
  border: 2px dashed #FED7AA;
  color: var(--dark);
  opacity: .85;
}
.cs-tag {
  display: inline-block;
  padding: 2px 10px;
  background: #FED7AA;
  color: #C2410C;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}

/* ===== TECHNOSTORE360 ===== */
.technostore { background: var(--white); }
.technostore-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.technostore-content p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }

.ts-card {
  background: linear-gradient(145deg, #0a0f1e 0%, #0d1a3a 100%);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--white);
  border: 1px solid rgba(0,87,255,.25);
  box-shadow: 0 20px 60px rgba(0,87,255,.15);
}
.ts-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ts-logo-box {
  width: 52px; height: 52px;
  background: var(--brand);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.ts-card-header strong { display: block; font-size: 17px; font-weight: 700; color: var(--white); }
.ts-card-header span { font-size: 13px; color: rgba(255,255,255,.45); }

.ts-products { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ts-product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
}
.ts-product-icon { font-size: 22px; flex-shrink: 0; }
.ts-product strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.ts-product span { font-size: 12px; color: rgba(255,255,255,.45); }

.ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,200,150,.15);
  border: 1px solid rgba(0,200,150,.3);
  color: var(--accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.ts-badge::before { content: "⚡"; }

.ts-currency-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}
.ts-currency {
  padding: 6px 14px;
  background: var(--brand-light);
  border: 1px solid #C7D8FF;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

@media (max-width: 960px) {
  .technostore-inner { grid-template-columns: 1fr; gap: 48px; }
  .technostore-visual { order: 2; }
  .technostore-content { order: 1; }
}

/* ===== ABOUT ===== */
.about { background: var(--bg); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.about-mission { margin-top: 28px; padding: 24px; background: var(--brand-light); border-radius: var(--radius); border-left: 4px solid var(--brand); }
.about-mission blockquote { font-size: 16px; font-style: italic; color: var(--dark); line-height: 1.7; margin-bottom: 10px; }
.about-mission cite { font-size: 13px; color: var(--muted); font-weight: 600; }

.about-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}
.about-card-header { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 32px; }
.about-metric { margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 24px; }
.about-metric:last-of-type { border-bottom: none; }
.metric-big { display: block; font-size: 40px; font-weight: 900; color: var(--white); letter-spacing: -1px; }
.metric-label { font-size: 14px; color: rgba(255,255,255,.5); }
.about-pill {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: var(--brand);
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== CTA ===== */
.cta-section { background: var(--dark); padding: 80px 0; }
.cta-box {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,87,255,.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -.5px; }
.cta-box p { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 32px; }
.cta-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.cta-input {
  flex: 1;
  min-width: 260px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.cta-input::placeholder { color: rgba(255,255,255,.4); }
.cta-input:focus { border-color: var(--brand); }
.cta-note { font-size: 13px; color: rgba(255,255,255,.4); }
.cta-note a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: #070D1A; padding: 64px 0 40px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-brand { max-width: 220px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 14px; }
.footer-legal { font-size: 12px; margin-top: 20px; }
.footer-brand .logo-text { color: var(--white); }
.footer-links { display: flex; gap: 48px; flex: 1; flex-wrap: wrap; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-col a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ecommerce-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps { gap: 16px; }
  .step-arrow { display: none; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .solutions-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 56px; }
  .section { padding: 64px 0; }
  .flow-connector { flex-direction: column; }
  .flow-diagram { padding: 28px 20px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; }
}

/* ===== MOBILE NAV (when open) ===== */
.nav-mobile-open .nav-links,
.nav-mobile-open .nav-cta {
  display: flex;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  gap: 8px;
}
.nav-mobile-open .nav-cta {
  top: auto;
  position: static;
  flex-direction: row;
  padding: 0;
  border: none;
  box-shadow: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
