/* =============================================
   GLOBAL RESET & VARIABLES
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #a855f7;
  --purple-dark: #7c3aed;
  --red: #ff4655;
  --bg: #07000f;
  --bg-2: #0b0018;
  --card-bg: rgba(15, 3, 35, 0.9);
  --border: rgba(168, 85, 247, 0.16);
  --border-hover: rgba(168, 85, 247, 0.42);
  --text: #f3e8ff;
  --text-muted: #c4b5fd;
  --text-dim: #6b5b8a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: 
    radial-gradient(ellipse 60% 60% at 15% 35%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 65%, rgba(255, 70, 85, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 70%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* =============================================
   NAVBAR
   ============================================= */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(7, 0, 15, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
}

/* Center nav-links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Right side container */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  height: 38px;
}

.lang-dropdown-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--border-hover);
  color: var(--text);
}

.lang-dropdown-btn .chevron {
  transition: transform 0.2s ease;
  color: var(--text-dim);
}

.lang-dropdown.open .lang-dropdown-btn .chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  max-height: 220px;
  overflow-y: auto;
  background: rgba(10, 0, 25, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,85,247,0.08);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: top right;
  z-index: 1010;
}

/* Custom scrollbar for language menu */
.lang-dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
.lang-dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.lang-dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}
.lang-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--border-hover);
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-dropdown-item {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: 'Inter', sans-serif;
}

.lang-dropdown-item:hover {
  background: rgba(168, 85, 247, 0.12);
  color: var(--text);
}

.lang-dropdown-item.active {
  color: var(--purple);
  background: rgba(168, 85, 247, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.logo-icon {
  font-size: 22px;
  background: linear-gradient(135deg, var(--purple), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 5px;
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  width: 48px;
  height: 44px;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(168, 85, 247, 0.16);
  border-color: var(--border-hover);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: rgba(10, 0, 25, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(168,85,247,0.08);
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: top right;
}

.dropdown-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}

.dropdown-link:hover {
  background: rgba(168, 85, 247, 0.12);
  color: var(--text);
}

.dropdown-link.active {
  color: var(--purple);
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 6px;
}

.dropdown-admin {
  color: var(--purple);
  font-weight: 700;
}

.dropdown-admin:hover {
  background: rgba(168, 85, 247, 0.15);
  color: #fff;
}

/* Inline nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: background 0.18s, color 0.18s;
}

.nav-link:hover {
  background: rgba(168, 85, 247, 0.1);
  color: var(--text);
}

.nav-link.active {
  color: var(--purple);
  background: rgba(168, 85, 247, 0.1);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 66px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--purple);
  animation: float-up linear infinite;
  opacity: 0;
  filter: blur(1px);
}

@keyframes float-up {
  0%   { opacity: 0; transform: translateY(0) scale(0.4); }
  10%  { opacity: 0.18; }
  90%  { opacity: 0.05; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.1); }
}

.pill-particle {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple) 50%, #ffffff 50%);
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.35);
  opacity: 0;
  pointer-events: none;
  animation: float-up-pill linear both;
  filter: blur(1.5px);
}

@keyframes float-up-pill {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(var(--init-rotation, -35deg)) scale(0.65);
  }
  15% {
    opacity: 0.06;
  }
  85% {
    opacity: 0.06;
  }
  100% {
    opacity: 0;
    transform: translateY(-105vh) rotate(var(--end-rotation, -15deg)) scale(1.15);
  }
}

.hero-content {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.28);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--purple);
  margin-bottom: 22px;
  animation: fade-up 0.6s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.25} }

.hero-title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
  animation: fade-up 0.6s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 40%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 30px;
  animation: fade-up 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fade-up 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 6px 28px rgba(124,58,237,0.45);
  transition: all 0.22s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(124,58,237,0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  transition: all 0.22s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Stats pills */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fade-up 0.6s ease 0.4s both;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  width: fit-content;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 18px;
}

.stat-pill:first-child { padding-left: 0; }
.stat-pill:last-child  { padding-right: 0; }

.stat-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 560px;
  animation: fade-right 0.8s ease 0.2s both;
}

.hero-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.hero-img {
  height: 100%;
  max-height: 560px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 50px rgba(168, 85, 247, 0.35));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

/* Feature strip */
.feature-strip {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
}

.feature-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(139,92,246,0.12);
}

.fi-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(124,58,237,0.08));
  border: 1px solid rgba(168,85,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 12px;
  color: var(--text-dim);
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */

.products-page {
  background: transparent;
  padding: 90px 40px 80px;
}

.products-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.28);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.products-header h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.products-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 18px rgba(124,58,237,0.4);
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.product-card {
  background: rgba(15, 3, 38, 0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.28s;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(139,92,246,0.18);
}

.product-card.hidden {
  display: none;
}

.product-img-wrap {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accounts-thumb { background: linear-gradient(135deg, #1a0832, #0d0025); }
.rank-thumb     { background: linear-gradient(135deg, #0f0a2e, #1a0832); }
.vp-thumb       { background: linear-gradient(135deg, #070820, #1a0832); }
.boost-thumb    { background: linear-gradient(135deg, #1a0515, #12002e); }
.skins-thumb    { background: linear-gradient(135deg, #0e001a, #200040); }

.product-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  border-radius: 0;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.popular    { background: rgba(168,85,247,0.85); color: #fff; }
.product-badge.instock    { background: rgba(168,85,247,0.18); color: #c084fc; border: 1px solid rgba(168,85,247,0.3); }
.product-badge.bestseller { background: rgba(168,85,247,0.18); color: #c084fc; border: 1px solid rgba(168,85,247,0.3); }

.product-info {
  padding: 16px 18px 18px;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-meta {
  margin-bottom: 14px;
}

.stars {
  font-size: 12px;
  color: #f59e0b;
}

.rating {
  color: var(--text);
  font-weight: 700;
  margin: 0 4px;
}

.sold {
  color: var(--text-dim);
  font-weight: 500;
}

.product-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.price-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 3px;
}

.prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

.price-old {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.5);
}

.products-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.products-cta-bar p {
  color: var(--text-muted);
  font-size: 14px;
}

/* =============================================
   CHEAT PRODUCT CARDS (4-column)
   ============================================= */

.cheat-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.cheat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.23, 1, 0.32, 1);
}

.cheat-card .product-img-wrap {
  height: 220px;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-box-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.cheat-card:hover .product-box-art {
  transform: scale(1.05) translateY(-3px);
}

.cheat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(124, 58, 237, 0.2);
}

/* Colored product thumbnails */
.cheat-thumb-standard,
.cheat-thumb-vip,
.cheat-thumb-perm,
.cheat-thumb-temp {
  background: linear-gradient(135deg, #1a0832, #2d0a52);
  color: var(--purple);
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0;
}

.cheat-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.cheat-features-mini {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
}

.cheat-per {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-left: 2px;
}

/* =============================================
   SECTIONS
   ============================================= */

.section { padding: 90px 40px; }

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* =============================================
   REVIEWS
   ============================================= */

.reviews-section {
  background: transparent;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(139,92,246,0.12);
}

.review-stars {
  color: #f59e0b;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

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

.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 14px; font-weight: 700; }
.review-author span   { font-size: 11px; color: var(--text-dim); }

/* =============================================
   FAQ
   ============================================= */

.faq-section {
  background: transparent;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--border-hover); }

.faq-item summary {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--purple);
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--purple); }

.faq-item > p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: rgba(5, 0, 12, 0.98);
  border-top: 1px solid var(--border);
  padding: 56px 40px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-dim);
  max-width: 220px;
}

.footer-legal {
  font-size: 11px !important;
  margin-top: 6px !important;
  opacity: 0.6;
}

.footer-links { display: flex; gap: 56px; }

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

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p { font-size: 13px; color: var(--text-dim); }

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fade-up   { from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)} }
@keyframes fade-right{ from{opacity:0;transform:translateX(36px)}to{opacity:1;transform:translateX(0)} }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
  .cheat-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
  .hero-image-wrap { order: -1; height: 340px; }
  .hero-stats { margin: 0 auto; }
  .hero-buttons { justify-content: center; }
  .feature-strip { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cheat-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
  .cheat-grid { grid-template-columns: 1fr !important; }
  .footer-links { flex-direction: column; gap: 28px; }
  .section, .products-page { padding-left: 20px; padding-right: 20px; }
  .hero-content, .feature-strip { padding-left: 20px; padding-right: 20px; }
}
