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

:root {
  --green: #00e676;
  --green-dark: #00c853;
  --green-glow: rgba(0, 230, 118, 0.25);
  --bg: #060b14;
  --bg-2: #090e1a;
  --bg-card: rgba(255,255,255,0.035);
  --border: rgba(255,255,255,0.08);
  --text: #f0f4ff;
  --text-dim: rgba(240,244,255,0.5);
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
strong { font-weight: 700; }

/* CANVAS */
#particles {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* CONTAINERS */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border: none; cursor: pointer;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
  justify-content: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #021a0e;
  box-shadow: 0 4px 24px var(--green-glow);
}
.btn--primary:hover { box-shadow: 0 8px 40px rgba(0,230,118,0.45); }

.btn--ghost {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.07); }

.btn--sm  { font-size: 13px; padding: 10px 20px; }
.btn--lg  { font-size: 16px; padding: 15px 30px; }
.btn--xl  { font-size: 17px; padding: 18px 40px; }
.btn--full { width: 100%; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(90deg, var(--green) 0%, #40ffb0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LABEL ===== */
.label {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(6,11,20,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 19px; font-weight: 600; flex-shrink: 0;
}
.nav__logo strong { font-weight: 900; color: var(--green); }
.logo-icon { color: var(--green); font-size: 22px; }

.nav__links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; flex: 1;
}
.nav__links a {
  font-size: 14px; font-weight: 600;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta { margin-left: auto; flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: auto; padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,11,20,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column; align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 99;
  padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 22px; font-weight: 700; }
.mobile-link { color: var(--text-dim) !important; }
.mobile-link:hover { color: var(--text) !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,230,118,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--green);
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 32px;
}
.badge__dot {
  width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
}

.hero__title {
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 820px;
}
.hero__sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

/* Stats */
.hero__stats {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 80px;
}
.hstat { text-align: center; }
.hstat__val {
  font-size: 34px; font-weight: 900;
  line-height: 1;
  display: flex; align-items: baseline; gap: 2px; justify-content: center;
}
.hstat__unit { font-size: 17px; font-weight: 700; color: var(--green); }
.hstat__label {
  font-size: 11px; font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 5px;
}
.hstat__div { width: 1px; height: 44px; background: var(--border); }

/* Mockup */
.hero__mockup {
  position: relative;
  max-width: 860px; width: 100%;
}
.mockup__glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(0,230,118,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.mockup__img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0,230,118,0.15);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 50px rgba(0,230,118,0.08);
  display: block;
}
.chip {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: rgba(9,14,26,0.88);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 12px; font-weight: 700;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.chip--tl { top: 14%; left: -20px; animation-delay: 0s; }
.chip--br { bottom: 18%; right: -14px; animation-delay: 1.5s; }
.chip__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.chip__dot--green { background: var(--green); animation: pulse 2s infinite; }
.chip strong { color: var(--green); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: rgba(0,230,118,0.02);
  position: relative; z-index: 2;
}
.ticker {
  display: flex; gap: 28px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 12px; font-weight: 700; color: var(--text-dim);
}
.sep { color: var(--green); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative; z-index: 2;
}
.section--dark { background: var(--bg-2); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.section__header p { font-size: 17px; color: var(--text-dim); max-width: 480px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.features-grid .feat-card:nth-child(1) { grid-column: span 2; }
.features-grid .feat-card:nth-child(5) { grid-column: span 2; }

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}
.feat-card:hover {
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.04);
  transform: translateY(-3px);
}
.feat-card__icon { font-size: 36px; margin-bottom: 14px; }
.feat-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.feat-card p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.feat-card__tag {
  display: inline-block; margin-top: 18px;
  font-size: 11px; font-weight: 700; color: var(--green);
  background: rgba(0,230,118,0.1); border-radius: 50px; padding: 3px 12px;
}

/* ===== STEPS ===== */
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step__num {
  font-size: 12px; font-weight: 800; color: var(--green);
  letter-spacing: 2px; margin-bottom: 16px;
}
.step__body {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px; width: 100%;
}
.step__icon { font-size: 44px; margin-bottom: 16px; }
.step__body h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.step__body p { color: var(--text-dim); font-size: 14px; }
.step__connector {
  width: 48px; flex-shrink: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  margin-top: 72px; opacity: 0.4;
}

/* ===== TABLE ===== */
.comparison-table {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border); }
th { font-size: 12px; font-weight: 800; color: var(--text-dim); background: var(--bg-card); }
td:first-child, th:first-child { text-align: left; }
th.us { color: var(--green) !important; }
td.us { background: rgba(0,230,118,0.04); }
.green { color: var(--green); }
tr:last-child td { border-bottom: none; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: start;
}
.plan {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative;
  transition: all 0.3s ease;
}
.plan:hover { border-color: rgba(0,230,118,0.3); transform: translateY(-3px); }
.plan--featured {
  border-color: rgba(0,230,118,0.4); background: rgba(0,230,118,0.05);
  transform: scale(1.02);
  box-shadow: 0 0 50px rgba(0,230,118,0.1);
}
.plan--featured:hover { transform: scale(1.02) translateY(-3px); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #021a0e; font-size: 11px; font-weight: 800;
  border-radius: 50px; padding: 4px 16px; white-space: nowrap;
}
.plan__name {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-dim); margin-bottom: 20px;
}
.plan__price { margin-bottom: 28px; }
.plan__amount {
  display: block; font-size: 48px; font-weight: 900; line-height: 1; color: var(--text);
}
.plan--featured .plan__amount { color: var(--green); }
.plan__period { font-size: 13px; color: var(--text-dim); font-weight: 600; }
.plan__features {
  list-style: none; margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.plan__features li { font-size: 14px; font-weight: 600; }

/* ===== INTEGRATIONS ===== */
.integrations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.int-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 15px;
  transition: all 0.25s ease; cursor: default;
}
.int-card:hover {
  border-color: rgba(0,230,118,0.3); background: rgba(0,230,118,0.04);
  transform: translateY(-3px);
}
.int-card span { font-size: 26px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.testi {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.testi p { color: var(--text-dim); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #021a0e; font-weight: 900; font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi__author span { font-size: 12px; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.2s;
}
.faq__item[open] { border-color: rgba(0,230,118,0.3); }
.faq__item summary {
  padding: 20px 24px; font-weight: 700; font-size: 16px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::after {
  content: '+'; font-size: 20px; font-weight: 300; color: var(--green);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 20px; color: var(--text-dim); font-size: 15px; line-height: 1.8; }
.faq__item a { color: var(--green); text-decoration: underline; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0 120px; }
.cta-box {
  position: relative; background: var(--bg-card);
  border: 1px solid rgba(0,230,118,0.22); border-radius: 28px;
  padding: 72px 48px; text-align: center; overflow: hidden;
}
.cta-box__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(0,230,118,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box__tag { font-size: 13px; font-weight: 800; color: var(--text-dim); margin-bottom: 16px; display: block; }
.cta-box h2 {
  font-size: clamp(28px, 5vw, 54px); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px;
}
.cta-box p { font-size: 17px; color: var(--text-dim); margin-bottom: 36px; }
.cta-box__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px;
}
.cta-box__trust {
  display: flex; gap: 20px; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--text-dim); flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border); padding: 56px 0 36px;
  position: relative; z-index: 2;
}
.footer__inner { display: flex; gap: 48px; margin-bottom: 40px; flex-wrap: wrap; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 600; }
.footer__logo strong { color: var(--green); font-weight: 900; }
.footer__brand p { font-size: 13px; color: var(--text-dim); font-weight: 400; line-height: 1.6; }
.footer__links { display: flex; gap: 48px; flex: 1; justify-content: flex-end; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col strong {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-dim);
}
.footer__col a { font-size: 14px; color: var(--text-dim); transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--text-dim); font-weight: 600;
  border-top: 1px solid var(--border); padding-top: 24px;
}

/* ===== LOGO BOLT ===== */
.logo-bolt { color: var(--green); font-size: 20px; }

/* ===== DASHBOARD WIDGET ===== */
.dash-widget {
  display: flex;
  background: rgba(9, 14, 26, 0.92);
  border: 1px solid rgba(0, 230, 118, 0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(0,230,118,0.1);
  backdrop-filter: blur(20px);
  text-align: left;
  width: 100%;
}

/* Sidebar */
.dash-sidebar {
  width: 56px;
  background: rgba(255,255,255,0.025);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 0;
  flex-shrink: 0;
}
.dash-brand {
  font-size: 10px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0;
  margin-bottom: 12px;
}
.dash-nav-item {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
  cursor: default;
  transition: all 0.2s;
}
.dash-nav-item--active {
  background: rgba(0,230,118,0.12);
  color: var(--green);
}

/* Main */
.dash-main {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

/* Topbar */
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-greeting-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.dash-topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dash-dot--green {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}
.dash-status-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* Balance */
.dash-balance-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.dash-balance-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.dash-balance-int {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.dash-balance-dec {
  font-size: 20px;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
}
.dash-balance-currency {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  margin-left: 4px;
}
.dash-balance-change {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(0,230,118,0.08);
  border-radius: 20px;
  padding: 4px 10px;
}

/* Stats row */
.dash-stats-row {
  display: flex;
  gap: 8px;
}
.dash-stat-chip {
  flex: 1;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-stat-chip-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.dash-stat-chip-val {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
}

/* Chart */
.dash-chart-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-chart-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.dash-chart {
  height: 80px;
  width: 100%;
}
.dash-chart-svg {
  width: 100%;
  height: 100%;
}
.dash-chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2.5s ease forwards 0.5s;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Transactions */
.dash-tx-header {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.dash-tx-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.025);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.dash-tx-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  flex-shrink: 0;
}
.dash-tx-icon--in {
  background: rgba(0,230,118,0.1);
  color: var(--green);
}
.dash-tx-icon--out {
  background: rgba(99,102,241,0.1);
  color: #818cf8;
}
.dash-tx-info { flex: 1; min-width: 0; }
.dash-tx-name {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-tx-time {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
.dash-tx-amount {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.dash-tx-amount--in { color: var(--green); }

/* Animations on last row */
.anim-pulse-row {
  animation: rowPulse 3s ease-in-out infinite;
}
@keyframes rowPulse {
  0%, 100% { border-color: rgba(0,230,118,0.04); }
  50% { border-color: rgba(0,230,118,0.25); background: rgba(0,230,118,0.035); }
}
.anim-number {
  animation: numberFlash 3s ease-in-out infinite;
}
@keyframes numberFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== FLOATING BTN ===== */
.floating-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  padding: 13px 26px; font-size: 14px; font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #021a0e; border-radius: 50px;
  box-shadow: 0 8px 36px rgba(0,230,118,0.38);
  transition: all 0.3s ease;
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.floating-btn.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(0,230,118,0.5); }

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet landscape */
@media (max-width: 1024px) {
  .integrations-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feat-card:nth-child(1),
  .features-grid .feat-card:nth-child(5) { grid-column: span 1; }
}

/* Tablet */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 110px 20px 70px; }
  .hero__title { letter-spacing: -1.5px; }
  .hero__stats { gap: 18px; }
  .hstat__div { height: 36px; }
  .chip { display: none; }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid .feat-card:nth-child(1),
  .features-grid .feat-card:nth-child(5) { grid-column: span 2; }

  .steps { flex-direction: column; align-items: stretch; gap: 12px; }
  .step { align-items: flex-start; text-align: left; }
  .step__body { padding: 28px 24px; }
  .step__connector {
    width: 2px; height: 32px; margin: 0 0 0 48px;
    background: linear-gradient(180deg, var(--green), transparent);
  }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-3px); }

  .integrations-grid { grid-template-columns: repeat(4, 1fr); }

  .testimonials { grid-template-columns: 1fr; }

  .cta-box { padding: 48px 28px; }

  .footer__links { justify-content: flex-start; }
}

/* Mobile */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 72px 0; }

  .hero { padding: 100px 16px 60px; }
  .hero__title { letter-spacing: -1px; font-size: 38px; }
  .hero__badge { font-size: 11px; padding: 6px 14px; text-align: center; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .hero__stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; width: 100%;
  }
  .hstat__div { display: none; }
  .hstat { text-align: center; }

  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .features-grid .feat-card:nth-child(1),
  .features-grid .feat-card:nth-child(5) { grid-column: span 1; }
  .feat-card { padding: 24px; }

  .section__header h2 { font-size: 30px; letter-spacing: -0.5px; }
  .section__header p { font-size: 15px; }

  .step__body { padding: 24px 20px; }
  .step__icon { font-size: 36px; }
  .step__body h3 { font-size: 19px; }

  .comparison-table { border-radius: var(--radius-sm); }
  table { font-size: 12px; }
  th, td { padding: 10px 10px; }

  .plan { padding: 28px 24px; }
  .plan__amount { font-size: 40px; }

  .integrations-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-box { padding: 36px 20px; border-radius: 20px; }
  .cta-box h2 { font-size: 26px; }
  .cta-box__actions { flex-direction: column; align-items: stretch; }
  .cta-box__actions .btn { text-align: center; justify-content: center; }
  .cta-box__trust { gap: 12px; font-size: 11px; }

  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__links { flex-direction: column; gap: 32px; justify-content: flex-start; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; justify-content: center; }

  .floating-btn { bottom: 16px; right: 16px; padding: 11px 20px; font-size: 13px; }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero__title { font-size: 32px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hstat__val { font-size: 26px; }
}
