@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #020817;
  --bg-secondary: #0a0f1e;
  --bg-card: rgba(255,255,255,0.03);
  --accent: #3b82f6;
  --accent-2: #8b5cf6;
  --accent-glow: #06b6d4;
  --neon: #00f5ff;
  --gold: #f59e0b;
  --white: #ffffff;
  --text-muted: #94a3b8;
  --border: rgba(59,130,246,0.2);
  --border-bright: rgba(59,130,246,0.5);
  --radius: 16px;
  --container: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
  padding: 0 20px;
}

/* ── SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  color: #94a3b8;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.social-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.social-icon:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(59,130,246,0.5), 0 0 20px rgba(139,92,246,0.3);
}

.social-icon:hover::after { opacity: 1; }
.social-icon:hover svg { transform: scale(1.15); }

.social-line {
  width: 2px;
  height: 70px;
  background: linear-gradient(to bottom, rgba(59,130,246,0.6), transparent);
  margin-top: 4px;
  border-radius: 2px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(2,8,23,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* Legal Navbar - Simplified for legal pages */
.legal-navbar {
  position: sticky !important;
  top: 0 !important;
  background: rgba(2,8,23,0.95) !important;
  border-bottom: 1px solid var(--border) !important;
  backdrop-filter: blur(10px);
  z-index: 100 !important;
  padding: 16px 0 !important;
}

.legal-navbar .nav-container {
  width: min(calc(100% - 80px), var(--container)) !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.legal-navbar .nav-logo {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--white);
  transition: opacity 0.3s;
}

.legal-navbar .nav-logo-text {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-navbar .nav-cta {
  margin: 0;
  padding: 10px 20px;
  font-size: 14px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 80px;
  overflow: hidden;
  background: var(--bg-primary);
  width: 100%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 70%);
  top: -100px; left: -150px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
  top: 20%; right: -150px;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 70%);
  bottom: 0; left: 30%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(59,130,246,0.06) 0, rgba(59,130,246,0.06) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(59,130,246,0.06) 0, rgba(59,130,246,0.06) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-text {
  flex: 1;
  text-align: left;
  max-width: 650px;
}

.hero-image {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-person-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 2/3;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 0 200px 200px;
  border: 3px solid rgba(0,212,255,0.4);
  box-shadow: 0 0 60px rgba(0,212,255,0.2), 0 20px 60px rgba(0,0,0,0.5);
  display: block;
  margin: 0 auto;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--neon), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 10px;
}

/* ── HERO CTA BUTTONS ── */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.45s;
}
.hero-btn:hover::before { left: 100%; }

.hero-btn-primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 28px rgba(37,99,235,0.45);
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 44px rgba(37,99,235,0.65);
}

.hero-btn-green {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 28px rgba(22,163,74,0.35);
}
.hero-btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 44px rgba(22,163,74,0.55);
}

.hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(59,130,246,0.6);
  box-shadow: 0 0 18px rgba(59,130,246,0.15);
}
.hero-btn-outline:hover {
  background: rgba(59,130,246,0.12);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(59,130,246,0.3);
}

/* ── HERO TRUST BAR ── */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
}

.trust-dot {
  color: rgba(255,255,255,0.2);
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 640px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hero-text {
    text-align: center;
    max-width: 100%;
  }
  .hero-subtitle { margin: 0 auto 40px; }
  .stats-bar { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-image { flex: unset; width: 100%; }
  .hero-person-img { height: 420px; max-width: 300px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-btn {
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ── STATS BAR ── */
.stats-bar-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Desktop: hero-text wala hide, full-width wala show */
.stats-bar { display: flex; }
.stats-bar-full { display: flex; }
.stats-bar:not(.stats-bar-full) { display: none; }

/* Mobile: full-width wala hide, hero-text wala show */
@media (max-width: 768px) {
  .stats-bar:not(.stats-bar-full) { display: grid; }
  .stats-bar-full { display: none !important; }
  .stats-bar-wrap { display: none; }
}
.stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 100%;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 20px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  white-space: nowrap;
}

/* ── VIDEO FRAME ── */
.video-frame {
  width: min(100%, 820px);
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(59,130,246,0.2), 0 0 120px rgba(59,130,246,0.08);
  position: relative;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(139,92,246,0.4), rgba(6,182,212,0.4));
  z-index: -1;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: #050d1a;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CTA BUTTON ── */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.glow-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(37,99,235,0.4), 0 4px 20px rgba(0,0,0,0.3);
  min-width: 320px;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.glow-btn:hover::before { left: 100%; }

.glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(37,99,235,0.6), 0 8px 30px rgba(0,0,0,0.4);
}

.glow-btn span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.glow-btn small {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.ref-link {
  font-size: 13px;
  color: var(--neon);
  word-break: break-all;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.ref-link:hover { opacity: 1; }

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  margin: 0;
}

/* ── MARQUEE TICKER ── */
.ticker-wrap {
  background: rgba(59,130,246,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.ticker-item .up { color: #22c55e; }
.ticker-item .down { color: #ef4444; }
.ticker-price { color: #fff; font-weight: 700; margin-left: 4px; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── MAIN CONTENT ── */
.main-section {
  padding: 100px 0 0;
  background: var(--bg-secondary);
  position: relative;
}

.main-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CRYPTO SECTION ── */
.crypto-section {
  padding-bottom: 80px;
}

.grad {
  background: linear-gradient(135deg, #f7931a, #627eea, #00aae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crypto-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.crypto-card {
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgba(255,255,255,0.03);
}

.crypto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  border-radius: 20px;
}

.btc-card { border-color: rgba(247,147,26,0.3); }
.btc-card::before { background: radial-gradient(circle at top left, #f7931a, transparent 70%); }
.eth-card { border-color: rgba(98,126,234,0.3); }
.eth-card::before { background: radial-gradient(circle at top left, #627eea, transparent 70%); }
.xrp-card { border-color: rgba(0,170,228,0.35); box-shadow: 0 0 30px rgba(0,170,228,0.08); }
.xrp-card::before { background: radial-gradient(circle at top left, #00aae4, transparent 70%); }

.crypto-card:hover {
  transform: translateY(-6px);
}
.btc-card:hover { box-shadow: 0 20px 50px rgba(247,147,26,0.15); }
.eth-card:hover { box-shadow: 0 20px 50px rgba(98,126,234,0.15); }
.xrp-card:hover { box-shadow: 0 20px 50px rgba(0,170,228,0.2); }

.crypto-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.crypto-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.crypto-logo svg { width: 100%; height: 100%; }

.crypto-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.crypto-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.crypto-ticker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.btc-ticker { background: rgba(247,147,26,0.15); color: #f7931a; }
.eth-ticker { background: rgba(98,126,234,0.15); color: #627eea; }
.xrp-ticker { background: rgba(0,170,228,0.15); color: #00aae4; }

.crypto-live-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(247,147,26,0.12);
  color: #f7931a;
  border: 1px solid rgba(247,147,26,0.25);
  white-space: nowrap;
}

.eth-badge { background: rgba(98,126,234,0.12); color: #627eea; border-color: rgba(98,126,234,0.25); }
.xrp-badge { background: rgba(0,170,228,0.12); color: #00aae4; border-color: rgba(0,170,228,0.3); }

.crypto-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.crypto-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.crypto-change {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.crypto-change.up { background: rgba(34,197,94,0.12); color: #22c55e; }
.crypto-change.down { background: rgba(239,68,68,0.12); color: #ef4444; }

.crypto-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 20px;
}

.crypto-desc strong { color: #e2e8f0; }

.crypto-facts {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.fact {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.fact:last-child { border-right: none; }

.fact-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.fact-lbl {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* XRP Future */
.xrp-future {
  background: linear-gradient(135deg, rgba(0,170,228,0.06), rgba(59,130,246,0.06));
  border: 1px solid rgba(0,170,228,0.2);
  border-radius: 24px;
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 80px), 1100px);
  margin: 0 auto 80px;
}

.xrp-future::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00aae4, #3b82f6, #8b5cf6);
}

.xrp-future-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.xrp-future-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}

.xrp-future-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.xrp-future-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.xrp-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.xrp-reason {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s;
}

.xrp-reason:hover { border-color: rgba(0,170,228,0.3); }

.reason-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(0,170,228,0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.reason-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.reason-body p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.65;
}

.reason-body strong { color: #e2e8f0; }

.xrp-profit-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,170,228,0.1), rgba(59,130,246,0.1));
  border: 1px solid rgba(0,170,228,0.3);
  border-radius: 14px;
  padding: 24px;
}

.xrp-profit-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }

.xrp-profit-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.xrp-profit-box p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.7;
}

.xrp-profit-box strong { color: #00aae4; }

/* ── WHY FOLLOW SHIVAMM WEALTH LEGACY ── */
.wf-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wf-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.wf-header {
  text-align: center;
  margin-bottom: 56px;
}

.wf-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.wf-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.wf-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wf-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.wf-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wf-item {
  display: grid;
  grid-template-columns: 56px 60px 1fr;
  gap: 0 20px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.wf-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--neon));
  transform: scaleY(0);
  transition: transform 0.3s;
  border-radius: 0 2px 2px 0;
}

.wf-item:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.08);
}

.wf-item:hover::before { transform: scaleY(1); }

.wf-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  text-align: center;
  user-select: none;
}

.wf-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.wf-content p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .wf-section { padding: 60px 0; }
  .wf-item { grid-template-columns: 40px 48px 1fr; gap: 0 12px; padding: 18px 16px; }
  .wf-num { font-size: 24px; }
  .wf-icon { width: 44px; height: 44px; border-radius: 10px; }
  .wf-icon svg { width: 22px; height: 22px; }
  .wf-content h4 { font-size: 14px; }
  .wf-content p { font-size: 13px; }
}

/* ── GLOBAL COMMUNITY PRESENCE ── */
.gcp-section {
  background: var(--bg-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gcp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.gcp-header {
  text-align: center;
  margin-bottom: 52px;
}

.gcp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 14px;
}

.gcp-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.gcp-grad {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gcp-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.gcp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gcp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.gcp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,212,255,0.05), transparent 70%);
  pointer-events: none;
}

.gcp-card:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,212,255,0.08);
}

.gcp-flag {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}

.gcp-info {
  flex: 1;
}

.gcp-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.gcp-info span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.gcp-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.gcp-hot    { background: rgba(239,68,68,0.12);   color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.gcp-new    { background: rgba(59,130,246,0.12);  color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }
.gcp-active { background: rgba(34,197,94,0.12);   color: #86efac; border: 1px solid rgba(34,197,94,0.25); }

.gcp-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  flex-wrap: wrap;
}

.gcp-stat {
  text-align: center;
  padding: 0 32px;
}

.gcp-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.gcp-stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gcp-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 900px) {
  .gcp-grid { grid-template-columns: repeat(2, 1fr); }
  .gcp-section { padding: 70px 0; }
  .gcp-stat { padding: 0 20px; }
}

@media (max-width: 640px) {
  .gcp-section { padding: 50px 0; }
  .gcp-grid { grid-template-columns: 1fr; gap: 12px; }
  .gcp-footer { gap: 16px; padding: 20px 16px; }
  .gcp-divider { display: none; }
  .gcp-stat { padding: 8px 16px; }
  .gcp-stat-val { font-size: 22px; }
}

/* ── MISSION & VISION SECTION ── */
.mv-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mv-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}

.mv-header {
  text-align: center;
  margin-bottom: 56px;
}

.mv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.mv-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
}

.mv-grad {
  background: linear-gradient(135deg, var(--accent-2), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.mv-mission {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.06));
  border: 1px solid rgba(59,130,246,0.25);
}

.mv-vision {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(0,212,255,0.06));
  border: 1px solid rgba(139,92,246,0.25);
}

.mv-mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
}

.mv-vision::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--neon));
}

.mv-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mv-icon {
  font-size: 36px;
  line-height: 1;
}

.mv-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mv-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
}

.mv-line {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 24px 0;
}

.mv-pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mv-pillar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 6px 14px;
}

.mv-goal {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 16px;
  padding: 20px 24px;
}

.mv-goal-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.mv-goal-text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.mv-goal-text strong { color: #fff; }

@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; gap: 20px; }
  .mv-section { padding: 70px 0; }
}

@media (max-width: 640px) {
  .mv-section { padding: 50px 0; }
  .mv-card { padding: 28px 20px; }
  .mv-goal { flex-direction: column; gap: 12px; text-align: center; }
  .mv-goal-num { font-size: 28px; }
}

/* ── GLOBAL SPACING FIX ── */

/* All sections - minimal padding */
.who-shivamm-section,.swl-section,.strategy-section,.orm-section,
.xab-featured-section,.benefits-xab-section,.testi-section,.vf-section,
.wtf-section,.lf-section,.faq-section,.mv-section,.wf-section,.gcp-section { padding: 24px 0; }
.main-section { padding: 20px 0 0; }

.team-india-outer { padding: 0 0 20px; }
.final-cta-section { padding: 0 0 20px; }
.wtf-section { padding: 0 0 24px; }

/* Banner card */
.banner-card { margin-bottom: 14px; padding: 20px 20px; }

/* Section headers */
.section-header,.strategy-header,.xab-feat-header,.vf-header,.wtf-header,
.faq-header,.mv-header,.wf-header,.gcp-header,.testi-header,.swl-header { margin-bottom: 14px; }

/* Grids gap */
.testi-grid,.gcp-grid,.wtf-grid,.xab-why-grid,.benefits-grid { gap: 8px; }
.xab-what-cards,.xab-benefits-grid { gap: 8px; }
.wf-list,.faq-list,.swl-features,.orm-checklist { gap: 6px; }
.mv-grid { gap: 8px; }
.ws-bullets { gap: 6px; margin: 8px 0 10px; }
.strategy-steps { gap: 0; }
.strategy-step { padding-bottom: 18px; }
.earn-steps { margin-bottom: 14px; }
.team-india-grid { gap: 8px; margin-bottom: 14px; }
.vf-grid { gap: 8px; margin-bottom: 14px; }
.orm-criteria { gap: 6px; margin-bottom: 10px; }
.lf-benefits { gap: 6px; }
.lf-form { gap: 8px; }
.mv-pillars { gap: 6px; }
.final-cta-btns { gap: 8px; margin-bottom: 10px; }

/* Cards padding */
.testi-card { padding: 14px 12px; gap: 8px; }
.gcp-card { padding: 10px 12px; }
.wtf-card { padding: 16px 10px; }
.xab-why-card { padding: 16px 14px; }
.xab-what-card { padding: 10px 10px; }
.benefit-card { padding: 14px 12px; }
.xab-benefit-item { padding: 0.8rem; }
.wf-item { padding: 10px 14px; }
.faq-q { padding: 10px 14px; }
.mv-card { padding: 18px 16px; }
.swl-feature { padding: 7px 10px; }
.orm-check-item { padding: 7px 10px; }
.ws-bullet { padding: 6px 10px; }
.pred-card { padding: 14px 12px; }
.ti-card { padding: 12px 10px; }
.fv-guide-step { padding: 12px 12px; }
.xab-learn-item { padding: 8px 12px; }

/* XAB sections */
.xab-what-grid { margin-bottom: 16px; padding: 20px 20px; }
.xab-how-wrap { margin-bottom: 16px; }
.xab-why-wrap { margin-bottom: 16px; }
.xab-how-steps { padding: 16px 16px; }
.xab-learn-wrap { padding: 16px 16px; }
.arb-explain-wrap { margin-bottom: 16px; }

/* ORM */
.orm-inner { gap: 20px; }
.orm-card { padding: 16px 16px; }
.orm-card h4 { margin-bottom: 10px; }

/* Lead funnel */
.lf-inner { gap: 20px; padding: 24px 24px; }
.lf-form-card { padding: 16px 14px; }
.lf-form-header { margin-bottom: 12px; }
.lf-desc { margin-bottom: 12px; }

/* Who is Shivamm */
.ws-inner { gap: 28px; padding: 28px 28px; }
.ws-bio { margin-bottom: 6px; }

/* SWL */
.swl-content-row { gap: 16px; }
.swl-goal-card { padding: 16px 14px; }
.swl-goal-icon { margin-bottom: 6px; }
.swl-goal-card h4 { margin-bottom: 6px; }

/* Team India */
.team-india-section { padding: 20px 20px; }
.team-india-header { margin-bottom: 14px; }
.team-cta { padding: 20px 20px; }
.team-cta-text p { margin-bottom: 12px; }

/* GCP footer */
.gcp-footer { padding: 12px 16px; }
.gcp-stat { padding: 0 14px; }

/* VF section */
.vf-main-video { margin-bottom: 10px; }
.vf-unlock { padding: 24px 20px; }
.vf-main-info { padding: 12px 14px; }
.vf-card-info { padding: 8px 10px 12px; }

/* Benefits */
.arb-cta-box { margin-top: 0.8rem; padding: 1rem; }
.xab-earn-highlight { padding: 14px; }

/* Prediction */
.xrp-prediction { padding: 20px 20px; margin-bottom: 16px; }
.prediction-timeline { margin-bottom: 12px; }
.technical-indicators { padding: 14px; margin-bottom: 12px; }
.technical-indicators h4 { margin-bottom: 10px; }
.prediction-verdict { padding: 12px; }

/* Comparison */
.comparison-section { margin-bottom: 16px; }
.comparison-verdict { padding: 12px; }

/* Mission Vision */
.mv-line { margin: 10px 0; }
.mv-goal { padding: 12px 14px; }

/* FAQ */
.faq-item.open .faq-a { max-height: 300px; padding: 0 14px 10px; }
.faq-a { padding: 0 14px; }
.faq-a p { padding-top: 8px; }

/* Final CTA */
.final-cta-inner { padding: 28px 24px; }
.final-cta-tag { margin-bottom: 10px; }
.final-cta-heading { margin-bottom: 8px; }
.final-cta-sub { margin: 0 auto 16px; }
.final-cta-stats { margin: 0 auto 16px; padding: 10px 16px; }

/* Container */
.container { width: min(calc(100% - 80px), var(--container)); margin: 0 auto; padding: 0 20px; }

@media (max-width: 900px) {
  .who-shivamm-section,.swl-section,.strategy-section,.orm-section,
  .xab-featured-section,.benefits-xab-section,.testi-section,.vf-section,
  .wtf-section,.lf-section,.faq-section,.mv-section,.wf-section,.gcp-section { padding: 18px 0; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 32px); padding: 0 8px; }
  .who-shivamm-section,.swl-section,.strategy-section,.orm-section,
  .xab-featured-section,.benefits-xab-section,.testi-section,.vf-section,
  .wtf-section,.lf-section,.faq-section,.mv-section,.wf-section,.gcp-section { padding: 14px 0; }
  .banner-card { padding: 16px 12px; margin-bottom: 10px; }
  .xab-what-grid { padding: 14px 10px; margin-bottom: 12px; }
  .xab-how-steps { padding: 12px 8px; }
  .xab-learn-wrap { padding: 12px 10px; }
  .team-india-section { padding: 14px 12px; }
  .team-cta { padding: 14px 12px; }
  .vf-unlock { padding: 16px 12px; }
  .lf-form-card { padding: 14px 10px; }
  .lf-inner { padding: 14px 12px; }
  .orm-card { padding: 12px 10px; }
  .mv-card { padding: 14px 12px; }
  .testi-card { padding: 12px 10px; }
  .wf-item { padding: 8px 10px; }
  .xrp-prediction { padding: 14px 10px; }
  .ws-inner { padding: 16px 12px; gap: 16px; }
  .final-cta-inner { padding: 20px 14px; }
}


/* wtf mobile attractive */
@media (max-width: 640px) {
  .wtf-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139,92,246,0.2);
    position: relative;
    overflow: hidden;
  }
  .wtf-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(139,92,246,0.08), transparent 70%);
    pointer-events: none;
  }
  .wtf-icon {
    width: 52px;
    height: 52px;
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 8px;
    line-height: 1;
  }
}

/* ── GLOBAL SPACING FIX END ── */

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.testi-header {
  text-align: center;
  margin-bottom: 52px;
}

.testi-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.testi-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.testi-grad {
  background: linear-gradient(135deg, var(--accent-2), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testi-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--neon));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.testi-card:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139,92,246,0.1);
}

.testi-card:hover::before { transform: scaleX(1); }

.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--neon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-section { padding: 70px 0; }
}

@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-section { padding: 50px 0; }
  .testi-card { padding: 20px 16px; }
}

/* ── FOOTER UPDATED ── */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  width: 100%;
}

.footer-brand .footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--accent); }

.footer-dot {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .footer-top { flex-direction: column; gap: 20px; }
  .footer-links { gap: 12px; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s, padding 0.3s;
  animation: wa-bounce 3s ease-in-out infinite;
  max-width: 320px;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37,211,102,0.6), 0 4px 16px rgba(0,0,0,0.3);
}

.wa-float-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-float-label {
  line-height: 1.3;
  white-space: nowrap;
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 640px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 12px 14px;
    border-radius: 50%;
    max-width: unset;
  }
  .wa-float-label { display: none; }
  .wa-float-icon { width: 44px; height: 44px; }
}

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--bg-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.faq-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.faq-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(59,130,246,0.4);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  
}

.faq-q:hover { background: rgba(59,130,246,0.05); }

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: rgba(59,130,246,0.2);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

@media (max-width: 640px) {
  .faq-section { padding: 60px 0; }
  .faq-q { padding: 16px 18px; font-size: 14px; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
}

/* ── LEAD FUNNEL SECTION ── */
.lf-section {
  background: var(--bg-secondary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.lf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.lf-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 24px;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

.lf-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent-2));
}

.lf-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.lf-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  bottom: 16px;
}


.lf-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lf-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.lf-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lf-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #cbd5e1;
}

.lf-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  box-shadow: 0 0 8px rgba(59,130,246,0.6);
}

/* Form Card */
.lf-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.lf-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
}

.lf-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.lf-form-icon {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1;
}

.lf-form-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.lf-form-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.lf-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lf-field label {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.lf-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lf-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.lf-input-wrap svg { flex-shrink: 0; }

.lf-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 0;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.lf-input-wrap input::placeholder { color: #475569; }

.lf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(37,99,235,0.4);
  margin-top: 4px;
}

.lf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(37,99,235,0.6);
}

.lf-privacy {
  font-size: 12px;
  color: #475569;
  text-align: center;
  margin-top: 4px;
}

/* Success State */
.lf-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.lf-success-icon { font-size: 48px; margin-bottom: 12px; line-height: 1; }

.lf-success h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 10px;
}

.lf-success p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .lf-inner { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
  .lf-section { padding: 48px 0; }
  .lf-desc { max-width: 100%; }
}

@media (max-width: 640px) {
  .lf-section { padding: 36px 0; }
  .lf-inner { padding: 20px 16px; border-radius: 18px; }
  .lf-form-card { padding: 20px 14px; }
  .lf-heading { font-size: clamp(18px, 5vw, 26px); }
}

/* ── WHO THIS PLATFORM IS FOR ── */
.wtf-section {
  background: var(--bg-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wtf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(139,92,246,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.wtf-header {
  text-align: center;
  margin-bottom: 56px;
}

.wtf-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.wtf-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.wtf-grad {
  background: linear-gradient(135deg, var(--accent-2), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wtf-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.wtf-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.wtf-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.wtf-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--neon));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.wtf-card:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(139,92,246,0.12);
}

.wtf-card:hover::before { transform: scaleX(1); }

.wtf-icon {
  font-size: 44px;
  margin-bottom: 16px;
  line-height: 1;
}

.wtf-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.wtf-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .wtf-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .wtf-section { padding: 0 0 18px; }
}

@media (max-width: 640px) {
  .wtf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .wtf-section { padding: 0 0 14px; }
  .wtf-card {
    padding: 16px 10px;
    border-radius: 14px;
  }
  .wtf-icon { font-size: 32px; margin-bottom: 10px; }
  .wtf-card h4 { font-size: 13px; margin-bottom: 6px; }
  .wtf-card p { font-size: 11.5px; line-height: 1.5; }
  /* Last card full width on mobile */
  .wtf-grid .wtf-card:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ── VIDEO FUNNEL SECTION ── */
.vf-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vf-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.vf-header {
  text-align: center;
  margin-bottom: 52px;
}

.vf-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.vf-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.vf-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vf-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Main Video */
.vf-main-video {
  position: relative;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
}

.vf-main-video::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #3b82f6, #8b5cf6);
  z-index: 1;
}

.vf-main-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(245,158,11,0.92);
  color: #000;
}

.vf-main-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #050d1a;
}

.vf-main-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vf-main-info {
  padding: 24px 28px;
}

.vf-main-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.vf-main-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Video Grid */
.vf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.vf-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.vf-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(59,130,246,0.1);
}

.vf-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
}

.vf-badge-blue   { background: rgba(59,130,246,0.9);  color: #fff; }
.vf-badge-green  { background: rgba(34,197,94,0.9);   color: #000; }
.vf-badge-purple { background: rgba(139,92,246,0.9);  color: #fff; }
.vf-badge-gold   { background: rgba(245,158,11,0.9);  color: #000; }

.vf-card-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #050d1a;
  position: relative;
}

.vf-card-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.vf-card-info {
  padding: 16px 18px 20px;
}

.vf-card-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.3;
}

.vf-card-info p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Unlock CTA */
.vf-unlock {
  text-align: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.08));
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 24px;
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}

.vf-unlock::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--neon));
}

.vf-unlock-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.vf-unlock h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.vf-unlock p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .vf-section { padding: 70px 0; }
  .vf-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 640px) {
  .vf-section { padding: 50px 0; }
  .vf-main-info { padding: 18px 16px; }
  .vf-main-info h3 { font-size: 16px; }
  .vf-unlock { padding: 36px 18px; }
  .vf-unlock h3 { font-size: 20px; }
}

/* ── FEATURED OPPORTUNITY: XAB CLUB ── */
.xab-featured-section {
  background: var(--bg-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.xab-featured-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.xab-feat-header {
  text-align: center;
  margin-bottom: 64px;
}

.xab-feat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.xab-feat-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.xab-feat-grad {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xab-feat-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.xab-block-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* — What is XAB Club — */
.xab-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.xab-what-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #3b82f6, #8b5cf6);
}

.xab-what-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.xab-what-text p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
}

.xab-what-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.xab-what-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.3s, transform 0.3s;
}

.xab-what-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-3px);
}

.xab-what-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xab-what-card strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.xab-what-card span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* — How It Works — */
.xab-how-wrap {
  margin-bottom: 72px;
}

.xab-how-header {
  text-align: center;
  margin-bottom: 40px;
}

.xab-how-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
}

.xab-how-steps {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
}

.xab-how-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.xab-how-num {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xab-how-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 16px;
}

.xab-how-step:nth-child(1) .xab-how-icon { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); }
.xab-how-step:nth-child(3) .xab-how-icon { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.3); }
.xab-how-step:nth-child(5) .xab-how-icon { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); }

.xab-how-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.xab-how-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}

.xab-how-arrow {
  flex-shrink: 0;
  padding: 0 8px;
  opacity: 0.5;
}

/* — Why XRP Arbitrage Works — */
.xab-why-wrap {
  margin-bottom: 72px;
}

.xab-why-header {
  text-align: center;
  margin-bottom: 36px;
}

.xab-why-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
}

.xab-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.xab-why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.xab-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.xab-why-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,212,255,0.08);
}

.xab-why-card:hover::before { transform: scaleX(1); }

.xab-why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.xab-why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.xab-why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* — Learn Before You Join — */
.xab-learn-wrap {
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.05));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.xab-learn-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--neon));
}

.xab-learn-header {
  text-align: center;
  margin-bottom: 36px;
}

.xab-learn-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 10px 0 10px;
}

.xab-learn-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.xab-learn-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.xab-learn-grid a.xab-learn-item,
.xab-learn-grid .xab-learn-item {
  flex: 1 1 180px;
  min-width: 160px;
  max-width: 220px;
}

.xab-learn-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.xab-learn-item:hover {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.05);
  transform: translateX(5px);
}

.xab-learn-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 8px;
  padding: 4px 10px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .xab-featured-section { padding: 70px 0; }
  .xab-what-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .xab-how-steps { flex-direction: column; gap: 24px; padding: 32px 20px; }
  .xab-how-arrow { transform: rotate(90deg); }
  .xab-why-grid { grid-template-columns: 1fr; gap: 14px; }
  .xab-learn-wrap { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .xab-featured-section { padding: 50px 0; }
  .xab-feat-header { margin-bottom: 40px; }
  .xab-what-cards { grid-template-columns: 1fr; }
  .xab-what-grid { padding: 24px 16px; margin-bottom: 40px; }
  .xab-how-wrap, .xab-why-wrap { margin-bottom: 40px; }
  .xab-why-card { padding: 24px 18px; }
  .xab-learn-wrap { padding: 24px 16px; }
  .xab-learn-item { font-size: 14px; padding: 12px 14px; }
}

/* ── OPPORTUNITY RESEARCH METHOD ── */
.orm-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.orm-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.orm-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.orm-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.orm-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.orm-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orm-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.orm-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.orm-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.orm-check-item:hover {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.05);
  transform: translateX(4px);
}

.orm-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.orm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.orm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent-2));
}

.orm-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.orm-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.orm-criteria {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.orm-crit-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 6px;
}

.orm-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.orm-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  border-radius: 3px;
  animation: orm-grow 1.2s ease-out forwards;
  transform-origin: left;
}

@keyframes orm-grow {
  from { width: 0 !important; }
  to { width: var(--w); }
}

.orm-verdict {
  font-size: 13px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .orm-inner { grid-template-columns: 1fr; gap: 40px; }
  .orm-section { padding: 70px 0; }
}

@media (max-width: 640px) {
  .orm-section { padding: 50px 0; }
  .orm-heading { font-size: clamp(22px, 6vw, 32px); }
  .orm-card { padding: 24px 18px; }
  .orm-check-item { font-size: 14px; padding: 12px 14px; }
}

/* ── STRATEGY SECTION ── */
.strategy-section {
  background: var(--bg-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.strategy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.strategy-header {
  text-align: center;
  margin-bottom: 64px;
}

.strategy-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.strategy-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.strategy-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.strategy-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.strategy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.strategy-step {
  display: grid;
  grid-template-columns: 80px 72px 1fr;
  gap: 0 24px;
  align-items: start;
  position: relative;
  padding-bottom: 48px;
}

.strategy-step:last-child {
  padding-bottom: 0;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  text-align: right;
  padding-top: 4px;
  user-select: none;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.strategy-step:nth-child(1) .step-icon {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  box-shadow: 0 0 30px rgba(59,130,246,0.15);
}

.strategy-step:nth-child(2) .step-icon {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  box-shadow: 0 0 30px rgba(139,92,246,0.15);
}

.strategy-step:nth-child(3) .step-icon {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 30px rgba(0,212,255,0.15);
}

.step-connector {
  position: absolute;
  left: calc(80px + 24px + 36px);
  top: 72px;
  width: 2px;
  height: calc(100% - 72px);
  background: linear-gradient(to bottom, rgba(59,130,246,0.4), transparent);
}

.strategy-step:nth-child(2) .step-connector {
  background: linear-gradient(to bottom, rgba(139,92,246,0.4), transparent);
}

.step-content {
  padding-top: 8px;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.strategy-step:nth-child(1) .step-title { color: #93c5fd; }
.strategy-step:nth-child(2) .step-title { color: #c4b5fd; }
.strategy-step:nth-child(3) .step-title { color: #67e8f9; }

.step-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 560px;
}

.step-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

.strategy-step:nth-child(1) .step-tag {
  background: rgba(59,130,246,0.12);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,0.25);
}

.strategy-step:nth-child(2) .step-tag {
  background: rgba(139,92,246,0.12);
  color: #c4b5fd;
  border: 1px solid rgba(139,92,246,0.25);
}

.strategy-step:nth-child(3) .step-tag {
  background: rgba(0,212,255,0.1);
  color: #67e8f9;
  border: 1px solid rgba(0,212,255,0.2);
}

@media (max-width: 768px) {
  .strategy-section { padding: 70px 0; }
  .strategy-header { margin-bottom: 48px; }
  .strategy-heading { font-size: 32px; }
  .strategy-sub { font-size: 15px; }
  .strategy-steps { gap: 40px; }
  .strategy-step {
    grid-template-columns: 70px 68px 1fr;
    gap: 0 18px;
    padding-bottom: 44px;
  }
  .step-number { font-size: 44px; }
  .step-icon { width: 68px; height: 68px; border-radius: 18px; }
  .step-icon svg { width: 30px; height: 30px; }
  .step-connector { left: calc(70px + 18px + 34px); top: 68px; height: calc(100% - 68px); }
  .step-title { font-size: 22px; }
  .step-desc { font-size: 15px; }
}

@media (max-width: 640px) {
  .strategy-section { padding: 60px 0; }
  .strategy-header { margin-bottom: 40px; }
  .strategy-heading { font-size: 28px; }
  .strategy-sub { font-size: 14px; padding: 0 20px; }
  .strategy-steps { gap: 32px; }
  .strategy-step {
    grid-template-columns: 60px 64px 1fr;
    gap: 0 16px;
    padding-bottom: 40px;
    align-items: flex-start;
  }
  .step-number { font-size: 40px; padding-top: 2px; }
  .step-icon { width: 64px; height: 64px; border-radius: 16px; }
  .step-icon svg { width: 28px; height: 28px; }
  .step-connector { left: calc(60px + 16px + 32px); top: 64px; height: calc(100% - 64px); }
  .step-content { padding-top: 6px; }
  .step-title { font-size: 20px; line-height: 1.3; margin-bottom: 8px; }
  .step-desc { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
  .step-tag { font-size: 11px; padding: 4px 12px; }
}

@media (max-width: 480px) {
  .strategy-section { padding: 50px 0; }
  .strategy-header { margin-bottom: 32px; }
  .strategy-heading { font-size: 24px; line-height: 1.2; }
  .strategy-sub { font-size: 13px; padding: 0 16px; line-height: 1.5; }
  .strategy-steps { gap: 28px; max-width: 100%; padding: 0 16px; }
  .strategy-step {
    grid-template-columns: 50px 56px 1fr;
    gap: 0 12px;
    padding-bottom: 32px;
    align-items: flex-start;
  }
  .step-number { font-size: 32px; padding-top: 0; }
  .step-icon { width: 56px; height: 56px; border-radius: 14px; }
  .step-icon svg { width: 24px; height: 24px; }
  .step-connector { left: calc(50px + 12px + 28px); top: 56px; height: calc(100% - 56px); width: 1px; }
  .step-content { padding-top: 4px; }
  .step-title { font-size: 18px; line-height: 1.3; margin-bottom: 6px; }
  .step-desc { font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
  .step-tag { font-size: 10px; padding: 3px 10px; }
}

@media (max-width: 360px) {
  .strategy-section { padding: 40px 0; }
  .strategy-header { margin-bottom: 24px; }
  .strategy-heading { font-size: 22px; }
  .strategy-sub { font-size: 12px; padding: 0 12px; }
  .strategy-steps { gap: 24px; padding: 0 12px; }
  .strategy-step {
    grid-template-columns: 45px 50px 1fr;
    gap: 0 10px;
    padding-bottom: 28px;
  }
  .step-number { font-size: 28px; }
  .step-icon { width: 50px; height: 50px; border-radius: 12px; }
  .step-icon svg { width: 22px; height: 22px; }
  .step-connector { left: calc(45px + 10px + 25px); top: 50px; height: calc(100% - 50px); }
  .step-title { font-size: 16px; margin-bottom: 4px; }
  .step-desc { font-size: 12px; line-height: 1.4; margin-bottom: 8px; }
  .step-tag { font-size: 9px; padding: 2px 8px; }
}

@media (max-width: 320px) {
  .strategy-steps { padding: 0 8px; }
  .strategy-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 24px;
  }
  .step-number { order: -1; align-self: flex-start; margin-bottom: 8px; }
  .step-icon { order: 1; align-self: center; }
  .step-content { order: 2; text-align: center; }
  .step-connector { display: none; }
  .strategy-heading { font-size: 20px; text-align: center; }
  .strategy-sub { text-align: center; }
}

/* ── SHIVAMM WEALTH LEGACY SECTION ── */
.swl-section {
  background: var(--bg-secondary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.swl-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}

.swl-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.swl-header {
  text-align: center;
  margin-bottom: 52px;
}

.swl-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.swl-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.swl-grad {
  background: linear-gradient(135deg, var(--accent-2), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.swl-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

.swl-content-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.swl-intro {
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.swl-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.swl-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}

.swl-feature:hover {
  border-color: rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.05);
}

.swl-feat-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swl-feature div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.swl-feature strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.swl-feature span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.swl-goal-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.swl-goal-card {
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(59,130,246,0.08));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.swl-goal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--neon));
}

.swl-goal-icon {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
}

.swl-goal-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.swl-goal-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.75;
}

.swl-goal-card strong { color: var(--neon); }

.swl-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.swl-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  transition: border-color 0.3s;
}

.swl-stat:hover { border-color: rgba(139,92,246,0.4); }

.swl-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.swl-stat-lbl {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 900px) {
  .swl-content-row { grid-template-columns: 1fr; gap: 32px; }
  .swl-goal-col { position: static; }
  .swl-section { padding: 60px 0; }
}

@media (max-width: 640px) {
  .swl-section { padding: 48px 0; }
  .swl-heading { font-size: clamp(22px, 6vw, 32px); }
  .swl-desc { font-size: 14px; }
  .swl-feature { padding: 12px 14px; }
  .swl-feature strong { font-size: 13px; }
  .swl-goal-card { padding: 24px 18px; }
  .swl-stat-val { font-size: 20px; }
}

/* ── WHO IS SHIVAMM BANNER HEADING ── */
.who-shivamm-banner {
  text-align: center;
  padding: 100px 20px 80px;
  margin-bottom: 40px;
  background: var(--bg-secondary);
  position: relative;
}

.who-shivamm-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.wsb-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.wsb-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.wsb-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wsb-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .who-shivamm-banner { padding: 48px 16px 0; }
  .wsb-heading { font-size: clamp(24px, 7vw, 36px); }
  .wsb-sub { font-size: 13px; }
}

/* ── WHO IS SHIVAMM SECTION ── */
.who-shivamm-section {
  background: var(--bg-secondary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.who-shivamm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(139,92,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ws-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 28px;
  padding: 48px 48px;
  position: relative;
  overflow: hidden;
}

.ws-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent-2));
}

.ws-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ws-img-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.ws-img-glow {
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--neon), var(--accent-2));
  background-size: 300% 300%;
  animation: qr-border-spin 4s linear infinite;
  z-index: 0;
  opacity: 0.7;
}

.ws-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 2/3;
  max-height: 520px;
}

.ws-img-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(2,8,23,0.92);
  border: 1px solid var(--border-bright);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  max-width: calc(100% - 20px);
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .ws-img-badge {
    font-size: 10px;
    padding: 6px 10px;
    gap: 4px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ws-img-badge svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
  }
}

.ws-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.ws-follow-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.ws-soc {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s;
  background: rgba(255,255,255,0.03);
}

.ws-soc:hover { transform: translateY(-3px); color: #fff; }
.ws-soc-fb:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 6px 20px rgba(24,119,242,0.4); }
.ws-soc-ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.ws-soc-wa:hover { background: #25d366; border-color: #25d366; }
.ws-soc-yt:hover { background: #ff0000; border-color: #ff0000; }

.ws-content-col { padding-top: 0; }

.ws-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.ws-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
  margin-top: 20px;
}

.ws-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-bio {
  font-size: 14px;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 12px;
}

.ws-bio strong { color: #e2e8f0; }

.ws-bullets {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 14px 0 18px;
}

.ws-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s;
}

.ws-bullet:hover {
  border-color: rgba(59,130,246,0.35);
  background: rgba(59,130,246,0.05);
}

.ws-check {
  width: 22px; height: 22px;
  min-width: 22px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.ws-bullet div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ws-bullet strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.ws-bullet span {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.ws-stats-row {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.ws-stat {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  border-right: 1px solid var(--border);
}

.ws-stat:last-child { border-right: none; }

.ws-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-stat-lbl {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .ws-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .ws-image-col { order: 2; flex-direction: row; align-items: flex-start; gap: 24px; }
  .ws-content-col { order: 1; }
  .ws-img-wrap { max-width: 200px; flex-shrink: 0; }
  .ws-img { aspect-ratio: 3/4; max-height: 260px; }
  .ws-social-row { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .who-shivamm-section { padding: 36px 0; }
  .ws-inner { padding: 24px 16px; gap: 24px; border-radius: 20px; }
  .ws-image-col { flex-direction: column; align-items: center; }
  .ws-img-wrap { max-width: 180px; }
  .ws-img { max-height: 220px; }
  .ws-heading { font-size: 18px; }
  .ws-bio { font-size: 13px; }
  .ws-bullet strong { font-size: 12px; }
  .ws-bullet span { font-size: 11px; }
}

/* ── BANNER CARD ── */
.banner-card {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.15));
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.banner-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(59,130,246,0.08), transparent 60%);
  pointer-events: none;
}

.banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff, var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── INTRO GRID ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #fff;
}

.intro-copy h3 {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.intro-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.intro-copy ul {
  padding-left: 0;
  list-style: none;
  margin: 16px 0;
}

.intro-copy ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.intro-copy ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.intro-copy strong { color: #fff; }

.intro-image-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(59,130,246,0.15);
  position: relative;
}

.intro-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,8,23,0.4), transparent 50%);
  pointer-events: none;
}

.intro-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 80px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.glass-card p {
  font-size: 15px;
  line-height: 1.85;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.glass-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.glass-card ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.glass-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.glass-card strong { color: #fff; }

.strong-line {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: rgba(59,130,246,0.1);
  border-left: 3px solid var(--accent);
  padding: 12px 16px !important;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
}

/* ── BENEFITS GRID ── */
.benefits { margin-bottom: 80px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.benefit-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHO SECTION ── */
.who-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 0;
}

.who-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.who-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-section ul li {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
  padding: 14px 20px 14px 52px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
}

.who-section ul li::before {
  content: '⚡';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── FINAL SECTION ── */
.final-section {
  background: var(--bg-primary);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.final-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
  pointer-events: none;
}

.final-content { text-align: center; position: relative; z-index: 1; }

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.final-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.final-section h2 .accent { color: var(--accent); }

.final-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.final-video {
  width: min(100%, 800px);
  margin: 0 auto 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(59,130,246,0.15);
}

.final-video .video-placeholder { aspect-ratio: 16/9; background: #050d1a; }

.final-btn {
  min-width: 360px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  box-shadow: 0 0 40px rgba(245,158,11,0.3);
}

.final-btn:hover {
  box-shadow: 0 0 60px rgba(245,158,11,0.5);
}

.final-graphic {
  width: min(100%, 480px);
  margin: 0 auto 48px;
  filter: drop-shadow(0 0 30px rgba(59,130,246,0.3));
}

.closing-box {
  width: min(100%, 760px);
  margin: 0 auto 60px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.closing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent-2));
}

.closing-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.closing-box p:last-child { margin-bottom: 0; }
.closing-box strong { color: #fff; }

/* ── QR SECTION ── */
.qr-section {
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.qr-card {
  position: relative;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(59,130,246,0.2), 0 0 120px rgba(59,130,246,0.06);
}

.qr-card canvas {
  display: block;
  border-radius: 8px;
}

.qr-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--neon), var(--accent-2), var(--accent));
  background-size: 300% 300%;
  animation: qr-border-spin 4s linear infinite;
  z-index: -1;
  opacity: 0.7;
}

@keyframes qr-border-spin {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.qr-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--neon);
  border-style: solid;
}
.qr-tl { top: 8px; left: 8px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.qr-tr { top: 8px; right: 8px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.qr-bl { bottom: 8px; left: 8px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.qr-br { bottom: 8px; right: 8px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

.qr-user-id {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  padding: 10px 24px;
}

.qr-user-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.qr-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qr-hint {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 320px;
  text-align: center;
  line-height: 1.6;
}

/* ── FINAL CTA SECTION ── */
.final-cta-section {
  padding: 0 0 48px;
  background: var(--bg-secondary);
}

.final-cta-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.12), rgba(0,212,255,0.08));
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent-2), var(--accent));
  background-size: 200%;
  animation: gold-shine 3s linear infinite;
}

.final-cta-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.final-cta-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.final-cta-grad {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.final-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 32px;
  width: fit-content;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.final-cta-stat {
  text-align: center;
  padding: 0 24px;
}

.final-cta-stat span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 3px;
}

.final-cta-stat small {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.final-cta-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.final-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(37,99,235,0.4);
}

.final-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(37,99,235,0.6);
}

.final-cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(22,163,74,0.3);
}

.final-cta-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(22,163,74,0.5);
}

.final-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .final-cta-inner { padding: 36px 20px; border-radius: 20px; }
  .final-cta-heading { font-size: clamp(22px, 6vw, 32px); }
  .final-cta-stats { padding: 12px 16px; gap: 8px; }
  .final-cta-stat { padding: 0 12px; }
  .final-cta-stat span { font-size: 18px; }
  .final-cta-divider { display: none; }
  .final-cta-btn-primary, .final-cta-btn-wa { width: 100%; justify-content: center; padding: 14px 20px; }
}

/* ── STRATEGY NEW DESIGN ── */
.strategy-cards-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.strategy-card {
  flex: 1;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.strategy-card:hover { transform: translateY(-6px); }
.sc-blue   { background: rgba(59,130,246,0.07);  border: 1px solid rgba(59,130,246,0.25); }
.sc-purple { background: rgba(139,92,246,0.07); border: 1px solid rgba(139,92,246,0.25); }
.sc-cyan   { background: rgba(0,212,255,0.07);  border: 1px solid rgba(0,212,255,0.25); }
.sc-blue::before   { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#3b82f6,#60a5fa); }
.sc-purple::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#8b5cf6,#c4b5fd); }
.sc-cyan::before   { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#00d4ff,#67e8f9); }
.sc-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.15;
}
.sc-blue .sc-number   { color: #3b82f6; }
.sc-purple .sc-number { color: #8b5cf6; }
.sc-cyan .sc-number   { color: #00d4ff; }
.sc-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.sc-blue .sc-icon   { background: rgba(59,130,246,0.12);  border: 1px solid rgba(59,130,246,0.3); }
.sc-purple .sc-icon { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.3); }
.sc-cyan .sc-icon   { background: rgba(0,212,255,0.12);  border: 1px solid rgba(0,212,255,0.3); }
.sc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.sc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.sc-blue .sc-title   { color: #93c5fd; }
.sc-purple .sc-title { color: #c4b5fd; }
.sc-cyan .sc-title   { color: #67e8f9; }
.sc-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 14px;
}
.sc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.sc-blue .sc-tag   { background: rgba(59,130,246,0.12);  color: #93c5fd;  border: 1px solid rgba(59,130,246,0.25); }
.sc-purple .sc-tag { background: rgba(139,92,246,0.12); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.25); }
.sc-cyan .sc-tag   { background: rgba(0,212,255,0.1);   color: #67e8f9;  border: 1px solid rgba(0,212,255,0.2); }
.strategy-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255,255,255,0.15);
  padding: 0 10px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .strategy-cards-row { flex-direction: column; gap: 12px; }
  .strategy-arrow { transform: rotate(90deg); padding: 4px 0; }
  .strategy-card { padding: 22px 18px; }
}
@media (max-width: 480px) {
  .sc-number { font-size: 36px; }
  .sc-icon { width: 50px; height: 50px; }
  .sc-title { font-size: 16px; }
}

/* ── SWL NEW DESIGN ── */
.swl-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.swl-intro-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.swl-intro-card p { font-size: 15px; color: #cbd5e1; line-height: 1.75; margin: 0; }
.swl-intro-card p strong { color: #fff; }

.swl-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.swl-feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.swl-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--neon));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.swl-feat-card:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-4px); }
.swl-feat-card:hover::before { transform: scaleX(1); }

.swl-feat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(139,92,246,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.swl-feat-icon-box {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.swl-feat-card h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.swl-feat-card p  { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.swl-goal-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(59,130,246,0.08));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 16px;
  padding: 18px 24px;
}
.swl-goal-emoji { font-size: 32px; flex-shrink: 0; line-height: 1; }
.swl-goal-text { display: flex; flex-direction: column; gap: 3px; }
.swl-goal-text strong { font-size: 14px; font-weight: 700; color: #fff; }
.swl-goal-text span { font-size: 13.5px; color: #94a3b8; line-height: 1.6; }
.swl-goal-text em { color: var(--neon); font-style: normal; font-weight: 600; }

@media (max-width: 900px) {
  .swl-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .swl-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .swl-intro-card { padding: 14px 16px; }
  .swl-goal-banner { flex-direction: column; text-align: center; padding: 16px; }
}

/* ── MISSION STATEMENT ── */
.mission-statement {
  text-align: center;
  padding: 40px 32px;
  margin-bottom: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.05));
  border-top: 1px solid rgba(59,130,246,0.15);
  border-bottom: 1px solid rgba(59,130,246,0.15);
  position: relative;
}

.mission-quote {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.6;
  color: rgba(59,130,246,0.3);
  margin-bottom: 12px;
  display: block;
}

.mission-statement p {
  font-size: clamp(15px, 2vw, 18px);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 12px;
  font-style: italic;
}

.mission-statement p strong {
  color: #fff;
  font-style: normal;
}

.mission-author {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 640px) {
  .mission-statement { padding: 28px 16px; }
  .mission-quote { font-size: 48px; }
  .mission-statement p { font-size: 14px; }
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(59,130,246,0.2);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  background: var(--bg-primary);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-icons { gap: 10px; }

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover { color: var(--accent); }

.footer-dot {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.ls-ln {
  background: #0077b5;
  color: #fff;
}
.ls-ln:hover { box-shadow: 0 8px 24px rgba(0,119,181,0.5); }

.ls-yt {
  background: #ff0000;
  color: #fff;
}
.ls-yt:hover { box-shadow: 0 8px 24px rgba(255,0,0,0.5); }

@media (max-width: 640px) {
  .footer { padding: 24px 0; gap: 12px; }
  .footer-links a { font-size: 12px; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */

/* Large screens 1280px+ — already default */

/* Tablet landscape 1100px */
@media (max-width: 1100px) {
  .social-sidebar { display: none; }
}

/* Tablet 900px */
@media (max-width: 900px) {
  .crypto-cards { grid-template-columns: 1fr; gap: 16px; }
  .xrp-reasons { grid-template-columns: 1fr; }
  .xrp-future { padding: 32px 28px; width: calc(100% - 40px); }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-image-card img { min-height: auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { padding: 16px 20px; gap: 0; }
  .stat-divider { margin: 0 20px; }
  .stat-value { font-size: 22px; }
  .main-section { padding: 70px 0 0; }
  .final-section { padding: 70px 0 40px; }
  .banner-card { padding: 36px 28px; margin-bottom: 56px; }
  .intro-grid { margin-bottom: 56px; }
  .glass-card { margin-bottom: 56px; }
  .benefits { margin-bottom: 56px; }
  .section-header { margin-bottom: 40px; }
}

/* Mobile large 640px */
@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }

  /* Fix overflow on mobile */
  main, .main-section, body { overflow-x: hidden; }

  /* Legal Navbar Responsive */
  .legal-navbar {
    padding: 12px 0 !important;
  }

  .legal-navbar .nav-inner {
    width: calc(100% - 20px);
    padding: 0 10px;
  }

  .legal-navbar .nav-logo {
    font-size: 14px;
  }

  .legal-navbar .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Orbs — mobile pe chhote karo taake overflow na ho */
  .hero-orb-1 { width: 250px; height: 250px; left: -80px; }
  .hero-orb-2 { width: 200px; height: 200px; right: -80px; }
  .hero-orb-3 { width: 180px; height: 180px; }

  /* Crypto section */
  .crypto-cards { grid-template-columns: 1fr; gap: 14px; }
  .crypto-card { padding: 20px 16px; }
  .crypto-price { font-size: 18px; }
  .xrp-future { padding: 24px 20px; width: calc(100% - 28px); }
  .xrp-future-header { flex-direction: column; gap: 12px; }
  .xrp-future-icon { font-size: 30px; }
  .xrp-reasons { grid-template-columns: 1fr; gap: 12px; }
  .xrp-reason { padding: 16px; }
  .reason-num { font-size: 22px; }
  .xrp-profit-box { flex-direction: column; gap: 12px; padding: 18px; }

  /* Navbar */
  .nav-logo { font-size: 18px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; border-radius: 6px; }

  /* Hero */
  .hero { padding: 70px 0 60px; min-height: auto; }
  .hero-content { padding: 0 4px; }
  .hero-eyebrow { font-size: 10px; padding: 5px 12px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(28px, 8vw, 42px); letter-spacing: -0.5px; margin-bottom: 16px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 28px; }

  /* Stats bar — 2x2 grid on mobile */
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 28px;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 12px 8px; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 10px; }

  /* Video */
  .video-frame { margin-bottom: 24px; border-radius: 10px; }

  /* CTA */
  .glow-btn { min-width: unset; width: 100%; padding: 16px 20px; border-radius: 10px; }
  .glow-btn span { font-size: 15px; }
  .glow-btn small { font-size: 10px; }
  .ref-link { font-size: 11px; text-align: center; }

  /* Main section */
  .main-section { padding: 50px 0 0; }
  .banner-card { padding: 28px 10px; margin-bottom: 16px; border-radius: 14px; }
  .banner-title { letter-spacing: 1px; }

  /* Intro grid */
  .intro-grid { gap: 24px; margin-bottom: 40px; }
  .intro-copy h2 { font-size: clamp(20px, 6vw, 28px); }
  .intro-copy h3 { font-size: 14px; }
  .intro-copy p, .intro-copy ul li { font-size: 14px; }

  /* Cards */
  .glass-card { padding: 20px 16px; margin-bottom: 32px; border-radius: 14px; }
  .glass-card p, .glass-card ul li { font-size: 14px; }
  .strong-line { font-size: 14px !important; }

  /* Benefits */
  .benefits { margin-bottom: 32px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: clamp(22px, 6vw, 32px); }
  .section-header p { font-size: 14px; }
  .benefit-card { padding: 20px 18px; border-radius: 12px; }
  .benefit-icon { width: 42px; height: 42px; font-size: 18px; }
  .benefit-card h4 { font-size: 14px; }
  .benefit-card p { font-size: 12px; }

  /* Who section */
  .who-section { padding: 20px 16px; border-radius: 14px; }
  .who-section h3 { font-size: 18px; margin-bottom: 16px; }
  .who-section ul li { font-size: 13px; padding: 10px 14px 10px 40px; }
  .who-section ul li::before { left: 14px; }

  /* Final section */
  .final-section { padding: 50px 0 40px; }
  .final-section h2 { font-size: clamp(24px, 7vw, 36px); letter-spacing: -0.5px; }
  .final-sub { font-size: 14px; margin-bottom: 28px; }
  .final-btn { min-width: unset; width: 100%; }
  .final-graphic { margin-bottom: 32px; }

  /* Closing box */
  .closing-box { padding: 24px 18px; border-radius: 14px; margin-bottom: 40px; }
  .closing-box p { font-size: 14px; }

  /* QR section */
  .qr-card { padding: 14px; }
  .qr-user-name { font-size: 16px; }
  .qr-hint { font-size: 12px; }

  /* Footer */
  .footer { padding: 24px 0; }
}

/* Mobile small 380px */
@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .nav-logo { font-size: 16px; }
  .nav-cta { padding: 7px 11px; font-size: 11px; }
  .stats-bar { padding: 12px; }
  .stat-value { font-size: 18px; }
  .glow-btn span { font-size: 13px; }
  .banner-title { font-size: 18px; letter-spacing: 0.5px; }

  /* Legal Navbar Extra Small */
  .legal-navbar .nav-logo {
    font-size: 12px;
  }

  .legal-navbar .nav-cta {
    padding: 7px 10px;
    font-size: 10px;
  }
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  margin-bottom: 60px;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead tr {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
  padding: 16px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  color: #94a3b8;
}

.comparison-table th:first-child { text-align: left; }

.comparison-table td {
  padding: 14px 18px;
  text-align: center;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.cat-label {
  text-align: left !important;
  font-weight: 600;
  color: #cbd5e1 !important;
  white-space: nowrap;
}

.btc-col { color: #f7931a !important; }
.eth-col { color: #627eea !important; }

.xrp-winner-col {
  background: rgba(0,170,228,0.06);
  color: #00aae4 !important;
  font-weight: 700;
}

.xrp-winner-col strong { color: #00f5ff; }

.comparison-table th.xrp-winner-col {
  color: #00aae4 !important;
  background: rgba(0,170,228,0.1);
  border-left: 1px solid rgba(0,170,228,0.2);
  border-right: 1px solid rgba(0,170,228,0.2);
}

.comparison-table td.xrp-winner-col {
  border-left: 1px solid rgba(0,170,228,0.15);
  border-right: 1px solid rgba(0,170,228,0.15);
}

.winner-crown {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #f59e0b;
  margin-top: 4px;
}

.comparison-verdict {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,170,228,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(0,170,228,0.25);
  border-radius: 14px;
  padding: 24px;
}

.verdict-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }

.comparison-verdict h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.comparison-verdict p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.comparison-verdict strong { color: #00aae4; }

/* ── XRP PREDICTION SECTION ── */
.xrp-prediction {
  margin-bottom: 60px;
  background: linear-gradient(135deg, rgba(0,170,228,0.04), rgba(59,130,246,0.04));
  border: 1px solid rgba(0,170,228,0.15);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.xrp-prediction::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00aae4, #3b82f6, #8b5cf6, #f59e0b);
}

.prediction-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
}

.pred-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pred-card:hover { transform: translateY(-4px); }

.pred-2025 { border-color: rgba(0,170,228,0.3); }
.pred-2025:hover { box-shadow: 0 16px 40px rgba(0,170,228,0.15); }
.pred-2026 { border-color: rgba(59,130,246,0.3); }
.pred-2026:hover { box-shadow: 0 16px 40px rgba(59,130,246,0.15); }
.pred-2030 { border-color: rgba(245,158,11,0.35); }
.pred-2030:hover { box-shadow: 0 16px 40px rgba(245,158,11,0.15); }

.pred-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255,255,255,0.2);
  padding: 0 12px;
  flex-shrink: 0;
}

.pred-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pred-target {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #00aae4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1;
}

.pred-2030 .pred-target {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
}

.pred-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pred-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pred-reasons li {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Technical Indicators */
.technical-indicators {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
}

.technical-indicators h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.indicator {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
}

.indicator.bullish { border-color: rgba(34,197,94,0.2); }

.ind-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 4px;
}

.ind-val {
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 8px;
}

.ind-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.ind-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #00f5ff);
  border-radius: 2px;
}

.prediction-verdict {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(239,68,68,0.06));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 14px;
  padding: 24px;
}

.pv-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }

.prediction-verdict h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.prediction-verdict p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.prediction-verdict strong { color: #f59e0b; }

/* Responsive for new sections */
@media (max-width: 900px) {
  .prediction-timeline { flex-direction: column; gap: 16px; }
  .pred-arrow { transform: rotate(90deg); padding: 4px 0; }
  .indicators-grid { grid-template-columns: repeat(2, 1fr); }
  .xrp-prediction { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; }
  .indicators-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .xrp-prediction { padding: 24px 16px; }
  .pred-card { padding: 20px 16px; }
  .pred-target { font-size: 22px; }
  .comparison-verdict, .prediction-verdict { flex-direction: column; gap: 12px; }
}

/* ── CRYPTO CARD ALERT & WIN BADGE ── */
.crypto-alert {
  font-size: 12px;
  font-weight: 700;
  color: #f87171;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.eth-alert {
  color: #fb923c;
  background: rgba(251,146,60,0.08);
  border-color: rgba(251,146,60,0.2);
}

.crypto-win-badge {
  font-size: 12px;
  font-weight: 700;
  color: #00f5ff;
  background: linear-gradient(135deg, rgba(0,170,228,0.12), rgba(34,197,94,0.08));
  border: 1px solid rgba(0,170,228,0.3);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ── XRP FUTURE LOGO & TAG ── */
.xrp-future-logo {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.xrp-future-logo svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 0 18px rgba(0,170,228,0.6));
  animation: xrp-pulse 3s ease-in-out infinite;
}

@keyframes xrp-pulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(0,170,228,0.6)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 32px rgba(0,212,255,0.9)); transform: scale(1.06); }
}

.xrp-logo-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,228,0.25), transparent 70%);
  pointer-events: none;
  animation: xrp-pulse 3s ease-in-out infinite;
}

.xrp-future-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00aae4;
  background: rgba(0,170,228,0.1);
  border: 1px solid rgba(0,170,228,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

/* ── XRP EXPLAINER BLOCKS ── */
.xrp-explainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.xrp-exp-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(0,170,228,0.04);
  border: 1px solid rgba(0,170,228,0.12);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s;
}

.xrp-exp-block:hover { border-color: rgba(0,170,228,0.3); }

.xrp-exp-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.xrp-exp-block h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.xrp-exp-block p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.7;
}

.xrp-exp-block strong { color: #00d4ff; }

/* ── XRP PROFIT BOX LOGO ── */
.xrp-profit-logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.xrp-profit-logo svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 12px rgba(0,170,228,0.5));
}

@media (max-width: 640px) {
  .xrp-future-logo { width: 64px; height: 64px; }
  .xrp-future-logo svg { width: 64px; height: 64px; }
  .xrp-profit-logo { width: 48px; height: 48px; }
  .xrp-profit-logo svg { width: 48px; height: 48px; }
  .xrp-exp-block { padding: 14px; }
  .xrp-exp-icon { font-size: 20px; }
}

/* ── XAB EARN SECTION ── */
.xab-earn-section {
  margin-bottom: 80px;
  background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.xab-earn-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #00aae4);
}

.earn-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
}

.earn-step {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.earn-step:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
}

.earn-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.earn-step-icon {
  font-size: 32px;
  margin: 8px 0 12px;
  line-height: 1;
}

.earn-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.earn-step p {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.65;
}

.earn-step strong { color: #e2e8f0; }

.earn-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(59,130,246,0.5);
  padding: 0 10px;
  flex-shrink: 0;
  margin-top: 60px;
}

.xab-earn-highlight {
  display: flex;
  gap: 32px;
  align-items: center;
  background: rgba(0,170,228,0.06);
  border: 1px solid rgba(0,170,228,0.2);
  border-radius: 16px;
  padding: 28px;
}

.earn-hl-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}

.earn-hl-icon { font-size: 30px; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.earn-hl-left h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.earn-hl-left p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.7;
}

.earn-hl-left strong { color: #00d4ff; }

.earn-hl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}

.earn-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  min-width: 90px;
}

.earn-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #00aae4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.earn-stat-lbl {
  display: block;
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 900px) {
  .earn-steps { flex-direction: column; gap: 24px; }
  .earn-step-arrow { transform: rotate(90deg); margin: 0 auto; padding: 4px 0; }
  .xab-earn-highlight { flex-direction: column; gap: 20px; }
  .earn-hl-stats { grid-template-columns: repeat(4, 1fr); }
  .xab-earn-section { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .xab-earn-section { padding: 20px 14px; margin-bottom: 32px; }
  .earn-step { padding: 20px 14px; }
  .earn-hl-stats { grid-template-columns: 1fr 1fr; }
  .earn-hl-left { flex-direction: column; gap: 10px; }
}

/* ── ARBITRAGE FLOW GRID ── */
.arb-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.arb-flow-box {
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.arb-flow-box:hover { transform: translateY(-4px); }

.arb-buy {
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
}

.arb-bot {
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.25);
}

.arb-sell {
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.25);
}

.arb-flow-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.arb-flow-label {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.arb-buy .arb-flow-label { color: #00d4ff; }
.arb-bot .arb-flow-label { color: #00ff88; }
.arb-sell .arb-flow-label { color: #ffd700; }

.arb-flow-price {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.arb-flow-badge {
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.buy-badge { background: rgba(0,212,255,0.15); color: #00d4ff; }
.bot-badge { background: rgba(0,255,136,0.15); color: #00ff88; }
.sell-badge { background: rgba(255,215,0,0.15); color: #ffd700; }

.arb-flow-arrow {
  font-size: 2rem;
  color: #00d4ff;
  text-align: center;
  flex-shrink: 0;
}

.arb-result-bar {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(0,212,255,0.1));
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}

.arb-result-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 0.4rem;
}

.arb-result-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* ── XAB BENEFITS GRID ── */
.xab-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.xab-benefit-item {
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.xab-benefit-item:hover { transform: translateY(-4px); }

.xab-b-blue { background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.18); }
.xab-b-green { background: rgba(0,255,136,0.06); border: 1px solid rgba(0,255,136,0.18); }
.xab-b-gold { background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.18); }
.xab-b-purple { background: rgba(180,100,255,0.06); border: 1px solid rgba(180,100,255,0.18); }

.xab-b-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

.xab-benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.xab-b-blue h4 { color: #00d4ff; }
.xab-b-green h4 { color: #00ff88; }
.xab-b-gold h4 { color: #ffd700; }
.xab-b-purple h4 { color: #b464ff; }

.xab-benefit-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ── ARB CTA BOX ── */
.arb-cta-box {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,255,136,0.05));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 20px;
}

.arb-cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .arb-flow-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .arb-flow-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
    text-align: center;
  }
  .xab-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .xab-benefits-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .arb-result-text { font-size: 1.1rem; }
  .arb-flow-box { padding: 1.2rem; }
  .arb-cta-box { padding: 1.5rem 1rem; }
}

/* ── XRP FUTURE INTRO BANNER ── */

/* ── LEGAL PAGES STYLING ── */
.legal-section {
  background: var(--bg-primary);
  padding: 80px 0 60px;
  min-height: calc(100vh - 200px);
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 24px;
}

.legal-back-btn:hover {
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.5);
  transform: translateX(-3px);
}

.legal-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto 60px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent-2));
}

.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 16px;
  letter-spacing: -0.5px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}

.legal-content ul li {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.8;
  padding: 8px 0 8px 24px;
  position: relative;
}

.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.legal-content strong { color: #fff; }

.disclaimer-alert {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #fca5a5;
  line-height: 1.6;
}

.risk-alert {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #fcd34d;
  line-height: 1.6;
}

.legal-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 20px;
}

.legal-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.legal-nav-link:hover {
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.5);
  transform: translateX(-2px);
}

@media (max-width: 900px) {
  .legal-content {
    padding: 32px 24px;
  }
  .legal-navigation {
    padding: 0 24px;
    flex-direction: column;
  }
  .legal-nav-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .legal-section {
    padding: 60px 0 40px;
  }
  .legal-header {
    margin-bottom: 40px;
    padding-top: 20px;
  }
  .legal-back-btn {
    display: inline-flex;
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 18px;
  }
  .legal-header h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
  }
  .legal-date {
    font-size: 13px;
  }
  .legal-content {
    padding: 20px 16px;
    margin-bottom: 40px;
    border-radius: 16px;
  }
  .legal-content h2 {
    font-size: 18px;
    margin: 24px 0 12px;
  }
  .legal-content p,
  .legal-content ul li {
    font-size: 14px;
  }
  .legal-navigation {
    padding: 0 16px;
  }
}
.xrp-future-intro {
  background: linear-gradient(135deg, #020f1f 0%, #041628 50%, #020f1f 100%);
  border-top: 2px solid rgba(0,212,255,0.4);
  border-bottom: 2px solid rgba(0,212,255,0.2);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.xrp-future-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.xrp-future-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.xrp-fi-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.xrp-fi-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 18px;
}

.xrp-fi-grad {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xrp-fi-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 36px;
}

.xrp-fi-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.xrp-fi-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 30px;
  padding: 8px 16px;
}

.xrp-fi-stat svg { flex-shrink: 0; }

/* ── REASON ICON (replaces reason-num) ── */
.reason-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0,170,228,0.08);
  border: 1px solid rgba(0,170,228,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SVG ICON SIZING IN EARN STEPS & BENEFITS ── */
.earn-step-icon svg { display: block; margin: 8px auto 12px; }
.xab-b-icon svg { display: block; }
.xrp-exp-icon svg { display: block; }
.arb-flow-icon svg { display: block; margin: 0 auto 0.5rem; }

@media (max-width: 640px) {
  .xrp-future-intro { padding: 48px 20px; }
  .xrp-fi-stats { gap: 10px; }
  .xrp-fi-stat { font-size: 12px; padding: 6px 12px; }
  .xrp-fi-stat svg { width: 20px; height: 20px; }
}

/* ── LEADER SECTION ── */
.leader-section {
  margin-top: 48px;
  margin-bottom: 80px;
  width: min(calc(100% - 80px), 1100px);
  margin-left: auto;
  margin-right: auto;
}

.leader-heading {
  text-align: center;
  margin-bottom: 48px;
}

.leader-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.leader-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}

.leader-grad {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 3s linear infinite;
}

@keyframes gold-shine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.leader-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* Leader Card */
.leader-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(59,130,246,0.05), rgba(139,92,246,0.04));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #3b82f6, #8b5cf6, #00d4ff);
  background-size: 200%;
  animation: gold-shine 3s linear infinite;
}

/* Image */
.leader-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.leader-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(0,212,255,0.2), transparent 70%);
  pointer-events: none;
  animation: orb-float 4s ease-in-out infinite;
}

.leader-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  border: 2px solid rgba(0,212,255,0.35);
  box-shadow: 0 20px 60px rgba(0,212,255,0.15), 0 0 0 1px rgba(0,212,255,0.1);
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: top;
}

.leader-img-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,212,255,0.5);
}

/* Content */
.leader-name-row {
  margin-bottom: 20px;
}

.leader-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.leader-role {
  font-size: 13px;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leader-bio {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.leader-bio strong { color: #fff; }

.leader-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
}

.leader-stat { text-align: center; }

.ls-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.ls-lbl {
  display: block;
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Social Icons */
.leader-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ls-follow {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ls-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}

.ls-icon:hover { transform: translateY(-3px); }

.ls-fb { background: #1877f2; color: #fff; }
.ls-fb:hover { box-shadow: 0 8px 24px rgba(24,119,242,0.5); }

.ls-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.ls-ig:hover { box-shadow: 0 8px 24px rgba(220,39,67,0.5); }

.ls-dc { background: #5865f2; color: #fff; }
.ls-dc:hover { box-shadow: 0 8px 24px rgba(88,101,242,0.5); }

.ls-wa { background: #25d366; color: #fff; }
.ls-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.5); }

/* ── TEAM INDIA SECTION ── */
.team-india-section {
  background: linear-gradient(135deg, rgba(255,153,51,0.06), rgba(19,136,8,0.04), rgba(0,0,128,0.06));
  border: 1px solid rgba(255,153,51,0.2);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.team-india-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF9933 33%, #fff 33% 66%, #138808 66%);
}

.team-india-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.team-india-flag {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(255,153,51,0.4));
}

.team-india-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.team-india-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.team-india-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.ti-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 18px;
  transition: border-color 0.3s, transform 0.3s;
}

.ti-card:hover {
  border-color: rgba(255,153,51,0.3);
  transform: translateY(-4px);
}

.ti-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ti-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ti-card p {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.65;
}

.team-cta {
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(59,130,246,0.08) 50%, rgba(139,92,246,0.06) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.team-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #3b82f6, #8b5cf6);
}

.team-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.team-cta-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.team-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.75;
}

.team-cta-text strong { color: #00d4ff; }

.team-cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.team-cta-qr .qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
}

.team-cta-qr .qr-card {
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,212,255,0.15);
}

.team-cta-qr .qr-user-id {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 30px;
  padding: 6px 16px;
}

.team-cta-qr .qr-user-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
}

.team-cta-qr .qr-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .team-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .team-cta-qr { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .team-cta { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .team-cta-inner { gap: 28px; }
  .team-cta-qr { flex-direction: column; }
  .team-cta-text { text-align: center; }
  .team-cta { padding: 24px 16px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .leader-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .leader-img-wrap { max-width: 380px; margin: 0 auto; }
  .leader-stats { grid-template-columns: repeat(2, 1fr); }
  .team-india-grid { grid-template-columns: repeat(2, 1fr); }
  .team-india-section { padding: 32px 24px; }
  .leader-section { width: calc(100% - 40px); margin-top: 48px; }
}

@media (max-width: 640px) {
  .leader-card { padding: 20px 14px; border-radius: 18px; }
  .leader-name { font-size: 26px; }
  .leader-bio { font-size: 13px; }
  .leader-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px; }
  .ls-val { font-size: 17px; }
  .leader-heading { margin-bottom: 28px; }
  .team-india-grid { grid-template-columns: 1fr; gap: 10px; }
  .team-india-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .team-india-section { padding: 20px 14px; }
  .leader-socials { gap: 8px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .ls-follow { white-space: nowrap; font-size: 11px; }
  .ls-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
  .leader-section { width: calc(100% - 28px); margin-top: 48px; margin-bottom: 40px; }
}

/* ── FINAL VIDEOS SECTION ── */
.final-videos-section {
  width: min(calc(100% - 80px), 1100px);
  margin: 0 auto 80px;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(124,58,237,0.05));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 28px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

.final-videos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #00d4ff, #3b82f6);
  background-size: 200%;
  animation: gold-shine 3s linear infinite;
}

/* Header */
.fv-header {
  text-align: center;
  margin-bottom: 48px;
}

.fv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 16px 0 12px;
}

.fv-accent {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Guidelines */
.fv-guidelines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.fv-guide-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.fv-guide-step:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-4px);
}

.fv-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}

.fv-step-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.fv-step-body p {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.65;
}

/* Videos Header */
.fv-videos-header {
  text-align: center;
  margin-bottom: 28px;
}

.fv-videos-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 10px 0 8px;
}

.fv-videos-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* Video Grid */
.fv-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.fv-video-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.fv-video-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(59,130,246,0.12);
}

.featured-video {
  grid-column: span 2;
  border-color: rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.04);
}

.featured-video:hover {
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 20px 50px rgba(0,212,255,0.15);
}

.fv-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(245,158,11,0.9);
  color: #000;
}

.fv-badge-blue { background: rgba(59,130,246,0.9); color: #fff; }
.fv-badge-green { background: rgba(34,197,94,0.9); color: #000; }
.fv-badge-purple { background: rgba(139,92,246,0.9); color: #fff; }

.fv-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #050d1a;
}

.fv-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.fv-video-info {
  padding: 18px 20px 20px;
}

.fv-video-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.fv-video-info p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

/* CTA */
.fv-cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .final-videos-section { width: calc(100% - 40px); padding: 40px 28px; }
  .fv-guidelines { grid-template-columns: repeat(2, 1fr); }
  .fv-video-grid { grid-template-columns: 1fr; }
  .featured-video { grid-column: span 1; }
}

@media (max-width: 640px) {
  .final-videos-section { width: calc(100% - 28px); padding: 28px 16px; margin-bottom: 40px; }
  .fv-guidelines { grid-template-columns: 1fr; gap: 12px; }
  .fv-guide-step { padding: 18px 14px; }
  .fv-step-num { font-size: 28px; }
  .fv-title { font-size: clamp(22px, 6vw, 32px); }

  /* XRP future intro & section mobile fix */
  .xrp-future-intro { padding: 36px 16px; }
  .xrp-future { width: calc(100% - 28px); padding: 20px 14px; margin-bottom: 40px; }
  .xrp-future-header { flex-direction: column; gap: 12px; }
  .xrp-reasons { grid-template-columns: 1fr; gap: 10px; }
  .xrp-profit-box { flex-direction: column; gap: 12px; padding: 16px; }

  /* Comparison table mobile */
  .comparison-section { margin-bottom: 32px; }
  .comparison-verdict { flex-direction: column; gap: 10px; padding: 16px; }

  /* XRP prediction mobile */
  .xrp-prediction { padding: 20px 14px; margin-bottom: 32px; }
  .prediction-timeline { flex-direction: column; gap: 12px; }
  .pred-arrow { transform: rotate(90deg); text-align: center; }
  .indicators-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prediction-verdict { flex-direction: column; gap: 10px; padding: 16px; }

  /* XAB earn section mobile */
  .xab-earn-section { padding: 20px 14px; margin-bottom: 32px; }
  .earn-steps { flex-direction: column; gap: 20px; }
  .earn-step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .xab-earn-highlight { flex-direction: column; gap: 16px; padding: 16px; }
  .earn-hl-stats { grid-template-columns: 1fr 1fr; }
  .earn-hl-left { flex-direction: column; gap: 8px; }
  .xab-benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .arb-flow-grid { grid-template-columns: 1fr; gap: 10px; }
  .arb-flow-arrow { transform: rotate(90deg); text-align: center; }
}

/* ── ORM CARDS GRID ── */
.orm-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.orm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.orm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.4;
}

.orm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.orm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orm-card-check {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.orm-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.orm-card-body p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .orm-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .orm-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .orm-card { padding: 18px 14px; }
  .orm-card-icon { width: 46px; height: 46px; }
}

@media (max-width: 400px) {
  .orm-cards-grid { grid-template-columns: 1fr; }
}

/* ORM center fix */
.orm-section .container { text-align: center; }
.orm-text-col { text-align: center; width: 100%; }
.orm-heading { text-align: center; }
.orm-desc { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ORM layout full center override */
.orm-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  text-align: center !important;
}
.orm-text-col {
  width: 100% !important;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.orm-cards-grid {
  width: 100% !important;
  text-align: left;
}

/* ── ZOOM MEETING SECTION ── */
.zoom-section {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto 60px;
  background: linear-gradient(135deg, rgba(37,99,235,0.07), rgba(124,58,237,0.06));
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.zoom-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #00d4ff, #3b82f6);
  background-size: 200%;
  animation: gold-shine 3s linear infinite;
}

.zoom-header { margin-bottom: 32px; }

.zoom-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.zoom-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.zoom-grad {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zoom-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Main card */
.zoom-main-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.zoom-time-box {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.zoom-pulse {
  position: absolute;
  top: -4px; left: -4px;
  width: 12px; height: 12px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.zoom-time-icon { font-size: 36px; line-height: 1; }

.zoom-time-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.zoom-time-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

.zoom-time-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.zoom-time-note {
  font-size: 12px;
  color: #64748b;
}

.zoom-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zoom-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 16px;
}

.zoom-detail-icon { font-size: 18px; }

.zoom-detail-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

.zoom-detail-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.zoom-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(37,99,235,0.4);
  white-space: nowrap;
}

.zoom-join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(37,99,235,0.6);
}

/* Benefits */
.zoom-benefits {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.zoom-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.zoom-benefit-icon { font-size: 16px; }

/* Timings */
.zoom-timings {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 28px;
}

.zoom-timings-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.zoom-timings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.zoom-timing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 11px;
  color: #94a3b8;
}

.zoom-timing-item span:first-child { font-size: 18px; }
.zoom-timing-item strong { font-size: 12px; font-weight: 700; color: #fff; }

.zoom-timing-highlight {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.3);
}

.zoom-timing-highlight strong { color: #00d4ff; }

/* Community */
.zoom-community {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.zoom-comm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.zoom-comm-btn:hover { transform: translateY(-3px); }

.zoom-wa-btn {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.zoom-wa-btn:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

.zoom-ar-btn {
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: #fff;
}

.zoom-ar-btn:hover { background: rgba(59,130,246,0.25); }

/* Responsive */
@media (max-width: 900px) {
  .zoom-timings-grid { grid-template-columns: repeat(4, 1fr); }
  .zoom-section { padding: 40px 28px; }
}

@media (max-width: 640px) {
  .zoom-section { width: calc(100% - 28px); padding: 28px 16px; }
  .zoom-main-card { flex-direction: column; gap: 20px; padding: 20px; }
  .zoom-time-text { text-align: center; }
  .zoom-time-val { font-size: 26px; }
  .zoom-timings-grid { grid-template-columns: repeat(3, 1fr); }
  .zoom-join-btn { width: 100%; justify-content: center; }
  .zoom-community { flex-direction: column; }
  .zoom-comm-btn { justify-content: center; }
}

@media (max-width: 400px) {
  .zoom-timings-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── ZOOM LOCAL TIME CARD ── */
.zoom-local-time-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.08));
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 14px;
}

.zoom-local-flag { font-size: 48px; line-height: 1; }

.zoom-local-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}

.zoom-local-country {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
}

.zoom-local-time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.zoom-local-zone {
  font-size: 12px;
  color: #64748b;
}

.zoom-local-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

@media (max-width: 640px) {
  .zoom-local-time-card { flex-direction: column; gap: 12px; padding: 20px; }
  .zoom-local-info { text-align: center; }
  .zoom-local-time { font-size: 32px; }
  .zoom-local-flag { font-size: 40px; }
}

/* ── FINAL CTA COMBINED ── */
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 36px;
  text-align: left;
}

.final-cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.fcta-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.fcta-check {
  color: #22c55e;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .final-cta-bullets { align-items: center; }
  .final-cta-right { display: flex; justify-content: center; }
}

/* ── FINAL CTA REDESIGN ── */
.fcta-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.10), rgba(0,212,255,0.06));
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 28px;
  padding: 56px 52px;
  overflow: hidden;
  width: min(calc(100% - 40px), 1000px);
  margin: 0 auto 60px;
}

.fcta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.12), transparent 65%);
  pointer-events: none;
}

.fcta-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #00d4ff, #3b82f6);
  background-size: 200%;
  animation: gold-shine 3s linear infinite;
}

.fcta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.fcta-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.fcta-grad {
  background: linear-gradient(135deg, #3b82f6, #00d4ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fcta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 480px;
}

.fcta-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.fcta-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.fcta-tick {
  width: 22px;
  height: 22px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

.fcta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.fcta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(37,99,235,0.4);
}

.fcta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(37,99,235,0.6);
}

.fcta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #25d366;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(37,211,102,0.3);
}

.fcta-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 36px rgba(37,211,102,0.5);
}

.fcta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* QR Right Side */
.fcta-right { flex-shrink: 0; }

.fcta-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 24px 20px;
}

.fcta-qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
}

.fcta-ref-id {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.fcta-ref-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
}

.fcta-ref-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fcta-qr-flag {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  background: rgba(255,153,51,0.1);
  border: 1px solid rgba(255,153,51,0.2);
  border-radius: 20px;
  padding: 4px 14px;
}

@media (max-width: 768px) {
  .fcta-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
    text-align: center;
    width: calc(100% - 28px);
  }
  .fcta-sub { max-width: 100%; }
  .fcta-checks { align-items: flex-start; text-align: left; }
  .fcta-btns { justify-content: center; }
  .fcta-right { display: flex; justify-content: center; }
}

@media (max-width: 480px) {
  .fcta-btn-primary, .fcta-btn-wa { width: 100%; justify-content: center; }
  .fcta-btns { flex-direction: column; }
}



/* ── LEARN BEFORE YOU JOIN — VIDEO ROW ── */
.xab-learn-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.xab-learn-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #3b82f6, #8b5cf6);
}

.xab-learn-header {
  text-align: center;
  margin-bottom: 32px;
}

.xab-learn-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
}

.xab-learn-video-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.xab-learn-video-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.xab-learn-video-item:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateY(-4px);
}

.xab-learn-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 0;
}

.xab-learn-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #00d4ff;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 6px;
  padding: 2px 8px;
  flex-shrink: 0;
}

.xab-learn-label span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.4;
}

.xab-learn-vid-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #050d1a;
}

.xab-learn-vid-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

@media (max-width: 900px) {
  .xab-learn-video-row {
    flex-wrap: wrap;
  }
  .xab-learn-video-item {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 640px) {
  .xab-learn-video-row {
    flex-direction: column;
  }
  .xab-learn-video-item {
    flex: unset;
    width: 100%;
  }
  .xab-learn-wrap {
    padding: 20px 14px;
  }
}

/* ── LEARN VIDEO CARD INFO ── */
.xab-learn-info {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xab-learn-info .xab-learn-label {
  padding: 0;
}

.xab-learn-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

/* ── LEAD FORM RESPONSIVE ── */
.lf-input-wrap select,
.lf-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 0;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  width: 100%;
}

#countryDropdown::-webkit-scrollbar { width: 4px; }
#countryDropdown::-webkit-scrollbar-track { background: transparent; }
#countryDropdown::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.4); border-radius: 4px; }

@media (max-width: 768px) {
  .lf-inner { grid-template-columns: 1fr !important; }
  .lf-form-card { padding: 20px 16px; }
  #countryDropdown { max-height: 180px; }
}

@media (max-width: 480px) {
  .lf-inner { padding: 16px !important; }
  .lf-form-card { padding: 16px 12px; }
  .lf-field label { font-size: 11px; }
  .lf-input-wrap input, .lf-input-wrap select { font-size: 13px; padding: 11px 0; }
  .lf-btn { padding: 13px 16px; font-size: 14px; }
  #phoneCodeDisplay { font-size: 13px; }
}

/* GCP Continent Labels */
.gcp-continent-label {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748b;
  padding: 6px 0 2px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}

/* Learn Video Horizontal Scroller */
.xab-learn-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(59,130,246,0.4) transparent;
}
.xab-learn-scroll-wrap::-webkit-scrollbar { height: 5px; }
.xab-learn-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.xab-learn-scroll-wrap::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.4); border-radius: 10px; }

.xab-learn-video-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
}

.xab-learn-video-item {
  flex: 0 0 300px;
  width: 300px;
}

.xab-learn-vid-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}
.xab-learn-vid-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* vf-main-wrap fix */
.vf-main-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16/9 !important;
  background: #050d1a !important;
  overflow: hidden !important;
}
.vf-main-wrap iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

/* Horizontal Video Scroll Responsive */
.xab-learn-video-item {
  flex: 0 0 280px;
  width: 280px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.xab-learn-vid-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #050d1a;
}

.xab-learn-vid-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .xab-learn-video-item {
    flex: 0 0 240px;
    width: 240px;
  }
}

@media (max-width: 480px) {
  .xab-learn-video-item {
    flex: 0 0 200px;
    width: 200px;
  }
  .xab-learn-info p {
    font-size: 11px;
  }
}

/* Testimonial Responsive */
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .testi-card {
    padding: 18px 14px;
  }
  .testi-text {
    font-size: 13px;
  }
  .testi-heading {
    font-size: clamp(22px, 6vw, 32px);
  }
}

/* Testimonial Mobile Fix */
@media (max-width: 600px) {
  .testi-section { padding: 20px 0; }
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .testi-card {
    padding: 14px 14px;
    gap: 8px;
    border-radius: 14px;
  }
  .testi-stars { font-size: 13px; letter-spacing: 1px; }
  .testi-text {
    font-size: 12.5px;
    line-height: 1.6;
    font-style: normal;
  }
  .testi-author {
    padding-top: 10px;
    gap: 8px;
  }
  .testi-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 13px;
  }
  .testi-author strong { font-size: 13px; }
  .testi-author span { font-size: 11px; }
  .testi-heading { font-size: 22px; }
  .testi-sub { font-size: 13px; }
  .testi-header { margin-bottom: 16px; }
}
