﻿/* =============================================
   GoldenServ – Premium Redesign
   Inspired by sharedlicense.co.uk layout
   ============================================= */

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

/* ---- CSS Variables ---- */
:root {
  --gold:        #F5A623;
  --gold-light:  #FFD07A;
  --gold-dark:   #C98B19;
  --navy:        #0A0F2E;
  --navy-mid:    #111832;
  --navy-soft:   #1A2347;
  --navy-light:  #1E2B54;
  --accent:      #6C63FF;
  --accent2:     #FF5A6E;
  --text:        #E2E8F0;
  --text-muted:  #94A3B8;
  --text-dim:    #64748B;
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(245,166,35,0.25);
  --glass:       rgba(255,255,255,0.04);
  --glass-hover: rgba(255,255,255,0.08);
  --shadow-gold: 0 0 30px rgba(245,166,35,0.2);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- CSS Variables - Light Mode ---- */
[data-theme="light"] {
  --navy:        #F5F7FA;
  --navy-mid:    #EAEEF5;
  --navy-soft:   #FFFFFF;
  --navy-light:  #DDE4F0;
  --text:        #1C2B4A;
  --text-muted:  #4A5E7A;
  --text-dim:    #7A8EA8;
  --border:      rgba(28,43,74,0.10);
  --border-gold: rgba(180,120,15,0.35);
  --glass:       rgba(28,43,74,0.04);
  --glass-hover: rgba(28,43,74,0.07);
  --shadow-gold: 0 0 30px rgba(245,166,35,0.18);
}

/* Smooth theme transition */
[data-theme="light"] *,
[data-theme="light"] *::before,
[data-theme="light"] *::after {
  transition-property: background, background-color, border-color, color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
  background: linear-gradient(90deg, #d4951a, #f5a623, #d4951a);
  color: #ffffff !important;
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: relative;
  z-index: 100;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar-link {
  color: #ffffff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  opacity: 0.85;
}
.top-bar-link:hover {
  opacity: 1;
  text-shadow: 0 0 12px rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
.top-bar-link svg {
  width: 16px !important;
  height: 16px !important;
  stroke-width: 1.5 !important;
  opacity: 0.9;
}
.top-bar-icon {
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.top-bar-badge {
  background: #ffffff;
  color: #c98b19;
  border-radius: 30px;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(10, 15, 46, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 15px rgba(245,166,35,0.35);
}
.logo-icon.small { width: 30px; height: 30px; font-size: 1rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}

/* Navigation */
.nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link:focus {
  color: #fff;
  background: var(--glass);
}
.nav-link svg { flex-shrink: 0; }
.dropdown-arrow { transition: transform var(--transition); }
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 260px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.dropdown-item:hover { background: var(--glass-hover); }
.dropdown-item img { border-radius: 6px; flex-shrink: 0; }
.dropdown-icon-placeholder {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.dropdown-text strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}
.dropdown-text span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.btn-cart:hover { color: #fff; border-color: var(--border-gold); }
.btn-login {
  padding: 8px 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: all var(--transition);
}
.btn-login:hover { background: var(--glass-hover); border-color: var(--gold); }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.mobile-menu-btn:hover { background: var(--glass-hover); }
.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--glass);
  border-color: var(--border-gold);
  color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn-ghost:hover { background: rgba(245,166,35,0.08); }
.btn-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-white:hover { background: rgba(255,255,255,0.25); }
.btn-white-solid {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.25); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(245,166,35,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(108,99,255,0.06) 0%, transparent 60%),
              var(--navy);
}
.hero-bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.hero-gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-desc strong { color: var(--gold); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.stat-label { font-size: 0.75rem; color: var(--text-dim); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 300px;
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: float 6s ease infinite;
  min-width: 220px;
}
.card-1 {
  top: 0; left: 0;
  animation-delay: 0s;
  border-color: var(--border-gold);
}
.card-2 {
  top: 50%; left: 50%;
  transform: translate(-30%, -50%);
  animation-delay: 1s;
}
.card-3 {
  bottom: 0; right: 0;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-2 { animation: float2 6s ease infinite 1s; }
@keyframes float2 {
  0%, 100% { transform: translate(-30%, -50%) translateY(0); }
  50% { transform: translate(-30%, -50%) translateY(-8px); }
}
.card-3 { animation: float3 6s ease infinite 2s; }
@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cpanel-color { background: linear-gradient(135deg, #ff6b35, #e64c20); }
.cloudlinux-color { background: linear-gradient(135deg, #6bc5f8, #2196f3); }
.litespeed-color { background: linear-gradient(135deg, #ffd54f, #ff8f00); }
.card-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.card-price { font-size: 0.75rem; color: var(--text-dim); }
.card-badge-green {
  margin-left: auto;
  background: rgba(16,185,129,0.15);
  color: #10b981;
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb-1 {
  width: 200px; height: 200px;
  background: rgba(245,166,35,0.1);
  top: -40px; right: -40px;
}
.orb-2 {
  width: 150px; height: 150px;
  background: rgba(108,99,255,0.08);
  bottom: -20px; left: -20px;
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
  padding: 24px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-label { font-size: 0.78rem; color: var(--text-dim); white-space: nowrap; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.trust-logos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.brand-pill {
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid;
}
.cpanel-pill    { background: rgba(255,107,53,0.08);  color: #ff6b35; border-color: rgba(255,107,53,0.2); }
.cloudlinux-pill{ background: rgba(107,197,248,0.08); color: #6bc5f8; border-color: rgba(107,197,248,0.2); }
.litespeed-pill { background: rgba(255,213,79,0.08);  color: #ffd54f; border-color: rgba(255,213,79,0.2); }
.whmcs-pill     { background: rgba(108,99,255,0.08);  color: #a78bfa; border-color: rgba(108,99,255,0.2); }
.imunify-pill   { background: rgba(16,185,129,0.08);  color: #10b981; border-color: rgba(16,185,129,0.2); }
.plesk-pill     { background: rgba(99,179,237,0.08);  color: #63b3ed; border-color: rgba(99,179,237,0.2); }
.softaculous-pill{ background: rgba(236,72,153,0.08); color: #f472b6; border-color: rgba(236,72,153,0.2); }

/* ==========================================
   SECTIONS - SHARED STYLES
   ========================================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================
   WHY SECTION
   ========================================== */
.why-section { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  background: var(--glass-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: transform var(--transition);
}
.feature-card:hover .feature-icon-wrap { transform: scale(1.1); }
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.product-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, var(--navy-soft), rgba(245,166,35,0.04));
}
.product-card.featured:hover { box-shadow: var(--shadow-gold), 0 30px 60px rgba(0,0,0,0.4); }
.product-badge-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cpanel-bg     { background: linear-gradient(135deg, #ff6b35, #c0392b); }
.cloudlinux-bg { background: linear-gradient(135deg, #2196f3, #1565c0); }
.litespeed-bg  { background: linear-gradient(135deg, #ff8f00, #e65100); }
.whmcs-bg      { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.imunify-bg    { background: linear-gradient(135deg, #059669, #065f46); }
.plesk-bg      { background: linear-gradient(135deg, #0891b2, #164e63); }
.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.product-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.product-price { margin-bottom: 24px; display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.8rem; color: var(--text-dim); }
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.price-period { font-size: 0.85rem; color: var(--text-dim); }
.product-features { margin-bottom: 28px; flex: 1; }
.product-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.product-features li:last-child { border-bottom: none; }
.product-features li::first-letter { color: var(--gold); }
.products-footer {
  text-align: center;
  padding: 30px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.products-footer p { color: var(--text-muted); margin-bottom: 16px; }
.products-footer strong { color: #fff; }

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-section { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-gold), var(--border));
  margin-top: -30px;
}
.step-item { text-align: center; padding: 30px 20px; }
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(245,166,35,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.step-item h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-left .section-tag { margin-bottom: 16px; }
.stats-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.stats-left p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.stats-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.big-stat {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all var(--transition);
}
.big-stat:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.big-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}
.big-stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* ==========================================
   RESELLER SECTION
   ========================================== */
.reseller-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-soft) 0%, rgba(108,99,255,0.06) 50%, var(--navy-soft) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reseller-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.light-tag {
  background: rgba(108,99,255,0.1);
  border-color: rgba(108,99,255,0.3);
  color: #a78bfa;
}
.reseller-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.reseller-content p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.reseller-perks { margin-bottom: 32px; }
.reseller-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
}
.reseller-perks li svg { color: #10b981; flex-shrink: 0; }
.reseller-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-gold);
}
.rc-header {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.rc-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
}
.rc-product:last-of-type { border-bottom: none; }
.rc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rc-dot.green { background: #10b981; }
.rc-dot.blue  { background: #60a5fa; }
.rc-dot.orange{ background: #f97316; }
.rc-price { margin-left: auto; font-weight: 600; color: var(--gold); }
.rc-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.rc-profit { color: var(--gold); font-weight: 600; }

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section { padding: 100px 0; }
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { transition: transform var(--transition); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer.open { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(108,99,255,0.06));
  border-top: 1px solid var(--border);
}
.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-inner p { color: var(--text-muted); margin-bottom: 36px; font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 80px 0 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--glass-hover); color: var(--gold); border-color: var(--border-gold); }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
/* Footer column titles (replaces h4 for semantic correctness) */
.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-payments { display: flex; gap: 12px; font-size: 0.8rem; color: var(--text-dim); }

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 90vw);
  height: 100%;
  background: var(--navy-soft);
  border-left: 1px solid var(--border);
  z-index: 1002;
  overflow-y: auto;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-close-btn {
  width: 36px;
  height: 36px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mobile-close-btn:hover { color: #fff; background: var(--glass-hover); }
.mobile-section { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.mobile-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.mobile-link {
  display: block;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--gold); }
.mobile-link.bold { font-weight: 700; color: var(--text); }
.mobile-actions { padding: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-gold); }

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; gap: 48px; }
  .reseller-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-actions .btn-cart,
  .header-actions .btn-login { display: none; }
  .header-actions { display: flex; }
  .hero { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; background: linear-gradient(180deg, var(--border-gold), var(--border)); }
  .stats-right { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar .container { justify-content: center; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .stats-right { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-divider { display: none; }
}



[data-theme="light"] .header {
  background: rgba(245,247,250,0.92) !important;
  border-bottom-color: rgba(28,43,74,0.10);
}
[data-theme="light"] .header.scrolled {
  background: rgba(245,247,250,0.98) !important;
  box-shadow: 0 4px 20px rgba(28,43,74,0.10);
}
[data-theme="light"] .logo-name { color: #1C2B4A; }
[data-theme="light"] .logo-tagline { color: var(--gold-dark); }
[data-theme="light"] .nav-link { color: #4A5E7A; }
[data-theme="light"] .nav-link:hover { color: #1C2B4A; background: rgba(28,43,74,0.06); }
[data-theme="light"] .dropdown { background: #fff; box-shadow: 0 12px 40px rgba(28,43,74,0.14); border-color: rgba(28,43,74,0.10); }
[data-theme="light"] .dropdown-text strong { color: #1C2B4A; }
[data-theme="light"] .dropdown-text span   { color: #7A8EA8; }
[data-theme="light"] .btn-cart    { color: #4A5E7A; border-color: rgba(28,43,74,0.14); }
[data-theme="light"] .btn-cart:hover { color: #1C2B4A; border-color: var(--border-gold); }
[data-theme="light"] .btn-login   { background: rgba(28,43,74,0.06); border-color: rgba(28,43,74,0.14); color: #1C2B4A; }
[data-theme="light"] .btn-login:hover { background: rgba(28,43,74,0.10); border-color: var(--gold-dark); }

[data-theme="light"] .top-bar { background: linear-gradient(90deg,var(--gold-dark),var(--gold),var(--gold-dark)); }
[data-theme="light"] .hero {
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(245,166,35,0.10) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(108,99,255,0.06) 0%, transparent 60%),
              #F5F7FA;
}
[data-theme="light"] .hero-title { color: #1C2B4A; }
[data-theme="light"] .stat-number { color: #1C2B4A; }
[data-theme="light"] .section-title { color: #1C2B4A; }
[data-theme="light"] .feature-card { background: #fff; box-shadow: 0 2px 12px rgba(28,43,74,0.06); }
[data-theme="light"] .feature-card:hover { box-shadow: 0 8px 30px rgba(245,166,35,0.15); }
[data-theme="light"] .product-card { background: #fff; box-shadow: 0 2px 12px rgba(28,43,74,0.06); border-color: rgba(28,43,74,0.10); }
[data-theme="light"] .product-card.featured { background: linear-gradient(145deg,#fff,rgba(245,166,35,0.04)); border-color: var(--border-gold); }
[data-theme="light"] .product-name { color: #1C2B4A; }
[data-theme="light"] .big-stat { background: #fff; box-shadow: 0 2px 12px rgba(28,43,74,0.06); }
[data-theme="light"] .big-stat:hover { box-shadow: 0 8px 30px rgba(245,166,35,0.15); }
[data-theme="light"] .faq-item { background: #fff; box-shadow: 0 2px 8px rgba(28,43,74,0.05); border-color: rgba(28,43,74,0.10); }
[data-theme="light"] .faq-question { color: #1C2B4A; }
[data-theme="light"] .footer { background: #EAEEF5; border-top-color: rgba(28,43,74,0.10); }
[data-theme="light"] .footer-bottom { border-top-color: rgba(28,43,74,0.10); }
[data-theme="light"] .footer-bottom p { color: #7A8EA8; }
[data-theme="light"] .footer-col li a { color: #4A5E7A; }
[data-theme="light"] .footer-col li a:hover { color: var(--gold-dark); }
[data-theme="light"] .footer-logo span { color: #1C2B4A; }
[data-theme="light"] .footer-brand p { color: #7A8EA8; }
[data-theme="light"] .mobile-menu { background: #fff; }
[data-theme="light"] .mobile-link { color: #4A5E7A; }
[data-theme="light"] .reseller-card { background: #F5F7FA; border-color: rgba(28,43,74,0.10); }
[data-theme="light"] .rc-header { color: var(--gold-dark); }
[data-theme="light"] .step-item p { color: #4A5E7A; }
[data-theme="light"] .step-item h3 { color: #1C2B4A; }
[data-theme="light"] .cta-section { background: linear-gradient(135deg,rgba(245,166,35,0.10),rgba(108,99,255,0.06)); border-top-color: rgba(28,43,74,0.10); }


/* ==========================================
   THEME TOGGLE BUTTON
   ========================================== */
.theme-toggle {
  position: relative;
  width: 64px;
  height: 32px;
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: 30px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  padding: 4px;
  gap: 0;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.2);
}
.theme-toggle:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 12px rgba(245,166,35,0.2), inset 0 1px 4px rgba(0,0,0,0.2);
}
.theme-toggle-knob {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 2px 8px rgba(245,166,35,0.4);
  transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  z-index: 0;
}
[data-theme="light"] .theme-toggle {
  background: #E6EDF5;
  border-color: rgba(201,139,25,0.4);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.06);
}
[data-theme="light"] .theme-toggle-knob {
  left: 34px;
  background: linear-gradient(135deg, #FFE082, #FFCA28);
  box-shadow: 0 2px 8px rgba(245,166,35,0.5);
}
.toggle-icons { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0; pointer-events: none; position: relative; z-index: 1; }
.toggle-icon-moon,
.toggle-icon-sun {
  font-size: 14px;
  line-height: 1;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.toggle-icon-moon { opacity: 0.5; }
.toggle-icon-sun  { opacity: 0.5; }
[data-theme="light"] .toggle-icon-sun  { opacity: 1; }
[data-theme="light"] .toggle-icon-moon { opacity: 0.4; }

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.fc-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float-pulse 3s infinite ease-in-out;
}

.fc-telegram {
  animation-delay: 1.5s;
}

.fc-btn:hover {
  animation: none;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.fc-whatsapp {
  background-color: #25D366;
}

.fc-telegram {
  background-color: #0088cc;
}

.fc-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes float-pulse {
  0% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
  50% { transform: scale(1.08); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
  100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
}


/* Extra Light Mode Overrides */
[data-theme="light"] .card-name { color: #1C2B4A; }
[data-theme="light"] .floating-card { box-shadow: 0 12px 40px rgba(28,43,74,0.08); }
[data-theme="light"] .btn-ghost { background: rgba(28,43,74,0.04); }
[data-theme="light"] .btn-ghost:hover { background: rgba(28,43,74,0.08); }
[data-theme="light"] .products-footer strong { color: #1C2B4A; }
[data-theme="light"] .mobile-close-btn { color: #1C2B4A; }
[data-theme="light"] .hero-title { color: #1C2B4A; }
[data-theme="light"] .stat-label { color: #4A5E7A; }

/* Missing Text Overrides for Light Mode */
[data-theme="light"] .feature-card h3 { color: #1C2B4A; }
[data-theme="light"] .stats-left h2 { color: #1C2B4A; }
[data-theme="light"] .reseller-content h2 { color: #1C2B4A; }
[data-theme="light"] .cta-inner h2 { color: #1C2B4A; }
[data-theme="light"] .footer-col h4 { color: #1C2B4A; }
/* Footer column titles (replaces h4 for semantic correctness) */
.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

[data-theme="light"] .big-stat-val { color: #1C2B4A; }
[data-theme="light"] .trust-bar p { color: #4A5E7A; }


@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 6px 12px;
  }
  .top-bar-right { gap: 12px; flex-wrap: wrap; justify-content: center; }
}



/* CTA Buttons Light Mode */
[data-theme="light"] .btn-white {
  background: rgba(28,43,74,0.05);
  color: #1C2B4A !important;
  border: 1px solid rgba(28,43,74,0.15);
}
[data-theme="light"] .btn-white:hover {
  background: rgba(28,43,74,0.1);
}
[data-theme="light"] .btn-white-solid {
  background: #ffffff;
  color: #1C2B4A !important;
  box-shadow: 0 4px 15px rgba(28,43,74,0.08);
  border: 1px solid rgba(28,43,74,0.05);
}
[data-theme="light"] .btn-white-solid:hover {
  box-shadow: 0 8px 25px rgba(28,43,74,0.15);
  transform: translateY(-2px);
}
[data-theme="light"] .btn-outline-white {
  color: #1C2B4A;
  border-color: rgba(28,43,74,0.2);
}
[data-theme="light"] .btn-outline-white:hover {
  background: rgba(28,43,74,0.05);
  color: #1C2B4A;
}

/* Dropdown Bridge to prevent hover loss */
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

/* Enhanced Mobile Adjustments */
@media (max-width: 768px) {
  /* Top Bar Fixes */
  .top-bar-inner {
    padding: 8px 12px;
  }
  .top-bar-right {
    display: none !important; /* Hide links on mobile to save space */
  }
  .top-bar-left {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .top-bar-badge {
    margin-left: 0;
    margin-top: 6px;
    display: inline-block;
  }

  /* Floating Contacts */
  .floating-contact {
    left: 16px;
    bottom: 16px;
    gap: 12px;
  }
  .fc-btn {
    width: 46px;
    height: 46px;
  }
  .fc-btn svg {
    width: 24px;
    height: 24px;
  }
  
  /* Hero fixes */
  .product-hero-title {
    font-size: 2.2rem;
  }
  .product-hero-badge {
    white-space: normal;
    text-align: center;
    line-height: 1.5;
    padding: 6px 16px;
    height: auto;
  }
}

/* Home Page Hero Fixes (Mobile) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-badge {
    white-space: normal;
    text-align: center;
    line-height: 1.5;
    padding: 6px 16px;
    height: auto;
    width: fit-content;
    max-width: 100%;
  }
}

/* Home Page Hero Badge Fix (Mobile) */
@media (max-width: 768px) {
  .hero-badge {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .hero-badge .badge-dot {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    margin-bottom: 2px;
  }
}

/* Hide weird particles in Light Mode */
[data-theme="light"] .hero-bg-particles {
  display: none !important;
}

/* Hero Stats Fix (Mobile) */
@media (max-width: 768px) {
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
  }
  .stat-item {
    align-items: flex-start;
  }
}

/* Move Floating Contacts to Right on Mobile */
@media (max-width: 768px) {
  .floating-contact {
    left: auto !important;
    right: 16px !important;
  }
}

/* Center Hero Stats on Mobile */
@media (max-width: 768px) {
  .hero-stats {
    justify-items: center;
  }
  .stat-item {
    align-items: center !important;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .reseller-pricing-table, .reseller-pricing-table tbody, .reseller-pricing-table tr, .reseller-pricing-table td {
    display: block; width: 100%; min-width: 0 !important;
  }
  .reseller-pricing-table thead { display: none; }
  .reseller-pricing-wrapper { padding: 0 !important; background: transparent !important; border: none !important; box-shadow: none !important; overflow: hidden !important; }
  .reseller-pricing-table tr { margin-bottom: 20px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--card-bg); }
  .reseller-pricing-table td { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 14px 20px; text-align: right; gap: 10px; }
  .reseller-pricing-table tr:hover td { background: transparent; }
  .reseller-pricing-table td:last-child { border-bottom: none; }
  .reseller-pricing-table td::before { font-weight: 600; color: var(--text-dim); font-size: 0.8rem; }
  
  .reseller-pricing-table td:nth-child(1) { background: var(--navy); justify-content: center; border-bottom: 1px solid var(--border); }
  .reseller-pricing-table td:nth-child(2)::before { content: "Retail Price"; }
  .reseller-pricing-table td:nth-child(3)::before { content: "Tier 1"; }
  .reseller-pricing-table td:nth-child(4)::before { content: "Tier 2"; }
  .reseller-pricing-table td:nth-child(5)::before { content: "Tier 3"; }
  
  [data-theme="light"] .reseller-pricing-table tr { background: #fff; border-color: rgba(0,0,0,0.1); }
  [data-theme="light"] .reseller-pricing-table td { border-bottom-color: rgba(0,0,0,0.05); }
  [data-theme="light"] .reseller-pricing-table td:nth-child(1) { background: #f8fafc; border-bottom-color: rgba(0,0,0,0.1); }
}


/* =====================================================
   FIX P-04: Particle Animation Keyframes
   Moved from inline JS style injection to static CSS
   Random dx via CSS custom property --p-dx (set in JS)
   ===================================================== */
@keyframes particle-drift {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: var(--p-opacity, 0.08); }
    90%  { opacity: var(--p-opacity, 0.08); }
    100% { transform: translateY(-60px) translateX(var(--p-dx, 0px)); opacity: 0; }
}
