/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #070810;
  --bg-card: #0e1018;
  --bg-card-hover: #131720;
  --border: #1a1d2a;
  --border-light: #252938;
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --primary-glow: rgba(34, 197, 94, 0.15);
  --accent: #3772ff;
  --text: #eceef5;
  --text-muted: #8b8fa8;
  --text-dim: #4a4d62;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(34,197,94,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(55,114,255,0.05) 0%, transparent 50%);
}

/* Scroll Progress Bar */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  z-index: 9999;
  box-shadow: 0 0 10px rgba(34,197,94,0.5);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Particle Background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(34,197,94,0.6);
}

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
  box-shadow: 0 0 20px rgba(34,197,94,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(34,197,94,0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 18px;
  border-radius: 14px;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 8px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ===================================
   NAVBAR
=================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 16, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(34,197,94,0.1);
  box-shadow: 0 1px 40px rgba(34,197,94,0.04);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(34,197,94,0.5), 0 0 32px rgba(34,197,94,0.2);
  border: 1.5px solid rgba(34,197,94,0.4);
}
.logo-icon {
  font-size: 22px;
  color: var(--primary);
}
.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ===================================
   HERO
=================================== */
.hero {
  position: relative;
  padding: 72px 0 60px;
  text-align: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 900px;
  height: 900px;
  background: rgba(34, 197, 94, 0.1);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatGlow 8s ease-in-out infinite;
}
.glow-2 {
  width: 600px;
  height: 600px;
  background: rgba(55, 114, 255, 0.07);
  bottom: -100px;
  right: -150px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50%       { transform: translateX(-50%) scale(1.08); opacity: 0.7; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(34,197,94,0.12), inset 0 1px 0 rgba(255,255,255,0.05);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 40%, #86efac 70%, #22c55e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(14,16,24,0.8);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 18px;
  padding: 20px 36px;
  gap: 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(34,197,94,0.07), 0 8px 32px rgba(0,0,0,0.4);
  animation: fadeInUp 1s ease-out 0.3s both;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

@media (max-width: 600px) {
  .hero-stats { gap: 16px; padding: 16px 20px; }
  .stat-value { font-size: 18px; }
}

/* ===================================
   TICKER
=================================== */
.ticker-wrap {
  overflow: hidden;
  background: rgba(14,16,24,0.9);
  border-top: 1px solid rgba(34,197,94,0.1);
  border-bottom: 1px solid rgba(34,197,94,0.1);
  padding: 14px 0;
  box-shadow: 0 0 30px rgba(34,197,94,0.05);
}

.ticker-track {
  display: inline-flex;
  gap: 24px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.ticker-sep {
  color: var(--primary);
  opacity: 0.5;
}

/* ===================================
   SECTIONS
=================================== */
.section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(34,197,94,0.1);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

/* ===================================
   STEPS
=================================== */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-card {
  flex: 1;
  background: rgba(14,16,24,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(34,197,94,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.step-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(34,197,94,0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}
.step-card:hover {
  border-color: rgba(34,197,94,0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(34,197,94,0.15), 0 0 0 1px rgba(34,197,94,0.1);
}

.step-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-card code {
  background: var(--primary-glow);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

.step-connector {
  font-size: 24px;
  color: var(--text-dim);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
  }
  .step-connector {
    transform: rotate(90deg);
  }
  .step-card { width: 100%; }
}

/* ===================================
   VIDEO SECTION
=================================== */
.video-section { padding: 64px 0; }

.video-inline-wrap {
  margin-top: 48px;
  text-align: center;
}
.video-inline-label {
  margin-bottom: 20px;
}

.video-thumbnail-wrap {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.video-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.video-thumbnail {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(34,197,94,0.1);
  z-index: 1;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  transition: background 0.3s;
}
.video-thumbnail:hover .thumb-overlay { background: rgba(0,0,0,0.35); }

.play-btn-thumb {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s;
}
.play-btn-thumb:hover { transform: scale(1.1); }
.play-btn-thumb svg {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 0 24px rgba(34,197,94,0.55));
}

.thumb-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.video-duration-badge {
  padding: 5px 16px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.thumb-label p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Meta row */
.video-meta-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.video-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.vm-icon { font-size: 16px; }

/* ===================================
   VIDEO MODAL (FLOATING)
=================================== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.open { display: flex; }

.vm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.vm-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  background: #0d0f14;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(34,197,94,0.15);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.vm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #12141c;
  border-bottom: 1px solid var(--border);
}

.vm-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.vm-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.vm-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text);
}

.vm-player {
  aspect-ratio: 16/9;
  background: #000;
}
.vm-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .play-btn-thumb svg { width: 64px; height: 64px; }
  .video-meta-row { gap: 14px; }
  .vm-box { border-radius: 14px; }
}

/* ===================================
   RATES SECTION — REDESIGNED
=================================== */
.rates-section {
  background: linear-gradient(180deg, transparent, rgba(247,147,26,0.03), transparent);
}

/* Live market price row */
.market-prices-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.market-price-card {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}

.mp-values {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mp-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.mp-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.market-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
}

/* Price update countdown bar */
.price-update-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.price-update-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.price-update-text strong {
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.price-update-spinner {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.price-update-spinner svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Price flash on update */
@keyframes priceFlash {
  0%   { color: var(--primary); text-shadow: 0 0 8px rgba(34,197,94,0.6); }
  100% { color: var(--text); text-shadow: none; }
}

.mp-price.price-flash {
  animation: priceFlash 1s ease-out forwards;
}

/* Rate method cards */
.rate-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.rate-method-card {
  background: rgba(14,16,24,0.95);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.rate-method-card:hover {
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 12px 40px rgba(34,197,94,0.08);
}

.rate-method-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.upi-header { background: rgba(55, 114, 255, 0.07); border-bottom: 1px solid rgba(55,114,255,0.1); }
.upi-header .rate-method-icon {
  background: rgba(55, 114, 255, 0.12);
  border-color: rgba(55, 114, 255, 0.3);
  color: #3772ff;
}
.upi-header .rate-method-icon svg { stroke: #3772ff; }

.cdm-header { background: rgba(34, 197, 94, 0.07); border-bottom: 1px solid rgba(34,197,94,0.1); }

.rate-method-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--primary);
}

.rate-method-icon i,
.rate-method-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.8;
}

.rate-method-header h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.method-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.rate-method-header .zero-fee { margin-left: auto; }

/* Slab table */
.slab-table {
  width: 100%;
  border-collapse: collapse;
}

.slab-table thead tr {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.slab-table th {
  padding: 11px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.slab-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.slab-table tbody tr:last-child td { border-bottom: none; }
.slab-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

.slab-best td { background: rgba(247,147,26,0.04); }
.slab-best:hover td { background: rgba(247,147,26,0.07) !important; }

.slab-range {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.slab-rate {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.cdm-note {
  padding: 10px 24px 14px;
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
}

.rates-bottom-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.rates-bottom-note strong { color: var(--text); }

/* old classes kept for compat */
.rates-table-wrap,
.rates-table { display: none; }
.rates-note { display: none; }

/* coin badges — used in market price row */
.coin-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.coin-badge.btc  { background: rgba(247,147,26,0.12);  color: #f7931a; }
.coin-badge.eth  { background: rgba(98,126,234,0.12);  color: #627eea; }
.coin-badge.usdt { background: rgba(38,161,123,0.12);  color: #26a17b; }
.coin-badge.bnb  { background: rgba(243,186,47,0.12);  color: #f3ba2f; }
.coin-badge.sol  { background: rgba(153,69,255,0.12);  color: #9945ff; }

.zero-fee {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.5px;
}

.rate-good { color: var(--green); font-weight: 700; }

@media (max-width: 768px) {
  .rate-methods-grid { grid-template-columns: 1fr; }
  .market-prices-row { gap: 8px; }
  .market-price-card { min-width: 120px; }
}

/* ===================================
   FEATURES
=================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: rgba(14,16,24,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.06), transparent);
  transition: left 0.5s;
}

/* Bottom accent line */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.6), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before { left: 100%; }
.feature-card:hover::after  { transform: scaleX(1); }

.feature-card:hover {
  border-color: rgba(34,197,94,0.35);
  background: rgba(18,22,32,0.98);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34,197,94,0.12), 0 0 0 1px rgba(34,197,94,0.08);
}

/* Icon box */
.feature-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.8;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(34,197,94,0.14);
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 0 16px rgba(34,197,94,0.2);
}

.feature-card:hover .feature-icon-wrap svg {
  transform: scale(1.15);
}

/* Text content */
.feature-content {
  flex: 1;
  min-width: 0;
}

.feature-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card  { padding: 20px 18px; gap: 14px; }
}

/* ===================================
   TESTIMONIALS + VOUCHES
=================================== */
.testimonials-section {
  background: linear-gradient(180deg, transparent, rgba(55,114,255,0.03), transparent);
  padding-bottom: 24px;
}

/* Vouch banner */
.vouch-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(34,197,94,0.07) 0%, rgba(14,16,24,0.95) 70%);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 18px;
  padding: 24px 32px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.vouch-banner::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.vouch-banner:hover {
  border-color: rgba(34,197,94,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.12);
}

.vouch-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.vouch-banner-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.3);
  border-radius: 14px;
  box-shadow: 0 0 16px rgba(34,197,94,0.15);
  flex-shrink: 0;
}
.vouch-banner-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 1.8;
}

.vouch-banner-text { flex: 1; min-width: 0; }

.vouch-banner-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.vouch-banner-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.vouch-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.vouch-live-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.vouch-banner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: 10px;
  letter-spacing: 0.2px;
  box-shadow: 0 0 18px rgba(34,197,94,0.3);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.vouch-banner-cta-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.vouch-banner:hover .vouch-banner-cta-btn {
  box-shadow: 0 4px 24px rgba(34,197,94,0.5);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .vouch-banner         { padding: 18px 20px; flex-direction: column; align-items: flex-start; }
  .vouch-banner-right   { align-items: flex-start; width: 100%; }
  .vouch-banner-cta-btn { width: 100%; justify-content: center; }
}

/* ── TRUST STATS GRID ── */
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.trust-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.trust-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.trust-stat-card:hover::after { transform: scaleX(1); }
.trust-stat-card:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(34,197,94,0.1);
}

.trust-stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 14px;
  color: var(--primary);
}
.trust-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.8;
}

.trust-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
}

.trust-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.trust-stat-sub {
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ── TRUST HIGHLIGHTS ROW ── */
.trust-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.trust-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(14,16,24,0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.trust-highlight-item:hover {
  border-color: rgba(34,197,94,0.25);
  color: var(--text);
  background: rgba(34,197,94,0.04);
}
.trust-highlight-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  stroke-width: 2;
  flex-shrink: 0;
}

/* See all footer — new banner */
.vouch-footer-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, rgba(14,16,24,0.95) 60%);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 20px;
  padding: 28px 32px;
  overflow: hidden;
  flex-wrap: wrap;
}

.vfb-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.vfb-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.vfb-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.35);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(34,197,94,0.15);
}
.vfb-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  stroke-width: 1.8;
}

.vfb-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.vfb-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.vfb-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Animated pulse dots */
.vfb-dots {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vfb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: vfbPulse 1.4s ease-in-out infinite;
}
.vfb-dot:nth-child(2) { animation-delay: 0.2s; }
.vfb-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes vfbPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); }
}

.vfb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 0 24px rgba(34,197,94,0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.vfb-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.vfb-btn:hover::before { opacity: 1; }
.vfb-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(34,197,94,0.55);
}
.vfb-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .vouch-footer-banner { padding: 22px 20px; flex-direction: column; align-items: flex-start; }
  .vfb-right           { width: 100%; justify-content: space-between; }
  .vfb-title           { font-size: 17px; }
}
@media (max-width: 480px) {
  .vfb-dots { display: none; }
  .vfb-btn  { width: 100%; justify-content: center; }
}

@media (max-width: 900px) {
  .trust-stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .trust-highlights   { grid-template-columns: repeat(2, 1fr); }
  .vouch-banner       { flex-direction: column; align-items: flex-start; }
  .vouch-banner-right { align-items: flex-start; }
  .vouch-footer       { flex-wrap: wrap; gap: 14px; }
}
@media (max-width: 540px) {
  .trust-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-highlights { grid-template-columns: 1fr; }
  .trust-stat-value { font-size: 24px; }
}

/* ===================================
   FAQ
=================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(14,16,24,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 0 20px rgba(34,197,94,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-card-hover); }

.faq-icon {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-style: normal;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 4px;
}
.faq-answer p {
  padding: 4px 24px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ===================================
   CTA SECTION
=================================== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   FOOTER — REDESIGNED
=================================== */
.footer {
  background: #05060e;
  border-top: 1px solid rgba(34,197,94,0.12);
  margin-top: 0;
}

/* ── Top CTA Strip ── */
.footer-cta-strip {
  background: linear-gradient(135deg, rgba(34,197,94,0.09) 0%, rgba(14,16,24,0.98) 60%);
  border-bottom: 1px solid rgba(34,197,94,0.1);
  padding: 28px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cta-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}

.footer-cta-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 28px rgba(34,197,94,0.4);
  transition: all 0.3s ease;
}
.footer-cta-btn img { width: 17px; height: 17px; object-fit: contain; }
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(34,197,94,0.6);
}

/* ── Main grid ── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 52px 0 44px;
}

/* Brand */
.footer-logo { margin-bottom: 14px; }

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 22px;
}

/* Social buttons */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}
.footer-social-btn img { width: 15px; height: 15px; object-fit: contain; opacity: 0.7; }
.footer-social-btn:hover {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.4);
  color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 0 16px rgba(34,197,94,0.15);
}
.footer-social-btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.08);
}
.footer-social-btn--outline:hover {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.3);
}

/* Links columns */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(34,197,94,0.1);
}
.footer-links h4 svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
  stroke-width: 2;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: all 0.2s ease;
  text-decoration: none;
}
.footer-links a svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-dim);
  stroke-width: 2.5;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.footer-links a:hover svg {
  stroke: var(--primary);
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(34,197,94,0.08);
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 999px;
  padding: 4px 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
}
.footer-stat svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
  stroke-width: 2;
  opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid         { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 28px; }
  .footer-cta-inner    { flex-direction: column; align-items: flex-start; }
  .footer-cta-btn      { width: 100%; justify-content: center; }
  .footer-bottom       { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom-right { gap: 12px; }
}

/* ===================================
   COMMUNITY SECTION
=================================== */
.community-section {
  padding: 24px 0 64px;
}

.community-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}

.community-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(34,197,94,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.community-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 14px 0 18px;
}

.community-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.community-desc strong {
  color: var(--primary);
}

.community-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.community-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

/* perk icon — lucide style */
.perk-icon-wrap {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  flex-shrink: 0;
}
.perk-icon-wrap svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  stroke-width: 2;
}

/* --- CHAT PREVIEW --- */
.chat-preview {
  background: #0d0e14;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #12141c;
  border-bottom: 1px solid var(--border);
}

/* Logo image in chat header */
.chat-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(34,197,94,0.4);
  box-shadow: 0 0 12px rgba(34,197,94,0.3);
}

.chat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green);
  margin-top: 2px;
}

.chat-messages {
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.msg-user {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.msg-user.seller { color: var(--primary); }
.msg-user.buyer  { color: #3772ff; }
.msg-user.bot    { color: var(--green); }

.msg-bubble {
  display: inline-block;
  background: #1a1d27;
  padding: 8px 12px;
  border-radius: 0 10px 10px 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 90%;
}

.chat-input-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #12141c;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .community-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }
}

/* ===================================
   SCROLL ANIMATION
=================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===================================
   TRUST BAR (scrolling marquee)
=================================== */
.trust-bar {
  overflow: hidden;
  background: rgba(10, 12, 18, 0.98);
  border-top: 1px solid rgba(34,197,94,0.12);
  border-bottom: 1px solid rgba(34,197,94,0.12);
  padding: 0;
  position: relative;
}

/* fade edges */
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, rgba(10,12,18,1), transparent);
}
.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, rgba(10,12,18,1), transparent);
}

.trust-bar-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: trustScroll 30s linear infinite;
  padding: 16px 0;
}
.trust-bar-track:hover { animation-play-state: paused; }

@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: default;
}
.trust-bar-item:hover { color: var(--text); }

.trust-bar-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--primary);
  stroke-width: 2;
  flex-shrink: 0;
  opacity: 0.85;
}

.trust-bar-sep {
  width: 1px;
  height: 16px;
  background: rgba(34,197,94,0.15);
  flex-shrink: 0;
}


/* ===================================
   CTA SECTION
=================================== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  margin-top: 16px;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
}

.cta-trust-text {
  color: var(--text-muted);
  font-weight: 500;
}

/* ===================================
   TOAST NOTIFICATIONS
=================================== */
.toast-container {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(14, 16, 24, 0.97);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 197, 94, 0.1);
  min-width: 260px;
  max-width: 320px;
  pointer-events: auto;
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(12px);
}

.toast.toast-exit {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-30px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-30px); }
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast-body {
  flex: 1;
}

.toast-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.toast-msg {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.toast-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@media (max-width: 480px) {
  .toast-container { left: 12px; right: 12px; bottom: 80px; }
  .toast { min-width: unset; max-width: 100%; }
}

/* ===================================
   LOADING SCREEN — CINEMATIC
=================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050609;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#loader.hide {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}

/* Grid lines background */
#loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

/* Outer ambient glow */
#loader::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: loaderAmbient 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes loaderAmbient {
  0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.8; }
  50%      { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}

/* Corner accent lines */
.loader-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.4;
}
.loader-corner.tl { top: 32px; left: 32px;
  border-top: 1.5px solid var(--primary);
  border-left: 1.5px solid var(--primary);
}
.loader-corner.tr { top: 32px; right: 32px;
  border-top: 1.5px solid var(--primary);
  border-right: 1.5px solid var(--primary);
}
.loader-corner.bl { bottom: 32px; left: 32px;
  border-bottom: 1.5px solid var(--primary);
  border-left: 1.5px solid var(--primary);
}
.loader-corner.br { bottom: 32px; right: 32px;
  border-bottom: 1.5px solid var(--primary);
  border-right: 1.5px solid var(--primary);
}

/* Center content */
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 0;
}

/* ── Logo wrap ── */
.loader-logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 3;
  box-shadow:
    0 0 0 2px rgba(34,197,94,0.6),
    0 0 24px rgba(34,197,94,0.5),
    0 0 60px rgba(34,197,94,0.25),
    0 0 100px rgba(34,197,94,0.1);
  animation: logoPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
@keyframes logoPop {
  from { opacity: 0; transform: scale(0.4) rotate(-10deg); }
  to   { opacity: 1; transform: scale(1)   rotate(0deg); }
}

/* Spinning rings — 3 with different speeds */
.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}
.r1 {
  width: 98px; height: 98px;
  border-top-color: rgba(34,197,94,0.9);
  border-right-color: rgba(34,197,94,0.15);
  animation: spin 1s linear infinite;
}
.r2 {
  width: 116px; height: 116px;
  border-top-color: rgba(34,197,94,0.45);
  border-left-color: rgba(34,197,94,0.1);
  animation: spin 1.8s linear infinite reverse;
}
.r3 {
  width: 136px; height: 136px;
  border-top-color: rgba(55,114,255,0.35);
  border-bottom-color: rgba(55,114,255,0.08);
  animation: spin 3.5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Orbiting dot on r1 */
.loader-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
  top: calc(50% - 49px - 3px);
  left: 50%;
  transform-origin: 0 49px;
  animation: spin 1s linear infinite;
}

/* ── Brand ── */
.loader-brand {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 8px;
  animation: fadeSlideUp 0.5s ease 0.35s both;
}
.loader-brand-sub { color: var(--primary); margin-left: 4px; }

.loader-tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.5s ease 0.45s both;
}

/* ── Progress ── */
.loader-bar-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 300px;
  margin-bottom: 14px;
  animation: fadeSlideUp 0.5s ease 0.55s both;
}
.loader-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
/* shimmer effect on bar */
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  animation: barShimmer 1.5s ease infinite;
}
@keyframes barShimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #16a34a, #22c55e, #4ade80);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(34,197,94,0.7);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.loader-percent {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  min-width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}

/* ── Status text ── */
.loader-status {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeSlideUp 0.5s ease 0.65s both;
  min-height: 16px;
  transition: opacity 0.2s;
}

/* ── Bottom crypto pills ── */
.loader-coins {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  animation: fadeSlideUp 0.5s ease 0.75s both;
}
.loader-coin {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid;
  letter-spacing: 0.5px;
  opacity: 0.6;
  animation: coinPulse 2s ease-in-out infinite;
}
.loader-coin:nth-child(2) { animation-delay: 0.3s; }
.loader-coin:nth-child(3) { animation-delay: 0.6s; }
.loader-coin:nth-child(4) { animation-delay: 0.9s; }
.loader-coin:nth-child(5) { animation-delay: 1.2s; }
@keyframes coinPulse {
  0%,100% { opacity: 0.35; transform: translateY(0); }
  50%      { opacity: 0.7;  transform: translateY(-3px); }
}
.lc-btc  { color: #f7931a; border-color: rgba(247,147,26,0.3);  background: rgba(247,147,26,0.07); }
.lc-eth  { color: #627eea; border-color: rgba(98,126,234,0.3);  background: rgba(98,126,234,0.07); }
.lc-usdt { color: #26a17b; border-color: rgba(38,161,123,0.3);  background: rgba(38,161,123,0.07); }
.lc-bnb  { color: #f3ba2f; border-color: rgba(243,186,47,0.3);  background: rgba(243,186,47,0.07); }
.lc-sol  { color: #9945ff; border-color: rgba(153,69,255,0.3);  background: rgba(153,69,255,0.07); }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.loading { overflow: hidden; }

/* Best rate badge */
.best-rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  vertical-align: middle;
  margin-left: 6px;
}
.best-rate-badge svg {
  width: 11px;
  height: 11px;
  stroke: var(--primary);
  stroke-width: 2.5;
}


/* =============================================
   GLOBAL ENHANCEMENTS — 1000x UI UPGRADE
============================================= */

/* Subtle grid texture on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(34,197,94,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* ── HERO UPGRADE ── */
.hero {
  padding: 96px 0 80px;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(34,197,94,0.07) 0%, transparent 70%);
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -3px;
}

/* Noise grain on hero badge */
.hero-badge {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  letter-spacing: 0.3px;
}

/* Hero buttons spacing */
.hero-actions { margin-bottom: 60px; }

/* Hero stats — glassmorphism upgrade */
.hero-stats {
  border: 1px solid rgba(34,197,94,0.2);
  background: rgba(7,8,16,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── SECTION HEADERS — accent line ── */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(34,197,94,0.6);
}
.section-header { margin-bottom: 52px; }

/* ── STEP CARDS — numbered circle + icon upgrade ── */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0;
  margin-bottom: 18px;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 14px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 1.8;
}
.step-card:hover .step-icon {
  background: rgba(34,197,94,0.14);
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 0 18px rgba(34,197,94,0.2);
}

/* Connector upgrade */
.step-connector {
  font-size: 20px;
  color: var(--primary);
  opacity: 0.4;
  flex-shrink: 0;
  padding: 0 4px;
}

/* ── MARKET PRICE CARDS — live pulse ── */
.market-prices-row {
  margin-bottom: 28px;
}
.market-price-card {
  transition: all 0.25s ease;
  border-radius: 14px;
}
.market-price-card:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.08);
}
.coin-badge {
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.mp-price {
  font-size: 15px;
  font-weight: 800;
}

/* ── SLAB TABLE — best row glow upgrade ── */
.slab-best td {
  background: rgba(34,197,94,0.05) !important;
  border-left: 2px solid rgba(34,197,94,0.4);
}
.slab-best:hover td {
  background: rgba(34,197,94,0.09) !important;
}
.slab-best .slab-range {
  color: var(--text);
  font-weight: 700;
}

/* ── FEATURES SECTION UPGRADE ── */
.section#features {
  background: linear-gradient(180deg, transparent, rgba(34,197,94,0.02), transparent);
}
.feature-card {
  padding: 24px 22px;
  gap: 16px;
}

/* ── FAQ UPGRADE ── */
.faq-question {
  font-size: 15.5px;
  letter-spacing: -0.2px;
  padding: 22px 24px;
}
.faq-answer p {
  font-size: 14.5px;
  line-height: 1.8;
}

/* ── TICKER UPGRADE ── */
.ticker-wrap {
  background: rgba(7,8,16,0.95);
}
.ticker-item {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── COMMUNITY CARD UPGRADE ── */
.community-card {
  background: linear-gradient(135deg, rgba(14,16,24,0.98), rgba(10,12,20,0.98));
  border-color: rgba(34,197,94,0.15);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.06), 0 40px 80px rgba(0,0,0,0.4);
}
.community-card:hover {
  border-color: rgba(34,197,94,0.25);
}
.community-perks li {
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.community-perks li:hover { color: var(--text); }

/* ── FOOTER UPGRADE ── */
.footer {
  background: #05060e;
  border-top: 1px solid rgba(34,197,94,0.12);
}
.footer-brand .logo-img {
  width: 44px;
  height: 44px;
}
.footer-links a {
  position: relative;
  padding-left: 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}
.social-link {
  transition: all 0.2s ease;
}
.social-link:hover {
  background: rgba(34,197,94,0.08);
  transform: translateY(-1px);
}
.footer-bottom {
  margin-top: 0;
}

/* ── BACK TO TOP UPGRADE ── */
.back-to-top {
  font-size: 18px;
  font-weight: 700;
  bottom: 24px;
  right: 24px;
}

/* ── NAVBAR ACTIVE LINK INDICATOR ── */
.nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--primary);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* ── RATE METHOD CARDS UPGRADE ── */
.rate-method-card {
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.slab-table tbody tr {
  transition: background 0.15s;
}

/* ── CTA SECTION UPGRADE ── */
.cta-section {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(34,197,94,0.06) 0%, transparent 70%);
  border-top: 1px solid rgba(34,197,94,0.08);
  border-bottom: 1px solid rgba(34,197,94,0.08);
}

/* ── GLASS CARD EFFECT (global) ── */
.trust-stat-card,
.feature-card,
.step-card,
.rate-method-card,
.faq-item,
.community-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── SCROLLBAR STYLING ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #070810; }
::-webkit-scrollbar-thumb {
  background: rgba(34,197,94,0.3);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(34,197,94,0.5); }

/* ── SELECTION COLOR ── */
::selection {
  background: rgba(34,197,94,0.25);
  color: #fff;
}

/* =============================================
   GLOW UPGRADES
============================================= */

/* Body — stronger ambient glow */
body {
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(34,197,94,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(55,114,255,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 5% 80%, rgba(34,197,94,0.05) 0%, transparent 50%);
}

/* Navbar — green bottom glow */
.navbar {
  box-shadow: 0 1px 0 rgba(34,197,94,0.15), 0 4px 40px rgba(34,197,94,0.06);
}

/* Logo glow stronger */
.logo-img {
  box-shadow: 0 0 20px rgba(34,197,94,0.7), 0 0 40px rgba(34,197,94,0.3);
}

/* Hero title glow */
.hero-title {
  text-shadow: 0 0 80px rgba(34,197,94,0.15);
}

/* Gradient text — brighter shimmer */
.gradient-text {
  filter: drop-shadow(0 0 20px rgba(34,197,94,0.5));
}

/* Hero badge glow */
.hero-badge {
  box-shadow: 0 0 24px rgba(34,197,94,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Primary button — stronger glow */
.btn-primary {
  box-shadow: 0 0 24px rgba(34,197,94,0.4), 0 4px 16px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(34,197,94,0.7), 0 8px 32px rgba(34,197,94,0.3);
}

/* Hero stats glow */
.hero-stats {
  box-shadow: 0 0 60px rgba(34,197,94,0.1), 0 0 0 1px rgba(34,197,94,0.12), 0 8px 32px rgba(0,0,0,0.5);
}
.stat-value {
  text-shadow: 0 0 20px rgba(34,197,94,0.5);
}

/* Section tag glow */
.section-tag {
  box-shadow: 0 0 20px rgba(34,197,94,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Section title underline glow — already has it, stronger */
.section-title::after {
  box-shadow: 0 0 16px rgba(34,197,94,0.9), 0 0 32px rgba(34,197,94,0.4);
}

/* Step cards — top edge glow on hover */
.step-card:hover {
  box-shadow: 0 -1px 0 rgba(34,197,94,0.5), 0 20px 60px rgba(34,197,94,0.18), 0 0 0 1px rgba(34,197,94,0.15);
}

/* Step icon glow on hover */
.step-card:hover .step-icon {
  box-shadow: 0 0 24px rgba(34,197,94,0.35);
}

/* Feature icon glow */
.feature-icon-wrap svg {
  filter: drop-shadow(0 0 6px rgba(34,197,94,0.4));
}
.feature-card:hover .feature-icon-wrap {
  box-shadow: 0 0 24px rgba(34,197,94,0.3);
}

/* Market price cards — coin badge glow */
.coin-badge.btc  { box-shadow: 0 0 12px rgba(247,147,26,0.2); }
.coin-badge.eth  { box-shadow: 0 0 12px rgba(98,126,234,0.2); }
.coin-badge.usdt { box-shadow: 0 0 12px rgba(38,161,123,0.2); }
.coin-badge.bnb  { box-shadow: 0 0 12px rgba(243,186,47,0.2); }
.coin-badge.sol  { box-shadow: 0 0 12px rgba(153,69,255,0.2); }

/* Rate method cards hover glow */
.rate-method-card:hover {
  box-shadow: 0 0 40px rgba(34,197,94,0.12), 0 12px 40px rgba(0,0,0,0.4);
}

/* Zero fee badge glow */
.zero-fee {
  box-shadow: 0 0 12px rgba(34,197,94,0.2);
}

/* Slab rate glow */
.slab-rate {
  text-shadow: 0 0 16px rgba(34,197,94,0.4);
}

/* Trust stat card hover glow */
.trust-stat-card:hover {
  box-shadow: 0 0 40px rgba(34,197,94,0.15), 0 12px 36px rgba(0,0,0,0.4);
}
.trust-stat-value {
  text-shadow: 0 0 24px rgba(34,197,94,0.5);
}

/* Vouch banner glow */
.vouch-banner-icon-wrap {
  box-shadow: 0 0 24px rgba(34,197,94,0.25);
}

/* VFB button extra glow */
.vfb-btn {
  box-shadow: 0 0 32px rgba(34,197,94,0.45), 0 4px 16px rgba(0,0,0,0.3);
}

/* Chat logo glow */
.chat-logo {
  box-shadow: 0 0 16px rgba(34,197,94,0.5);
}

/* FAQ open item glow */
.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: 0 0 30px rgba(34,197,94,0.1), 0 0 0 1px rgba(34,197,94,0.25);
}

/* FAQ icon glow */
.faq-icon {
  text-shadow: 0 0 12px rgba(34,197,94,0.5);
}

/* Back to top glow */
.back-to-top {
  box-shadow: 0 0 24px rgba(34,197,94,0.5), 0 4px 16px rgba(0,0,0,0.4);
}
.back-to-top:hover {
  box-shadow: 0 0 40px rgba(34,197,94,0.7), 0 8px 24px rgba(0,0,0,0.5);
}

/* Footer social links hover glow */
.social-link:hover {
  box-shadow: 0 0 16px rgba(34,197,94,0.2);
}

/* CTA title glow */
.cta-title {
  text-shadow: 0 0 60px rgba(34,197,94,0.15);
}

/* Trust bar item icon glow */
.trust-bar-item svg {
  filter: drop-shadow(0 0 4px rgba(34,197,94,0.6));
}

/* Scroll progress bar glow stronger */
#scrollProgress {
  box-shadow: 0 0 16px rgba(34,197,94,0.8), 0 0 4px rgba(34,197,94,1);
}

/* Loading screen logo glow upgrade */
.loader-logo {
  box-shadow:
    0 0 0 2px rgba(34,197,94,0.7),
    0 0 30px rgba(34,197,94,0.6),
    0 0 80px rgba(34,197,94,0.3),
    0 0 120px rgba(34,197,94,0.15);
}

/* Perk icon wrap glow */
.perk-icon-wrap {
  box-shadow: 0 0 10px rgba(34,197,94,0.12);
}

/* Rate method icon glow */
.rate-method-icon {
  box-shadow: 0 0 14px rgba(34,197,94,0.15);
}

/* Community card glow on hover */
.community-card:hover {
  box-shadow: 0 0 60px rgba(34,197,94,0.08), 0 40px 80px rgba(0,0,0,0.5);
}


/* =============================================
   MOBILE FIX — RESPONSIVE OVERHAUL
   Fixes layout jumping/shifting on phones
============================================= */

/* ── BASE: prevent any horizontal overflow ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Hero overflow containment — glow-1 (900px) aur glow-2 (right:-150px) clip ho jayein */
.hero {
  overflow: hidden;
}

/* Fix glow-2 not spilling outside */
.glow-2 {
  right: -80px;
}

/* All fixed/absolute positioned bg elements should not create scrollWidth */
#particles-js,
.hero-bg-glow,
body::before {
  max-width: 100vw;
  overflow: hidden;
}

/* ── CONTAINER: proper padding on small screens ── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* =============================================
   NAVBAR MOBILE
============================================= */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px;
    height: 60px;
  }
  .logo {
    font-size: 17px;
  }
  .logo-img {
    width: 32px;
    height: 32px;
  }
}

/* =============================================
   HERO MOBILE
============================================= */
@media (max-width: 768px) {
  .hero {
    padding: 56px 0 48px;
  }
  .hero-title {
    font-size: clamp(34px, 9vw, 52px);
    letter-spacing: -1.5px;
  }
  .hero-subtitle {
    font-size: 15px;
    padding: 0 8px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
    width: 100%;
    border-radius: 14px;
  }
  .stat-divider {
    width: 60%;
    height: 1px;
  }
  .stat-value { font-size: 20px; }
}

/* =============================================
   HOW IT WORKS — STEPS MOBILE
============================================= */
@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    gap: 0;
  }
  .step-card {
    width: 100%;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: 8px 0;
    font-size: 20px;
    text-align: center;
  }
}

/* =============================================
   RATES SECTION MOBILE — THE BIG FIX
============================================= */

/* Market price cards — 2 per row on mobile */
@media (max-width: 600px) {
  .market-prices-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .market-price-card {
    min-width: unset;
    padding: 10px 12px;
    gap: 8px;
  }
  .coin-badge {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 7px;
  }
  .mp-price {
    font-size: 13px;
  }
  .mp-label {
    font-size: 9px;
  }
}

/* Slab table — make it scroll on mobile OR reformat */
@media (max-width: 600px) {
  .rate-methods-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rate-method-header {
    padding: 14px 16px;
    gap: 10px;
  }
  .rate-method-header h3 {
    font-size: 15px;
  }
  .rate-method-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .rate-method-icon i,
  .rate-method-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Make table horizontally scrollable */
  .rate-method-card {
    overflow: visible;
  }
  .slab-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .slab-table {
    min-width: 320px;
  }
  .slab-table th {
    padding: 9px 12px;
    font-size: 10px;
  }
  .slab-table td {
    padding: 11px 12px;
  }
  .slab-range {
    font-size: 13px;
    white-space: nowrap;
  }
  .slab-rate {
    font-size: 14px;
    white-space: nowrap;
  }
  .best-rate-badge {
    display: none; /* hide on very small screens to save space */
  }
  .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
  }
}

/* =============================================
   TESTIMONIALS / TRUST SECTION MOBILE
============================================= */
@media (max-width: 540px) {
  .trust-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .trust-stat-card {
    padding: 18px 14px;
  }
  .trust-stat-value {
    font-size: 22px;
  }
  .trust-stat-label {
    font-size: 12px;
  }
  .trust-stat-sub {
    font-size: 10.5px;
  }
  .trust-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =============================================
   COMMUNITY SECTION MOBILE
============================================= */
@media (max-width: 768px) {
  .community-card {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 28px;
    border-radius: 16px;
  }
  .community-title {
    font-size: clamp(22px, 6vw, 32px);
  }
}

/* =============================================
   CTA SECTION MOBILE
============================================= */
@media (max-width: 600px) {
  .cta-section {
    padding: 64px 0;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .cta-subtitle {
    font-size: 15px;
  }
}

/* =============================================
   LOADER MOBILE FIX
============================================= */
@media (max-width: 480px) {
  .loader-bar-wrap {
    width: calc(100vw - 80px);
    max-width: 280px;
  }
  .loader-brand {
    font-size: 26px;
  }
  .loader-tagline {
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
    padding: 0 16px;
  }
  .loader-coins {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
  }
  .loader-corner {
    width: 28px;
    height: 28px;
  }
  .loader-corner.tl { top: 16px; left: 16px; }
  .loader-corner.tr { top: 16px; right: 16px; }
  .loader-corner.bl { bottom: 16px; left: 16px; }
  .loader-corner.br { bottom: 16px; right: 16px; }
}

/* =============================================
   VOUCH BANNER MOBILE
============================================= */
@media (max-width: 480px) {
  .vouch-banner {
    padding: 16px;
    border-radius: 14px;
  }
  .vouch-banner-title {
    font-size: 14px;
  }
  .vouch-banner-sub {
    font-size: 12px;
  }
  .vouch-banner-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .vouch-footer-banner {
    padding: 18px 16px;
    border-radius: 14px;
  }
  .vfb-title {
    font-size: 15px;
  }
  .vfb-sub {
    font-size: 12px;
  }
}

/* =============================================
   SECTION GENERAL MOBILE PADDING
============================================= */
@media (max-width: 600px) {
  .section {
    padding: 48px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-title {
    font-size: clamp(22px, 7vw, 32px);
  }
  .section-subtitle {
    font-size: 14px;
  }
}

/* =============================================
   VIDEO SECTION MOBILE
============================================= */
@media (max-width: 600px) {
  .video-thumbnail {
    border-radius: 12px;
  }
  .play-btn-thumb svg {
    width: 56px;
    height: 56px;
  }
  .vm-box {
    border-radius: 12px;
    margin: 0 8px;
  }
  .vm-header {
    padding: 12px 14px;
  }
  .video-modal {
    padding: 12px;
  }
}

/* =============================================
   TRUST BAR MOBILE
============================================= */
@media (max-width: 480px) {
  .trust-bar-item {
    padding: 0 18px;
    font-size: 12px;
  }
  .trust-bar-item span {
    white-space: nowrap;
  }
}

/* =============================================
   FAQ MOBILE
============================================= */
@media (max-width: 480px) {
  .faq-question {
    padding: 16px 18px;
    font-size: 14px;
  }
  .faq-answer p {
    padding: 4px 18px 16px;
    font-size: 13.5px;
  }
}

/* =============================================
   BACK TO TOP & TOAST — MOBILE SAFE AREA
============================================= */
@media (max-width: 480px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .toast-container {
    bottom: 70px;
  }
}

/* =============================================
   COUNTER ANIMATION — NUMBER GLOW ON TRIGGER
============================================= */

/* When counter starts, number glows briefly */
@keyframes counterReveal {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.stat-value,
.trust-stat-value {
  animation: none;
  display: inline-block;
}

/* Triggered via JS when counter starts */
.stat-value.counting,
.trust-stat-value.counting {
  animation: counterReveal 0.35s ease forwards;
}

/* Trust stat cards — slide up on scroll trigger */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-stat-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-stat-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Hero stat items — same reveal */
.stat {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat.in-view {
  opacity: 1;
  transform: translateY(0);
}
