/* ============================================
   АНТИПИРАТ - Статический сайт
   Футуристичный дизайн в стиле Sci-Fi
   ============================================ */

/* CSS Variables */
:root {
  --bg-primary: #0A0C14;
  --bg-secondary: #0B0F1C;
  --accent-blue: #2A7DE1;
  --accent-green: #00E5B0;
  --text-primary: #FFFFFF;
  --text-secondary: #E0E0E0;
  --text-muted: #8B92A8;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 12, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 125, 225, 0.2);
  padding: 10px 0;
}

.header .logo-icon {
  width: 32px;
  height: 32px;
}

.header .logo-text {
  font-size: 1.25rem;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-blue);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text span {
  color: var(--accent-blue);
}

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

.nav-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.nav-dropdown-btn:hover {
  color: var(--text-primary);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-dropdown-content a:hover {
  background: rgba(42, 125, 225, 0.1);
  color: var(--text-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(42, 125, 225, 0.5);
  background: transparent;
  color: var(--text-primary);
}

.btn:hover {
  background: rgba(42, 125, 225, 0.1);
  border-color: var(--accent-blue);
}

.btn-primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

.btn-primary:hover {
  background: #1a5cb8;
  box-shadow: 0 0 20px rgba(42, 125, 225, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(42, 125, 225, 0.1);
}

.mobile-menu-btn svg {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 12, 20, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 125, 225, 0.2);
  padding: 15px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  display: block;
  padding: 12px 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(42, 125, 225, 0.08);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--text-primary);
  background: rgba(42, 125, 225, 0.05);
  padding-left: 15px;
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 15px;
  padding: 14px;
}

.mobile-menu-link {
  display: block;
  padding: 12px 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(42, 125, 225, 0.08);
  transition: var(--transition);
}

.mobile-menu-link:hover {
  color: var(--text-primary);
  background: rgba(42, 125, 225, 0.05);
  padding-left: 15px;
}

/* Mobile Accordion */
.mobile-accordion {
  border-bottom: 1px solid rgba(42, 125, 225, 0.08);
}

.mobile-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-accordion-btn:hover {
  background: rgba(42, 125, 225, 0.05);
}

.mobile-accordion-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.mobile-accordion.active .mobile-accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(42, 125, 225, 0.03);
}

.mobile-accordion.active .mobile-accordion-content {
  max-height: 300px;
}

.mobile-accordion-content a {
  display: block;
  padding: 10px 10px 10px 25px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(42, 125, 225, 0.05);
  transition: var(--transition);
}

.mobile-accordion-content a:hover {
  color: var(--text-primary);
  background: rgba(42, 125, 225, 0.05);
  padding-left: 30px;
}

.mobile-menu-cta {
  margin-top: 15px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(10, 12, 20, 0.7) 0%, 
    rgba(10, 12, 20, 0.5) 50%, 
    rgba(10, 12, 20, 1) 100%
  );
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(42, 125, 225, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.3);
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-30px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-20px) translateX(5px); }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(42, 125, 225, 0.1);
  border: 1px solid rgba(42, 125, 225, 0.3);
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.hero-badge .count {
  color: var(--accent-green);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(42, 125, 225, 0.1);
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 15px;
}

.section-tag.green {
  background: rgba(0, 229, 176, 0.1);
  color: var(--accent-green);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.section-title .gradient {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: rgba(42, 125, 225, 0.3);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(42, 125, 225, 0.1), transparent);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.advantage-icon.blue {
  background: linear-gradient(135deg, rgba(42, 125, 225, 0.2), rgba(42, 125, 225, 0.1));
  color: var(--accent-blue);
}

.advantage-icon.green {
  background: linear-gradient(135deg, rgba(0, 229, 176, 0.2), rgba(0, 229, 176, 0.1));
  color: var(--accent-green);
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.advantage-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.advantage-stat {
  padding-top: 20px;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
}

.advantage-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.advantage-stat-value.blue {
  color: var(--accent-blue);
}

.advantage-stat-value.green {
  color: var(--accent-green);
}

.advantage-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(42, 125, 225, 0.1), rgba(0, 229, 176, 0.1));
  border: 1px solid rgba(42, 125, 225, 0.3);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-banner-text h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.cta-banner-text p {
  color: var(--text-muted);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.feature-item:hover,
.feature-item.active {
  background: rgba(42, 125, 225, 0.1);
  border-color: rgba(42, 125, 225, 0.3);
}

.feature-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(42, 125, 225, 0.1);
  color: var(--accent-blue);
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item.active .feature-icon {
  background: var(--accent-blue);
  color: white;
}

.feature-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: none;
}

.feature-item.active .feature-info p {
  display: block;
}

.feature-arrow {
  color: var(--text-muted);
  margin-left: auto;
  transition: var(--transition);
}

.feature-item.active .feature-arrow {
  color: var(--accent-blue);
  transform: translateX(5px);
}

/* Demo Screen */
.demo-screen {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-dots span:nth-child(1) { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #febc2e; }
.demo-dots span:nth-child(3) { background: #28c840; }

.demo-title {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo-content {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.demo-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 20, 0.6), transparent);
}

.demo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.demo-feature {
  text-align: center;
  padding: 20px;
  background: rgba(42, 125, 225, 0.05);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 10px;
}

.demo-feature-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--accent-blue);
}

.demo-feature-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(42, 125, 225, 0.1);
}

.demo-footer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

.demo-desc {
  margin-top: 25px;
  padding: 20px;
  background: rgba(42, 125, 225, 0.05);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 125, 225, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 20px 0;
  max-width: 300px;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 10px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(42, 125, 225, 0.1);
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.footer-column h4 {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* Cookie Notice */
.cookie-notice {
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-notice p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-notice button {
  padding: 10px 20px;
  background: rgba(42, 125, 225, 0.1);
  color: var(--accent-blue);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-notice button:hover {
  background: rgba(42, 125, 225, 0.2);
}

/* ============================================
   HERO ANIMATIONS
   ============================================ */
.hero-shield-animation {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 240px;
  opacity: 0.3;
  z-index: 0;
}

.shield-svg {
  width: 100%;
  height: 100%;
}

.shield-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawShield 3s ease forwards;
}

@keyframes drawShield {
  to { stroke-dashoffset: 0; }
}

.shield-scan {
  opacity: 0;
  animation: scanMove 3s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes scanMove {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(50px); opacity: 0.5; }
}

.shield-dot {
  animation: dotPulse 2s ease-in-out infinite;
}

.shield-dot:nth-child(2) { animation-delay: 0.5s; }
.shield-dot:nth-child(3) { animation-delay: 1s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Radar Animation */
.hero-radar {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(42, 125, 225, 0.2);
  overflow: hidden;
  opacity: 0.4;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), transparent);
  transform-origin: left center;
  animation: radarSweep 4s linear infinite;
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(42, 125, 225, 0.1);
}

.ring-1 { width: 60px; height: 60px; }
.ring-2 { width: 100px; height: 100px; animation: ringPulse 3s ease-in-out infinite; }
.ring-3 { width: 140px; height: 140px; animation: ringPulse 3s ease-in-out infinite 0.5s; }

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.radar-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}

.dot-1 { top: 30%; left: 60%; animation-delay: 0s; }
.dot-2 { top: 60%; left: 30%; animation-delay: 0.5s; }
.dot-3 { top: 70%; left: 70%; animation-delay: 1s; }

@keyframes dotBlink {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Problem Section */
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-stat {
  text-align: center;
  padding: 30px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
}

.problem-stat-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #ff5f57;
  margin-bottom: 10px;
}

.problem-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(42, 125, 225, 0.3);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(42, 125, 225, 0.1);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(42, 125, 225, 0.2), rgba(0, 229, 176, 0.1));
  border-radius: 50%;
  color: var(--accent-blue);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Page Hero */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42, 125, 225, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 20px;
  color: var(--accent-blue);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
}

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

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 0;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Content Section */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 16px;
  padding: 40px;
}

.content-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.value-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 10px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.value-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.value-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Styles */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

.faq-cat-btn {
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(42, 125, 225, 0.05);
}

.faq-question .tag {
  font-size: 0.7rem;
  padding: 4px 8px;
  background: rgba(42, 125, 225, 0.1);
  color: var(--accent-blue);
  border-radius: 4px;
  margin-right: 15px;
}

.faq-arrow {
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
  padding-top: 15px;
}

/* Privacy Page */
.privacy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

.privacy-nav a {
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 50px;
  transition: var(--transition);
}

.privacy-nav a:hover {
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 50px;
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.privacy-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-section li {
  color: var(--text-muted);
  margin-bottom: 8px;
  list-style: disc;
}

.privacy-section strong {
  color: var(--text-primary);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(42, 125, 225, 0.3);
  transform: translateY(-5px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(42, 125, 225, 0.2), rgba(0, 229, 176, 0.1));
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-card .position {
  color: var(--accent-blue);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.team-card .desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 8px;
  color: var(--accent-blue);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--accent-blue);
  color: white;
}

/* Partners Grid */
.partners-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.partner-type {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition);
}

.partner-type:hover {
  border-color: rgba(42, 125, 225, 0.3);
}

.partner-type-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 12px;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.partner-type h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.partner-type p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.partner-type ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-type li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.partner-type li::before {
  content: '✓';
  color: var(--accent-green);
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.partner-logo {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.partner-logo .letter {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.partner-logo h4 {
  font-size: 0.95rem;
}

.partner-logo span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero title animation */
.hero-title {
  animation: titleFadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes titleFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  animation: badgeSlideIn 0.8s ease forwards 0.3s;
  opacity: 0;
}

@keyframes badgeSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
  animation: fadeInUp 0.8s ease forwards 0.6s;
  opacity: 0;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease forwards 0.9s;
  opacity: 0;
}

.hero-trust {
  animation: fadeInUp 0.8s ease forwards 1.2s;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-layout {
    grid-template-columns: 1fr;
  }
  
  .demo-screen {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header .btn {
    display: none;
  }
  
  .header {
    padding: 12px 0;
  }
  
  main {
    padding-top: 55px !important;
  }
  
  .page-hero {
    padding: 80px 0 30px;
  }
}
  
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 15px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* SVG Icons fallback */
.icon {
  width: 24px;
  height: 24px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}
