/* ============================================
   HERODOTUS RAT — MAIN STYLESHEET v2.0
   Enhanced Frontend Engineering
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #060810;
  color: #e4e7ec;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #060810; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #00d4ff, #a855f7); border-radius: 3px; }
::selection { background: rgba(0, 212, 255, 0.3); color: #fff; }

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #060810;
  --bg-card: #0d1117;
  --bg-card-hover: #111824;
  --bg-elevated: #161b22;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --text: #e4e7ec;
  --text-muted: #8b9099;
  --accent-1: #00d4ff;
  --accent-2: #a855f7;
  --accent-3: #00ffa3;
  --accent-4: #ff3d71;
  --accent-grad: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
  --accent-grad-2: linear-gradient(135deg, #00ffa3 0%, #00d4ff 100%);
  --accent-grad-3: linear-gradient(135deg, #ff3d71 0%, #a855f7 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
}

/* ===== PARTICLE CANVAS ===== */
#particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.4;
}

/* ===== GRADIENT ORBS ===== */
.gradient-orb {
  position: fixed; border-radius: 50%;
  filter: blur(120px); opacity: 0.12;
  pointer-events: none; z-index: 0;
  animation: orbFloat 25s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: #00d4ff; top: -150px; left: -150px; }
.orb-2 { width: 500px; height: 500px; background: #a855f7; top: 30%; right: -150px; animation-delay: -8s; }
.orb-3 { width: 400px; height: 400px; background: #00ffa3; bottom: 10%; left: 20%; animation-delay: -15s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-sm { max-width: 800px; }

/* ===== SECTION ===== */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: var(--accent-1);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent-1); border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-1);
}
.section-title {
  font-size: 2.8rem; font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-2 {
  background: var(--accent-grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATED GRADIENT TEXT ===== */
.animated-gradient {
  background: linear-gradient(90deg, #00d4ff, #a855f7, #00ffa3, #00d4ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px;
  border-radius: var(--radius-xs);
  font-size: 15px; font-weight: 600;
  transition: all var(--transition);
  cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5); }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::after { left: 100%; }
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--border-hover); transform: translateY(-1px); }
.btn-ghost { color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); }
.btn-glow { animation: btnGlow 2.5s ease-in-out infinite; }
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.3), 0 4px 20px rgba(0, 212, 255, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 4px 30px rgba(0, 212, 255, 0.4); }
}
.btn-full { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0;
  width: 100%; z-index: 1000;
  background: rgba(6, 8, 16, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(6, 8, 16, 0.95);
  border-bottom-color: rgba(0, 212, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: 1px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; color: var(--text-muted);
  transition: color var(--transition);
  position: relative; font-weight: 500;
}
.nav-link:hover { color: var(--text); }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-grad);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }
.lang-switcher { position: relative; }
.lang-btn { font-size: 14px; display: flex; align-items: center; gap: 4px; }
.lang-btn::after { content: '▾'; font-size: 10px; opacity: 0.6; }
.lang-dropdown {
  position: absolute; top: 100%; right: 0;
  min-width: 160px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown button {
  display: flex; width: 100%; padding: 10px 12px;
  border-radius: 6px; font-size: 14px;
  transition: background var(--transition);
}
.lang-dropdown button:hover { background: rgba(0, 212, 255, 0.1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; z-index: 1; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 255, 163, 0.06);
  border: 1px solid rgba(0, 255, 163, 0.25);
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  color: var(--accent-3);
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--accent-3);
  border-radius: 50%; animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 10px rgba(0, 255, 163, 0); }
}
.hero-title {
  font-size: 4rem; font-weight: 900;
  line-height: 1.05; margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num {
  display: block; font-size: 2rem; font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-screen {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.1s ease-out;
}
.screen-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.screen-dots { display: flex; gap: 6px; }
.screen-dots span { width: 10px; height: 10px; border-radius: 50%; }
.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #febc2e; }
.screen-dots span:nth-child(3) { background: #28c840; }
.screen-title { font-size: 13px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.screen-body { display: grid; grid-template-columns: 60px 1fr; height: 320px; }
.screen-sidebar { padding: 12px 8px; display: flex; flex-direction: column; gap: 8px; border-right: 1px solid var(--border); }
.sb-item { height: 32px; border-radius: 6px; background: rgba(255,255,255,0.03); transition: background var(--transition); }
.sb-item.active { background: var(--accent-grad); opacity: 0.5; }
.screen-main { padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.screen-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  transition: all var(--transition);
}
.screen-card:hover { background: rgba(0, 212, 255, 0.05); border-color: rgba(0, 212, 255, 0.2); }
.card-icon { font-size: 20px; }
.card-line { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; }
.card-line.short { width: 60%; }
.hero-glow {
  position: absolute; top: 50%; left: 50%;
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1; filter: blur(40px);
}

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== CAROUSEL ===== */
.carousel-wrapper {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16/9; max-width: 900px; margin: 0 auto;
}
.carousel-container { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.8s ease-in-out;
}
.carousel-slide.active { opacity: 1; }
.screenshot-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; padding: 20px; position: relative; }
.grad-1 { background: linear-gradient(135deg, #0d1117, #1a1f2e); }
.grad-2 { background: linear-gradient(135deg, #0d1117, #1e1a2e); }
.grad-3 { background: linear-gradient(135deg, #0d1117, #1a2e1f); }
.grad-4 { background: linear-gradient(135deg, #0d1117, #2e1a1f); }
.grad-5 { background: linear-gradient(135deg, #0d1117, #1a1a2e); }
.ss-header { display: flex; align-items: center; margin-bottom: 20px; }
.ss-dots { display: flex; gap: 6px; }
.ss-dots span { width: 10px; height: 10px; border-radius: 50%; }
.ss-dots span:nth-child(1) { background: #ff5f57; }
.ss-dots span:nth-child(2) { background: #febc2e; }
.ss-dots span:nth-child(3) { background: #28c840; }
.ss-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; flex: 1; }
.ss-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; }
.ss-card.tall { grid-row: span 2; }
.ss-card.wide { grid-column: span 2; }
.ss-label { position: absolute; bottom: 16px; left: 20px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-muted); }
.carousel-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.carousel-dot { width: 10px; height: 10px; background: rgba(255,255,255,0.3); border-radius: 50%; cursor: pointer; transition: all var(--transition); }
.carousel-dot.active { background: #fff; transform: scale(1.3); box-shadow: 0 0 8px rgba(255,255,255,0.5); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all var(--transition);
}
.carousel-arrow:hover { background: rgba(0, 212, 255, 0.3); border-color: rgba(0, 212, 255, 0.4); transform: translateY(-50%) scale(1.1); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

/* ===== VIDEO DEMO ===== */
.video-wrapper { max-width: 900px; margin: 0 auto; }
.video-placeholder {
  position: relative; aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.video-grad { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(168,85,247,0.08)); }
.play-button {
  position: relative; z-index: 2;
  color: #fff; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all var(--transition);
}
.video-placeholder:hover .play-button {
  transform: scale(1.15);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.1);
}

/* ===== PRICING ===== */
.pricing-tabs {
  display: flex; justify-content: center; gap: 4px;
  margin-bottom: 20px;
  background: var(--bg-card);
  padding: 4px; border-radius: 50px;
  border: 1px solid var(--border);
  width: fit-content; margin-left: auto; margin-right: auto;
}
.pricing-tab {
  padding: 10px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.pricing-tab.active { background: var(--accent-grad); color: #fff; box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3); }
.pricing-includes {
  text-align: center; margin-bottom: 32px;
  padding: 14px 24px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 50px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.pricing-includes p { font-size: 0.92rem; font-weight: 600; color: var(--accent-1); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.pricing-grid.hidden { display: none; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 100%;
  background: radial-gradient(circle at top, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
.pricing-card:hover::before { opacity: 1; }
.pricing-card.popular {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.08);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 12px; font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
.pricing-card-header { text-align: center; margin-bottom: 24px; }
.pricing-card-header h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.price .currency { font-size: 1.2rem; font-weight: 600; color: var(--text-muted); }
.price .amount { font-size: 3.2rem; font-weight: 900; letter-spacing: -1px; }
.price .period { font-size: 0.9rem; color: var(--text-muted); }
.pricing-features { flex: 1; margin-bottom: 24px; }
.pricing-features li {
  padding: 10px 0; font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.check-icon {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 255, 163, 0.1);
  border-radius: 50%; flex-shrink: 0;
  color: var(--accent-3);
  font-size: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.testimonial-stars { margin-bottom: 12px; color: #ffc107; font-size: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; margin-bottom: 16px; font-style: italic; color: rgba(228, 231, 236, 0.9); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
}
.testimonial-name { font-size: 0.9rem; font-weight: 600; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: rgba(0, 212, 255, 0.2); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; user-select: none;
}
.faq-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
  flex-shrink: 0;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 50%;
  color: var(--accent-1);
  font-size: 12px;
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: rgba(0, 212, 255, 0.15); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-text { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; position: relative; z-index: 1; }
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.08), transparent 60%);
}
.cta-box h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; position: relative; }
.cta-box p { color: var(--text-muted); margin-bottom: 32px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 60px 0 24px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--text-muted); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); }
.footer-crypto { display: flex; gap: 8px; }
.footer-crypto span { padding: 4px 10px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.crypto-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  transition: all var(--transition) !important;
}
.crypto-badge:hover {
  background: rgba(0, 212, 255, 0.06) !important;
  border-color: rgba(0, 212, 255, 0.2) !important;
  transform: translateY(-2px);
}
.crypto-badge svg { flex-shrink: 0; }

/* ===== FLOATING TELEGRAM ===== */
.telegram-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #0088cc, #0055aa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
  z-index: 9999;
  transition: all var(--transition);
}
.telegram-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 15px 40px rgba(0, 136, 204, 0.6); }
.telegram-float::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid rgba(0, 136, 204, 0.4);
  animation: telegramPulse 2s ease-out infinite;
}
@keyframes telegramPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px; width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-lg { max-width: 580px; }
.modal-video { max-width: 900px; padding: 0; overflow: hidden; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: rgba(255, 61, 113, 0.2); transform: rotate(90deg); }
.modal h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.modal-subtitle { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.modal-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.modal input {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text); font-size: 15px;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.modal input:focus { outline: none; border-color: var(--accent-1); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1); }
.modal input::placeholder { color: var(--text-muted); }

/* ===== CRYPTO MODAL ===== */
.crypto-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px; margin-bottom: 20px;
}
.crypto-option {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.crypto-option::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent-grad);
  transform: scaleX(0); transition: transform var(--transition);
}
.crypto-option:hover { background: rgba(0, 212, 255, 0.04); border-color: rgba(0, 212, 255, 0.15); transform: translateY(-2px); }
.crypto-option.selected {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}
.crypto-option.selected::before { transform: scaleX(1); }
.crypto-icon-wrapper {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: transform var(--transition);
}
.crypto-option:hover .crypto-icon-wrapper { transform: scale(1.1); }
.crypto-icon-wrapper svg { width: 32px; height: 32px; }
.crypto-name { font-size: 0.82rem; font-weight: 600; }
.crypto-ticker { font-size: 0.7rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.coupon-section { display: flex; gap: 8px; margin-bottom: 16px; }
.coupon-section input { flex: 1; margin-bottom: 0; }
.coupon-section button {
  padding: 0 20px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-xs);
  font-size: 14px; font-weight: 600;
  color: var(--accent-1);
  transition: all var(--transition);
}
.coupon-section button:hover { background: rgba(0, 212, 255, 0.15); }
.crypto-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-top: 1px solid var(--border);
  margin-bottom: 20px; font-size: 1.1rem;
}
.crypto-price { font-weight: 800; font-size: 1.4rem; }
.video-container { aspect-ratio: 16/9; }
.video-container video { width: 100%; height: 100%; object-fit: cover; }

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos].aos-visible { opacity: 1; transform: translate(0, 0); }

/* ===== DROPPER SECTION ===== */
.dropper-section { padding: 100px 0; }
.dropper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.dropper-card {
  text-align: center;
  padding: 36px 28px;
}
.dropper-card .feature-icon {
  margin: 0 auto 20px;
  width: 72px; height: 72px;
  font-size: 32px;
  border-radius: 18px;
}
.dropper-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.dropper-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.encryption-banner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 61, 113, 0.06), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(255, 61, 113, 0.15);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.encryption-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #ff3d71, #a855f7, #ff3d71);
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
}
.encryption-banner::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 61, 113, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.encryption-banner-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.encryption-banner-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.encryption-banner-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.encryption-banner-content strong { color: var(--text); font-weight: 600; }

/* ===== ANTIVIRUS BYPASS ===== */
.antivirus-section { padding: 100px 0; }
.av-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.av-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.av-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--accent-grad-2);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.av-card:hover {
  border-color: rgba(0, 255, 163, 0.25);
  background: rgba(0, 255, 163, 0.03);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.av-card:hover::before { transform: scaleY(1); }
.av-card .av-icon { font-size: 18px; flex-shrink: 0; }
.av-card-all {
  grid-column: span 2;
  border-color: rgba(0, 255, 163, 0.2);
  background: rgba(0, 255, 163, 0.03);
  color: var(--accent-3);
  font-weight: 600;
}
.av-card-all::before { background: var(--accent-3); transform: scaleY(1); }

.bypass-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: rgba(0, 255, 163, 0.03);
  border: 1px solid rgba(0, 255, 163, 0.12);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.bypass-notice::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--accent-3);
}
.bypass-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 163, 0.1);
  border: 1px solid rgba(0, 255, 163, 0.2);
  border-radius: 14px;
  font-size: 22px;
}
.bypass-notice p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.bypass-notice strong { color: var(--accent-3); font-weight: 600; }

/* ===== DEVICES GRID ===== */
.devices-section { padding: 100px 0; }
.devices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.device-chip {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.device-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 50px;
}
.device-chip:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.12);
  border-color: transparent;
}
.device-chip:hover::before { opacity: 0.08; }
.device-chip span { position: relative; z-index: 1; }

/* ===== COMPATIBILITY LIST ===== */
.compat-section { padding: 100px 0; }
.compat-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.compat-search {
  margin-bottom: 24px;
  position: relative;
}
.compat-search input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: all var(--transition);
}
.compat-search input:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.08);
  background: rgba(255,255,255,0.04);
}
.compat-search input::placeholder { color: var(--text-muted); }
.compat-search::before {
  content: '🔍';
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}
.compat-count {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  pointer-events: none;
}
.compat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 500px;
  overflow-y: auto;
  padding: 8px 4px;
}
.compat-tags::-webkit-scrollbar { width: 6px; }
.compat-tags::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 3px; }
.compat-tags::-webkit-scrollbar-thumb { background: rgba(0, 212, 255, 0.2); border-radius: 3px; }
.compat-tags::-webkit-scrollbar-thumb:hover { background: rgba(0, 212, 255, 0.4); }
.compat-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  transition: all var(--transition);
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.compat-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  transition: all var(--transition);
}
.compat-tag:hover {
  background: rgba(0, 212, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.25);
  color: var(--accent-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.1);
}
.compat-tag:hover::before {
  background: var(--accent-1);
  box-shadow: 0 0 6px var(--accent-1);
}

/* ===== APK PROTECTION ===== */
.apk-section { padding: 80px 0; }
.apk-protection-box {
  text-align: center;
  padding: 56px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.apk-protection-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.08), transparent 50%);
  pointer-events: none;
}
.apk-protection-box::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 200px; height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  transform: translateX(-50%);
}
.apk-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.apk-icon::after {
  content: '';
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.apk-protection-box h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.5px;
}
.apk-protection-box p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  line-height: 1.7;
}
.apk-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.apk-tag {
  padding: 8px 18px;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-2);
  font-family: 'JetBrains Mono', monospace;
  transition: all var(--transition);
}
.apk-tag:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

/* ===== RTL SUPPORT (Arabic) ===== */
[dir="rtl"] .nav-logo { flex-direction: row-reverse; }
[dir="rtl"] .hero-buttons { flex-direction: row-reverse; }
[dir="rtl"] .telegram-float { right: auto; left: 30px; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .faq-question { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .pricing-features li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .crypto-option { text-align: center; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.8rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .nav-links {
    position: fixed; top: 70px; left: 0;
    width: 100%; background: var(--bg-card);
    flex-direction: column; padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: all var(--transition);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 1.4rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .cta-box { padding: 40px 20px; }
  .cta-box h2 { font-size: 1.6rem; }
  .telegram-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .pricing-tabs { width: 100%; }
  .pricing-tab { flex: 1; padding: 10px 16px; font-size: 13px; }
  .price .amount { font-size: 2.5rem; }
}
