/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080b12;
  --bg2: #0e1220;
  --bg3: #141928;
  --bg4: #1c2235;
  --bg5: #232b40;
  --border: #1e2840;
  --border2: #2a3550;
  --text: #e8edf8;
  --text2: #a0aec0;
  --text3: #3d4f6e;
  --grad: linear-gradient(135deg, #7c3aed, #2563eb);
  --grad-h: linear-gradient(135deg, #9333ea, #3b82f6);
  --accent: #7c3aed;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #10b981;
  --red: #ef4444;
  --orange: #f97316;
  --yellow: #f59e0b;
  --sol: #9945ff;
  --eth: #627eea;
  --bnb: #f3ba2f;
  --glow-accent: 0 0 24px rgba(124, 58, 237, 0.4);
  --glow-green: 0 0 16px rgba(16, 185, 129, 0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
  justify-content: center;
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.8));
}

.logo-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: all 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg4);
}

.nav-cta {
  display: flex;
  gap: 8px;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

.mobile-menu {
  padding: 12px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--text2);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: all 0.15s;
}

.mobile-menu a:hover {
  color: var(--text);
  background: var(--bg4);
}

.mobile-menu .btn {
  margin-top: 8px;
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 2px 14px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.12);
  box-shadow: var(--glow-accent);
}

.btn-ghost {
  background: var(--bg4);
  color: var(--text);
  border: 1px solid var(--border2);
}

.btn-ghost:hover {
  background: var(--bg5);
  border-color: rgba(124, 58, 237, 0.4);
  color: #c4b5fd;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 15px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius);
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg2);
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  z-index: 0;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

#hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #c4b5fd;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text2);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  display: inline-flex;
  gap: 0;
}

.hero-stat {
  text-align: center;
  padding: 0 28px;
}

.hero-stat-val {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}

.hero-stat-lbl {
  display: block;
  font-size: 14px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Chains ──────────────────────────────────────────────────────────────── */
.chains-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.chain-pill {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid;
  transition: transform 0.15s;
}

.chain-pill:hover {
  transform: translateY(-2px);
}

.chain-sol {
  background: rgba(153, 69, 255, 0.12);
  color: #b47fff;
  border-color: rgba(153, 69, 255, 0.35);
}

.chain-eth {
  background: rgba(98, 126, 234, 0.12);
  color: #8fa8f5;
  border-color: rgba(98, 126, 234, 0.35);
}

.chain-bnb {
  background: rgba(243, 186, 47, 0.12);
  color: #f5c842;
  border-color: rgba(243, 186, 47, 0.35);
}

.chain-btc {
  background: rgba(247, 147, 26, 0.12);
  color: #fb923c;
  border-color: rgba(247, 147, 26, 0.35);
}

.chain-base {
  background: rgba(0, 82, 255, 0.12);
  color: #6b9fff;
  border-color: rgba(0, 82, 255, 0.35);
}

.chain-avax {
  background: rgba(232, 65, 66, 0.12);
  color: #ff7b7b;
  border-color: rgba(232, 65, 66, 0.35);
}

.chain-matic {
  background: rgba(130, 71, 229, 0.12);
  color: #a78bfa;
  border-color: rgba(130, 71, 229, 0.35);
}

.chain-tron {
  background: rgba(255, 6, 10, 0.12);
  color: #ff6b6b;
  border-color: rgba(255, 6, 10, 0.35);
}

.chain-xrp {
  background: rgba(0, 136, 204, 0.12);
  color: #5bc8f5;
  border-color: rgba(0, 136, 204, 0.35);
}

.chain-sui {
  background: rgba(100, 220, 255, 0.12);
  color: #67e8f9;
  border-color: rgba(100, 220, 255, 0.35);
}

/* ── Features Grid ───────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-accent-purple::before {
  background: linear-gradient(90deg, #7c3aed, #9333ea);
}

.feature-accent-cyan::before {
  background: linear-gradient(90deg, #0891b2, #06b6d4);
}

.feature-accent-green::before {
  background: linear-gradient(90deg, #059669, #10b981);
}

.feature-accent-orange::before {
  background: linear-gradient(90deg, #ea580c, #f97316);
}

.feature-accent-blue::before {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
}

.feature-accent-red::before {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
}

/* ── Products ────────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.2s;
}

.product-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.product-card-featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.06));
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.1);
}

.product-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.product-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.product-sub {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text2);
}

.product-features li:last-child {
  border-bottom: none;
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.2s;
}

.pricing-card:hover {
  border-color: var(--border2);
}

.pricing-card-featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.06));
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.12);
  transform: scale(1.03);
}

.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text2);
}

.pricing-period {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 24px;
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text2);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:first-child {
  color: var(--text);
  font-weight: 600;
}

/* ── Download ────────────────────────────────────────────────────────────── */
.download-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 20px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px 28px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  min-width: 200px;
}

.download-btn:hover {
  border-color: rgba(124, 58, 237, 0.5);
  background: var(--bg4);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.download-os {
  font-size: 32px;
}

.download-label {
  font-size: 14px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-name {
  font-size: 18px;
  font-weight: 700;
}

.download-note {
  font-size: 15px;
  color: var(--text2);
}

/* ── Telegram Preview ────────────────────────────────────────────────────── */
.tg-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

.tg-preview {
  background: #17212b;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tg-bubble {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.55;
  max-width: 85%;
}

.tg-bubble-bot {
  background: #2b5278;
  color: #e8edf8;
}

.tg-bubble-user {
  background: #182533;
  color: #e8edf8;
  margin-left: auto;
}

.tg-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tg-btn {
  background: #2b5278;
  color: #e8edf8;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list {
  margin-top: 40px;
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.15s;
}

.faq-q:hover {
  color: #c4b5fd;
}

.faq-arrow {
  font-size: 18px;
  color: var(--text2);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-q.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  padding-bottom: 20px;
  display: none;
}

.faq-a.open {
  display: block;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 260px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text2);
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text2);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
  color: var(--text2);
}

.footer-disclaimer {
  max-width: 480px;
  text-align: right;
  font-size: 14px;
}

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--bg5);
  border-radius: 3px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .hero-stat-div {
    width: 40px;
    height: 1px;
  }

  .tg-card {
    grid-template-columns: 1fr;
  }

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

  .footer-disclaimer {
    text-align: left;
  }

  .pricing-card-featured {
    transform: none;
  }

  .section {
    padding: 64px 0;
  }
}

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

  .hero-title {
    letter-spacing: -0.5px;
  }
}

/* ── Snapshots ───────────────────────────────────────────────────────────── */
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.snapshot-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.2s;
}

.snapshot-card:hover {
  transform: translateY(-3px);
  border-color: var(--border2);
}

.real-shot {
  cursor: pointer;
}

.real-shot img {
  border-radius: 14px;
  border: 1px solid rgba(149, 162, 191, 0.18);
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 400px;
  object-fit: contain;
  background: #04070d;
}

.real-shot figcaption {
  margin-top: 12px;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.5;
}

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

  .real-shot img {
    min-height: 240px;
    max-height: 300px;
  }
}

/* ── Image Modal ──────────────────────────────────────────────────────────── */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #67e8f9;
}

.modal-caption {
  color: var(--text2);
  margin-top: 16px;
  font-size: 1rem;
  text-align: center;
  max-width: 80%;
}

/* ── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 8px 16px;
}

.stat-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text2);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border2);
}

/* ── How It Works ──────────────────────────────────────────────────────── */
.steps-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.step-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  position: relative;
  transition: all 0.2s;
}

.step-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.step-card p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.6;
}

.step-arrow {
  font-size: 32px;
  color: var(--text3);
  align-self: center;
  display: flex;
  align-items: center;
}

.steps-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Testimonials ──────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}

.testimonial-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.06));
  border-color: rgba(124, 58, 237, 0.35);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}

.testimonial-handle {
  font-size: 14px;
  color: var(--text3);
}

/* Trust badges below testimonials */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-badge {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text2);
  font-weight: 600;
}

/* ── Security Section ─────────────────────────────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.security-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}

.security-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.security-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.security-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.security-card p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
}

.security-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Responsive for new sections ───────────────────────────────────────── */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-featured {
    order: -1;
  }

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

@media (max-width: 600px) {
  .stats-bar {
    gap: 16px;
  }

  .stat-value {
    font-size: 28px;
  }

  .stat-divider {
    display: none;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

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

  .trust-badges {
    gap: 10px;
  }

  .trust-badge {
    font-size: 13px;
    padding: 8px 16px;
  }
}