@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:   #03071a;
  --bg-secondary: #060d1f;
  --bg-card:      rgba(8, 18, 45, 0.7);
  --blue:         #3b82f6;
  --blue-bright:  #60a5fa;
  --violet:       #7c3aed;
  --violet-bright:#8b5cf6;
  --cyan:         #06b6d4;
  --pink:         #ec4899;
  --text:         #f0f4ff;
  --text-muted:   #94a3b8;
  --text-dim:     #475569;
  --border:       rgba(99, 142, 255, 0.12);
  --border-hover: rgba(99, 142, 255, 0.35);
  --glow-blue:    rgba(59, 130, 246, 0.25);
  --glow-violet:  rgba(124, 58, 237, 0.25);
  --glow-cyan:    rgba(6, 182, 212, 0.2);
  --nav-height:   72px;
  --radius:       14px;
  --radius-lg:    22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── CANVAS BACKGROUND ─────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.content-wrapper { position: relative; z-index: 1; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(3, 7, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(3, 7, 26, 0.96);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-svg { width: 38px; height: 38px; }

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #60a5fa 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(99, 142, 255, 0.08);
}

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

.btn-ghost {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--text); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--glow-blue);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 30px var(--glow-blue);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(99, 142, 255, 0.08);
  border-color: rgba(99, 142, 255, 0.5);
  transform: translateY(-1px);
}

.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(3, 7, 26, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}

.mobile-menu a:hover { color: var(--text); background: rgba(99,142,255,0.08); }
.mobile-menu .btn-primary { margin-top: 8px; justify-content: center; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tag-pill {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid;
}

.tag-pill.blue   { border-color: rgba(59,130,246,0.4);  color: #93c5fd; background: rgba(59,130,246,0.08);  }
.tag-pill.violet { border-color: rgba(124,58,237,0.4);  color: #c4b5fd; background: rgba(124,58,237,0.08); }
.tag-pill.cyan   { border-color: rgba(6,182,212,0.4);   color: #67e8f9; background: rgba(6,182,212,0.08);  }
.tag-pill.pink   { border-color: rgba(236,72,153,0.4);  color: #f9a8d4; background: rgba(236,72,153,0.08); }

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.hero-headline .grad {
  background: linear-gradient(135deg, #60a5fa 0%, #8b5cf6 60%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.link-arrow:hover { color: var(--blue-bright); }

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

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: -8px;
}

.avatar-stack span:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #3b82f6, #7c3aed); }
.av2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.av3 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.av4 { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.social-proof-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-proof-text strong { color: var(--text); }

/* ─── HERO VISUAL ───────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.orb-container {
  position: relative;
  width: 320px;
  height: 320px;
}

.orb-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #93c5fd, #7c3aed 60%, #4c1d95);
  box-shadow:
    0 0 40px rgba(59, 130, 246, 0.7),
    0 0 80px rgba(124, 58, 237, 0.4),
    0 0 120px rgba(59, 130, 246, 0.2);
  animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(59,130,246,0.7), 0 0 80px rgba(124,58,237,0.4), 0 0 120px rgba(59,130,246,0.2); transform: translate(-50%,-50%) scale(1); }
  50%       { box-shadow: 0 0 60px rgba(59,130,246,0.9), 0 0 120px rgba(124,58,237,0.6), 0 0 180px rgba(59,130,246,0.3); transform: translate(-50%,-50%) scale(1.05); }
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid;
  animation: spin linear infinite;
}

.orbit-ring-1 {
  border-color: rgba(59,130,246,0.3);
  width: 180px; height: 60px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(70deg) rotateY(-25deg);
  animation-duration: 6s;
}

.orbit-ring-2 {
  border-color: rgba(139,92,246,0.3);
  width: 220px; height: 80px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(70deg) rotateY(35deg);
  animation-duration: 9s;
  animation-direction: reverse;
}

.orbit-ring-3 {
  border-color: rgba(6,182,212,0.2);
  width: 280px; height: 100px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(75deg) rotateY(5deg);
  animation-duration: 14s;
}

@keyframes spin { from { transform: translate(-50%,-50%) rotateX(70deg) rotateY(var(--ry,0deg)) rotate(0deg); } to { transform: translate(-50%,-50%) rotateX(70deg) rotateY(var(--ry,0deg)) rotate(360deg); } }

.orbit-node {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: floatNode 4s ease-in-out infinite;
}

.orbit-node::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  filter: blur(4px);
}

.node-1 { background: #3b82f6; top: 8%;  left: 50%; animation-delay: 0s; }
.node-2 { background: #8b5cf6; top: 50%; left: 92%; animation-delay: 0.7s; }
.node-3 { background: #06b6d4; top: 92%; left: 50%; animation-delay: 1.4s; }
.node-4 { background: #7c3aed; top: 50%; left: 8%;  animation-delay: 2.1s; }
.node-5 { background: #ec4899; top: 20%; left: 82%; animation-delay: 0.4s; }
.node-6 { background: #60a5fa; top: 80%; left: 18%; animation-delay: 1.8s; }

@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.connection-line {
  position: absolute;
  top: 50%; left: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,142,255,0.3), transparent);
  transform-origin: left center;
  animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line { 0%,100%{opacity:0.2} 50%{opacity:0.7} }

/* Floating mini-cards around the orb */
.floating-card {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.78rem;
  white-space: nowrap;
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card .fc-icon { font-size: 1rem; margin-bottom: 2px; }
.floating-card .fc-label { color: var(--text-muted); font-size: 0.7rem; }
.floating-card .fc-value { font-weight: 700; color: var(--text); }

.fc-1 { top: 5%;  left: -10%; animation-delay: 0s;   animation-duration: 5s; }
.fc-2 { top: 5%;  right: -5%; animation-delay: 1.2s; animation-duration: 6s; }
.fc-3 { bottom: 10%; left: -5%; animation-delay: 0.6s; animation-duration: 5.5s; }
.fc-4 { bottom: 5%;  right: 0%; animation-delay: 1.8s; animation-duration: 4.5s; }

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

/* ─── TRUST BADGES ──────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(10,20,50,0.6);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.badge-icon { font-size: 0.95rem; }

/* ─── SECTIONS ──────────────────────────────────────────────── */
section { padding: 100px 5%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue-bright);
  background: rgba(59,130,246,0.08);
  margin-bottom: 18px;
}

.section-label.violet {
  border-color: rgba(139,92,246,0.3);
  color: var(--violet-bright);
  background: rgba(139,92,246,0.08);
}

.section-label.cyan {
  border-color: rgba(6,182,212,0.3);
  color: #67e8f9;
  background: rgba(6,182,212,0.08);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .grad {
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── REPLACE SECTION ───────────────────────────────────────── */
.replace-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.replace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-categories { display: flex; flex-direction: column; gap: 14px; }

.tool-category {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

.tool-category:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.tc-name { font-weight: 700; font-size: 0.95rem; }

.tc-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tc-tool {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text-dim);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}

.replace-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.arrow-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.arrow-badge {
  padding: 12px 28px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 30px var(--glow-blue);
}

.arrow-badge small { display: block; font-size: 0.75rem; opacity: 0.8; font-weight: 400; margin-top: 2px; }

/* ─── MODULES SECTION ───────────────────────────────────────── */
.module-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.module-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
  padding: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(8,18,45,0.6) 0%, rgba(3,7,26,0.3) 100%);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.module-layout:hover { border-color: var(--border-hover); }

.module-layout.reverse { direction: rtl; }
.module-layout.reverse > * { direction: ltr; }

.module-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.module-feature {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}

.module-feature:hover {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.15);
}

.mf-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  background: rgba(59,130,246,0.1);
}

.mf-name { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.mf-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

.module-visual {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-visual-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.module-visual-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse { 0%,100%{opacity:0.2; transform:scale(1)} 50%{opacity:0.4; transform:scale(1.1)} }

.module-visual-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(99,142,255,0.5));
}

/* ─── STATS SECTION ─────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(124,58,237,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item { padding: 20px; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--blue-bright), var(--violet-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.4; }

/* ─── CARD GRID ─────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,142,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(124,58,237,0.1));
  border: 1px solid rgba(59,130,246,0.15);
}

.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.tc-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.tc-quote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.tc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tc-name-role .tc-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.tc-name-role .tc-role { font-size: 0.78rem; color: var(--text-muted); }

/* ─── INDUSTRIES ────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.3s;
  cursor: default;
}

.industry-card:hover {
  border-color: var(--border-hover);
  background: rgba(10,25,65,0.7);
  transform: translateY(-3px);
}

.ic-icon { font-size: 1.8rem; margin-bottom: 12px; }
.ic-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.ic-list { list-style: none; }
.ic-list li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ic-list li::before { content: '→'; color: var(--blue); font-size: 0.7rem; }

/* ─── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.pricing-card.popular {
  border-color: rgba(99,142,255,0.4);
  background: linear-gradient(180deg, rgba(59,130,246,0.08) 0%, rgba(8,18,45,0.7) 100%);
}

.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  white-space: nowrap;
}

.price-name { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.price-desc { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 20px; }

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 24px;
}

.price-currency { font-size: 1.3rem; font-weight: 700; color: var(--text-muted); padding-bottom: 8px; }
.price-value    { font-size: 3.5rem; font-weight: 900; letter-spacing: -3px; line-height: 1; }
.price-period   { font-size: 0.85rem; color: var(--text-muted); padding-bottom: 8px; }

.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.price-features li:last-child { border-bottom: none; }

.pf-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(59,130,246,0.15);
  color: var(--blue-bright);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── ROADMAP ───────────────────────────────────────────────── */
.roadmap-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--violet), transparent);
}

.roadmap-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.rm-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid;
}

.rm-dot.done    { background: rgba(59,130,246,0.2);  border-color: var(--blue);   box-shadow: 0 0 20px var(--glow-blue); }
.rm-dot.active  { background: rgba(139,92,246,0.2);  border-color: var(--violet); box-shadow: 0 0 20px var(--glow-violet); animation: orbPulse 2s infinite; }
.rm-dot.planned { background: rgba(255,255,255,0.03); border-color: var(--border); }

.rm-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.rm-content:hover { border-color: var(--border-hover); }

.rm-quarter { font-size: 0.75rem; font-weight: 600; color: var(--blue-bright); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.rm-title   { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.rm-desc    { font-size: 0.85rem; color: var(--text-muted); }

.rm-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.rm-tag {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--blue-bright);
}

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}

.contact-item:hover { border-color: var(--border-hover); }

.ci-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(124,58,237,0.1));
  border: 1px solid rgba(59,130,246,0.15);
  flex-shrink: 0;
}

.ci-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ci-value { font-size: 0.92rem; font-weight: 600; color: var(--text); }
.ci-value a { color: inherit; text-decoration: none; }
.ci-value a:hover { color: var(--blue-bright); }

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(99,142,255,0.4);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group select option { background: #060d1f; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; padding: 14px; font-size: 1rem; border-radius: 10px; }

.form-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 10px; text-align: center; }

.success-msg {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  color: #86efac;
  font-size: 0.9rem;
  margin-bottom: 16px;
  align-items: center;
  gap: 10px;
}

.success-msg.show { display: flex; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(10,25,65,0.8); }

.faq-chevron { transition: transform 0.3s; color: var(--text-muted); font-size: 1.1rem; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.08) 0%, transparent 70%);
}

.cta-section > * { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 36px; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cta-note::before { content: '✓'; color: var(--blue-bright); }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }

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

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.1) 0%, transparent 65%);
}

.page-hero > * { position: relative; z-index: 1; }

/* ─── FEATURES PAGE ─────────────────────────────────────────── */
.features-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.feat-tab {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.feat-tab:hover,
.feat-tab.active {
  color: var(--text);
  border-color: rgba(99,142,255,0.4);
  background: rgba(59,130,246,0.08);
}

.feat-tab.active {
  color: var(--blue-bright);
  box-shadow: 0 0 20px rgba(59,130,246,0.15);
}

.features-panel { display: none; }
.features-panel.active { display: block; }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.team-name  { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.team-role  { font-size: 0.8rem;  color: var(--blue-bright); font-weight: 600; margin-bottom: 8px; }
.team-bio   { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── DIVIDER ───────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── UTILITY ───────────────────────────────────────────────── */
.max-w { max-width: 1200px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }

/* ─── GRADIENT TEXT ─────────────────────────────────────────── */
.text-grad {
  background: linear-gradient(135deg, #60a5fa 0%, #8b5cf6 55%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid      { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual    { height: 360px; }
  .replace-grid   { grid-template-columns: 1fr; }
  .module-layout  { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .module-layout.reverse { direction: ltr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .card-grid      { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4    { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 420px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  section    { padding: 70px 5%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .card-grid  { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .module-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-height) + 40px); }
  .orb-container { width: 240px; height: 240px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .stat-number  { font-size: 2rem; }
}
