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

:root {
  --navy: #060B18;
  --navy-light: #0C1425;
  --navy-mid: #121D33;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-dark: #1D4ED8;
  --cyan: #00D4FF;
  --cyan-dark: #00A8CC;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.07);
  --glass-hover: rgba(255,255,255,0.06);
  --red: #EF4444;
  --red-dark: #DC2626;
  --green: #22C55E;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--gray-300);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }

img { max-width: 100%; display: block; }

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes border-glow {
  0%, 100% { border-color: rgba(0,212,255,0.1); }
  50% { border-color: rgba(0,212,255,0.3); }
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* ===== CURSOR GLOW (homepage only) ===== */
.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease, top 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(6,11,24,0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 0 var(--glass-border), 0 4px 30px rgba(0,0,0,0.3);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all var(--transition);
}
.navbar-logo:hover img { opacity: 0.85; filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0,212,255,0.4)); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.navbar-links a {
  color: var(--gray-300);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width var(--transition);
  border-radius: 1px;
}
.navbar-links a:hover { color: var(--white); }
.navbar-links a:hover::after { width: 100%; }
.navbar-links a.active { color: var(--cyan); }
.navbar-links a.active::after { width: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,212,255,0.35);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.btn-nav { padding: 10px 24px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,11,24,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--cyan); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,212,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(37,99,235,0.06) 0%, transparent 40%),
    var(--navy);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 25s linear infinite;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 300px; height: 300px;
  background: rgba(37,99,235,0.15);
  top: 10%; right: 10%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 200px; height: 200px;
  background: rgba(0,212,255,0.1);
  bottom: 20%; left: 5%;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 150px; height: 150px;
  background: rgba(59,130,246,0.12);
  top: 40%; right: 30%;
  animation-delay: -5s;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-400);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.trust-badge .badge-icon {
  color: var(--cyan);
  font-size: 16px;
}

/* ===== TICKER ===== */
.ticker-strip {
  background: rgba(0,212,255,0.02);
  border-top: 1px solid rgba(0,212,255,0.08);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-strip::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.ticker-strip::after { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item .coin-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.ticker-item .coin-name { font-weight: 600; color: var(--white); font-size: 14px; }
.ticker-item .coin-price { font-size: 14px; color: var(--gray-300); font-weight: 500; }
.ticker-item .coin-change { font-size: 13px; font-weight: 600; }
.ticker-item .coin-change.up { color: var(--green); }
.ticker-item .coin-change.down { color: var(--red); }

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.12);
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CRYPTO CARDS ===== */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.crypto-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.crypto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.crypto-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.crypto-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0,212,255,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.08);
}
.crypto-card:hover::before { opacity: 1; }
.crypto-card:hover::after { opacity: 1; }
.crypto-card .card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.crypto-card h3 { font-size: 1.15rem; margin-bottom: 4px; position: relative; z-index: 1; }
.crypto-card .ticker-label { font-size: 13px; color: var(--cyan); font-weight: 600; margin-bottom: 12px; position: relative; z-index: 1; }
.crypto-card .price { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; position: relative; z-index: 1; }
.crypto-card .desc { font-size: 13px; color: var(--gray-500); position: relative; z-index: 1; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--blue), transparent);
  opacity: 0.3;
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(37,99,235,0.3);
  transition: all var(--transition);
}
.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0,212,255,0.4);
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0,212,255,0.2);
  animation: glow-pulse 3s ease-in-out infinite;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step-card p { font-size: 0.95rem; color: var(--gray-400); }

/* ===== PAYMENT METHODS ===== */
.payment-section { background: var(--navy-light); }
.payment-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.payment-group {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}
.payment-group:hover {
  border-color: rgba(0,212,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.payment-group h3 {
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--cyan);
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.payment-icon {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.payment-icon:hover {
  background: rgba(0,212,255,0.06);
  border-color: rgba(0,212,255,0.2);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(37,99,235,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.15); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 12px; position: relative; z-index: 1; }
.feature-card p { font-size: 0.9rem; color: var(--gray-400); position: relative; z-index: 1; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.1;
}
.stat-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--navy-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card .quote-mark {
  font-size: 48px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--gray-300);
}
.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(0,212,255,0.1) 0%, transparent 50%),
    var(--navy-mid);
  border-top: 1px solid rgba(0,212,255,0.1);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p {
  color: var(--gray-400);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-light);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}
.footer-brand .tagline {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
  font-size: 14px;
}
.social-link:hover {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--cyan);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--gray-400);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 32px;
}
.footer-legal {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-copyright {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(0,212,255,0.05) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-light); color: var(--white); }

.contact-info { padding: 20px 0; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--gray-400); }
.contact-map {
  margin-top: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 14px;
  overflow: hidden;
}

/* ===== FAQ PAGE ===== */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.faq-cat-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gray-400);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: rgba(0,212,255,0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.active {
  border-color: rgba(0,212,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--cyan); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
  color: var(--gray-400);
}
.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 28px 0 12px; }
.legal-content p { margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.legal-content ul, .legal-content ol {
  margin: 12px 0 20px 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-content li { margin-bottom: 8px; }
.legal-content .last-updated {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 32px;
}

/* ===== FRAUD PAGE ===== */
.fraud-page { color: var(--gray-300); }
.fraud-page .page-hero { border-bottom: 2px solid var(--red); }
.fraud-page .page-hero h1 { color: var(--red); }

.alert-box {
  background: rgba(239,68,68,0.08);
  border: 2px solid rgba(239,68,68,0.4);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
  text-align: center;
  transition: all var(--transition);
}
.alert-box:hover { border-color: var(--red); }
.alert-box h3 { color: var(--red); font-size: 1.25rem; margin-bottom: 8px; }
.alert-box p { color: var(--gray-300); font-size: 1rem; }

.fraud-section { margin-bottom: 48px; }
.fraud-section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fraud-section h2 .section-icon { font-size: 24px; }
.fraud-section ul { list-style: none; margin: 16px 0; }
.fraud-section li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.95rem;
}
.fraud-section li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.never-list li::before { content: '✕'; color: var(--red); }
.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.resource-link {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.resource-link:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.resource-link h4 { font-size: 14px; margin-bottom: 4px; }
.resource-link p { font-size: 13px; color: var(--gray-500); }

/* ===== BUY PAGE ===== */
.buy-widget-wrapper {
  max-width: 500px;
  margin: 0 auto 48px;
  text-align: center;
}
.buy-widget-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.moonpay-iframe {
  width: 100%;
  height: 550px;
  border: none;
  display: block;
}
.buy-widget-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
  font-style: italic;
}
.buy-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.buy-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.buy-badge:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-2px);
}
.buy-badge-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.buy-badge h4 { font-size: 14px; margin-bottom: 2px; }
.buy-badge p { font-size: 13px; color: var(--gray-500); }

/* ===== TRUST PAGE ===== */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust-pillar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.trust-pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.trust-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.trust-pillar:hover::before { opacity: 1; }
.pillar-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 1;
}
.trust-pillar h3 { font-size: 1.15rem; margin-bottom: 12px; position: relative; z-index: 1; }
.trust-pillar p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.8; position: relative; z-index: 1; }

.trust-details-section { background: var(--navy-light); }
.trust-details-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.trust-details-content .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.12);
}
.trust-details-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 32px;
}
.trust-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-300);
  border-bottom: 1px solid var(--glass-border);
}
.trust-checklist li:last-child { border-bottom: none; }
.check-icon {
  color: var(--cyan);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-reg-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.trust-reg-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--white);
}
.trust-reg-card > p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.7;
}
.reg-detail {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}
.reg-detail:last-child { border-bottom: none; }
.reg-label { font-size: 13px; color: var(--gray-500); }
.reg-value { font-size: 13px; color: var(--cyan); font-weight: 600; }

/* ===== PAYMENT METHOD DETAILS ===== */
.payment-group .payment-detail {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .buy-trust-badges { grid-template-columns: repeat(2, 1fr); }
  .trust-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-orb { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .payment-groups { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-categories { gap: 8px; }
  .faq-cat-btn { padding: 8px 16px; font-size: 13px; }
  section { padding: 64px 0; }
  .trust-pillars { grid-template-columns: 1fr; }
  .buy-trust-badges { grid-template-columns: 1fr; }
  .moonpay-iframe { height: 500px; }
}
@media (max-width: 480px) {
  .crypto-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; gap: 12px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-number { font-size: 2rem; }
}
