/* ============================================
   SATINERO — COMPLETE FRONTEND STYLESHEET
   Matching Reference Image Exactly
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --sat-bg: #0a0514;
  --sat-bg-elevated: #120a1f;
  --sat-bg-card: #1a0f2e;
  --sat-bg-hover: #241538;
  --sat-border: #2d1b4e;
  --sat-border-light: #3d2568;
  --sat-text: #ffffff;
  --sat-text-secondary: #b8a9c9;
  --sat-text-muted: #7a6b8f;
  --sat-primary: #ec4899;
  --sat-primary-light: #f472b6;
  --sat-primary-dark: #be185d;
  --sat-accent: #8b5cf6;
  --sat-success: #22c55e;
  --sat-warning: #f59e0b;
  --sat-danger: #ef4444;
  --sat-shadow: 0 4px 20px rgba(0,0,0,0.4);
  --sat-shadow-pink: 0 4px 24px rgba(236,72,153,0.25);
  --sat-radius: 16px;
  --sat-radius-sm: 12px;
  --sat-radius-lg: 24px;
  --sat-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html.light {
  --sat-bg: #faf5f8;
  --sat-bg-elevated: #ffffff;
  --sat-bg-card: #ffffff;
  --sat-bg-hover: #f5eef3;
  --sat-border: #e8d5e0;
  --sat-border-light: #f0dce8;
  --sat-text: #1a0a1f;
  --sat-text-secondary: #3d2d4a;
  --sat-text-muted: #6b5b78;
  --sat-primary: #d63384;
  --sat-primary-light: #ec4899;
  --sat-primary-dark: #a61e5e;
  --sat-accent: #7c3aed;
  --sat-shadow: 0 4px 20px rgba(214,51,132,0.08);
  --sat-shadow-pink: 0 4px 24px rgba(214,51,132,0.12);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--sat-bg);
  color: var(--sat-text);
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}
::selection { background: var(--sat-primary); color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sat-bg-elevated); }
::-webkit-scrollbar-thumb { background: var(--sat-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sat-border-light); }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.text-gradient {
  background: linear-gradient(135deg, var(--sat-primary), var(--sat-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow-pink { box-shadow: var(--sat-shadow-pink); }
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--sat-border);
}
html.light .glass {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--sat-border-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--sat-radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--sat-transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sat-primary), var(--sat-primary-dark));
  color: #fff;
  box-shadow: var(--sat-shadow-pink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,72,153,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--sat-text);
  border: 1.5px solid var(--sat-border);
}
.btn-secondary:hover {
  border-color: var(--sat-primary);
  color: var(--sat-primary);
}
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.badge-pink {
  background: rgba(236,72,153,0.12);
  color: var(--sat-primary);
  border: 1px solid rgba(236,72,153,0.2);
}
.badge-green {
  background: rgba(34,197,94,0.12);
  color: var(--sat-success);
  border: 1px solid rgba(34,197,94,0.2);
}

/* ===== PULSE ANIMATION ===== */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--sat-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-1 { animation: float 4s ease-in-out infinite; }
.float-2 { animation: float 5s ease-in-out infinite 0.5s; }
.float-3 { animation: float 6s ease-in-out infinite 1s; }

/* ===== FADE IN UP ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-header p {
  color: var(--sat-text-secondary);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,5,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sat-border);
  transition: var(--sat-transition);
}
html.light .site-header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--sat-border-light);
}
.site-header.scrolled {
  background: rgba(10,5,20,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
html.light .site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { height: 36px; width: auto; }
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--sat-text);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--sat-primary); }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  color: var(--sat-text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--sat-text);
}
.desktop-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--sat-primary);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--sat-radius-sm);
  border: 1px solid var(--sat-border);
  background: transparent;
  color: var(--sat-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sat-transition);
}
.theme-toggle:hover {
  border-color: var(--sat-primary);
  color: var(--sat-primary);
  background: rgba(236,72,153,0.08);
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--sat-radius-sm);
  border: 1px solid var(--sat-border);
  background: transparent;
  color: var(--sat-text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  backdrop-filter: blur(4px);
}
.mobile-overlay.active { display: block; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--sat-bg-elevated);
  border-left: 1px solid var(--sat-border);
  z-index: 1001;
  padding: 80px 28px 28px;
  flex-direction: column;
  gap: 8px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
  color: var(--sat-text-secondary);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--sat-radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: var(--sat-transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--sat-bg-hover);
  color: var(--sat-text);
}
.mobile-nav .btn {
  margin-top: 8px;
  justify-content: center;
}
.close-menu {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sat-border);
  background: transparent;
  color: var(--sat-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--sat-bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-left .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(236,72,153,0.1);
  border: 1px solid rgba(236,72,153,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sat-primary);
  margin-bottom: 24px;
}
.hero-left h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--sat-text);
}
.hero-left .hero-highlight {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--sat-primary);
  margin-bottom: 20px;
}
.hero-left .hero-subtitle {
  font-size: 16px;
  color: var(--sat-text-secondary);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sat-text-muted);
  font-weight: 500;
}
.trust-badge .tb-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-badge .tb-icon svg {
  width: 14px;
  height: 14px;
}
.trust-badge .tb-icon.pink {
  background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(236,72,153,0.05));
  color: var(--sat-primary);
}
.trust-badge .tb-icon.purple {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0.05));
  color: var(--sat-accent);
}
.trust-badge .tb-icon.cyan {
  background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(6,182,212,0.05));
  color: #06b6d4;
}
.trust-badge .tb-icon.green {
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.05));
  color: var(--sat-success);
}

/* Hero Right - Shield Scene */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-shield-scene {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.hero-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: ringsRotate 20s linear infinite;
}
@keyframes ringsRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-shield-wrap {
  position: relative;
  width: 200px;
  height: 260px;
  z-index: 2;
}
.hero-shield-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(255,45,141,0.3));
}
.hero-shield-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: auto;
  object-fit: contain;
}

/* Floating Crypto Coins */
.hero-float-coin {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  animation: coinFloat 3s ease-in-out infinite;
}
.hero-f-btc { top: 20px; right: 30px; animation-delay: 0s; }
.hero-f-eth { top: 80px; right: 0; animation-delay: 0.5s; }
.hero-f-usdt { bottom: 100px; right: 10px; animation-delay: 1s; }
.hero-f-sol { top: 40px; left: 20px; animation-delay: 1.5s; }
@keyframes coinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Pedestal */
.hero-pedestal {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  z-index: 1;
}

/* ============================================
   LIVE CRYPTO RATES
   ============================================ */
.live-rates { padding: 60px 0; background: var(--sat-bg); }
.rates-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.rate-card {
  background: var(--sat-bg-card);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-sm);
  padding: 20px;
  transition: var(--sat-transition);
}
.rate-card:hover {
  transform: translateY(-4px);
  border-color: var(--sat-border-light);
  box-shadow: var(--sat-shadow);
}
.rate-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rate-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
}
.rate-info h4 { font-size: 14px; font-weight: 700; }
.rate-info span { font-size: 11px; color: var(--sat-text-muted); }
.rate-price { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.rate-change { font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.rate-change.up { color: var(--sat-success); }
.rate-change.down { color: var(--sat-danger); }
.rate-chart { margin-bottom: 14px; }
.mini-chart { width: 100%; height: 35px; }
.btn-rate {
  display: block;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-sm);
  color: var(--sat-text-secondary);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: var(--sat-transition);
}
.btn-rate:hover {
  background: linear-gradient(135deg, var(--sat-primary), var(--sat-primary-dark));
  border-color: transparent;
  color: #fff;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 60px 0;
  background: var(--sat-bg-elevated);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sat-border), transparent);
}
.steps-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sat-primary) 0px, var(--sat-primary) 6px, transparent 6px, transparent 12px);
  opacity: 0.4;
}
.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05));
  color: var(--sat-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
}
.step-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.step-number {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sat-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 12px;
}
.step-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  color: var(--sat-text-secondary);
  line-height: 1.6;
}

/* ============================================
   STATS BAR - PINK GRADIENT
   ============================================ */
.stats-bar {
  padding: 40px 0;
  background: linear-gradient(135deg, #ec4899, #be185d);
  border: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 16px;
}
.stat-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #fff;
}
.stat-icon svg {
  width: 20px;
  height: 20px;
}
.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-choose {
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--sat-bg-card);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--sat-transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sat-primary), var(--sat-accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--sat-border-light);
  box-shadow: var(--sat-shadow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
}
.feature-icon-wrap.pink {
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05));
  color: var(--sat-primary);
}
.feature-icon-wrap.purple {
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05));
  color: var(--sat-accent);
}
.feature-icon-wrap.green {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
  color: var(--sat-success);
}
.feature-icon-wrap.cyan {
  background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(6,182,212,0.05));
  color: #06b6d4;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--sat-text-secondary);
  line-height: 1.6;
}

/* ============================================
   REWARDS PROGRAM
   ============================================ */
.rewards-section {
  padding: 80px 0;
  background: var(--sat-bg-elevated);
  position: relative;
}
.rewards-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sat-border), transparent);
}
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.reward-card {
  background: var(--sat-bg-card);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius);
  padding: 28px;
  transition: var(--sat-transition);
}
.reward-card:hover {
  transform: translateY(-4px);
  border-color: var(--sat-primary);
  box-shadow: var(--sat-shadow-pink);
}
.reward-icon {
  width: 48px; height: 48px;
  border-radius: var(--sat-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.reward-icon.pink {
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05));
  color: var(--sat-primary);
}
.reward-icon.purple {
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05));
  color: var(--sat-accent);
}
.reward-icon.green {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
  color: var(--sat-success);
}
.reward-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.reward-card p {
  font-size: 14px;
  color: var(--sat-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.reward-points {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(236,72,153,0.08);
  border: 1px solid rgba(236,72,153,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sat-primary);
}

/* Loyalty Levels */
/* ============================================
   LOYALTY LEVELS V2 - Matching Reference Image 2
   ============================================ */
.loyalty-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.loyalty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(236,72,153,0.1);
    border: 1px solid rgba(236,72,153,0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--sat-primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.loyalty-badge svg {
    width: 14px;
    height: 14px;
}
.loyalty-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}
.loyalty-title .lt-white {
    color: var(--sat-text);
}
.loyalty-title .lt-pink {
    color: var(--sat-primary);
}
.loyalty-subtitle {
    font-size: 16px;
    color: var(--sat-text-secondary);
    margin-bottom: 4px;
}
.loyalty-subtitle2 {
    font-size: 14px;
    color: var(--sat-text-muted);
    margin-bottom: 24px;
}
.loyalty-points-bar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--sat-border);
    border-radius: 100px;
    font-size: 13px;
}
.loyalty-points-bar .lpb-icon {
    font-size: 16px;
}
.loyalty-points-bar .lpb-text {
    color: var(--sat-primary);
    font-weight: 700;
}
.loyalty-points-bar .lpb-divider {
    color: var(--sat-border-light);
}
.loyalty-points-bar .lpb-sub {
    color: var(--sat-text-muted);
}

/* Grid */
.loyalty-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* Card Base */
.loyalty-card-v2 {
    background: var(--sat-bg-card);
    border: 1px solid var(--sat-border);
    border-radius: var(--sat-radius);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: var(--sat-transition);
}
.loyalty-card-v2:hover {
    transform: translateY(-6px);
    border-color: var(--sat-border-light);
    box-shadow: var(--sat-shadow);
}

/* Colored Top Border */
.lcv2-top {
    height: 3px;
    width: 100%;
}
.loyalty-card-v2.bronze .lcv2-top {
    background: linear-gradient(90deg, #cd7f32, #a0522d);
}
.loyalty-card-v2.silver .lcv2-top {
    background: linear-gradient(90deg, #c0c0c0, #a0a0a0);
}
.loyalty-card-v2.gold .lcv2-top {
    background: linear-gradient(90deg, #ffd700, #daa520);
}
.loyalty-card-v2.platinum .lcv2-top {
    background: linear-gradient(90deg, #e5e4e2, #b0b0b0);
}
.loyalty-card-v2.diamond .lcv2-top {
    background: linear-gradient(90deg, #b9f2ff, #00bfff);
}

/* POPULAR Ribbon */
.lcv2-popular {
    position: absolute;
    top: 12px;
    right: -35px;
    background: linear-gradient(135deg, var(--sat-primary), var(--sat-primary-dark));
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    z-index: 10;
}

/* Header with Icon + Title */
.lcv2-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 12px;
}
.lcv2-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lcv2-icon svg {
    width: 24px;
    height: 24px;
}
.lcv2-icon.bronze-icon {
    background: linear-gradient(135deg, rgba(205,127,50,0.15), rgba(205,127,50,0.05));
    color: #cd7f32;
    border: 1px solid rgba(205,127,50,0.2);
}
.lcv2-icon.silver-icon {
    background: linear-gradient(135deg, rgba(192,192,192,0.15), rgba(192,192,192,0.05));
    color: #c0c0c0;
    border: 1px solid rgba(192,192,192,0.2);
}
.lcv2-icon.gold-icon {
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
    color: #ffd700;
    border: 1px solid rgba(255,215,0,0.2);
}
.lcv2-icon.platinum-icon {
    background: linear-gradient(135deg, rgba(229,228,226,0.15), rgba(229,228,226,0.05));
    color: #e5e4e2;
    border: 1px solid rgba(229,228,226,0.2);
}
.lcv2-icon.diamond-icon {
    background: linear-gradient(135deg, rgba(185,242,255,0.15), rgba(185,242,255,0.05));
    color: #b9f2ff;
    border: 1px solid rgba(185,242,255,0.2);
}
.lcv2-title-wrap h4 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.loyalty-card-v2.bronze .lcv2-title-wrap h4 { color: #cd7f32; }
.loyalty-card-v2.silver .lcv2-title-wrap h4 { color: #c0c0c0; }
.loyalty-card-v2.gold .lcv2-title-wrap h4 { color: #ffd700; }
.loyalty-card-v2.platinum .lcv2-title-wrap h4 { color: #e5e4e2; }
.loyalty-card-v2.diamond .lcv2-title-wrap h4 { color: #b9f2ff; }
.lcv2-level {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--sat-border);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--sat-text-muted);
    letter-spacing: 1px;
}

/* Unlock Section */
.lcv2-unlock {
    text-align: center;
    padding: 0 20px 16px;
    border-bottom: 1px solid var(--sat-border);
}
.lcv2-unlock-label {
    display: block;
    font-size: 12px;
    color: var(--sat-text-muted);
    margin-bottom: 4px;
}
.lcv2-unlock-amount {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}
.loyalty-card-v2.bronze .lcv2-unlock-amount { color: #cd7f32; }
.loyalty-card-v2.silver .lcv2-unlock-amount { color: #c0c0c0; }
.loyalty-card-v2.gold .lcv2-unlock-amount { color: #ffd700; }
.loyalty-card-v2.platinum .lcv2-unlock-amount { color: #e5e4e2; }
.loyalty-card-v2.diamond .lcv2-unlock-amount { color: #b9f2ff; }
.lcv2-unlock-sub {
    font-size: 11px;
    color: var(--sat-text-muted);
}

/* Reward Box */
.lcv2-reward {
    margin: 16px 20px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--sat-border);
    border-radius: var(--sat-radius-sm);
    text-align: center;
}
.lcv2-reward-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--sat-text-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.lcv2-reward-points {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.loyalty-card-v2.bronze .lcv2-reward-points { color: #cd7f32; }
.loyalty-card-v2.silver .lcv2-reward-points { color: #c0c0c0; }
.loyalty-card-v2.gold .lcv2-reward-points { color: #ffd700; }
.loyalty-card-v2.platinum .lcv2-reward-points { color: #e5e4e2; }
.loyalty-card-v2.diamond .lcv2-reward-points { color: #b9f2ff; }
.lcv2-reward-text {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--sat-text-muted);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.lcv2-reward-naira {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sat-text-secondary);
}

/* Rate Benefit */
.lcv2-rate {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 16px;
    border-bottom: 1px solid var(--sat-border);
}
.lcv2-rate-chart {
    color: var(--sat-primary);
    flex-shrink: 0;
}
.lcv2-rate-info {
    display: flex;
    flex-direction: column;
}
.lcv2-rate-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--sat-text-muted);
    letter-spacing: 1px;
}
.lcv2-rate-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--sat-text);
}
.lcv2-rate-desc {
    font-size: 12px;
    color: var(--sat-text-muted);
}

/* Benefits */
.lcv2-benefits {
    padding: 16px 20px 20px;
}
.lcv2-benefits-title {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--sat-text-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.loyalty-card-v2.gold .lcv2-benefits-title {
    color: #ffd700;
}
.lcv2-benefits ul {
    list-style: none;
}
.lcv2-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sat-text-secondary);
    padding: 6px 0;
}
.lcv2-benefits li svg {
    width: 14px;
    height: 14px;
    color: var(--sat-success);
    flex-shrink: 0;
}

/* Featured Card (Gold) */
.loyalty-card-v2.featured {
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 0 40px rgba(255,215,0,0.08);
}
.loyalty-card-v2.featured:hover {
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 0 60px rgba(255,215,0,0.15);
}

/* ============================================
   TESTIMONIALS
   ============================================ *//* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 80px 0;
}
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--sat-bg-card);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius);
  padding: 28px;
  transition: var(--sat-transition);
}
.testimonial-card:hover {
  border-color: var(--sat-border-light);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 14px;
  color: var(--sat-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sat-primary), var(--sat-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-info h4 {
  font-size: 14px;
  font-weight: 700;
}
.testimonial-info span {
  font-size: 12px;
  color: var(--sat-text-muted);
}
.stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}
.star { color: #f59e0b; font-size: 13px; }

/* ============================================
   SECURITY SECTION
   ============================================ */
.security-section {
  padding: 80px 0;
  background: var(--sat-bg-elevated);
  position: relative;
}
.security-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sat-border), transparent);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.security-card {
  background: var(--sat-bg-card);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius);
  padding: 28px;
  transition: var(--sat-transition);
}
.security-card:hover {
  border-color: var(--sat-border-light);
  transform: translateY(-4px);
}
.security-card .sec-icon {
  width: 48px; height: 48px;
  border-radius: var(--sat-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(139,92,246,0.05));
  color: var(--sat-primary);
}
.security-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.security-card p {
  font-size: 14px;
  color: var(--sat-text-secondary);
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--sat-bg-card);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--sat-transition);
}
.faq-item:hover {
  border-color: var(--sat-border-light);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: var(--sat-transition);
}
.faq-question:hover {
  color: var(--sat-primary);
}
.faq-question .faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sat-bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--sat-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(236,72,153,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: var(--sat-text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--sat-bg-elevated);
  border-top: 1px solid var(--sat-border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--sat-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--sat-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sat-text-muted);
  transition: var(--sat-transition);
  text-decoration: none;
}
.footer-social a:hover {
  border-color: var(--sat-primary);
  color: var(--sat-primary);
  background: rgba(236,72,153,0.08);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--sat-text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--sat-primary); }
.footer-newsletter h4 { margin-bottom: 12px; }
.footer-newsletter p {
  font-size: 14px;
  color: var(--sat-text-secondary);
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--sat-bg-card);
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-radius-sm);
  color: var(--sat-text);
  font-size: 14px;
  outline: none;
  transition: var(--sat-transition);
}
.newsletter-form input:focus {
  border-color: var(--sat-primary);
}
.newsletter-form input::placeholder {
  color: var(--sat-text-muted);
}
.newsletter-form button {
  padding: 12px 20px;
  background: var(--sat-primary);
  color: #fff;
  border: none;
  border-radius: var(--sat-radius-sm);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--sat-transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--sat-primary-dark);
}
.footer-bottom {
  border-top: 1px solid var(--sat-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--sat-text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--sat-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--sat-primary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-left .hero-subtitle { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .trust-badges { justify-content: center; }
  .hero-right { order: -1; }
  .hero-shield-scene { max-width: 320px; height: 320px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rates-grid { grid-template-columns: repeat(3, 1fr); }
  .rewards-grid { grid-template-columns: repeat(2, 1fr); }
  .loyalty-grid { grid-template-columns: repeat(3, 1fr); }
    .loyalty-grid-v2 { grid-template-columns: repeat(3, 1fr); }
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-timeline { flex-wrap: wrap; }
  .steps-timeline::before { display: none; }
  .step-item { flex: 1 1 45%; margin-bottom: 32px; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .header-actions .btn { display: none; }
  .hero { padding: 120px 0 60px; }
  .hero-left h1 { font-size: 32px; }
  .hero-left .hero-highlight { font-size: 32px; }
  .hero-left .hero-subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .section-header h2 { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-grid { grid-template-columns: 1fr; }
  .loyalty-grid { grid-template-columns: repeat(2, 1fr); }
    .loyalty-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .loyalty-title { font-size: 28px; }
    .loyalty-points-bar { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .step-item { flex: 1 1 100%; }
  .cta-section h2 { font-size: 28px; }
  .hero-shield-scene { max-width: 280px; height: 280px; }
  .hero-shield-wrap { width: 160px; height: 208px; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 28px; }
  .hero-left .hero-highlight { font-size: 28px; }
  .rates-grid { grid-template-columns: 1fr; }
  .loyalty-grid { grid-template-columns: 1fr; }
    .loyalty-grid-v2 { grid-template-columns: 1fr; }
    .loyalty-title { font-size: 22px; }
    .loyalty-points-bar { flex-direction: column; align-items: center; gap: 8px; }
    .loyalty-points-bar .lpb-divider { display: none; }
    .lcv2-header { flex-direction: column; text-align: center; }
    .lcv2-rate { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .hero-shield-scene { max-width: 240px; height: 240px; }
}


/* ============================================
   GLASS / TRANSPARENT ICON DESIGN
   ============================================ */

/* Glass Icon Base */
.glass-icon {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sat-transition);
}
.glass-icon svg {
    width: 22px;
    height: 22px;
}
html.light .glass-icon {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Security Section - Glass Icons */
.security-card .sec-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    color: var(--sat-primary);
}
.security-card .sec-icon.lock { color: #ec4899; border-color: rgba(236, 72, 153, 0.3); background: rgba(236, 72, 153, 0.08); }
.security-card .sec-icon.shield-check { color: #8b5cf6; border-color: rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.08); }
.security-card .sec-icon.eye { color: #06b6d4; border-color: rgba(6, 182, 212, 0.3); background: rgba(6, 182, 212, 0.08); }
.security-card .sec-icon.server { color: #f59e0b; border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.08); }
.security-card .sec-icon.bell { color: #22c55e; border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.08); }
.security-card .sec-icon.key { color: #ef4444; border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.08); }
.security-card:hover .sec-icon {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Rewards Section - Glass Icons */
.reward-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 16px;
}
.reward-icon.pink {
    color: var(--sat-primary);
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.08);
}
.reward-icon.purple {
    color: var(--sat-accent);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.08);
}
.reward-icon.green {
    color: var(--sat-success);
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
}
.reward-card:hover .reward-icon {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Loyalty Levels - Glass Icons */
.loyalty-tier {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.loyalty-tier::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.15) 100%);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1.5px solid rgba(255,255,255,0.18);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.2),
        0 8px 32px rgba(0,0,0,0.15),
        inset 0 -1px 1px rgba(0,0,0,0.05);
    z-index: 1;
}
.loyalty-tier::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(255,255,255,0.15) 25%, transparent 50%, rgba(255,255,255,0.1) 75%, transparent 100%);
    animation: liquidShine 4s linear infinite;
    z-index: 2;
    pointer-events: none;
}
.loyalty-tier svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
@keyframes liquidShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loyalty-tier.bronze::before {
    background: linear-gradient(135deg, rgba(205,127,50,0.15) 0%, rgba(205,127,50,0.05) 50%, rgba(160,82,45,0.1) 100%);
    border-color: rgba(205,127,50,0.35);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.15),
        0 8px 32px rgba(205,127,50,0.2),
        inset 0 -1px 1px rgba(0,0,0,0.05);
}
.loyalty-tier.bronze svg { color: #cd7f32; }
.loyalty-tier.silver::before {
    background: linear-gradient(135deg, rgba(192,192,192,0.15) 0%, rgba(192,192,192,0.05) 50%, rgba(160,160,160,0.1) 100%);
    border-color: rgba(192,192,192,0.35);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.2),
        0 8px 32px rgba(192,192,192,0.2),
        inset 0 -1px 1px rgba(0,0,0,0.05);
}
.loyalty-tier.silver svg { color: #c0c0c0; }
.loyalty-tier.gold::before {
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0.05) 50%, rgba(218,165,32,0.1) 100%);
    border-color: rgba(255,215,0,0.35);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.2),
        0 8px 32px rgba(255,215,0,0.2),
        inset 0 -1px 1px rgba(0,0,0,0.05);
}
.loyalty-tier.gold svg { color: #ffd700; }
.loyalty-tier.platinum::before {
    background: linear-gradient(135deg, rgba(229,228,226,0.15) 0%, rgba(229,228,226,0.05) 50%, rgba(176,176,176,0.1) 100%);
    border-color: rgba(229,228,226,0.35);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.2),
        0 8px 32px rgba(229,228,226,0.2),
        inset 0 -1px 1px rgba(0,0,0,0.05);
}
.loyalty-tier.platinum svg { color: #e5e4e2; }
.loyalty-tier.diamond::before {
    background: linear-gradient(135deg, rgba(185,242,255,0.15) 0%, rgba(185,242,255,0.05) 50%, rgba(0,191,255,0.1) 100%);
    border-color: rgba(185,242,255,0.35);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.2),
        0 8px 32px rgba(0,191,255,0.2),
        inset 0 -1px 1px rgba(0,0,0,0.05);
}
.loyalty-tier.diamond svg { color: #b9f2ff; }
.loyalty-card:hover .loyalty-tier {
    transform: translateY(-4px) scale(1.08);
}
.loyalty-card:hover .loyalty-tier::before {
    border-color: rgba(255,255,255,0.45);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.3),
        0 12px 40px rgba(0,0,0,0.2),
        inset 0 -1px 1px rgba(0,0,0,0.05);
}

/* Reward Points Badge */
.reward-points {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--sat-primary);
}

/* ============================================
   DARK MODE — Shield Dark Interior Override
   ============================================ */

/* Override the sh3D gradient stops in dark mode */
html:not(.light) .hero-shield-svg #sh3D stop[offset="0%"] {
    stop-color: #1a0a2e;
}
html:not(.light) .hero-shield-svg #sh3D stop[offset="50%"] {
    stop-color: #120824;
}
html:not(.light) .hero-shield-svg #sh3D stop[offset="100%"] {
    stop-color: #0d0518;
}

/* Darken the inner highlight path */
html:not(.light) .hero-shield-svg path[fill="rgba(255,240,245,0.15)"] {
    fill: rgba(255,45,141,0.08);
}

/* Boost the glow opacity in dark mode */
html:not(.light) .hero-shield-svg #shGlow stop[offset="0%"] {
    stop-opacity: 0.25;
}
html:not(.light) .hero-shield-svg #shGlow stop[offset="100%"] {
    stop-opacity: 0.55;
}

/* ============================================
   HOME STATS BAR — MATCHES ABOUT PAGE DESIGN
   Added below existing code — DO NOT MODIFY ABOVE
   ============================================ */

.stats-bar {
    padding: 30px 0 !important;
    background: transparent !important;
}

.stats-grid {
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    border-radius: 20px !important;
    padding: 32px 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
    gap: 0 !important;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0;
}

.stat-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #ffffff;
    opacity: 0.9;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-value {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: #ffffff;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

html.light .stats-grid {
    background: linear-gradient(135deg, #d63384, #be185d) !important;
}

html.dark .stats-grid {
    background: linear-gradient(135deg, #6b1a3e, #4a0f2e) !important;
    border: 1px solid rgba(255, 45, 141, 0.2) !important;
}

html.light .stat-icon,
html.dark .stat-icon {
    color: #ffffff;
    opacity: 0.9;
}

html.light .stat-value,
html.dark .stat-value {
    color: #ffffff;
}

html.light .stat-label,
html.dark .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

html.light .stat-item:not(:last-child)::after,
html.dark .stat-item:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 20px;
        padding: 28px !important;
    }
    .stat-item {
        min-width: 130px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        padding: 24px 16px !important;
    }
    .stat-value {
        font-size: 22px;
    }
}

/* ============================================
   FAQ SECTION — Native <details> accordion
   Added below existing code — DO NOT MODIFY ABOVE
   ============================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--sat-card-bg);
    border: 1px solid var(--sat-border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--sat-primary);
    box-shadow: 0 4px 20px rgba(255, 45, 141, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--sat-text);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--sat-primary);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 12px;
    color: var(--sat-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--sat-text-muted);
    font-size: 14px;
    line-height: 1.7;
    animation: faqFadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    .faq-answer {
        padding: 0 20px 16px;
    }
}

/* ============================================
   MOBILE HERO FIX — Text on top, Shield below, Shield on Pedestal
   Added at bottom — DO NOT MODIFY ABOVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
    }
    .hero-left {
        order: 1 !important;
    }
    .hero-right {
        order: 2 !important;
    }
    .hero-left .hero-subtitle {
        margin: 0 auto 32px !important;
    }
    .hero-buttons {
        justify-content: center !important;
    }
    .trust-badges {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 110px !important;
        padding-bottom: 60px !important;
    }
    .hero-left h1 {
        font-size: 32px !important;
    }
    .hero-left .hero-subtitle {
        font-size: 15px !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
    }

    /* Shield scene - text on top, shield below */
    .hero-right {
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .hero-shield-scene {
        position: relative !important;
        width: 320px !important;
        height: 360px !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }

    /* Shield sits ON the pedestal */
    .hero-shield-wrap {
        position: absolute !important;
        bottom: 55px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 180px !important;
        height: 234px !important;
        z-index: 2 !important;
    }

    .hero-shield-svg {
        width: 100% !important;
        height: 100% !important;
    }

    /* Pedestal at bottom */
    .hero-pedestal {
        position: absolute !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 180px !important;
        z-index: 1 !important;
    }

    /* Rings behind everything */
    .hero-rings {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 0 !important;
    }

    /* Coins positioned around shield */
    .hero-float-coin {
        position: absolute !important;
        z-index: 3 !important;
    }
    .hero-f-btc { top: 30px; right: 40px; }
    .hero-f-eth { top: 90px; right: 10px; }
    .hero-f-usdt { bottom: 110px; right: 20px; }
    .hero-f-sol { top: 50px; left: 30px; }

    .hero-float-coin svg {
        width: 36px !important;
        height: 36px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px !important;
    }
    .hero-left h1 {
        font-size: 28px !important;
    }
    .hero-shield-scene {
        width: 280px !important;
        height: 320px !important;
        max-width: 280px !important;
    }
    .hero-shield-wrap {
        width: 160px !important;
        height: 208px !important;
        bottom: 50px !important;
    }
    .hero-pedestal {
        width: 160px !important;
        bottom: 18px !important;
    }
    .hero-float-coin svg {
        width: 32px !important;
        height: 32px !important;
    }
}