/* ────────────────────────────────────────────────────────────
   SynDex Official — Home & Shared Styles
   Dark futuristic gaming theme | Cyberpunk Red Accent #c8102e
───────────────────────────────────────────────────────────── */

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

:root {
  --red: #c8102e;
  --red-dim: #a50e28;
  --red-bright: #ff2a4b;
  --red-glow: rgba(200, 16, 46, 0.35);
  --red-subtle: rgba(200, 16, 46, 0.1);
  --bg: #030303;
  --bg2: #080808;
  --bg3: #0f0f0f;
  --bg4: #161616;
  --card-bg: rgba(14, 14, 14, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover-border: rgba(200, 16, 46, 0.4);
  --text: #ffffff;
  --muted: #8e8e93;
  --green: #22c55e;
  --green-glow: rgba(34, 197, 94, 0.3);
  --gold: #f59e0b;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

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

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

/* ── INTRO ANIMATION & HANDS ──────────────────────────────── */
.hands-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: #000000;
  transition: background 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: background;
}

body.intro-completed .hands-container {
  background: transparent;
  z-index: -1;
}

.hand-left, .hand-right {
  position: absolute;
  width: 32vw;
  max-width: 420px;
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.5) brightness(0.85);
  will-change: transform, opacity;
  pointer-events: none;
}

.hand-left {
  top: 75px;
  left: 0;
  transform: translate3d(-100%, -100%, 0) rotate(-15deg);
  animation: slide-in-left 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hand-right {
  bottom: 0;
  right: 0;
  transform: translate3d(100%, 100%, 0) rotate(15deg);
  animation: slide-in-right 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  -webkit-mask-image: linear-gradient(315deg, transparent 0%, transparent 8%, black 30%, black 100%);
  mask-image: linear-gradient(315deg, transparent 0%, transparent 8%, black 30%, black 100%);
}

@keyframes slide-in-left {
  0% { transform: translate3d(-100%, -100%, 0) rotate(-15deg); opacity: 0; }
  30% { opacity: 0.8; }
  100% { transform: translate3d(-12%, -12%, 0) rotate(0deg); opacity: 1; }
}

@keyframes slide-in-right {
  0% { transform: translate3d(100%, 100%, 0) rotate(15deg); opacity: 0; }
  30% { opacity: 0.8; }
  100% { transform: translate3d(10%, 10%, 0) rotate(0deg); opacity: 1; }
}


/* ── APP WRAPPER TRANSITION ───────────────────────────────── */
.app-wrapper {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

body.intro-completed .app-wrapper {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ── NOTICE / ANNOUNCEMENT BAR ───────────────────────────── */
.notice-bar {
  position: sticky; top: 0; z-index: 200;
  background: linear-gradient(90deg, #5c0713, var(--red), #5c0713);
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 24px; font-size: 13.5px; font-weight: 600;
  box-shadow: 0 4px 18px rgba(200, 16, 46, 0.35);
  animation: noticeSlide .3s ease;
}
.notice-content { display: flex; align-items: center; gap: 9px; margin: 0 auto; }
.notice-pulse {
  width: 7.5px; height: 7.5px; border-radius: 50%;
  background: #ffffff; box-shadow: 0 0 8px #ffffff;
  animation: blink 1.2s ease infinite;
}
@keyframes noticeSlide { from{transform:translateY(-100%)} to{transform:translateY(0)} }
.notice-bar.hidden { display: none; }
.notice-close {
  background: none; border: none; color: rgba(255,255,255,.8);
  cursor: pointer; font-size: 19px; line-height: 1; padding: 0 4px;
}
.notice-close:hover { color: #fff; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .3s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  transform: translate3d(0, -100%, 0);
}
.navbar.visible { transform: translate3d(0, 0, 0); }
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(200, 16, 46, 0.2);
}
.nav-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 68px;
}
.nav-logo {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  position: relative;
}
.nav-logo-glow {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  filter: blur(7px); pointer-events: none;
}
.nav-logo-img { width: 33px; height: 33px; object-fit: contain; position: relative; z-index: 1; }
.nav-brand { font-family: var(--font-head); font-size: 18.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; }
.nav-brand em { color: var(--red); font-style: normal; font-weight: 700; margin-left: 2px; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 28px; justify-content: center; }
.nav-links a {
  color: rgba(255, 255, 255, 0.7); font-size: 13.5px; font-weight: 500;
  transition: all .2s ease; position: relative; padding: 5px 0;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width .25s ease; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

.nav-right {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.online-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.8);
  padding: 5px 13px; background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25); border-radius: 100px;
}
.online-dot {
  width: 6.5px; height: 6.5px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 7px var(--green); animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.btn-client-login {
  background: rgba(255, 255, 255, 0.08); color: #ffffff !important;
  font-weight: 600; font-size: 13px; padding: 7px 16px; border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px);
  transition: all .25s ease;
}
.btn-client-login:hover {
  background: #ffffff; color: #000000 !important;
  transform: translateY(-1.5px); box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.btn-admin-login {
  background: linear-gradient(135deg, var(--red), #8e0b20);
  color: #ffffff !important; font-weight: 700; font-size: 13px;
  padding: 7px 16px; border-radius: 7px; border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px var(--red-glow); transition: all .25s ease;
}
.btn-admin-login:hover {
  background: linear-gradient(135deg, #e01235, var(--red));
  transform: translateY(-1.5px); box-shadow: 0 6px 22px rgba(200, 16, 46, 0.5);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 36px 50px; width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, #030303 0%, rgba(3, 3, 3, 0.85) 35%, rgba(3, 3, 3, 0.3) 70%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 42px 42px;
}
.hero-ambient-glow {
  position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.11) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-canvas {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; width: 100%; height: 100%;
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 20px;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center;
}
.hero-content {
  text-align: left;
  padding-top: 48px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 20px;
  background: rgba(200, 16, 46, 0.12); border: 1px solid rgba(200, 16, 46, 0.3);
  color: #ff6b81; font-size: 11.8px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
  box-shadow: 0 0 18px rgba(200, 16, 46, 0.18);
  opacity: 0; transform: translate3d(0, 14px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-badge.visible { opacity: 1; transform: translate3d(0, 0, 0); }
.hero-badge svg { fill: var(--red); color: var(--red); flex-shrink: 0; width: 12px; height: 12px; }

.hero-title {
  font-family: var(--font-head); font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 800; letter-spacing: 0.8px; line-height: 1.1;
  margin-bottom: 16px; color: #fff; text-transform: uppercase;
  opacity: 0;
}
.brand-highlight {
  background: linear-gradient(135deg, var(--red) 0%, #ff4d6d 50%, #ff85a1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 35px rgba(200, 16, 46, 0.45);
}
.hero-sub {
  font-size: 14.5px; color: rgba(255, 255, 255, 0.7); margin-bottom: 28px; line-height: 1.7;
  max-width: 520px; opacity: 0;
}
.hero-sub strong { color: #ffffff; }
.hero-sub svg { fill: var(--red); color: var(--red); vertical-align: middle; margin-right: 5px; width: 13px; height: 13px; }

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start;
  margin-bottom: 36px;
  opacity: 0; transform: translate3d(0, 14px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-actions.visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* Hero Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--red), #8e0b20);
  color: #ffffff !important; font-weight: 700;
  font-family: var(--font-head); font-size: 14.5px; letter-spacing: 0.4px;
  padding: 11px 22px; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 7px 24px var(--red-glow);
  transition: all .25s ease;
}
.btn-hero-primary:hover {
  background: linear-gradient(135deg, #e51336, var(--red));
  transform: translateY(-1.5px);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.6);
}

.btn-hero-trial {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff !important; font-weight: 700;
  font-family: var(--font-head); font-size: 14.5px; letter-spacing: 0.4px;
  padding: 11px 20px; border-radius: 8px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 7px 20px var(--green-glow);
  transition: all .25s ease;
}
.btn-hero-trial:hover {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: translateY(-1.5px);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.5);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.05); color: #ffffff;
  font-weight: 600; font-family: var(--font-head); font-size: 14.5px;
  padding: 11px 20px; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 9px;
  transition: all .25s ease;
}
.btn-hero-outline:hover {
  border-color: var(--red); color: var(--red);
  background: rgba(200, 16, 46, 0.08); transform: translateY(-1.5px);
}
.btn-hero-primary svg, .btn-hero-trial svg, .btn-hero-outline svg {
  width: 15px; height: 15px;
}

/* Hero Stats Ticker */
.hero-stats {
  display: inline-flex; gap: 0; align-items: center;
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px; padding: 12px 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  opacity: 0; transform: translate3d(0, 14px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-stats.visible { opacity: 1; transform: translate3d(0, 0, 0); }
.stat-item { padding: 0 16px; text-align: left; }
.stat-num { display: block; font-family: var(--font-head); font-size: 23px; font-weight: 800; color: #fff; line-height: 1.1; }
.stat-label { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.stat-div { width: 1px; height: 24px; background: rgba(255, 255, 255, 0.1); }

/* Right: Hero Graphic / Image */
.hero-image-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  min-height: 360px;
  opacity: 0; transform: translate3d(0, 14px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-image-wrap.visible { opacity: 1; transform: translate3d(0, 0, 0); }
.hero-image-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.28) 0%, transparent 70%);
  filter: blur(30px); z-index: 0; pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

#hero-char-img {
  position: relative; z-index: 1;
  max-height: 360px; width: auto; max-width: 100%;
  object-fit: cover; border-radius: 16px;
  border: 1px solid rgba(200, 16, 46, 0.35);
  box-shadow: 0 14px 42px rgba(200, 16, 46, 0.32), 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: floatUp 4.5s ease-in-out infinite;
}
.hero-logo-fallback {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
  animation: floatUp 4.5s ease-in-out infinite;
}
.fallback-glow-ring {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  border: 1.5px dashed rgba(200, 16, 46, 0.4); animation: spinRing 25s linear infinite;
}
@keyframes spinRing { 100% { transform: rotate(360deg); } }
.hero-logo-fallback img {
  width: 230px; height: 230px; object-fit: contain;
  filter: drop-shadow(0 0 40px var(--red));
}
@keyframes floatUp {
  0%,100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

/* ── SECTION COMMON STYLES ───────────────────────────────── */
.section-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  color: #ff6b81; text-transform: uppercase; margin-bottom: 10px;
  background: rgba(200, 16, 46, 0.12); border: 1px solid rgba(200, 16, 46, 0.25);
  padding: 4px 14px; border-radius: 100px;
}
.section-label svg { width: 11px; height: 11px; }
.section-title {
  font-family: var(--font-head); font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800; letter-spacing: 1.5px; color: #fff; margin-bottom: 10px;
  text-transform: uppercase;
}
.section-sub { color: var(--muted); font-size: 14.5px; max-width: 580px; margin: 0 auto; }

/* ── FEATURES SECTION ────────────────────────────────────── */
.features-section {
  position: relative;
  z-index: 2;
  padding: 80px 28px 70px;
  background: linear-gradient(180deg, var(--bg) 0%, #070707 50%, var(--bg) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.features-section::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, #030303 0%, rgba(3, 3, 3, 0.88) 40%, rgba(3, 3, 3, 0.3) 75%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px; padding: 28px 24px;
  transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(200, 16, 46, 0.11), transparent 70%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6), 0 0 22px rgba(200, 16, 46, 0.15);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(200, 16, 46, 0.12); border: 1px solid rgba(200, 16, 46, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 18px;
}
.feature-icon-wrap svg { width: 22px; height: 22px; }
.feature-title {
  font-family: var(--font-head); font-size: 19px; font-weight: 700;
  color: #ffffff; margin-bottom: 8px; letter-spacing: 0.4px;
}
.feature-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── PRODUCTS SECTION ────────────────────────────────────── */
.products-section { padding: 80px 28px; background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative; backdrop-filter: blur(12px);
  transition: transform .3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .3s, border-color .3s;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 16, 46, 0.4);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.7), 0 0 28px rgba(200, 16, 46, 0.2);
}
.product-card-popular {
  border: 1.5px solid var(--red);
  box-shadow: 0 9px 28px rgba(200, 16, 46, 0.2);
}
.product-card-popular:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 52px rgba(200, 16, 46, 0.35);
}
.pc-popular-banner {
  background: linear-gradient(90deg, var(--red), #ff2a4b);
  color: #ffffff; font-size: 10.5px; font-weight: 800;
  text-align: center; padding: 6px 14px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  letter-spacing: 0.9px; text-transform: uppercase;
}
.pc-top-badge {
  position: absolute; top: 13px; right: 13px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.8px;
  padding: 3.5px 9px; border-radius: 5px; text-transform: uppercase;
  backdrop-filter: blur(8px); z-index: 1;
}
.pc-badge-green  { background: rgba(34,197,94,.15);  border: 1px solid rgba(34,197,94,.4);  color: #4ade80; }
.pc-badge-gold   { background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.4); color: #fbbf24; }
.pc-badge-red    { background: rgba(200,16,46,.15);  border: 1px solid rgba(200,16,46,.4);  color: #ff6b6b; }
.pc-badge-blue   { background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.4); color: #93c5fd; }
.pc-badge-purple { background: rgba(168,85,247,.15); border: 1px solid rgba(168,85,247,.4); color: #c084fc; }

.pc-body { padding: 22px; display: flex; flex-direction: column; }
.pc-name {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 14px; line-height: 1.3;
  padding-right: 65px;
}
.pc-price-row { display: flex; align-items: baseline; gap: 5px; margin-bottom: 5px; }
.pc-currency { font-size: 16px; font-weight: 700; color: var(--red); font-family: var(--font-head); }
.pc-amount   { font-size: 42px; font-weight: 800; color: #fff; line-height: 1; font-family: var(--font-head); }
.pc-period   { font-size: 13px; color: var(--muted); }
.pc-orig-row { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.pc-orig { font-size: 12.5px; color: var(--muted); text-decoration: line-through; }
.pc-save {
  font-size: 10.5px; font-weight: 700; color: var(--red-bright);
  background: rgba(200, 16, 46, 0.12); border: 1px solid rgba(200, 16, 46, 0.3);
  padding: 2px 9px; border-radius: 100px;
}

.pc-buy-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 11px; border-radius: 9px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 0.4px;
  cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff;
  background: rgba(255, 255, 255, 0.05); transition: all .25s ease; margin-bottom: 9px;
}
.pc-buy-btn:hover {
  background: var(--red); color: #ffffff; transform: translateY(-1.5px);
  border-color: var(--red); box-shadow: 0 7px 20px var(--red-glow);
}
.pc-buy-popular {
  background: linear-gradient(135deg, var(--red), #9e0b22);
  color: #ffffff !important; border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 18px var(--red-glow);
}
.pc-buy-popular:hover {
  background: linear-gradient(135deg, #e51336, var(--red));
  transform: translateY(-1.5px); box-shadow: 0 9px 26px rgba(200, 16, 46, 0.6);
}
.pc-renew { font-size: 11.5px; color: var(--muted); text-align: center; margin-bottom: 18px; }

.pc-features {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  margin-top: 4px;
  max-height: 140px;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}
.pc-features.expanded {
  max-height: 2000px;
}

.pc-features li {
  font-size: 13px; color: #ccc; padding: 5.5px 0;
  display: flex; align-items: center; gap: 9px;
  border-bottom: 1px solid rgba(255,255,255,.03);
  flex-shrink: 0;
}
.pc-features li:last-child { border-bottom: none; }
.pc-features li::before {
  content: "✓"; color: var(--green); font-weight: 800; font-size: 10.5px;
  width: 16px; height: 16px; display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.12); border-radius: 50%; flex-shrink: 0;
}

.pc-see-more {
  background: none; border: none; color: var(--red); font-size: 12px;
  font-weight: 700; cursor: pointer; padding: 12px 0 2px; text-align: center;
  width: 100%; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 8px;
}
.pc-see-more:hover { color: var(--red-bright); }

.loading-spinner {
  text-align: center; color: var(--muted); padding: 55px; grid-column: 1/-1;
  display: flex; flex-direction: column; align-items: center; gap: 14px; font-size: 14px;
}
.spinner-ring {
  width: 32px; height: 32px; border: 3px solid rgba(200, 16, 46, 0.2);
  border-top-color: var(--red); border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-section {
  padding: 70px 28px 90px;
  background: linear-gradient(180deg, var(--bg) 0%, #070707 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.faq-container {
  max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 13px;
}
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 13px; overflow: hidden; cursor: pointer;
  transition: all .25s ease; backdrop-filter: blur(12px);
}
.faq-item:hover { border-color: rgba(255, 255, 255, 0.15); }
.faq-item.active { border-color: rgba(200, 16, 46, 0.4); background: rgba(20, 20, 20, 0.85); }

.faq-question {
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-size: 17.5px; font-weight: 700; color: #ffffff;
  letter-spacing: 0.3px;
}
.faq-toggle-icon {
  font-size: 20px; font-weight: 400; color: var(--red); transition: transform .3s ease;
}
.faq-item.active .faq-toggle-icon { transform: rotate(45deg); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px; color: var(--muted); font-size: 13.5px; line-height: 1.65;
}
.faq-item.active .faq-answer {
  max-height: 200px; padding: 0 22px 20px;
}

/* ── TRIAL MODAL ─────────────────────────────────────────── */
.trial-modal-box {
  background: #0d0d0d; border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px; padding: 36px 28px; max-width: 460px; width: 90%;
  position: relative; box-shadow: 0 26px 80px rgba(0,0,0,0.9);
}
.trial-modal-close {
  position: absolute; top: 15px; right: 17px; background: none; border: none;
  color: #777; font-size: 22px; cursor: pointer; line-height: 1;
}
.trial-modal-close:hover { color: #fff; }
.btn-trial-claim {
  display: block; text-align: center; text-decoration: none;
  background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff;
  font-family: var(--font-head); font-size: 16.5px; font-weight: 700; padding: 13px;
  border-radius: 11px; letter-spacing: 0.5px; box-shadow: 0 5px 18px var(--green-glow);
  transition: opacity .2s, transform .2s;
}
.btn-trial-claim:hover { opacity: .9; transform: translateY(-1.5px); }

.btn-trial-buy {
  display: block; text-align: center; text-decoration: none;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  font-family: var(--font-head); font-size: 16.5px; font-weight: 700; padding: 13px;
  border-radius: 11px; letter-spacing: 0.5px; transition: opacity .2s, transform .2s;
}
.btn-trial-buy:hover { opacity: .9; transform: translateY(-1.5px); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #020202; border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 44px 28px 28px;
}
.footer-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0 40px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-brand-wrap { max-width: 360px; }
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 7px; }
.footer-logo-img { width: 30px; height: 30px; object-fit: contain; }
.footer-brand { font-family: var(--font-head); font-size: 18.5px; font-weight: 700; text-transform: uppercase; color: #fff; }
.footer-brand em { color: var(--red); font-style: normal; }
.footer-tagline { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 13.5px; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-stats {
  max-width: 100%; margin: 20px auto;
  display: flex; justify-content: center; align-items: center; gap: 26px;
  flex-wrap: wrap; font-size: 13px; color: var(--muted);
}
.stat-highlight { color: var(--red); font-weight: 800; font-size: 15px; margin-right: 3px; }
.footer-stat-dot { width: 3.5px; height: 3.5px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.footer-copy { text-align: center; color: #555; font-size: 12px; }

/* ── MOBILE MENU & HAMBURGER ────────────────────────────── */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  padding: 8px 7px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all .25s ease;
}
.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .3s ease;
}
.mobile-menu-btn.active {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.18);
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--red);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--red);
}

/* Mobile Dropdown Menu */
.mobile-menu {
  display: none;
  width: 100%;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 16, 46, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-menu.open {
  max-height: 480px;
}
.mobile-menu-inner {
  padding: 16px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .2s ease;
  display: flex;
  align-items: center;
}
.mobile-nav-link:hover, .mobile-nav-link:active {
  color: #fff;
  background: rgba(200, 16, 46, 0.15);
  border-color: rgba(200, 16, 46, 0.35);
}
.mobile-nav-link.auth-link {
  color: #ff6b81;
  border-color: rgba(200, 16, 46, 0.3);
  background: rgba(200, 16, 46, 0.08);
}
.mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.mobile-actions .mobile-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 10px 14px;
  font-size: 13px;
}

/* ── RESPONSIVE MEDIA QUERIES ────────────────────────────── */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; flex-wrap: wrap; justify-content: center; }
  .hero-image-wrap { min-height: 280px; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .navbar { transform: translate3d(0, 0, 0) !important; }
  .nav-inner { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .nav-right .btn-client-login,
  .nav-right .btn-admin-login { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-menu { display: block; }
  
  .online-badge { padding: 4px 10px; font-size: 11px; }
  .nav-brand { font-size: 16px; }

  /* Hands scaling on tablets & phones */
  .hand-left, .hand-right {
    width: 38vw;
    max-width: 220px;
  }
  .hand-left { top: 60px; }

  .hero {
    padding: 30px 16px 40px;
    min-height: auto;
  }
  .hero-title { font-size: clamp(26px, 7vw, 36px); }
  .hero-sub { font-size: 13.5px; line-height: 1.5; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 360px; margin: 0 auto; gap: 10px; }
  .hero-actions a { width: 100%; justify-content: center; min-height: 46px; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 360px;
    gap: 8px;
    padding: 12px;
  }
  .stat-item { padding: 6px 8px; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  
  .features-section, .products-section, .faq-section {
    padding: 48px 16px;
  }
  .section-title { font-size: 24px; }
  .section-sub { font-size: 13.5px; }
  
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 20px 18px; }
  .feature-title { font-size: 17px; }
  .feature-desc { font-size: 13px; }

  .products-grid { grid-template-columns: 1fr; gap: 18px; }
  
  .footer-inner { flex-direction: column; text-align: center; padding: 0 16px 20px; }
  .footer-brand-wrap { margin: 0 auto; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-links { justify-content: center; gap: 14px; }
  .footer-stats { gap: 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 12px; }
  .nav-brand { font-size: 14px; }
  .nav-logo-img { width: 26px; height: 26px; }
  
  .hand-left, .hand-right {
    width: 44vw;
    max-width: 160px;
  }
  .hand-left { top: 55px; }

  .hero-title { font-size: 25px; }
  .hero-badge { font-size: 10px; }
  .hero-badge svg { width: 11px; height: 11px; }
  
  .features-section, .products-section, .faq-section {
    padding: 38px 12px;
  }
  
  .faq-question { font-size: 14px; }
  .faq-answer { font-size: 13px; }
}

/* ── GPU HARDWARE ACCELERATION ────────────────────────────── */
.hero-canvas,
.hero-ambient-glow,
.navbar,
.feature-card,
.product-card,
.faq-item,
.hand-left,
.hand-right {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


