/* ========== ROOT & RESET ========== */
:root {
  --bg-dark: #060612;
  --bg-card: #0d0d1f;
  --bg-card2: #111128;
  --accent: #7c3aed;
  --accent2: #06b6d4;
  --accent3: #a855f7;
  --gradient: linear-gradient(135deg, #7c3aed, #06b6d4);
  --gradient2: linear-gradient(135deg, #a855f7, #7c3aed);
  --text: #e2e8f0;
  --text-muted: #8892a4;
  --border: rgba(124, 58, 237, 0.2);
  --border-light: rgba(255,255,255,0.05);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 0 40px rgba(124,58,237,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ========== LOADER ========== */
#loader {
  position: fixed; inset: 0; background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s, visibility 0.5s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: #fff; letter-spacing: 4px;
  margin-bottom: 20px;
}
.loader-logo span { color: var(--accent2); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
  height: 100%; width: 0;
  background: var(--gradient);
  border-radius: 99px;
  animation: loaderAnim 1.5s ease forwards;
}
@keyframes loaderAnim { to { width: 100%; } }

/* ========== NAVBAR ========== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(6,6,18,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s;
}
#navbar.scrolled {
  background: rgba(6,6,18,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  height: 70px;
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: #fff; letter-spacing: 2px;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent2); }
.nav-links {
  display: flex; gap: 2rem; margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem; color: var(--text-muted);
  transition: color 0.3s; font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.3s; border-radius: 99px;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex; align-items: center; gap: 1rem;
}
.cart-btn {
  position: relative; font-size: 1.2rem; color: var(--text-muted);
  padding: 8px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.cart-btn:hover { color: var(--accent2); background: rgba(6,182,212,0.1); }
#cart-count {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.btn-login {
  padding: 8px 18px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text); border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-login:hover { border-color: var(--accent); color: var(--accent); }
.btn-register {
  padding: 8px 18px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  background: var(--gradient);
  color: #fff; transition: all 0.3s;
}
.btn-register:hover { opacity: 0.85; transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.4rem; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 2rem; border-bottom: 1px solid var(--border-light);
  color: var(--text-muted); font-weight: 500;
  transition: all 0.2s;
}
.mobile-menu a:hover { color: #fff; background: rgba(124,58,237,0.1); padding-left: 2.5rem; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  background: var(--gradient); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 0 30px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(124,58,237,0.6); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  background: transparent; color: #fff;
  font-weight: 700; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--accent2); color: var(--accent2); background: rgba(6,182,212,0.08); }
.full-width { width: 100%; justify-content: center; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 2rem 60px;
  position: relative; overflow: hidden;
  gap: 4rem;
  max-width: 1280px; margin: 0 auto;
}
.hero-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 1;
  flex: 1; max-width: 600px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 99px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--accent3); font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.2rem; color: #fff;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: var(--text-muted); font-size: 1.05rem;
  margin-bottom: 2rem; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; align-items: center; gap: 2rem; }
.stat { text-align: center; }
.stat span:first-child { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900; color: #fff; }
.stat span:nth-child(2) { font-size: 1.5rem; color: var(--accent); }
.stat p { color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-light); }

/* HERO VISUAL */
.hero-visual {
  position: relative; z-index: 1;
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.server-circle {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100px; height: 100px;
}
.server-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.3);
  animation: spin 10s linear infinite;
}
.ring1 { width: 200px; height: 200px; animation-duration: 15s; }
.ring2 { width: 150px; height: 150px; animation-direction: reverse; animation-duration: 10s; border-color: rgba(6,182,212,0.3); }
.ring3 { width: 90px; height: 90px; animation-duration: 7s; border-color: rgba(168,85,247,0.4); }
@keyframes spin { to { transform: rotate(360deg); } }
.server-core {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  box-shadow: 0 0 40px rgba(124,58,237,0.6);
}
.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: var(--radius);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 600; color: #fff;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(124,58,237,0.2);
}
.floating-card i { font-size: 1.2rem; color: var(--accent2); }
.card1 { top: 20px; left: -40px; animation: float 3s ease-in-out infinite; }
.card2 { bottom: 60px; left: -60px; animation: float 3s ease-in-out infinite 1s; }
.card3 { top: 60px; right: -40px; animation: float 3s ease-in-out infinite 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* PARTICLES */
.particles { position: absolute; inset: 0; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--accent);
  animation: particleFloat linear infinite;
  opacity: 0.4;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  50% { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ========== MARQUEE ========== */
.marquee-wrap {
  overflow: hidden; padding: 16px 0;
  background: rgba(124,58,237,0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee span { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.marquee i { color: var(--accent); font-size: 0.4rem; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ========== SECTIONS ========== */
.section { padding: 80px 2rem; }
.section-dark { background: var(--bg-card); }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; padding: 6px 16px;
  border-radius: 99px; background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--accent3); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; color: #fff;
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ========== FILTER TABS ========== */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 9px 20px; border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient);
  border-color: transparent; color: #fff;
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}

/* ========== PRODUCTS GRID ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.product-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.35s;
  animation: fadeInUp 0.5s ease both;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(124,58,237,0.2);
}
.product-card.hidden { display: none; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-thumb-icon {
  font-size: 4rem; z-index: 1;
  filter: drop-shadow(0 0 20px currentColor);
}
.product-badge-wrap {
  position: absolute; top: 12px; left: 12px; display: flex; gap: 6px;
}
.badge {
  padding: 4px 10px; border-radius: 99px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-new { background: rgba(16,185,129,0.2); color: #10b981; border: 1px solid rgba(16,185,129,0.3); }
.badge-hot { background: rgba(239,68,68,0.2); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.badge-sale { background: rgba(245,158,11,0.2); color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.product-body { padding: 1.2rem; }
.product-category {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  color: var(--accent2); letter-spacing: 1px; margin-bottom: 6px;
}
.product-title {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 6px; line-height: 1.4;
}
.product-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 1rem; }
.stars { color: #f59e0b; font-size: 0.8rem; }
.rating-count { color: var(--text-muted); font-size: 0.75rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { display: flex; flex-direction: column; }
.price-original { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.price-now {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem; font-weight: 900; color: #fff;
}
.price-now span { color: var(--accent2); font-size: 0.8rem; }
.btn-add-cart {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 8px;
  background: var(--gradient); color: #fff;
  font-size: 0.8rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.3s;
  white-space: nowrap;
}
.btn-add-cart:hover { opacity: 0.85; transform: scale(1.03); }

.load-more-wrap { text-align: center; margin-top: 1.5rem; }

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem; position: relative;
  transition: all 0.35s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(124,58,237,0.15);
}
.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.05));
}
.service-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 99px;
  background: var(--gradient); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
}
.service-icon {
  width: 60px; height: 60px; border-radius: var(--radius);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent3);
  margin-bottom: 1.2rem; transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--gradient); color: #fff; border-color: transparent; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; }
.service-card > p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.service-list { margin-bottom: 1.5rem; }
.service-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
  padding: 4px 0;
}
.service-list i { color: var(--success); font-size: 0.75rem; }
.btn-service {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent2); font-size: 0.85rem; font-weight: 700;
  transition: gap 0.3s;
}
.btn-service:hover { gap: 12px; }

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.why-card {
  padding: 1.8rem; border-radius: var(--radius-lg);
  background: var(--bg-card2);
  border: 1px solid var(--border-light);
  text-align: center; transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(124,58,237,0.15);
}
.why-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}
.why-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.why-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }

/* ========== TESTIMONIALS ========== */
.testimonials-slider { overflow: hidden; margin-bottom: 1.5rem; }
.testimonials-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(33.333% - 1rem);
  background: var(--bg-dark); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.8rem;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--accent); }
.testi-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: #fff; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testi-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card2); border: 1px solid var(--border-light);
  color: var(--text); cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { border-color: var(--accent); color: var(--accent); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-light); cursor: pointer; transition: all 0.3s;
}
.testi-dot.active { background: var(--accent); transform: scale(1.3); }

/* ========== CONTACT ========== */
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: #fff;
  margin: 0.5rem 0 1rem;
}
.contact-info > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  background: var(--bg-card2); border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.contact-item:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-item strong { display: block; font-size: 0.9rem; color: #fff; }
.contact-item span { font-size: 0.82rem; color: var(--text-muted); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.whatsapp { background: rgba(37,211,102,0.15); color: #25d366; }
.discord { background: rgba(88,101,242,0.15); color: #5865f2; }
.telegram { background: rgba(0,136,204,0.15); color: #0088cc; }
.email { background: rgba(124,58,237,0.15); color: var(--accent3); }

/* CONTACT FORM */
.contact-form {
  background: var(--bg-card2); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-form h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  color: var(--text); font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg-card2); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ========== FOOTER ========== */
.footer { background: var(--bg-card); border-top: 1px solid var(--border-light); padding: 4rem 2rem 2rem; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand > p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.3s; font-size: 0.9rem;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); background: rgba(124,58,237,0.1); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s; }
.footer-col a:hover { color: var(--accent2); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom i { color: #ef4444; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.payment-badges span {
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
}

/* ========== CART TOAST ========== */
.cart-toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gradient); color: #fff;
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.4s ease; z-index: 9999;
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
}
.cart-toast.show { transform: translateX(-50%) translateY(0); }

/* BACK TO TOP */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  border: none; cursor: pointer; font-size: 1rem;
  opacity: 0; pointer-events: none; transition: all 0.3s;
  z-index: 999; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(124,58,237,0.5);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: calc(50% - 0.75rem); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
}

/* ========== SCROLL ANIMATION ========== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
