/* ============ CSS VARIABLES ============ */
:root {
  --bg-primary: #05050d;
  --bg-secondary: #0a0a1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --cyan: #00f5ff;
  --violet: #bf00ff;
  --magenta: #ff0090;
  --emerald: #00ff88;
  --text: #e8eaf6;
  --text-dim: #8892b0;
  --border: rgba(0, 245, 255, 0.15);
  --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 60px rgba(0, 245, 255, 0.2);
  --glow-violet: 0 0 20px rgba(191, 0, 255, 0.5), 0 0 60px rgba(191, 0, 255, 0.2);
  --glow-magenta: 0 0 20px rgba(255, 0, 144, 0.5), 0 0 60px rgba(255, 0, 144, 0.2);
  --glow-emerald: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.2);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed; width: 12px; height: 12px; border-radius: 50%;
  background: var(--cyan); pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.5); pointer-events: none;
  z-index: 9998; transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 4px; }

/* ============ NAVBAR ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(5, 5, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace; font-weight: 900; font-size: 1.4rem;
  color: var(--cyan); text-decoration: none;
  text-shadow: var(--glow-cyan);
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-dim); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 10px rgba(0, 245, 255, 0.5); }
.nav-cta {
  padding: 10px 24px; border: 1.5px solid var(--cyan); border-radius: 50px;
  color: var(--cyan); text-decoration: none; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.5px; transition: var(--transition); background: transparent;
  font-family: 'Outfit', sans-serif; cursor: none;
}
.nav-cta:hover { background: var(--cyan); color: var(--bg-primary); box-shadow: var(--glow-cyan); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--cyan); transition: var(--transition); display: block; }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(5, 5, 13, 0.97);
  backdrop-filter: blur(30px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Orbitron', monospace; font-size: 1.5rem; font-weight: 700;
  color: var(--text); text-decoration: none; transition: var(--transition);
}
.mobile-menu a:hover { color: var(--cyan); text-shadow: var(--glow-cyan); }

/* ============ HERO ============ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 60px; overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border: 1px solid rgba(0, 245, 255, 0.3); border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; color: var(--cyan); letter-spacing: 1px;
  background: rgba(0, 245, 255, 0.05); margin-bottom: 28px;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -1px; margin-bottom: 24px;
}
.hero-title .line1 { color: var(--text); }
.hero-title .line2 {
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-shadow: none;
}
.typewriter {
  border-right: 3px solid var(--cyan); padding-right: 4px;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 50% { border-color: transparent; } }
.hero-sub {
  font-size: 1.15rem; color: var(--text-dim); line-height: 1.8;
  max-width: 560px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #000; font-weight: 700; font-size: 0.95rem; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
  border: none; cursor: none; font-family: 'Outfit', sans-serif; letter-spacing: 0.5px;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: var(--glow-cyan); }
.btn-ghost {
  padding: 14px 32px; border: 1.5px solid rgba(255, 255, 255, 0.2); color: var(--text);
  font-weight: 500; font-size: 0.95rem; border-radius: 50px; text-decoration: none;
  transition: var(--transition); display: flex; align-items: center; gap: 10px;
  cursor: none; font-family: 'Outfit', sans-serif; background: transparent;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
.play-icon { width: 18px; height: 18px; fill: currentColor; }
.hero-visual {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  z-index: 1; opacity: 0;
  animation: fadeLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
}
.hero-bot { width: 420px; height: 420px; animation: float 6s ease-in-out infinite; }

/* ============ KEYFRAMES ============ */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; } }

/* ============ STATS ============ */
#stats {
  padding: 60px;
  background: rgba(0, 245, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  backdrop-filter: blur(10px); transition: var(--transition);
  opacity: 0; transform: translateY(30px);
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); transform: translateY(-6px); }
.stat-num {
  font-family: 'Orbitron', monospace; font-size: 2.4rem; font-weight: 900;
  color: var(--cyan); text-shadow: var(--glow-cyan); margin-bottom: 8px;
}
.stat-label { color: var(--text-dim); font-size: 0.9rem; letter-spacing: 0.5px; }

/* ============ SECTION COMMONS ============ */
section { padding: 100px 60px; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
}
.section-title {
  font-family: 'Orbitron', monospace; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.section-sub { color: var(--text-dim); font-size: 1.05rem; line-height: 1.8; max-width: 580px; }
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SVG Wave Divider */
.wave-divider { overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 60px; }

/* ============ FEATURES ============ */
#features { background: var(--bg-secondary); }
.features-header {
  max-width: 1200px; margin: 0 auto 60px;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px;
}
.bento-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; transition: var(--transition);
  opacity: 0; transform: translateY(40px);
  backdrop-filter: blur(6px); transform-style: preserve-3d;
}
.feat-card.visible { opacity: 1; transform: translateY(0); }
.feat-card:nth-child(1) { grid-column: span 2; background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), transparent); }
.feat-card:nth-child(4) { grid-column: span 2; background: linear-gradient(135deg, rgba(191, 0, 255, 0.05), transparent); }
.feat-card:hover { border-color: var(--cyan); transform: translateY(-8px) rotateX(2deg) rotateY(2deg); box-shadow: var(--glow-cyan); }
.feat-icon { width: 52px; height: 52px; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.6)); }
.feat-title { font-family: 'Orbitron', monospace; font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.feat-desc { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }

/* ============ HOW IT WORKS ============ */
#how { background: var(--bg-primary); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 80px; }
.steps-container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.steps-container::before {
  content: ''; position: absolute; top: 60px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta), var(--emerald));
  animation: flow 3s linear infinite;
}
@keyframes flow { 0% { background-position: 0; } 100% { background-position: 100%; } }
.step {
  text-align: center; padding: 0 20px; position: relative;
  opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:nth-child(2) { transition-delay: 0.15s; }
.step:nth-child(3) { transition-delay: 0.3s; }
.step:nth-child(4) { transition-delay: 0.45s; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace; font-weight: 900; font-size: 1rem;
  position: relative; z-index: 2; border: 2px solid var(--cyan);
  background: var(--bg-primary); color: var(--cyan); text-shadow: var(--glow-cyan);
  box-shadow: var(--glow-cyan);
}
.step-icon { margin-bottom: 20px; }
.step-icon svg { width: 44px; height: 44px; filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.5)); }
.step-title { font-family: 'Orbitron', monospace; font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; }
.step-desc { color: var(--text-dim); font-size: 0.85rem; line-height: 1.7; }

/* ============ CHAT DEMO ============ */
#demo { background: var(--bg-secondary); position: relative; overflow: hidden; }
#demo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 245, 255, 0.05) 0%, transparent 70%);
}
.demo-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.demo-header { margin-bottom: 60px; }
.chat-window {
  background: rgba(10, 10, 26, 0.9); border: 1px solid var(--border); border-radius: 20px;
  padding: 0; overflow: hidden; backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0, 245, 255, 0.1), 0 0 120px rgba(191, 0, 255, 0.05);
  animation: float 8s ease-in-out infinite;
}
.chat-header {
  display: flex; align-items: center; gap: 12px; padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 245, 255, 0.03);
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.chat-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.chat-status { font-size: 0.75rem; color: var(--emerald); display: flex; align-items: center; gap: 5px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); animation: pulse-dot 2s infinite; }
.chat-body { padding: 24px; min-height: 280px; }
.chat-msg {
  margin-bottom: 16px; display: flex; gap: 10px;
  opacity: 0; transform: translateY(10px); transition: opacity 0.4s, transform 0.4s;
}
.chat-msg.show { opacity: 1; transform: translateY(0); }
.chat-msg.user { flex-direction: row-reverse; }
.msg-bubble { max-width: 75%; padding: 12px 18px; border-radius: 18px; font-size: 0.9rem; line-height: 1.6; }
.chat-msg:not(.user) .msg-bubble {
  background: rgba(0, 245, 255, 0.08); border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 4px 18px 18px 18px;
}
.chat-msg.user .msg-bubble {
  background: linear-gradient(135deg, rgba(191, 0, 255, 0.2), rgba(0, 245, 255, 0.1));
  border: 1px solid rgba(191, 0, 255, 0.3); border-radius: 18px 4px 18px 18px;
}
.msg-ava {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; margin-top: 4px;
}
.bot-ava { background: linear-gradient(135deg, var(--cyan), var(--violet)); }
.user-ava { background: linear-gradient(135deg, var(--magenta), var(--violet)); }
.typing { display: flex; gap: 4px; align-items: center; padding: 12px 18px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); animation: typing-bounce 1.4s infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}
.demo-cta { margin-top: 40px; }

/* ============ INTEGRATIONS ============ */
#integrations { background: var(--bg-primary); }
.integrations-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.marquee-wrap { margin-top: 60px; overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 200px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-primary), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg-primary), transparent); }
.marquee-track {
  display: flex; gap: 24px; width: max-content;
  animation: marquee-left 25s linear infinite; margin-bottom: 24px;
}
.marquee-track.reverse { animation-direction: reverse; animation-duration: 30s; }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.integration-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 50px;
  white-space: nowrap; font-size: 0.875rem; font-weight: 500;
  transition: var(--transition); backdrop-filter: blur(6px);
}
.integration-pill:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.int-icon { width: 20px; height: 20px; }

/* ============ PRICING ============ */
#pricing { background: var(--bg-secondary); }
.pricing-header { text-align: center; margin-bottom: 20px; }
.toggle-wrap { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 60px; }
.toggle-label { color: var(--text-dim); font-size: 0.9rem; }
.toggle {
  width: 50px; height: 26px; background: rgba(0, 245, 255, 0.2); border-radius: 50px;
  position: relative; cursor: none; border: 1px solid var(--border); transition: var(--transition);
}
.toggle-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--cyan);
  position: absolute; top: 2px; left: 2px; transition: var(--transition);
}
.toggle.active .toggle-thumb { transform: translateX(24px); }
.toggle.active { background: rgba(0, 245, 255, 0.3); }
.save-badge {
  background: linear-gradient(135deg, var(--emerald), var(--cyan)); color: #000;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.5px;
}
.pricing-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  padding: 40px 36px; text-align: center; transition: var(--transition);
  backdrop-filter: blur(10px); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(40px);
}
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card:hover { transform: translateY(-10px); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.price-card.popular {
  border-color: var(--cyan); box-shadow: var(--glow-cyan);
  background: linear-gradient(160deg, rgba(0, 245, 255, 0.07), rgba(191, 0, 255, 0.04));
  transform: scale(1.05);
}
.price-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #000; font-size: 0.7rem; font-weight: 800; padding: 5px 14px;
  border-radius: 50px; letter-spacing: 1px;
}
.price-name {
  font-family: 'Orbitron', monospace; font-size: 0.9rem; font-weight: 700;
  color: var(--text-dim); letter-spacing: 2px; margin-bottom: 16px;
}
.price-amount {
  font-family: 'Orbitron', monospace; font-size: 3rem; font-weight: 900;
  color: var(--text); margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; color: var(--text-dim); }
.price-period { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 32px; }
.price-features { list-style: none; margin-bottom: 36px; text-align: left; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem; color: var(--text-dim);
}
.price-features li:last-child { border-bottom: none; }
.check { color: var(--emerald); font-size: 1rem; }
.price-btn {
  width: 100%; padding: 14px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  cursor: none; font-family: 'Outfit', sans-serif; transition: var(--transition); letter-spacing: 0.5px;
  border: 1.5px solid var(--cyan); color: var(--cyan); background: transparent;
}
.price-btn:hover { background: var(--cyan); color: #000; box-shadow: var(--glow-cyan); }
.price-card.popular .price-btn { background: var(--cyan); color: #000; box-shadow: var(--glow-cyan); }
.price-card.popular .price-btn:hover { transform: scale(1.03); }

/* ============ TESTIMONIALS ============ */
#testimonials { background: var(--bg-primary); }
.testi-inner { max-width: 1200px; margin: 0 auto; }
.testi-header { margin-bottom: 60px; }
.testi-carousel { overflow: hidden; position: relative; }
.testi-track {
  display: flex; gap: 24px;
  animation: marquee-left 35s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
.testi-card {
  min-width: 360px; background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--cyan); border-radius: var(--radius);
  padding: 32px; backdrop-filter: blur(10px); flex-shrink: 0;
}
.testi-stars { color: var(--cyan); margin-bottom: 16px; font-size: 1.1rem; letter-spacing: 2px; }
.testi-text { color: var(--text-dim); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #000; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.testi-role { color: var(--text-dim); font-size: 0.8rem; }

/* ============ FAQ ============ */
#faq { background: var(--bg-secondary); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { margin-bottom: 60px; text-align: center; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; transition: var(--transition); background: var(--bg-card); backdrop-filter: blur(6px);
}
.faq-item:hover { border-color: rgba(0, 245, 255, 0.3); }
.faq-item.open { border-color: var(--cyan); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: none; font-weight: 600; font-size: 0.95rem;
  color: var(--text); user-select: none;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.2rem; color: var(--cyan); transition: var(--transition); font-weight: 300;
}
.faq-item.open .faq-toggle { background: var(--cyan); color: #000; border-color: var(--cyan); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-dim); font-size: 0.9rem; line-height: 1.8; padding: 0 28px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }

/* ============ CTA BANNER ============ */
#cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(191, 0, 255, 0.05));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 245, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(191, 0, 255, 0.06) 0%, transparent 60%);
}
.cta-border {
  position: absolute; inset: 20px; border: 1px solid rgba(0, 245, 255, 0.2); border-radius: 24px;
  animation: glow-border 3s ease-in-out infinite;
}
@keyframes glow-border {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.1); }
  50% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.3), 0 0 80px rgba(191, 0, 255, 0.1); }
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: 'Orbitron', monospace; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; margin-bottom: 20px; line-height: 1.2;
}
.cta-title .accent {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-sub { color: var(--text-dim); font-size: 1rem; margin-bottom: 40px; line-height: 1.8; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer {
  background: #070712;
  border-top: 1px solid rgba(0, 245, 255, 0.2);
  position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), var(--magenta), transparent);
  animation: footer-glow-anim 4s ease-in-out infinite;
}
@keyframes footer-glow-anim { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.footer-bg-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(var(--cyan) 1px, transparent 1px),
                    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 40px 40px;
}
.footer-inner {
  position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; padding: 80px 60px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 48px;
  margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace; font-weight: 900; font-size: 1.5rem; color: var(--cyan);
  text-shadow: var(--glow-cyan); margin-bottom: 16px; text-decoration: none;
}
.footer-brand p { color: var(--text-dim); font-size: 0.875rem; line-height: 1.8; max-width: 280px; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); text-decoration: none; transition: var(--transition);
}
.social-link:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--glow-cyan); transform: translateY(-3px); }
.footer-col h4 {
  font-family: 'Orbitron', monospace; font-size: 0.75rem; font-weight: 700;
  color: var(--text); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--text-dim); text-decoration: none; font-size: 0.875rem;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--cyan); transform: translateX(4px); }
.footer-col ul li a::before { content: '›'; opacity: 0; transition: var(--transition); }
.footer-col ul li a:hover::before { opacity: 1; }
.newsletter-input-wrap { display: flex; gap: 10px; margin-top: 16px; flex-direction: column; gap: 12px; }
.newsletter-input {
  width: 100%; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-family: 'Outfit', sans-serif; font-size: 0.875rem;
  outline: none; transition: var(--transition);
}
.newsletter-input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.1); }
.newsletter-btn {
  width: 100%; padding: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #000; font-weight: 700; font-size: 0.875rem; border: none; border-radius: 10px;
  cursor: none; font-family: 'Outfit', sans-serif; transition: var(--transition);
}
.newsletter-btn:hover { transform: translateY(-2px); box-shadow: var(--glow-cyan); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.footer-legal a { color: var(--text-dim); font-size: 0.8rem; text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copyright { color: var(--text-dim); font-size: 0.8rem; }
.footer-tagline { color: var(--text-dim); font-size: 0.8rem; display: flex; align-items: center; gap: 6px; }
.footer-tagline span { color: var(--cyan); }

/* ============ FLOATING ORBS ============ */
.orb { position: absolute; border-radius: 50%; pointer-events: none; animation: float 8s ease-in-out infinite; }
.orb-1 {
  width: 300px; height: 300px; top: -100px; right: 10%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.08) 0%, transparent 70%);
  animation-duration: 10s;
}
.orb-2 {
  width: 200px; height: 200px; bottom: 10%; left: 5%;
  background: radial-gradient(circle, rgba(191, 0, 255, 0.07) 0%, transparent 70%);
  animation-duration: 7s; animation-delay: -3s;
}
.orb-3 {
  width: 150px; height: 150px; top: 30%; right: 5%;
  background: radial-gradient(circle, rgba(255, 0, 144, 0.06) 0%, transparent 70%);
  animation-duration: 9s; animation-delay: -5s;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  nav { display: flex; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card:nth-child(1), .feat-card:nth-child(4) { grid-column: span 1; }
  .steps-container { grid-template-columns: repeat(2, 1fr); }
  .steps-container::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card.popular { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  section { padding: 80px 30px; }
  nav { padding: 16px 30px; }
  nav.scrolled { padding: 12px 30px; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-inner { padding: 60px 20px 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}