/* ============================================
   FXAcademyTools - SaaS Infrastructure Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #060a13;
  --bg-secondary: #0b1120;
  --bg-card: rgba(15, 23, 41, 0.4);
  --accent-primary: #00d4aa;
  --accent-secondary: #3b82f6;
  --accent-tertiary: #8b5cf6;
  --accent-warning: #f59e0b;
  --accent-danger: #ef4444;
  --accent-success: #10b981;
  --text-primary: #e8edf5;
  --text-secondary: #94a3b8;
  --gradient-primary: linear-gradient(135deg, #00d4aa 0%, #3b82f6 100%);
  --font-primary: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1280px;
  --header-height: 80px;
}

/* --- Global Reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 25px; }
.section { padding: 80px 0; position: relative; }
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   HEADER & NAVIGATION
============================================================ */
/* ============================================================
   CYBER LAB HEADER & NAVIGATION
============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1009;
  height: 85px;
  background: rgba(6, 10, 19, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header .container { 
  display: flex; align-items: center; justify-content: space-between; width: 100%; 
}
.header.scrolled { height: 70px; background: rgba(6, 10, 19, 0.95); border-bottom-color: rgba(0, 212, 170, 0.2); }

/* Logo: Terminal Style */
.logo { text-decoration: none !important; }
.logo-terminal { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-mono); text-decoration: none; border-bottom: none !important; }
.logo-chevron { color: var(--accent-primary); font-weight: 900; font-size: 1.4rem; animation: blink 1.5s infinite; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -1px; display: flex; align-items: baseline; }
.logo-text .accent { color: var(--accent-primary); text-shadow: 0 0 10px rgba(0, 212, 170, 0.3); margin-left: 2px; }

/* Logo Icon Wrap (Footer Specific) */
.logo-icon-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  z-index: 1;
}

.logo-icon {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  color: #060a13;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
  position: relative;
  z-index: 2;
  font-family: var(--font-primary);
}

.logo-icon-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: 12px;
  filter: blur(8px);
  opacity: 0.4;
  z-index: 1;
  animation: logo-glow-pulse 3s infinite ease-in-out;
}

@keyframes logo-glow-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* Nav Links */
.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav .nav-item { position: relative; padding: 25px 0; }
.nav-link { 
  color: rgba(255, 255, 255, 0.65); text-decoration: none; font-weight: 600; font-size: 0.9rem; 
  padding: 10px 18px; border-radius: 8px; transition: 0.3s; 
  display: flex; align-items: center; gap: 8px;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.04); }
.nav-chevron { font-size: 0.7rem; opacity: 0.5; transition: 0.3s; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); color: var(--accent-primary); opacity: 1; }

/* Mega Menu: Immersive Dropdowns */
.mega-menu {
  position: absolute; top: 100%; left: 0; transform: translateY(20px);
  width: 600px; opacity: 0; visibility: hidden; transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none; z-index: 100; padding-top: 10px;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
/* Special case for the last dropdown to prevent off-screen */
.nav-item:last-child .mega-menu { left: auto; right: 0; }

.mega-container {
  background: rgba(10, 15, 28, 0.98); backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px;
  padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.mega-column { display: flex; flex-direction: column; gap: 10px; }
.mega-label { 
  font-size: 0.7rem; font-weight: 800; color: var(--accent-primary); 
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
  padding-left: 12px; border-left: 2px solid var(--accent-primary);
}

.mega-item { 
  display: flex; align-items: center; gap: 16px; padding: 14px; border-radius: 16px; 
  text-decoration: none; transition: all 0.3s ease; border: 1px solid transparent;
}
.mega-item:hover { background: rgba(255, 255, 255, 0.03); border-color: rgba(255, 255, 255, 0.08); transform: translateX(5px); }

.mega-icon { 
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, 0.03);
  display: flex; align-items: center; justify-content: center; color: var(--accent-primary); font-size: 1.2rem;
  transition: 0.3s;
}
.mega-item:hover .mega-icon { background: var(--accent-primary); color: #000; box-shadow: 0 0 20px rgba(0, 212, 170, 0.4); }

.mega-info { display: flex; flex-direction: column; gap: 2px; }
.mega-title { color: #fff; font-weight: 700; font-size: 0.95rem; }
.mega-desc { color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; line-height: 1.4; }

/* Terminal CTA Button */
.terminal-btn {
  position: relative; background: #00d4aa; color: #000; padding: 12px 28px; 
  border-radius: 12px; font-weight: 800; font-size: 0.9rem; text-decoration: none;
  display: flex; align-items: center; gap: 10px; overflow: hidden;
  transition: 0.4s; box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}
.terminal-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 212, 170, 0.5); filter: brightness(1.1); }
.btn-glow {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: 0.6s;
}
.terminal-btn:hover .btn-glow { left: 100%; }

.terminal-btn.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: 16px;
}

  .menu-toggle { 
    display: none; width: 44px; height: 44px; border: none; 
    background: rgba(255, 255, 255, 0.05); color: var(--accent-primary);
    border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; 
    font-size: 1.2rem; transition: 0.3s; border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .menu-toggle:hover { background: rgba(0, 212, 170, 0.1); border-color: var(--accent-primary); }
  .menu-toggle.active { background: var(--accent-primary); color: #000; }

/* Global fix for overflow */
html, body { overflow-x: hidden; width: 100%; position: relative; }

/* Responsive Navigation & Mobile Support */
@media (max-width: 1024px) {
  .header { height: 70px; }
  .header .container { justify-content: space-between; }
  
  .nav { 
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(6, 10, 19, 0.98); backdrop-filter: blur(25px);
    flex-direction: column; align-items: stretch; padding: 100px 25px 40px;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); z-index: 1010;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  .nav.open { right: 0; }
  
  .nav-links { flex-direction: column; width: 100%; gap: 5px; }
  .nav-item { width: 100%; padding: 0; }
  .nav-link { 
    width: 100%; justify-content: space-between; padding: 12px 0; 
    font-size: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .mega-menu { 
    position: relative; top: auto; left: auto; transform: none; 
    width: 100%; opacity: 1; visibility: visible; display: none;
    pointer-events: auto; padding: 5px 0 15px;
  }
  .nav-item.active .mega-menu { display: block; }
  
  .mega-container { 
    grid-template-columns: 1fr; background: none; border: none; 
    padding: 10px 0; box-shadow: none; gap: 10px;
  }
  .mega-label { margin-top: 10px; color: rgba(255,255,255,0.4); font-size: 0.6rem; border: none; padding-left: 0; }
  .mega-item { padding: 8px 0; }
  .mega-icon { width: 32px; height: 32px; font-size: 0.9rem; }

  .nav-actions { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
  .terminal-btn { width: 100%; justify-content: center; }
  
  .menu-toggle { 
    display: flex; z-index: 1012; 
    background: rgba(255, 255, 255, 0.05); width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-primary); font-size: 1.2rem;
    align-items: center; justify-content: center;
  }
  .menu-toggle:hover { border-color: var(--accent-primary); background: rgba(0, 212, 170, 0.1); }
  .menu-toggle.active { background: var(--accent-primary); color: #000; }

  .logo-text { font-size: 1rem; }
  .logo-chevron { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .nav { width: 100%; }
}

/* Floating Utility Dock (Re-styling for consistency) */
.floating-utility-dock {
  background: rgba(10, 15, 28, 0.9); border: 1px solid rgba(0, 212, 170, 0.2);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.1);
}

@keyframes blink { 50% { opacity: 0; } }

/* Re-adding Mobile Overlay and other essentials */
.nav-overlay { 
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); 
  opacity: 0; visibility: hidden; z-index: 1006; 
  transition: 0.3s; backdrop-filter: blur(5px); 
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* Floating Utility Dock */
.floating-utility-dock {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 23, 41, 0.8);
  backdrop-filter: blur(15px);
  padding: 8px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-utility-dock:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--accent-primary);
}
.floating-utility-dock .ui-btn-toggle {
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.3s;
}
.floating-utility-dock .ui-btn-toggle:hover {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent-primary);
}
.dock-divider {
  width: 1px; height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .floating-utility-dock { bottom: 20px; right: 20px; }
  .floating-utility-dock .ui-btn-toggle { width: 40px; height: 40px; }
}

/* Mobile Menu */
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); cursor: pointer; position: relative; z-index: 1011; margin-left: auto; flex-shrink: 0; }
.hamburger-box { width: 20px; height: 14px; margin: 0 auto; position: relative; }
.hamburger-line { position: absolute; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.line-1 { top: 0; } .line-2 { top: 6px; } .line-3 { top: 12px; }
.menu-toggle.active .line-1 { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active .line-2 { opacity: 0; }
.menu-toggle.active .line-3 { transform: translateY(-6px) rotate(-45deg); }
.nav-chevron { transition: transform 0.3s; font-size: 0.7rem !important; }
.nav-item.active .nav-chevron { transform: rotate(180deg); }

@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .nav-live-badge { display: none; }
  .nav { position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100dvh; height: 100vh; overflow-y: auto; overflow-x: hidden; background: var(--bg-secondary); flex-direction: column; align-items: flex-start; padding: calc(var(--header-height, 80px) + 20px) 24px 40px; transition: 0.4s cubic-bezier(0.77,0,0.175,1); z-index: 1010; box-shadow: -20px 0 60px rgba(0,0,0,0.8); border-left: 1px solid rgba(255,255,255,0.05); margin: 0; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(0,212,170,0.3) transparent; }
  .nav::-webkit-scrollbar { width: 4px; }
  .nav::-webkit-scrollbar-thumb { background: rgba(0,212,170,0.3); border-radius: 4px; }
  .nav.open { right: 0; }
  .nav-links { flex-direction: column; width: 100%; gap: 6px; align-items: stretch; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 14px 16px; border-radius: 12px; font-size: 1rem; min-height: 48px; display: flex; align-items: center; justify-content: flex-start; -webkit-tap-highlight-color: transparent; }
  .nav-link:active { background: rgba(255,255,255,0.05); }
  .dropdown-menu { position: relative !important; top: auto !important; left: auto !important; transform: none !important; width: 100% !important; opacity: 1 !important; visibility: visible !important; display: none; padding: 5px 0 5px 12px !important; background: none !important; border: none !important; box-shadow: none !important; margin-bottom: 5px !important; pointer-events: auto !important; }
  .nav-item.active .dropdown-menu { display: block !important; }
  .mega-item { padding: 10px 12px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .mega-item:active { background: rgba(255,255,255,0.03); }
  .mega-icon { width: 36px; height: 36px; font-size: 1rem; }
  .mega-title { font-size: 0.9rem; }
  .mega-desc { font-size: 0.75rem; }
  .header-actions { display: flex; width: 100%; justify-content: space-between; padding: 16px 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.05); margin: 10px 0 0 0; gap: 12px; }
  .ui-btn-toggle { flex: 1; border-radius: 12px; height: 48px; min-width: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; }
  .nav-cta-neon { margin: 16px 0 0 0; width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; min-height: 52px; }
}

@media (max-width: 480px) {
  .nav { width: 100vw; right: -100vw; padding-top: calc(var(--header-height, 80px) + 15px); }
  .nav.open { right: 0; }
  .nav-link { padding: 12px 14px; font-size: 0.95rem; }
  .nav-cta-neon { padding: 14px; font-size: 0.9rem; }
}
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; z-index: 1006; transition: 0.3s; pointer-events: none; }
.nav-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero { padding: 100px 0 50px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.hero-text { flex: 1.2; min-width: 380px; }
.hero-visual { flex: 1; min-width: 400px; position: relative; perspective: 1000px; }

.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,212,170,0.08); border: 1px solid rgba(0,212,170,0.2); padding: 8px 18px; border-radius: 100px; color: var(--accent-primary); font-size: 0.8rem; font-weight: 700; margin-bottom: 25px; letter-spacing: 0.5px; }
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-primary); box-shadow: 0 0 10px var(--accent-primary); animation: pulseDot 1.5s infinite; }
.hero-title { font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.1; font-weight: 900; margin-bottom: 25px; letter-spacing: -1.5px; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 40px; max-width: 550px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 50px; align-items: center; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.hero-ghost-btn { color: var(--text-secondary); text-decoration: none; font-weight: 600; transition: 0.3s; border-bottom: 1px dashed rgba(255,255,255,0.2); padding-bottom: 2px; }
.hero-ghost-btn:hover { color: #fff; border-bottom-color: #fff; }

.hero-stats { display: flex; gap: 40px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value { font-size: 2rem; font-weight: 800; font-family: var(--font-mono); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* Live Mockup Dashboard */
.live-mockup {
  background: rgba(12, 18, 32, 0.7);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.live-mockup:hover { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); }
.mockup-header { background: rgba(0,0,0,0.5); padding: 16px 20px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 10px; }
.dots { display: flex; gap: 6px; margin-right: 15px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }
.mockup-title { font-family: var(--font-mono); color: var(--text-secondary); font-size: 0.85rem; }
.mockup-status { width: 100%; justify-content: flex-end; font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-primary); font-weight: 700; display: flex; align-items: center; gap: 6px; margin-top: 5px; }
.mockup-body { padding: 30px; position: relative; }

/* Signal Flow Animation */
.signal-flow-animation { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; background: rgba(0,0,0,0.3); padding: 20px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); }
.telegram-node, .webhook-node, .terminal-node { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; position: relative; z-index: 2; }
.telegram-node { background: rgba(59,130,246,0.15); color: var(--accent-secondary); border: 1px solid rgba(59,130,246,0.3); }
.webhook-node { background: rgba(139,92,246,0.15); color: var(--accent-tertiary); border: 1px solid rgba(139,92,246,0.3); }
.terminal-node { background: rgba(0,212,170,0.15); color: var(--accent-primary); border: 1px solid rgba(0,212,170,0.3); }
.flow-line { flex: 1; height: 2px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; margin: 0 10px; }
.flow-particle { position: absolute; top: -1px; left: 0; width: 30px; height: 4px; background: var(--accent-primary); box-shadow: 0 0 10px var(--accent-primary); border-radius: 4px; animation: flowMove 2s infinite linear; }
.flow-particle.delay-1 { animation-delay: 1s; background: var(--accent-secondary); box-shadow: 0 0 10px var(--accent-secondary); }
.flow-particle.delay-2 { animation-delay: 0.5s; background: var(--accent-tertiary); box-shadow: 0 0 10px var(--accent-tertiary); }
@keyframes flowMove { 0% { transform: translateX(-100%); } 100% { transform: translateX(300px); } }

/* Terminal Logs */
.terminal-logs { font-family: var(--font-mono); font-size: 0.8rem; margin-bottom: 25px; line-height: 1.8; color: var(--text-secondary); }
.log-line.success { color: var(--accent-primary); }
.log-line.processing { color: var(--accent-warning); }
.loader-dots { animation: blink 1.5s infinite step-start; }
@keyframes blink { 50% { opacity: 0; } }

/* Live Signal Card */
.live-signal-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; }
.signal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.badge-new { background: var(--accent-secondary); color: #fff; font-size: 0.65rem; padding: 3px 8px; border-radius: 4px; font-weight: 800; }
.signal-data { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.trade-pair { font-size: 1.2rem; font-weight: 800; color: #fff; }
.trade-price { font-family: var(--font-mono); color: var(--accent-primary); font-weight: 600; }
.signal-targets { display: flex; gap: 15px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 20px; }
.divider { width: 1px; background: rgba(255,255,255,0.2); }
.execution-status { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-secondary); display: flex; flex-direction: column; gap: 8px; }
.progress-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.progress-fill { width: 100%; height: 100%; background: var(--gradient-primary); transform-origin: left; animation: executeProgress 3s infinite ease-in-out; }
@keyframes executeProgress { 0% { transform: scaleX(0); } 40% { transform: scaleX(0.7); } 100% { transform: scaleX(1); } }

/* ============================================================
   POWER UNDER THE HOOD
============================================================ */
.section-header { text-align: center; margin-bottom: 45px; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-primary); background: rgba(0,212,170,0.1); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; border: 1px solid rgba(0,212,170,0.2); }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.power-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.power-panel { background: rgba(15, 23, 41, 0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 40px; position: relative; overflow: hidden; transition: 0.4s; z-index: 1; display: flex; flex-direction: column; }
.power-panel:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-5px); }

.panel-glow { position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; border-radius: 50%; filter: blur(60px); z-index: -1; opacity: 0.5; }
.blue-glow { background: var(--accent-secondary); }
.green-glow { background: var(--accent-primary); }
.purple-glow { background: var(--accent-tertiary); }

.panel-icon { font-size: 2rem; color: #fff; margin-bottom: 25px; }
.panel-content h3 { font-size: 1.3rem; color: #fff; margin-bottom: 15px; }
.panel-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 30px; }

.panel-visual { margin-top: auto; background: rgba(0,0,0,0.4); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); padding: 20px; height: 140px; display: flex; align-items: center; justify-content: center; }
#particles-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.grid-bg { position: fixed; inset: 0; background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0); background-size: 40px 40px; pointer-events: none; z-index: -1; }
.page-wrapper { position: relative; width: 100%; min-height: auto; overflow-x: hidden; }
.map-node { position: absolute; width: 6px; height: 6px; background: var(--text-secondary); border-radius: 50%; }
.map-node.active { background: var(--accent-secondary); box-shadow: 0 0 10px var(--accent-secondary); animation: pulseDot 2s infinite; }

/* Code Snippet */
.code-snippet { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-primary); text-align: left; width: 100%; }
.keyword { color: var(--accent-tertiary); } .string { color: var(--accent-primary); } .number { color: var(--accent-warning); }

/* Logic Filter UI */
.logic-filter-ui { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.filter-item { font-family: var(--font-mono); font-size: 0.75rem; background: rgba(255,255,255,0.05); padding: 8px 12px; border-radius: 6px; display: flex; align-items: center; gap: 10px; }
.filter-item.pass { color: var(--accent-success); border-left: 2px solid var(--accent-success); }
.filter-item.active { color: var(--accent-warning); border-left: 2px solid var(--accent-warning); }

/* ============================================================
   PRODUCT CARDS & VIBRANCY
============================================================ */
.products-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 30px; 
}

.product-card { 
  background: #0b1120; 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 12px; 
  overflow: hidden; 
  transition: all 0.3s ease; 
  display: flex; 
  flex-direction: column; 
  position: relative;
  height: 100%;
}

.product-card:hover { 
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.product-image { 
  position: relative; 
  width: 100%; 
  height: 240px; 
  overflow: hidden; 
}

.product-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: 0.3s ease; 
}

.product-card:hover .product-image img { 
  transform: scale(1.05); 
}

.product-badge { 
  position: absolute; 
  top: 15px; 
  right: 15px; 
  background: var(--gradient-primary); 
  color: #060a13; 
  padding: 6px 14px; 
  border-radius: 10px; 
  font-size: 0.75rem; 
  font-weight: 800; 
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.product-image-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, var(--bg-primary), transparent); 
  opacity: 0.85;
  z-index: 5;
}

.product-body { 
  padding: 30px; 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  position: relative;
  z-index: 10;
}

.product-category { 
  font-size: 0.75rem; 
  color: var(--accent-primary); 
  text-transform: uppercase; 
  font-weight: 800; 
  letter-spacing: 2px; 
  display: block; 
  margin-bottom: 12px; 
}

.product-title { 
  font-size: 1.5rem; 
  font-weight: 800; 
  margin-bottom: 15px; 
  color: #fff; 
  line-height: 1.2;
}

.product-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex: 1;
}

.product-meta { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  margin-bottom: 25px;
}

.product-tag { 
  background: rgba(255, 255, 255, 0.05); 
  color: var(--text-primary); 
  font-size: 0.8rem; 
  padding: 6px 16px; 
  border-radius: 100px; 
  font-weight: 600; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08); 
  transition: 0.3s;
}

.product-card:hover .product-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-footer {
  display: flex;
  gap: 15px;
  width: 100%;
}

.nav-cta-vibrant {
  background: linear-gradient(135deg, var(--accent-primary), #00e6b8);
  color: #060a13;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 5px 20px rgba(0, 212, 170, 0.3);
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nav-cta-vibrant::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.nav-cta-vibrant:hover::before {
  left: 100%;
}

.nav-cta-vibrant:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.6);
  filter: brightness(1.15);
}

/* Page Specific Hero Styles */
.page-hero { padding: 140px 0 40px !important; min-height: auto !important; position: relative; text-align: center; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 25px; color: var(--text-secondary); font-size: 0.9rem; }
.breadcrumb a { color: var(--accent-primary); text-decoration: none; font-weight: 600; }
.breadcrumb-separator { opacity: 0.4; }

/* ============================================================
   FOOTER — PREMIUM CYBER COMMAND EDITION
============================================================ */
.footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #03060f 100%);
  padding: 80px 0 0;
  border-top: 1px solid rgba(0, 212, 170, 0.12);
  position: relative;
  overflow: hidden;
}

/* Ambient glows */
.footer::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-glow { display: none; } /* replaced by pseudo-elements */

/* ── CTA Strip ─────────────────────────────────────── */
.footer-cta-strip {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(59, 130, 246, 0.06) 100%);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 20px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 70px;
  position: relative;
  overflow: hidden;
}
.footer-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,212,170,0.03), transparent 60%);
  pointer-events: none;
}
.footer-cta-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.footer-cta-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.footer-cta-text span {
  color: var(--accent-primary);
  font-weight: 700;
}

/* ── Main Grid ─────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 380px;
}

.footer-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 18px 0 25px;
  font-size: 0.93rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  color: var(--accent-primary);
  border-color: rgba(0, 212, 170, 0.4);
  background: rgba(0, 212, 170, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.15);
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 212, 170, 0.15);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  transition: all 0.25s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(0, 212, 170, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.25s;
}
.footer-link:hover {
  color: var(--accent-primary);
  transform: translateX(4px);
}
.footer-link:hover::before {
  background: var(--accent-primary);
  box-shadow: 0 0 6px rgba(0, 212, 170, 0.6);
}

/* ── Trust Bar ─────────────────────────────────────── */
.footer-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.trust-item i {
  color: var(--accent-primary);
  font-size: 1rem;
}
.trust-item strong {
  color: #fff;
  font-weight: 700;
}

/* ── Divider ───────────────────────────────────────── */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,170,0.2), rgba(59,130,246,0.15), transparent);
  margin-bottom: 0;
}

/* ── Bottom Bar ────────────────────────────────────── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  background: rgba(0,0,0,0.2);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-copyright i {
  color: var(--accent-primary);
  font-size: 0.8rem;
}
.footer-copyright span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 6px 14px;
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.1);
  border-radius: 100px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #00d4aa;
  border-radius: 50%;
  box-shadow: 0 0 8px #00d4aa;
  animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.6; transform: scale(1); }
}

/* ============================================================
   GLOBAL BUTTON SYSTEM
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: 8px; }

.btn-primary {
  background: var(--gradient-primary);
  color: #060a13;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn i { font-size: 1.1em; }

.btn::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: 0.5s;
  z-index: -1;
}

.btn:hover::after {
  left: 100%;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text, .hero-visual { min-width: 100%; width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .live-mockup { transform: none; max-width: 600px; margin: 0 auto; }
  .live-mockup:hover { transform: translateY(-5px); }
  .signal-flow-animation { flex-direction: column; gap: 10px; }
  .flow-line { width: 2px; height: 30px; margin: 0; }
  .flow-particle { width: 4px; height: 15px; animation: flowMoveVertical 2s infinite linear; }
  @keyframes flowMoveVertical { 0% { transform: translateY(-100%); } 100% { transform: translateY(50px); } }

  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .container { padding: 0 20px; }
  .section { padding: 65px 0; }
  .power-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 2rem; }
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 40px; }
  .page-hero { padding: 120px 0 30px !important; }
  
  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { max-width: 100%; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-title { justify-content: center; }
  .footer-link { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer { padding: 60px 0 0; }
  .footer-cta-strip { flex-direction: column; text-align: center; padding: 28px 24px; }
  .footer-trust-bar { gap: 22px; padding: 22px 0; }
  
  /* Nav Mobile Fixes */
  .nav {
    background: var(--bg-secondary);
  }

  /* Product Cards Mobile */
  .products-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 20px; }
  .product-image { height: 200px; }
  .product-body { padding: 20px; }
  .product-title { font-size: 1.25rem; }
  .product-description { font-size: 0.9rem; margin-bottom: 20px; }
  .product-meta { gap: 8px; }
  .product-tag { font-size: 0.75rem; padding: 5px 12px; }
  .product-footer { flex-direction: column; }
  .nav-cta-vibrant { padding: 12px 20px; font-size: 0.9rem; }

  /* Detail Pages Mobile */
  .product-detail-hero { padding: 100px 0 40px; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; justify-content: center; }
  .support-box { padding: 25px 20px; }
  .support-channels { grid-template-columns: 1fr; }
  .compatibility-tags { gap: 8px; }
  .compatibility-tag { font-size: 0.75rem; padding: 5px 12px; }
  .feature-list-item { padding: 10px 14px; font-size: 0.9rem; }
  .breadcrumb { flex-wrap: wrap; justify-content: flex-start; font-size: 0.8rem; }

  /* Hero Stats Mobile */
  .hero-stats { flex-wrap: wrap; gap: 25px; justify-content: center; }
  .hero-stat-value { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.7rem; }

  /* Buttons Mobile */
  .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; gap: 15px; align-items: center; }
  .hero-ghost-btn { border-bottom: none; }

  /* Reviews Mobile */
  #reviews .products-grid { grid-template-columns: 1fr !important; }

  /* Disclaimer Mobile */
  .disclaimer { flex-direction: column; align-items: center; text-align: center; padding: 25px !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.95rem; }
  .section-label { font-size: 0.7rem; padding: 5px 12px; }

  .hero { padding: 100px 0 40px; }
  .hero-title { font-size: 2rem; letter-spacing: -1px; }
  .hero-subtitle { font-size: 0.9rem; line-height: 1.6; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
  .page-hero { padding: 100px 0 25px !important; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: 0.9rem; }

  .product-card { border-radius: 16px; }
  .product-image { height: 170px; }
  .product-body { padding: 18px; }
  .product-title { font-size: 1.15rem; }
  .product-description { font-size: 0.85rem; }
  .product-category { font-size: 0.7rem; }

  .power-panel { padding: 25px; border-radius: 18px; }
  .panel-content h3 { font-size: 1.1rem; }
  .panel-content p { font-size: 0.9rem; }
  .panel-visual { height: 120px; padding: 15px; }

  .footer { padding: 50px 0 25px; }
  .footer-title { font-size: 0.9rem; margin-bottom: 20px; }
  .footer-link { font-size: 0.85rem; }
  .footer-desc { font-size: 0.9rem; }

  .toast { left: 16px; right: 16px; bottom: 16px; padding: 12px 18px; font-size: 0.85rem; }
}
/* ============================================================
   CYBER GLASS COMPONENTS (Detail Pages)
============================================================ */
.product-detail-hero { padding: 120px 0 50px; position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 30px; font-weight: 500; }
.breadcrumb a { color: var(--accent-primary); text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover { text-shadow: 0 0 8px var(--accent-primary); }
.breadcrumb-separator { opacity: 0.3; }

.product-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; margin-bottom: 80px; }
.product-detail-image { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: var(--bg-card); box-shadow: var(--shadow-2xl); }
.product-detail-image img { width: 100%; height: auto; display: block; transition: 0.5s; }
.product-detail-image:hover img { transform: scale(1.03); }

.product-category { color: var(--accent-primary); font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 15px; display: block; }
.product-detail-info h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px; }
.product-description { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.8; margin-bottom: 35px; }

.product-features h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: #fff; display: flex; align-items: center; gap: 10px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.feature-list-item { display: flex; align-items: flex-start; gap: 15px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; padding: 12px 18px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; transition: 0.3s; }
.feature-list-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(0,212,170,0.2); transform: translateX(5px); }
.feature-list-item .check { color: var(--accent-primary); font-weight: 800; font-family: var(--font-mono); }

.compatibility-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.compatibility-tag { padding: 6px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }

.product-actions { display: flex; gap: 20px; flex-wrap: wrap; }

/* Support Box */
.support-box { background: var(--bg-card); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 40px; position: relative; overflow: hidden; margin-top: 40px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.support-box::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,212,170,0.05) 0%, transparent 50%); pointer-events: none; }
.support-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; color: #fff; }
.support-box p { color: var(--text-secondary); margin-bottom: 30px; }
.support-channels { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.support-channel { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-primary); font-weight: 600; }
.support-channel-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,212,170,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent-primary); }

@media (max-width: 992px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-image { border-radius: 18px; }
}

@media (max-width: 768px) {
  .product-detail-hero { padding: 100px 0 40px; }
  .product-actions .btn { width: 100%; }
  .support-box { padding: 30px 20px; }
  .product-detail-info h1 { font-size: 1.8rem; }
  .product-description { font-size: 1rem; }
  .feature-list { gap: 10px; }
  .feature-list-item { padding: 10px 14px; font-size: 0.9rem; }
  .product-features h3 { font-size: 1.1rem; }
  .breadcrumb { font-size: 0.8rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .product-detail-hero { padding: 90px 0 30px; }
  .product-detail-info h1 { font-size: 1.5rem; }
  .product-description { font-size: 0.9rem; line-height: 1.6; }
  .feature-list-item { padding: 8px 12px; font-size: 0.85rem; gap: 10px; }
  .product-features h3 { font-size: 1rem; margin-bottom: 15px; }
  .compatibility-tag { font-size: 0.7rem; padding: 5px 10px; }
  .support-box { padding: 20px 16px; border-radius: 16px; }
  .support-box h3 { font-size: 1.2rem; }
  .support-channel { font-size: 0.85rem; }
  .support-channel-icon { width: 28px; height: 28px; font-size: 0.85rem; }
}

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 170, 0.2);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10000;
  font-weight: 500;
  font-size: 0.9rem;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast i {
  color: #00d4aa;
}
@media (max-width: 480px) {
  .toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
    justify-content: center;
  }
}

/* ==========================================================================
   LIVE INTERACTIVE PREVIEW SECTION
   ========================================================================== */
.interactive-preview-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.premium-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.premium-feature-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feat-text strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.feat-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.preview-cta {
    margin-top: 10px;
}

.cta-microcopy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 15px;
    font-weight: 500;
}

.glass-terminal-container {
    background: rgba(10, 15, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
}

.terminal-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-header-bar .dots {
    display: flex;
    gap: 8px;
}

.terminal-header-bar .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.terminal-header-bar .dot.red { background: #ff5f56; }
.terminal-header-bar .dot.yellow { background: #ffbd2e; }
.terminal-header-bar .dot.green { background: #27c93f; }

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.terminal-status {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
}

.pulse-icon {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.terminal-screens-wrapper {
    position: relative;
    height: 380px;
}

.t-screen {
    position: absolute;
    inset: 0;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.t-screen.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.ts-badge {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.ts-pair {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
}

.ts-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ts-prob {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.ts-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Screen 1: Chart */
.ts-chart-mockup {
    position: relative;
    height: 150px;
    margin-bottom: 20px;
}

.chart-line-svg {
    width: 100%;
    height: 100%;
    position: relative;
}

.chart-line-svg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 212, 170, 0.4));
}

.chart-marker {
    position: absolute;
    top: 50%;
    left: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.marker-pulse {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.7);
    animation: marker-pulse-anim 2s infinite;
}

@keyframes marker-pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 212, 170, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0); }
}

.marker-label {
    background: var(--accent-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Screen 2: News */
.ts-news-alert {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.alert-icon {
    font-size: 2rem;
    color: #ef4444;
}

.alert-body h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.alert-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.ai-rating {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    border: none;
}

/* Screen 3: Risk */
.ts-risk-calc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.calc-row strong {
    color: #fff;
}

.calc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
}

.calc-result span {
    color: #ffcc00;
    font-weight: 600;
    font-size: 0.9rem;
}

.lot-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

/* Pagination */
.t-screen-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.t-dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.t-dot.active {
    background: var(--accent-primary);
    width: 50px;
}

@media (max-width: 992px) {
    .preview-layout {
        grid-template-columns: 1fr;
    }
}
