@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =========================================
   1. ROOT VARIABLES
   ========================================= */
:root {
  --bg-dark: #06050e;
  --bg-card: rgba(14, 11, 30, 0.55);
  --bg-card-hover: rgba(20, 16, 42, 0.7);
  --text-main: #f0f0f5;
  --text-muted: #8a89a5;
  --neon-pink: #e91e8c;
  --neon-purple: #a855f7;
  --neon-cyan: #22d3ee;
  --neon-green: #10b981;
  --neon-gold: #fbbf24;
  --gradient-main: linear-gradient(135deg, #e91e8c, #a855f7, #22d3ee);
  --gradient-gold: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

/* =========================================
   2. GLOBAL
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-pink);
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}

/* =========================================
   3. CANVAS BACKGROUND
   ========================================= */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* =========================================
   4. HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(6, 5, 14, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
  background: rgba(6, 5, 14, 0.8);
  padding: 15px 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo img {
  height: 36px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo:hover img {
  transform: rotate(-10deg) scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
}

#nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

#nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  color: var(--text-main);
  transition: color 0.3s ease;
  text-decoration: none;
}

#nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}

#nav-list a:hover {
  color: #fff;
}
#nav-list a:hover::after {
  width: 100%;
}

.nav-discord {
  background: linear-gradient(135deg, #5865F2, #7c3aed);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
  text-decoration: none;
}

.nav-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(88, 101, 242, 0.6);
}

#mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 5% 60px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(233, 30, 140, 0.1);
  border: 1px solid rgba(233, 30, 140, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-pink);
  margin-bottom: 24px;
  animation: float 4s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient-flow 4s linear infinite;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 0 20px rgba(233, 30, 140, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 30px;
  min-width: 180px;
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   6. SECTION GLOBALS
   ========================================= */
section {
  padding: 100px 5%;
  position: relative;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   7. TRUST BADGES
   ========================================= */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 5%;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}
.trust-badge:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.08);
}
.trust-badge i {
  color: var(--neon-cyan);
  font-size: 1.2rem;
}
.trust-badge span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* =========================================
   8. FEATURES GRID
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(233, 30, 140, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.15);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* =========================================
   9. HOW IT WORKS
   ========================================= */
.steps-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step-card {
  text-align: center;
  flex: 1;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-card .feature-icon {
  margin: 0 auto 20px;
}

.step-connector {
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
  z-index: 1;
}

/* =========================================
   10. STORE / PRICING
   ========================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.category-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left-width: 3px;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.category-card.accent-pink, .category-card.cat-pink { border-left-color: var(--neon-pink); }
.category-card.accent-cyan, .category-card.cat-cyan { border-left-color: var(--neon-cyan); }
.category-card.accent-purple, .category-card.cat-purple { border-left-color: var(--neon-purple); }
.category-card.accent-green, .category-card.cat-green { border-left-color: var(--neon-green); }
.category-card.accent-gold, .category-card.cat-gold { border-left-color: var(--neon-gold); }

/* Category and Pricing Images Styling */
.cat-img-wrapper {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cat-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .cat-img-wrapper img {
  transform: scale(1.05);
}

.pricing-card-image {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pricing-card:hover .pricing-card-image img {
  transform: scale(1.05);
}

.sale-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
  animation: badge-pulse 2s infinite;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.premium {
  background: rgba(20, 16, 42, 0.6);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}
.pricing-card.premium::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: var(--gradient-main);
  border-radius: 17px;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.pricing-card.premium:hover::before {
  opacity: 1;
}

.pricing-card.ultimate {
  background: rgba(30, 22, 12, 0.6);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}
.pricing-card.ultimate::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: var(--gradient-gold);
  border-radius: 17px;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.pricing-card.ultimate:hover::before {
  opacity: 1;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gradient-main);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 10;
}
.pricing-badge.gold {
  background: var(--gradient-gold);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.sale-price {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.sale-price.gradient-text {
  animation: gradient-flow 3s linear infinite;
}

.product-features {
  flex-grow: 1;
  margin-bottom: 30px;
}

.product-features li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.product-features li i.check { color: var(--neon-green); margin-top: 4px; }
.product-features li i.cross { color: rgba(255,255,255,0.2); margin-top: 4px; }
.product-features li.muted { color: var(--text-muted); }

.pricing-action {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}
.pricing-action.regular {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.pricing-action.regular:hover {
  background: rgba(255, 255, 255, 0.1);
}
.pricing-action.premium {
  background: var(--gradient-main);
  color: #fff;
  border: none;
}
.pricing-action.premium:hover {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

/* =========================================
   11. REVIEWS
   ========================================= */
.reviews-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
/* Mask for smooth fade at edges */
.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.review-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 60s linear infinite;
  margin-bottom: 24px;
}
.review-track-reverse {
  animation: marquee-reverse 55s linear infinite;
}

.reviews-marquee:hover .review-track,
.reviews-marquee:hover .review-track-reverse {
  animation-play-state: paused;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  min-width: 340px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.review-stars {
  color: #fbbf24;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.author-info h4 {
  font-size: 0.9rem;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================
   12. FAQ
   ========================================= */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--neon-purple);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

/* =========================================
   13. CTA SECTION
   ========================================= */
.cta-section {
  padding-bottom: 120px;
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(14, 11, 30, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: var(--gradient-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.cta-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   14. FOOTER
   ========================================= */
.footer {
  background: rgba(10, 8, 20, 0.9);
  padding: 80px 5% 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 300px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--neon-pink);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--gradient-main);
  transform: translateY(-3px);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================
   15. ANIMATIONS & KEYFRAMES
   ========================================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(233, 30, 140, 0.15); }
  50% { box-shadow: 0 0 40px rgba(233, 30, 140, 0.4); }
}
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =========================================
   16. SCROLL ANIMATIONS (Reveal)
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.5, 0, 0, 1), transform 0.7s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   17. RESPONSIVE DESIGN
   ========================================= */

/* Tablet landscape / small desktop */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }
  
  #mobile-menu-btn {
    display: block;
  }
  
  .nav {
    display: none;
  }
  
  .nav.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }
  
  .nav.open #nav-list {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
  }

  .nav.open #nav-list a {
    font-size: 1.5rem;
  }
  
  .hero {
    padding-top: 140px;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .features-grid,
  .category-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Make category cards horizontal on mobile */
  .category-card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }
  .category-card .cat-img-wrapper {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin-bottom: 0;
    border-radius: 10px;
  }
  .category-card .cat-title {
    font-size: 1rem;
  }
  .category-card .cat-price {
    font-size: 0.85rem;
  }
  .category-card .btn-cat {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* Pricing cards full width on mobile */
  .pricing-card {
    padding: 28px 20px;
  }
  .pricing-card-image {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  
  .stat-card {
    width: 100%;
  }
  
  section {
    padding: 50px 4%;
  }
  
  .cta-card {
    padding: 40px 20px;
  }
  
  .pricing-card {
    padding: 22px 16px;
  }
  .pricing-card-image {
    height: 120px;
  }
}

/* =========================================
   18. PRODUCT DETAIL ACCORDIONS
   ========================================= */
.description-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  margin-top: 15px;
  cursor: pointer;
  color: var(--neon-purple);
  font-size: 0.9rem;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease;
}
.description-toggle:hover {
  color: var(--neon-pink);
}
.description-toggle i {
  transition: transform 0.3s ease;
}
.description-toggle.active i {
  transform: rotate(180deg);
  color: var(--neon-pink);
}
.product-description-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.5, 0, 0, 1), padding 0.4s ease;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0;
}
.product-description-panel.open {
  padding-top: 12px;
  padding-bottom: 12px;
}
.product-description-panel p {
  margin-bottom: 8px;
}
.product-description-panel ul {
  padding-left: 15px;
  margin-bottom: 10px;
}
.product-description-panel li {
  margin-bottom: 4px;
  list-style-type: square;
}
