/* ================================================
   ZeroOne — Global Payment Infrastructure
   Style Sheet — Brand Palette v2
   ================================================ */

:root {
  --bg:        #111827;
  --bg2:       #1e293b;
  --bg3:       #24324a;
  --light-bg:  #f8fafc;
  --border:    rgba(226,232,240,.10);
  --border2:   rgba(226,232,240,.20);
  --text:      #f8fafc;
  --text-muted:#94a3b8;
  --text-soft: #64748b;
  --teal:      #00c9a7;
  --cyan:      #0891b2;
  --blue:      #2563eb;
  --purple:    #7c3aed;
  --green:     #10b981;
  --red:       #ef4444;
  --gradient:  linear-gradient(135deg, #00c9a7 0%, #0891b2 100%);
  --gradient2: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --font-main: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius:    8px;
  --radius-sm: 8px;
  --shadow:    0 24px 64px rgba(17,24,39,.45);
}

*, *::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-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient);
  color: var(--bg2);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-primary:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,201,167,.22); }

.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-full  { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border2);
  border-radius: 50px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(8,145,178,.08); }

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(0,201,167,.3);
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-ghost-sm:hover { background: rgba(0,201,167,.08); border-color: var(--teal); }

/* ================================================
   SECTION UTILITIES
   ================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--teal);
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(30,41,59,.86);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--bg2);
  letter-spacing: -1px;
}
.logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.social-link {
  width: 20px; height: 20px;
  color: var(--text-muted);
  transition: color .2s;
  flex-shrink: 0;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: var(--teal); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gradient);
  color: var(--bg2);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.btn-nav:hover { opacity: .9; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#gridCanvas {
  width: 100%;
  height: 100%;
  opacity: .2;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  top: -200px; right: 5%;
  background: radial-gradient(circle, rgba(8,145,178,.22) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: 5%;
  background: radial-gradient(circle, rgba(0,201,167,.14) 0%, transparent 70%);
}
.hero-glow-3 {
  width: 400px; height: 400px;
  top: 30%; right: 30%;
  background: radial-gradient(circle, rgba(37,99,235,.1) 0%, transparent 70%);
}
.binary-stream {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .05;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  line-height: 1.6;
  pointer-events: none;
}

/* Background orbit ring image */
.hero-bg-ring {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 660px;
  height: 660px;
  object-fit: contain;
  opacity: .07;
  pointer-events: none;
  animation: slowSpin 40s linear infinite;
}
@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Two-column hero layout */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0,201,167,.1);
  border: 1px solid rgba(0,201,167,.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 32px;
  animation: fadeUp .6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.4); }
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 28px;
  animation: fadeUp .6s .1s ease both;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
  animation: fadeUp .6s .2s ease both;
}
.br-desk { display: block; }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp .6s .3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeUp .6s .4s ease both;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-unit {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}


/* Floating payment cards */
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(30,41,59,.85);
  border: 1px solid rgba(226,232,240,.15);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  z-index: 5;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.hero-card-1 {
  top: -18px;
  left: 0px;
  animation: floatCard1 5s ease-in-out infinite;
}
.hero-card-2 {
  bottom: 60px;
  left: -10px;
  animation: floatCard2 5.5s 1s ease-in-out infinite;
}
.hero-card-3 {
  bottom: -18px;
  right: 20px;
  animation: floatCard3 4.5s .5s ease-in-out infinite;
}
@keyframes floatCard1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes floatCard2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
@keyframes floatCard3 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hc-icon {
  width: 36px; height: 36px;
  background: rgba(0,201,167,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.hc-icon svg { width: 16px; height: 16px; }
.hc-icon-blue { background: rgba(37,99,235,.15); color: var(--blue); }
.hc-icon-purple { background: rgba(124,58,237,.15); color: var(--purple); }

.hc-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hc-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.hc-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.hc-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.hc-badge.success {
  background: rgba(16,185,129,.15);
  color: var(--green);
  border: 1px solid rgba(16,185,129,.25);
}
.hc-trend {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp .6s .8s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; }
  50% { opacity:1; }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ================================================
   PROBLEMS
   ================================================ */
.problems {
  padding: 120px 0;
  background: var(--bg2);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.problem-card {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color .3s, transform .3s;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .3s;
}
.problem-card:hover { border-color: rgba(8,145,178,.34); transform: translateY(-4px); }
.problem-card:hover::before { opacity: 1; }
.problem-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.problem-icon {
  width: 48px; height: 48px;
  color: var(--teal);
  margin-bottom: 20px;
}
.problem-icon svg { width: 48px; height: 48px; }
.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================
   SOLUTIONS
   ================================================ */
.solutions {
  padding: 120px 0;
}
.solutions-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.solutions-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 100px;
}
.sol-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  text-align: left;
  transition: all .2s;
}
.sol-tab:hover { color: var(--text); background: rgba(255,255,255,.04); }
.sol-tab.active {
  background: rgba(0,201,167,.08);
  border-color: rgba(0,201,167,.25);
  color: var(--teal);
}
.sol-tab-icon { width: 20px; height: 20px; flex-shrink: 0; }
.sol-tab-icon svg { width: 20px; height: 20px; }

.sol-panel {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sol-panel.active { display: grid; grid-template-columns: 1fr 1fr; }

.sol-panel-inner {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sol-panel-inner h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.sol-panel-inner > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.sol-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.4);
  flex-shrink: 0;
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 4px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  margin-top: -1px;
  transform: translate(-50%,-60%) rotate(-45deg);
}

.sol-visual {
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  min-height: 340px;
}

/* Routing viz */
.routing-viz {
  position: relative;
  width: 220px; height: 220px;
}
.rv-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--bg2);
  z-index: 2;
}
.rv-nodes {
  position: absolute;
  inset: 0;
}
.rv-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  transform: translate(-50%,-50%) rotate(calc(var(--i) * 60deg)) translateY(-96px) rotate(calc(var(--i) * -60deg));
  transition: border-color .3s, color .3s;
  animation: orbitPulse calc(1s + var(--i) * .3s) ease infinite alternate;
}
@keyframes orbitPulse {
  from { border-color: var(--border2); color: var(--text-muted); }
  to   { border-color: rgba(0,201,167,.5); color: var(--teal); }
}

/* Currency viz */
.currency-viz {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 260px;
}
.cv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  animation: slideIn .4s var(--d) both;
}
@keyframes slideIn {
  from { opacity:0; transform: translateX(20px); }
  to   { opacity:1; transform: translateX(0); }
}
.cv-flag { font-size: 18px; }
.cv-rate { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--green); }

/* Shield viz */
.shield-viz {
  position: relative;
  width: 200px; height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-shield {
  position: relative;
  z-index: 2;
  width: 80px; height: 96px;
  color: rgba(255,255,255,.2);
}
.sv-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-ring {
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid rgba(16,185,129,.15);
  border-radius: 50%;
  transform: scale(var(--s));
  animation: ringPulse 3s ease infinite;
}
@keyframes ringPulse {
  0%,100% { opacity:.3; }
  50% { opacity:.8; }
}
.sv-tags {
  position: absolute;
  inset: 0;
}
.sv-tags span {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .06em;
}
.sv-tags span:nth-child(1) { top: 10%; left: 50%; transform: translateX(-50%); }
.sv-tags span:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.sv-tags span:nth-child(3) { bottom: 10%; left: 50%; transform: translateX(-50%); }
.sv-tags span:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

/* Chart viz */
.chart-viz {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 160px;
}
.cv-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding-bottom: 0;
}
.cv-bar {
  flex: 1;
  height: var(--h);
  background: rgba(8,145,178,.15);
  border-radius: 4px 4px 0 0;
  border-top: 2px solid rgba(8,145,178,.42);
  animation: growUp .6s var(--d) both;
}
@keyframes growUp {
  from { height: 0; }
  to   { height: var(--h); }
}
.cv-line {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  height: 80px;
}
.cv-line svg { width: 100%; height: 100%; }

/* ================================================
   WHY US
   ================================================ */
.whyus {
  padding: 120px 0;
  background: var(--bg2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .3s, transform .3s;
}
.why-card:hover { border-color: rgba(0,201,167,.25); transform: translateY(-3px); }
.why-icon {
  width: 44px; height: 44px;
  color: var(--teal);
  margin-bottom: 20px;
  opacity: .8;
}
.why-icon svg { width: 40px; height: 40px; }
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================================================
   INTEGRATIONS
   ================================================ */
.integrations {
  padding: 120px 0;
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.int-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, transform .3s;
}
.int-card:hover { border-color: rgba(8,145,178,.34); transform: translateY(-3px); }
.int-logo {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}
.int-logo-visa   { color: #1a1f71; background: #fff; padding: 4px 12px; border-radius: 4px; }
.int-logo-mc     { color: #eb001b; }
.int-logo-swift  { color: #00adef; }
.int-logo-sepa   { color: #003087; }
.int-logo-amex   { color: #2e77bc; }
.int-logo-upi    { color: #097939; }
.int-logo-ach    { color: var(--text-muted); }
.int-logo-pix    { color: #32bcad; }
.int-logo-alipay { color: #00aaee; }
.int-logo-ideal  { color: #cc0066; }
.int-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ================================================
   DEVELOPERS
   ================================================ */
.developers {
  padding: 120px 0;
  background: var(--bg2);
}
.dev-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dev-text .section-title { margin-bottom: 16px; }
.dev-text > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.dev-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.dev-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

/* Code window */
.code-window {
  background: #111827;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.code-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.code-body {
  padding: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
}
.code-body code { display: block; white-space: pre; }
.ct { color: var(--purple); }
.cs { color: var(--teal); }
.cn { color: var(--blue); }
.cg { color: var(--text-soft); font-style: italic; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(0,201,167,.08) 0%, rgba(8,145,178,.05) 40%, transparent 65%);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,201,167,.08);
  border: 1px solid rgba(0,201,167,.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
}
.cta-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.cta-section > .container > .cta-inner > p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 48px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.check-green {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  border: 1.5px solid var(--green);
  flex-shrink: 0;
  position: relative;
}
.check-green::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 4px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: translate(-50%,-60%) rotate(-45deg);
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color .2s, border-color .2s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { color: var(--teal); border-color: rgba(0,201,167,.3); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: var(--text-muted);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--teal); }

/* ================================================
   MODAL
   ================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(17,24,39,.82);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  width: 100%;
  max-width: 860px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(.95) translateY(20px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s, color .2s;
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,.12); color: var(--text); }

.modal-step { display: none; }
.modal-step.active { display: flex; }

.modal-left {
  flex: 1;
  background: linear-gradient(135deg, rgba(0,201,167,.07) 0%, rgba(8,145,178,.05) 100%);
  border-right: 1px solid var(--border);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-badge {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(0,201,167,.1);
  border: 1px solid rgba(0,201,167,.25);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  width: fit-content;
}
.modal-left h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.modal-left > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.modal-perks { display: flex; flex-direction: column; gap: 12px; }
.modal-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.modal-right {
  flex: 1.2;
  padding: 52px 40px;
}
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.form-group input,
.form-group select {
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--cyan); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg3); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
  cursor: pointer;
}
.form-check label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check a { color: var(--teal); }

.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 48px;
  width: 100%;
}
.success-icon {
  width: 80px; height: 80px;
  margin-bottom: 32px;
  animation: successPop .4s ease;
}
@keyframes successPop {
  from { transform:scale(0); opacity:0; }
  to   { transform:scale(1); opacity:1; }
}
.modal-success h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.modal-success p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  animation: cookieUp .4s ease;
}
@keyframes cookieUp {
  from { opacity:0; transform: translate(-50%, 20px); }
  to   { opacity:1; transform: translate(-50%, 0); }
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-icon { font-size: 20px; flex-shrink: 0; }
.cookie-banner p {
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
  min-width: 200px;
}
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie-refuse {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-cookie-refuse:hover { border-color: var(--text); color: var(--text); }
.btn-cookie-accept {
  padding: 8px 18px;
  background: var(--gradient);
  border: none;
  border-radius: 50px;
  color: var(--bg2);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: opacity .2s;
}
.btn-cookie-accept:hover { opacity: .9; }

/* ================================================
   SECTION BACKGROUNDS — shared
   ================================================ */
.sec-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.problems  { position: relative; }
.solutions { position: relative; }
.whyus     { position: relative; }
.integrations { position: relative; }
.developers   { position: relative; }

.problems  > .container,
.solutions > .container,
.whyus     > .container,
.integrations > .container,
.developers   > .container { position: relative; z-index: 2; }

/* ================================================
   INDIA — Lotus + Ashoka Chakra + Temple
   ================================================ */
.sec-bg-india { background: var(--bg2); }

.lotus-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* Ashoka Chakra — 24-spoke dharma wheel */
.ashoka-chakra {
  position: absolute;
  width: 340px; height: 340px;
  top: 50%; right: -60px;
  transform: translateY(-50%);
  animation: chakraSpin 30s linear infinite;
  opacity: .9;
}
@keyframes chakraSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Temple silhouette — anchored bottom-centre */
.temple-arches {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  pointer-events: none;
}
.temple-svg { display: block; width: 100%; }

/* Card hover — marigold/lotus glow */
.problem-card {
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.problem-card:hover {
  box-shadow: 0 0 0 1px rgba(0,201,167,.2), 0 12px 40px rgba(0,201,167,.07);
}

/* ================================================
   BANGLADESH — Nakshi Kantha + Shapla + Nouka
   ================================================ */
.sec-bg-bangladesh { background: var(--bg); }

.bd-kantha {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: kanthaShift 25s linear infinite;
}
@keyframes kanthaShift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-100px, -100px); }
}

/* Shapla (water lily) flowers */
.bd-shapla {
  position: absolute;
  pointer-events: none;
  animation: shaplaFloat ease-in-out infinite;
}
.bd-shapla-1 {
  width: 160px; height: 160px;
  top: 8%; left: 4%;
  animation-duration: 7s;
  animation-delay: 0s;
}
.bd-shapla-2 {
  width: 100px; height: 100px;
  bottom: 15%; right: 5%;
  animation-duration: 8s;
  animation-delay: -3s;
}
.bd-shapla-3 {
  width: 200px; height: 200px;
  top: 30%; right: 12%;
  animation-duration: 9s;
  animation-delay: -5s;
  opacity: .7;
}
@keyframes shaplaFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(2deg); }
  66%      { transform: translateY(6px) rotate(-1deg); }
}

/* Nouka (traditional boat) — bottom of section */
.bd-nouka {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  pointer-events: none;
  animation: noukaRock 6s ease-in-out infinite;
}
@keyframes noukaRock {
  0%,100% { transform: translateX(-50%) rotate(0deg); }
  50%      { transform: translateX(-50%) rotate(.6deg) translateY(-3px); }
}

/* floating pollen dots */
.bd-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,167,.3), transparent);
  pointer-events: none;
  animation: bdDotFloat linear infinite;
}
@keyframes bdDotFloat {
  0%   { transform: translateY(0) scale(1); opacity: .7; }
  100% { transform: translateY(-70px) scale(.2); opacity: 0; }
}

/* ================================================
   PAKISTAN — Islamic geometric tiles
   ================================================ */
.sec-bg-pakistan { background: var(--bg2); }

.pk-grid {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: pkGridDrift 20s linear infinite;
}
@keyframes pkGridDrift { from { transform: translate(0,0); } to { transform: translate(-80px,-80px); } }

/* Mughal arch silhouettes left/right */
.pk-arch {
  position: absolute;
  width: 200px; height: 300px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: .07;
}
.pk-arch-left  { left: -40px; }
.pk-arch-right { right: -40px; }
.pk-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--teal);
  border-radius: 100px 100px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.pk-arch::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--cyan);
  border-radius: 80px 80px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.pk-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.pk-glow-1 {
  width: 400px; height: 400px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(0,201,167,.07), transparent 70%);
}
.pk-glow-2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(8,145,178,.07), transparent 70%);
}

/* Why-cards tile-glow on hover */
.why-card {
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.sec-bg-pakistan ~ .container .why-card:hover,
.whyus .why-card:hover {
  box-shadow: 0 0 0 1px rgba(0,201,167,.2), 0 16px 48px rgba(0,201,167,.06), inset 0 0 20px rgba(0,201,167,.02);
}

/* ================================================
   ZEROONE BG — shared watermark styles
   ================================================ */
.zo-watermark {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* Integrations section */
.sec-bg-zo { background: var(--bg); }
.zo-wm-1 {
  width: 480px; height: 480px;
  right: -140px; top: 50%;
  transform: translateY(-50%);
  opacity: .04;
  animation: slowSpin 50s linear infinite;
}
.zo-wm-2 {
  width: 200px; height: 200px;
  left: -60px; bottom: -40px;
  opacity: .05;
  animation: floatImg 7s ease-in-out infinite;
}
.zo-circuit {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .6;
}

/* Developers section */
.sec-bg-zo-dev { background: var(--bg2); }
.zo-wm-dev {
  width: 520px; height: 520px;
  left: -160px; top: 50%;
  transform: translateY(-50%);
  opacity: .04;
  animation: slowSpin 60s linear infinite reverse;
}
.zo-lines {
  position: absolute;
  inset: 0;
}
.zo-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,201,167,.12), transparent);
  animation: zoLineScan linear infinite;
  transform-origin: left center;
}
@keyframes zoLineScan {
  from { opacity: 0; transform: scaleX(0) translateX(0); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  to   { opacity: 0; transform: scaleX(1) translateX(0); }
}

/* CTA section */
.cta-wm-1 {
  width: 600px; height: 600px;
  left: -200px; top: 50%;
  transform: translateY(-50%);
  opacity: .04;
  animation: slowSpin 40s linear infinite;
}
.cta-wm-2 {
  width: 280px; height: 280px;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  opacity: .06;
  animation: floatImg 8s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(0,201,167,.15));
}

.cta-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,201,167,.08);
  top: 50%; left: 50%;
  pointer-events: none;
  animation: orbitExpand 4s ease-in-out infinite;
}
.cta-orbit-1 {
  width: 500px; height: 500px;
  margin-left: -250px; margin-top: -250px;
}
.cta-orbit-2 {
  width: 700px; height: 700px;
  margin-left: -350px; margin-top: -350px;
  animation-delay: 2s;
  border-color: rgba(8,145,178,.06);
}
@keyframes orbitExpand {
  0%,100% { transform: scale(1); opacity: .5; }
  50%      { transform: scale(1.04); opacity: 1; }
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   DASHBOARD PREVIEW (hero right col)
   ================================================ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 540px;
  animation: fadeUp .7s .25s ease both;
}
.hero-visual-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,167,.12) 0%, rgba(8,145,178,.07) 40%, transparent 70%);
  pointer-events: none;
  right: -60px; top: 50%;
  transform: translateY(-50%);
}

.dash-preview {
  position: relative;
  z-index: 3;
  display: flex;
  width: 580px;
  height: 460px;
  background: rgba(30,41,59,.94);
  border: 1px solid rgba(226,232,240,.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,201,167,.08),
    0 32px 80px rgba(0,0,0,.55),
    0 0 60px rgba(0,201,167,.06);
  backdrop-filter: blur(8px);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .4s ease;
}
.dash-preview:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

/* ---- Sidebar ---- */
.dp-sidebar {
  width: 160px;
  min-width: 160px;
  background: rgba(30,41,59,.98);
  border-right: 1px solid rgba(226,232,240,.07);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 18px;
  border-bottom: 1px solid rgba(226,232,240,.06);
  margin-bottom: 12px;
}
.dp-logo-img {
  width: 26px; height: 26px;
  object-fit: contain;
}
.dp-logo span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dp-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
}
.dp-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(148,163,184,.7);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.dp-nav-item svg { width: 13px; height: 13px; flex-shrink: 0; opacity: .7; }
.dp-nav-item:hover { background: rgba(255,255,255,.04); color: var(--text-muted); }
.dp-nav-item.active {
  background: rgba(0,201,167,.12);
  color: var(--teal);
}
.dp-nav-item.active svg { opacity: 1; }

.dp-balances {
  margin-top: auto;
  padding: 12px 8px 0;
  border-top: 1px solid rgba(226,232,240,.06);
}
.dp-bal-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(148,163,184,.5);
  padding: 0 8px;
  margin-bottom: 8px;
}
.dp-bal-card {
  padding: 7px 10px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dp-bal-name { font-size: 9px; color: rgba(148,163,184,.6); }
.dp-bal-val { font-size: 12px; font-weight: 700; color: var(--text); }
.dp-bal-val small { font-size: 9px; font-weight: 500; opacity: .5; }
.dp-bal-accent { color: var(--teal); }

/* ---- Main area ---- */
.dp-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 10px;
  border-bottom: 1px solid rgba(226,232,240,.06);
  flex-shrink: 0;
}
.dp-page-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.dp-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dp-rate-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0,201,167,.08);
  border: 1px solid rgba(0,201,167,.15);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}
.dp-rate-val { color: var(--teal); }
.dp-avatar {
  width: 26px; height: 26px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--bg2);
}

/* ---- Balance cards ---- */
.dp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 14px;
  flex-shrink: 0;
}
.dp-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(226,232,240,.08);
  border-radius: 10px;
  padding: 12px 14px;
}
.dp-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.dp-card-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
  flex: 1;
}
.dp-card-btns { display: flex; gap: 4px; margin-left: auto; }
.dp-btn-filled {
  padding: 3px 8px;
  background: var(--gradient);
  border: none;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  color: var(--bg2);
  cursor: pointer;
}
.dp-btn-outline {
  padding: 3px 8px;
  background: transparent;
  border: 1px solid rgba(226,232,240,.15);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}
.dp-card-amount {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}
.dp-card-amount small { font-size: 10px; font-weight: 500; opacity: .5; }
.dp-income-amount { color: var(--teal); }
.dp-card-sub {
  font-size: 9px;
  color: rgba(148,163,184,.5);
  margin-top: 4px;
}
.dp-deduct {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  margin-left: auto;
}
.dp-deduct-label { font-size: 8px; color: rgba(148,163,184,.5); }
.dp-toggle {
  width: 26px; height: 14px;
  background: rgba(148,163,184,.2);
  border-radius: 7px;
  position: relative;
  cursor: pointer;
}
.dp-toggle::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: rgba(148,163,184,.6);
  border-radius: 50%;
  top: 2px; left: 2px;
  transition: transform .2s, background .2s;
}
.dp-toggle.active { background: rgba(0,201,167,.25); }
.dp-toggle.active::after { transform: translateX(12px); background: var(--teal); }

/* ---- Stats block ---- */
.dp-stats-block {
  flex: 1;
  padding: 0 14px 12px;
  overflow: hidden;
}
.dp-stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dp-stats-title {
  font-size: 12px;
  font-weight: 700;
}
.dp-date-range {
  font-size: 9px;
  color: rgba(148,163,184,.5);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(226,232,240,.07);
  padding: 3px 8px;
  border-radius: 6px;
}
.dp-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dp-stats-col-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(226,232,240,.06);
}
.dp-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(226,232,240,.04);
  font-size: 9px;
  color: rgba(148,163,184,.7);
}
.dp-stat-zero {
  font-weight: 600;
  color: rgba(148,163,184,.5);
}
.dp-show-more {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 8px;
  cursor: pointer;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .hero-visual { height: auto; justify-content: center; }
  .dash-preview { width: 100%; max-width: 560px; height: 420px; transform: none; }
  .hero-bg-ring { width: 500px; height: 500px; opacity: .05; }
  .dev-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .solutions-wrap { grid-template-columns: 1fr; }
  .solutions-nav { flex-direction: row; flex-wrap: wrap; position: static; }
  .sol-panel.active { grid-template-columns: 1fr; }
  .sol-visual { min-height: 240px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-socials { display: none; }
  .burger { display: flex; }
  .btn-nav { display: none; }

  .hero-layout { min-height: auto; }
  .dash-preview { height: 380px; }
  .dp-sidebar { width: 130px; min-width: 130px; }
  .hero-card-1 { left: -5px; top: -15px; }
  .hero-card-2 { display: none; }
  .hero-card-3 { right: -5px; bottom: -15px; top: auto; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .br-desk { display: none; }

  .modal-step.active { flex-direction: column; }
  .modal-left { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 28px; }
  .modal-right { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }

  .cta-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .dash-preview { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .stat { display: inline-flex; flex-direction: row; align-items: baseline; gap: 4px; }
  .stat-label { display: none; }
}
