/* ============================================
   BIGPAYBHARAT – DARK THEME
   Palette:
     --bg-base:    #0B0F1A
     --bg-card:    #131929
     --bg-surface: #1C2540
     --accent:     #00D4FF
     --accent2:    #7B5CFA
     --text-hi:    #F0F4FF
     --text-lo:    #8A93B2
     --border:     #232D4A
============================================ */

:root {
  --bg-base:    #0B0F1A;
  --bg-card:    #131929;
  --bg-surface: #1C2540;
  --accent:     #00D4FF;
  --accent2:    #7B5CFA;
  --text-hi:    #F0F4FF;
  --text-lo:    #8A93B2;
  --border:     #232D4A;
  --radius-lg:  16px;
  --radius-md:  10px;
  --radius-sm:  6px;
  --glow:       0 0 24px rgba(0,212,255,.18);
  --glow2:      0 0 24px rgba(123,92,250,.18);
  --ease:       .22s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-base);
  color: var(--text-hi);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Kill ALL default underlines globally; restore only where needed */
a { color: var(--accent); text-decoration: none !important; }
img, svg { display: block; }

/* ── UTILITIES ── */
.text-accent  { color: var(--accent); }
.text-accent2 { color: var(--accent2); }
.text-lo      { color: var(--text-lo); }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 99px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}

.section-head p { color: var(--text-lo); font-size: .95rem; max-width: 540px; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(11,15,26,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: .55rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none !important;
}
.navbar-brand:hover, .navbar-brand:focus { text-decoration: none !important; }

.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }

.brand-text { line-height: 1.15; }

.brand-name {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text-hi);
  display: block;
}

.brand-tag {
  font-size: .60rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-lo);
  display: block;
}

.brand-bharat {
  background: linear-gradient(135deg, #FF9933 0%, #FF9933 33%, #ffffff 33%, #ffffff 66%, #138808 66%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .35rem .55rem;
  background: var(--bg-surface);
  color: var(--text-hi);
  cursor: pointer;
}
.navbar-toggler:focus { box-shadow: none; outline: none; }

/* Collapse overrides for dark theme */
.navbar-collapse { background: transparent; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(11,15,26,.97);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-top: .5rem;
    padding: .75rem 1rem 1rem;
  }
}

.nav-link {
  color: var(--text-lo) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .85rem !important;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  text-decoration: none !important;
  cursor: pointer;
}
.nav-link:hover { color: var(--text-hi) !important; background: rgba(255,255,255,.04); }

.btn-nav-cta {
  background: var(--accent) !important;
  color: #0B0F1A !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
  padding: .4rem 1.1rem !important;
  font-size: .85rem;
  transition: opacity var(--ease), box-shadow var(--ease);
  text-decoration: none !important;
}
.btn-nav-cta:hover { opacity: .88; box-shadow: var(--glow); }

/* ── HERO ── */
.hero {
  padding: 96px 0 76px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(0,212,255,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(123,92,250,.07) 0%, transparent 70%),
    var(--bg-base);
  overflow: hidden;
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-lo);
  max-width: 480px;
  margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #0B0F1A;
  font-weight: 700;
  font-size: .92rem;
  border-radius: var(--radius-sm);
  padding: .75rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: opacity var(--ease), box-shadow var(--ease);
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary-cta:hover { opacity: .88; box-shadow: var(--glow); color: #0B0F1A; }

.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--text-hi);
  font-weight: 600;
  font-size: .92rem;
  border-radius: var(--radius-sm);
  padding: .73rem 1.4rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease);
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-outline-cta:hover { border-color: var(--accent); color: var(--accent); }

/* Hero stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { line-height: 1.2; }
.stat-value { font-size: 1.5rem; font-weight: 800; color: var(--text-hi); letter-spacing: -.02em; }
.stat-label { font-size: .75rem; color: var(--text-lo); margin-top: .1rem; }

/* Hero card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 32px 64px rgba(0,0,0,.5), var(--glow);
}

.hero-card-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-bottom: 1rem;
}

.transfer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: 1.4rem;
}

.transfer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.transfer-info { flex: 1; padding: 0 .5rem; }
.transfer-name { font-size: .82rem; font-weight: 600; color: var(--text-hi); }
.transfer-bank { font-size: .68rem; color: var(--text-lo); }
.transfer-amount { font-size: .95rem; font-weight: 700; color: #34D399; }

.progress-bar-wrap {
  background: var(--bg-surface);
  border-radius: 99px; height: 6px;
  overflow: hidden; margin-bottom: 1.25rem;
}
.progress-bar-fill {
  height: 100%; width: 68%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}

.hero-card-actions { display: flex; gap: .6rem; }
.hca-btn {
  flex: 1; padding: .5rem;
  border-radius: var(--radius-sm);
  font-size: .72rem; font-weight: 600;
  border: none; cursor: pointer; text-align: center;
}
.hca-btn.primary { background: var(--accent); color: #0B0F1A; }
.hca-btn.ghost { background: var(--bg-surface); color: var(--text-lo); border: 1px solid var(--border); }

/* Float badges */
.float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .6rem .9rem;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  white-space: nowrap;
}
.float-badge-top { top: 0; right: 0; animation: floatUp 3s ease-in-out infinite alternate; }
.float-badge-bot { bottom: 0; left: 0; animation: floatUp 2.5s 1s ease-in-out infinite alternate; }

.float-badge-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.float-badge-icon.green  { background: rgba(52,211,153,.15); color: #34D399; }
.float-badge-icon.violet { background: rgba(123,92,250,.15); color: var(--accent2); }

.float-badge-text { line-height: 1.2; }
.float-badge-main { font-size: .75rem; font-weight: 700; color: var(--text-hi); }
.float-badge-sub  { font-size: .62rem; color: var(--text-lo); }

@keyframes floatUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* ── SERVICES ── */
.services { padding: 80px 0; }

.section-head { margin-bottom: 3rem; }
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: .6rem;
}

/* Service cards — full equal-height grid */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  opacity: 0;
  transition: opacity var(--ease);
}
.service-card:hover { border-color: rgba(0,212,255,.3); box-shadow: var(--glow); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.15);
  flex-shrink: 0;
}
.service-icon-wrap.violet { background: rgba(123,92,250,.08); border-color: rgba(123,92,250,.15); }
.service-icon-wrap.green  { background: rgba(52,211,153,.08);  border-color: rgba(52,211,153,.15); }
.service-icon-wrap.orange { background: rgba(251,146,60,.08);   border-color: rgba(251,146,60,.15); }
.service-icon-wrap.pink   { background: rgba(244,114,182,.08);  border-color: rgba(244,114,182,.15); }

.service-card h4 { font-size: .97rem; font-weight: 700; margin-bottom: .45rem; letter-spacing: -.01em; }
.service-card p  { font-size: .83rem; color: var(--text-lo); line-height: 1.65; margin-bottom: auto; flex-grow: 1; }

.service-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .9rem; margin-bottom: .9rem; }
.stag {
  font-size: .62rem; font-weight: 600; letter-spacing: .05em;
  padding: .18rem .52rem; border-radius: 99px;
  background: var(--bg-surface); border: 1px solid var(--border);
  color: var(--text-lo); white-space: nowrap;
}

.service-link {
  font-size: .8rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: auto;
  transition: gap var(--ease);
  text-decoration: none !important;
}
.service-link:hover { gap: .6rem; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  margin-bottom: 1rem;
  background: var(--bg-surface);
  border: 2px solid var(--accent);
  color: var(--accent);
}
.step-connector {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto .5rem;
}
.step-item h5 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.step-item p  { font-size: .82rem; color: var(--text-lo); }

/* ── EARN WITH US / ROLES ── */
.roles-section {
  padding: 80px 0;
  background: var(--bg-base);
}

/* role card */
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.role-card:hover { transform: translateY(-4px); }

.role-featured {
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 0 32px rgba(0,212,255,.1);
}
.role-featured:hover { box-shadow: 0 0 40px rgba(0,212,255,.18); }

.role-popular-tag {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #0B0F1A;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 99px;
  white-space: nowrap;
}

.role-crown {
  position: absolute; top: 1rem; right: 1rem;
}

.role-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 99px;
  border: 1px solid;
  margin-bottom: 1.25rem;
}

.role-icon-wrap {
  width: 66px; height: 66px;
  border-radius: 50%;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}

.role-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; }
.role-card p  { font-size: .83rem; color: var(--text-lo); line-height: 1.65; margin-bottom: 1.25rem; }

.role-perks { width: 100%; text-align: left; margin-bottom: 1.5rem; }
.role-perk {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; color: var(--text-lo);
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.role-perk:last-child { border-bottom: none; }
.role-perk svg { flex-shrink: 0; }

.role-cta-btn {
  display: inline-block;
  padding: .6rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  border: 1.5px solid;
  cursor: pointer;
  transition: opacity var(--ease), box-shadow var(--ease);
  text-decoration: none !important;
  margin-top: auto;
}
.role-cta-btn:hover { opacity: .85; box-shadow: var(--glow); }

/* Commission Table */
.commission-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}

.comm-table-head {
  display: flex; align-items: center; gap: .6rem;
  padding: 1rem 1.4rem;
  font-size: .78rem; font-weight: 700; color: var(--text-lo);
  letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.comm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .83rem;
}

.comm-table thead tr { background: var(--bg-surface); }
.comm-table th {
  padding: .85rem 1.1rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-lo);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.comm-table th:first-child { color: var(--text-hi); }

.th-role { font-weight: 800; font-size: .78rem; }

.comm-table td {
  padding: .8rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-lo);
  vertical-align: middle;
}
.comm-table td:first-child { color: var(--text-hi); font-weight: 600; }
.comm-table tbody tr:last-child td { border-bottom: none; }
.comm-table tbody tr:nth-child(even) { background: rgba(255,255,255,.018); }
.comm-table tbody tr:hover { background: rgba(0,212,255,.03); }

.comm-note {
  font-size: .73rem; color: var(--text-lo);
  padding: .75rem 1.4rem;
  border-top: 1px solid var(--border);
  margin: 0;
  background: var(--bg-surface);
}

/* ── FEATURES / WHY US ── */
.features { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.feat-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.3rem;
  height: 100%;
  transition: border-color var(--ease), transform var(--ease);
  text-align: center;
}
.feat-card:hover { border-color: rgba(0,212,255,.25); transform: translateY(-3px); }

.feat-card-icon {
  width: 60px; height: 60px;
  border-radius: 50%; border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}

.feat-card h5 { font-size: .97rem; font-weight: 700; margin-bottom: .45rem; }
.feat-card p  { font-size: .8rem; color: var(--text-lo); line-height: 1.65; margin: 0; }

.feature-row { align-items: center; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }

.feature-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(52,211,153,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}

.feature-list-text h6 { font-size: .9rem; font-weight: 700; margin-bottom: .15rem; }
.feature-list-text p  { font-size: .8rem; color: var(--text-lo); margin: 0; }

/* ── FINTECH PARTNERS ── */
.partners {
  padding: 72px 0;
  background: var(--bg-base);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.partner-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .9rem 1.4rem;
  display: flex; align-items: center; gap: .65rem;
  font-size: .82rem; font-weight: 700;
  color: var(--text-lo);
  min-width: 130px;
  justify-content: center;
  transition: border-color var(--ease), color var(--ease);
  cursor: default;
}
.partner-item:hover { border-color: rgba(0,212,255,.25); color: var(--text-hi); }

/* ── TRUST / NETWORK LOGOS ── */
.trust {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.trust-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-lo); margin-bottom: 2rem;
}

.trust-logos {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 1rem 1.5rem;
}

.trust-logo-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .7rem 1.3rem;
  display: flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700;
  color: var(--text-lo);
  justify-content: center;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 80px 0; }

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem; height: 100%;
}
.testi-stars { color: #FBBF24; margin-bottom: .9rem; font-size: .85rem; }
.testi-card blockquote {
  font-size: .87rem; color: var(--text-lo);
  line-height: 1.7; margin-bottom: 1.25rem; font-style: normal;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: var(--accent); flex-shrink: 0;
}
.testi-name { font-size: .85rem; font-weight: 700; }
.testi-role { font-size: .72rem; color: var(--text-lo); }

/* ── CTA BAND ── */
.cta-band {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,212,255,.06) 0%, transparent 70%),
    var(--bg-base);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -.025em; margin-bottom: .8rem;
}
.cta-band p { color: var(--text-lo); font-size: .95rem; max-width: 440px; margin: 0 auto 2rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-brand-col { max-width: 280px; }
.footer-brand-col p { font-size: .82rem; color: var(--text-lo); margin-top: .85rem; line-height: 1.65; }

/* Kill underline on footer logo */
.footer-brand-col .navbar-brand,
.footer-brand-col .navbar-brand:hover,
.footer-brand-col .navbar-brand:focus { text-decoration: none !important; }

.footer-col-title {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-lo); margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li + li { margin-top: .5rem; }
.footer-links a {
  font-size: .82rem; color: var(--text-lo);
  transition: color var(--ease);
  text-decoration: none !important;
  cursor: pointer;
}
.footer-links a:hover { color: var(--accent); text-decoration: none !important; }

.footer-bottom {
  margin-top: 3rem; padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  font-size: .75rem; color: var(--text-lo);
}

.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }

.badge-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .22rem .7rem;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .06em; color: var(--text-lo);
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .hero { padding: 68px 0 56px; }
  .hero-visual { margin-top: 2.5rem; padding: 40px 20px; }
  .float-badge-top { top: 6px; right: 0; }
  .float-badge-bot { bottom: 6px; left: 0; }
}

@media (max-width: 767.98px) {
  .hero { padding: 52px 0 44px; }
  .hero-stats { gap: 1.25rem; }
  .stat-value { font-size: 1.2rem; }
  .hero-card { max-width: 100%; }
  .float-badge { display: none; }
  .services, .how-it-works, .features, .testimonials, .cta-band,
  .roles-section, .partners { padding: 52px 0; }
  footer { padding: 44px 0 20px; }
  .comm-table th, .comm-table td { padding: .65rem .75rem; font-size: .75rem; }
}

@media (max-width: 575.98px) {
  .trust-logo-item { min-width: unset; padding: .6rem 1rem; font-size: .72rem; }
  .partner-item { min-width: unset; padding: .7rem 1rem; font-size: .75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .role-card { padding: 1.6rem 1.2rem; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }


/* ============================================
   LOGIN BUTTON (navbar)
============================================ */
.btn-nav-login {
  display: inline-flex !important;
  align-items: center;
  gap: .38rem;
  background: transparent !important;
  color: var(--text-hi) !important;
  font-weight: 600;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: .38rem 1rem !important;
  font-size: .85rem;
  transition: border-color var(--ease), color var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.btn-nav-login:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  box-shadow: var(--glow);
}

/* ============================================
   MODAL OVERLAY
============================================ */
.bpb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 20, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.bpb-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   MODAL BOX
============================================ */
.bpb-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 40px rgba(0,212,255,.07);
  transform: translateY(20px) scale(.97);
  transition: transform .28s var(--ease), opacity .28s var(--ease);
  opacity: 0;
  max-height: 92vh;
  overflow-y: auto;
}
.bpb-overlay.active .bpb-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Scrollbar inside modal */
.bpb-modal::-webkit-scrollbar { width: 4px; }
.bpb-modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* Close button */
.bpb-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-lo);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease);
}
.bpb-close:hover { color: var(--text-hi); border-color: var(--accent); }

/* ============================================
   MODAL CONTENT
============================================ */
.bpb-modal-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.bpb-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: .35rem;
  color: var(--text-hi);
}

.bpb-modal-sub {
  font-size: .83rem;
  color: var(--text-lo);
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}
.bpb-modal-sub strong { color: var(--accent); }

/* Back button row */
.bpb-back {
  margin-bottom: 1.2rem;
}
.bpb-back button {
  background: none;
  border: none;
  color: var(--text-lo);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: 0;
  transition: color var(--ease);
}
.bpb-back button:hover { color: var(--accent); }

/* ============================================
   FORM FIELDS
============================================ */
.bpb-field {
  margin-bottom: 1.1rem;
}
.bpb-field label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-lo);
  margin-bottom: .45rem;
  letter-spacing: .04em;
}

.bpb-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.bpb-input-wrap > svg:first-child {
  position: absolute;
  left: .85rem;
  color: var(--text-lo);
  pointer-events: none;
  flex-shrink: 0;
}

.bpb-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-hi);
  font-size: .88rem;
  padding: .72rem .85rem .72rem 2.4rem;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.bpb-input::placeholder { color: var(--text-lo); opacity: .7; }
.bpb-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,.12);
}
.bpb-input.is-error {
  border-color: #F87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.12);
}
.bpb-input.is-valid {
  border-color: #34D399;
}

/* Password eye toggle */
.bpb-eye {
  position: absolute;
  right: .8rem;
  background: none;
  border: none;
  color: var(--text-lo);
  cursor: pointer;
  padding: .2rem;
  display: flex; align-items: center;
  transition: color var(--ease);
}
.bpb-eye:hover { color: var(--accent); }

/* Error messages */
.bpb-error {
  display: block;
  font-size: .73rem;
  color: #F87171;
  margin-top: .35rem;
  min-height: 1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s;
}
.bpb-error.show {
  opacity: 1;
  transform: translateY(0);
}
.bpb-err-center { text-align: center; }

/* Forgot link */
.bpb-forgot-link {
  text-align: right;
  margin-top: -.4rem;
  margin-bottom: 1.2rem;
}
.bpb-forgot-link a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none !important;
  transition: opacity var(--ease);
}
.bpb-forgot-link a:hover { opacity: .75; }

/* Primary button */
.bpb-btn-primary {
  width: 100%;
  background: var(--accent);
  color: #0B0F1A;
  font-weight: 700;
  font-size: .92rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: .82rem 1rem;
  cursor: pointer;
  transition: opacity var(--ease), box-shadow var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .4rem;
}
.bpb-btn-primary:hover { opacity: .88; box-shadow: var(--glow); }
.bpb-btn-primary:active { opacity: .75; }

/* Spinner */
.btn-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(0,0,0,.25);
  border-top-color: #0B0F1A;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   OTP BOXES
============================================ */
.bpb-otp-wrap {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin: .4rem 0 .5rem;
}

.bpb-otp-box {
  width: 46px;
  height: 54px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-hi);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  outline: none;
  caret-color: var(--accent);
  transition: border-color .18s, box-shadow .18s, transform .12s;
  -webkit-appearance: none;
}
.bpb-otp-box:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,.15);
  transform: scale(1.06);
}
.bpb-otp-box.filled {
  border-color: var(--accent);
  background: rgba(0,212,255,.06);
}
.bpb-otp-box.is-error {
  border-color: #F87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.12);
  animation: shake .3s ease;
}
@keyframes shake {
  0%,100%  { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}

/* Resend row */
.bpb-resend {
  font-size: .78rem;
  color: var(--text-lo);
  text-align: center;
  margin: .9rem 0 1.1rem;
}
.bpb-resend a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none !important;
  transition: opacity var(--ease);
}
.bpb-resend a.resend-disabled {
  color: var(--text-lo);
  pointer-events: none;
}

/* ============================================
   SUCCESS STATE
============================================ */
.bpb-success-anim {
  display: flex;
  justify-content: center;
  margin: .5rem 0 1.4rem;
  animation: popIn .4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes popIn {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}

/* Mobile OTP adjustments */
@media (max-width: 400px) {
  .bpb-otp-box { width: 38px; height: 46px; font-size: 1.1rem; }
  .bpb-otp-wrap { gap: .4rem; }
  .bpb-modal { padding: 1.75rem 1.25rem 1.5rem; }
}
