/* ═══════════════════════════════════════════════════════════
   XERXESAI — style.css
   "Out of the Box. Premium. Unforgettable."
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --bg:          #060A20;
  --surface:     #0D1535;
  --surface-2:   #111C42;
  --blue:        #0065FE;
  --cyan:        #00C3FF;
  --text:        #FFFFFF;
  --text-muted:  #8AACCC;
  --glow-blue:   rgba(0,101,254,0.45);
  --glow-cyan:   rgba(0,195,255,0.35);
  --font-head:   'Orbitron', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       72px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; background: none; border: none; font-family: inherit; }
input, textarea { font-family: var(--font-body); }

/* ═══════════════════════════════════════════════════════
   GLOBAL EFFECTS
═══════════════════════════════════════════════════════ */

/* ── Film Grain Overlay ─────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── Ledger Lines ───────────────────────────────────── */
.ledger-lines {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 79px,
    rgba(0,195,255,0.025) 79px, rgba(0,195,255,0.025) 80px
  );
}

/* ── Custom Cursor ──────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--glow-cyan);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(0,195,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s, opacity 0.25s;
}
body.cursor-hover #cursor-dot { width: 6px; height: 6px; opacity: 0.5; }
body.cursor-hover #cursor-ring { width: 52px; height: 52px; border-color: var(--cyan); }

/* ── Scroll Progress Bar ────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 10001;
  box-shadow: 0 0 8px var(--glow-cyan);
  transition: width 0.05s linear;
}

/* ── Scroll Animations ──────────────────────────────── */
.aos {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.aos.visible { opacity: 1; transform: translateY(0); }

.aos-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.aos-scale.visible { opacity: 1; transform: scale(1); }

/* ── Gradient Text ──────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 50%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

/* ═══════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════ */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0px, 0px) scale(1); }
  33%      { transform: translate(80px,-60px) scale(1.08); }
  66%      { transform: translate(-40px, 40px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0px, 0px) scale(1); }
  40%      { transform: translate(-70px, 80px) scale(1.1); }
  75%      { transform: translate(50px,-30px) scale(0.92); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0px, 0px); }
  50%      { transform: translate(40px, 50px); }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 10px var(--glow-cyan), 0 0 20px transparent; }
  50%      { box-shadow: 0 0 30px var(--glow-cyan), 0 0 60px var(--glow-blue); }
}
@keyframes borderPulse {
  0%,100% { border-color: rgba(0,195,255,0.35); }
  50%      { border-color: rgba(0,195,255,1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes dashMove {
  to { stroke-dashoffset: -24; }
}
@keyframes glitch1 {
  0%  { clip-path: inset(32% 0 52% 0); transform: translate(-3px); }
  25% { clip-path: inset(64% 0 14% 0); transform: translate(3px);  }
  50% { clip-path: inset(10% 0 72% 0); transform: translate(-2px); }
  75% { clip-path: inset(76% 0  8% 0); transform: translate(2px);  }
  100%{ clip-path: inset(44% 0 40% 0); transform: translate(0);    }
}
@keyframes glitch2 {
  0%  { clip-path: inset(58% 0 28% 0); transform: translate(3px);  }
  25% { clip-path: inset(18% 0 66% 0); transform: translate(-3px); }
  50% { clip-path: inset(84% 0  4% 0); transform: translate(2px);  }
  75% { clip-path: inset( 6% 0 80% 0); transform: translate(-2px); }
  100%{ clip-path: inset(52% 0 36% 0); transform: translate(0);    }
}
@keyframes chipReveal {
  from { opacity: 0; transform: translateY(-8px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes flipIn {
  from { transform: perspective(800px) rotateY(80deg); opacity: 0; }
  to   { transform: perspective(800px) rotateY(0deg);  opacity: 1; }
}
@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 800px; }

.section { padding: 120px 0; position: relative; z-index: 1; }
.section-surface { background: var(--surface); }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 60px;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 0 20px var(--glow-cyan), 0 4px 24px var(--glow-blue);
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { box-shadow: 0 0 40px var(--glow-cyan), 0 8px 40px var(--glow-blue); transform: translateY(-2px); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-xl { padding: 18px 40px; font-size: 15px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.3s;
}
.btn-ghost-border {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.btn-ghost-border rect {
  animation: dashMove 2s linear infinite;
}
.btn-ghost:hover { color: #fff; }

.btn-nav {
  padding: 10px 22px;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.08em;
  border-radius: 8px;
  transition: background 0.25s, box-shadow 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 20px var(--glow-cyan);
}

.btn-ghost-pricing {
  display: block; width: 100%; text-align: center;
  padding: 14px;
  border: 1.5px solid rgba(0,195,255,0.4);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  margin-top: 28px;
}
.btn-ghost-pricing:hover {
  border-color: var(--cyan);
  background: rgba(0,195,255,0.08);
  box-shadow: 0 0 16px var(--glow-cyan);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 40px;
  gap: 32px;
  background: rgba(6,10,32,0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,195,255,0.06);
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s;
}
#navbar.scrolled {
  background: rgba(6,10,32,0.97);
  border-bottom-color: rgba(0,195,255,0.12);
}
.nav-logo img {
  height: 52px;
  mix-blend-mode: lighten;
  transition: opacity 0.2s;
}

/* Hero centered logo — free-floating above the text */
.hero-logo {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  width: fit-content;
  height: 680px;
  mix-blend-mode: lighten;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 0 50px rgba(0,195,255,0.6)) drop-shadow(0 0 100px rgba(0,101,254,0.4));
  animation: float 5s ease-in-out infinite;
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex; gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--cyan);
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(6,10,32,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-link {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-link:hover, .mobile-link.cta { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,101,254,0.18), transparent 70%);
  top: -100px; left: -150px;
  animation: orbFloat1 18s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,195,255,0.12), transparent 70%);
  bottom: -80px; right: 10%;
  animation: orbFloat2 22s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,101,254,0.1), transparent 70%);
  top: 40%; left: 45%;
  animation: orbFloat3 15s ease-in-out infinite;
}

/* Perspective Grid */
.hero-grid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,195,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,195,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(60deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}

/* Neural Canvas — full hero coverage */
#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.9;
}

/* Floating micro-cards — scattered across the canvas */
.hero-cards { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.micro-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 15px;
  background: rgba(6,10,32,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,195,255,0.22);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 16px var(--glow-cyan);
}
.micro-card strong { color: var(--cyan); }
.mc-icon { font-size: 16px; flex-shrink: 0; }
/* 7 cards orbiting the brain — clock-face placement */
.hc-1 { top: 10%; left: 3%;   animation: float 4.0s ease-in-out infinite 0.0s; }
.hc-2 { top: 10%; right: 3%;  animation: float 4.8s ease-in-out infinite 0.6s; }
.hc-3 { top: 32%; left: 1%;   animation: float 4.3s ease-in-out infinite 1.1s; }
.hc-4 { top: 30%; right: 2%;  animation: float 5.0s ease-in-out infinite 1.7s; }
.hc-5 { top: 54%; left: 3%;   animation: float 4.6s ease-in-out infinite 0.3s; }
.hc-6 { top: 52%; right: 3%;  animation: float 4.2s ease-in-out infinite 2.0s; }
.hc-7 { top: 72%; left: 50%;  transform: translateX(-50%); animation: float 4.9s ease-in-out infinite 0.9s; }

/* Hero Content — bottom-center, overlaid on full-screen canvas */
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  text-align: center;
  padding: 40px 40px 80px;
  background: linear-gradient(
    to top,
    rgba(6,10,32,0.96) 0%,
    rgba(6,10,32,0.75) 40%,
    rgba(6,10,32,0.2) 70%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1.5px solid rgba(0,195,255,0.4);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  animation: borderPulse 3s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 820px;
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 40px rgba(0,195,255,0.4), 0 2px 20px rgba(0,0,0,0.8);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  min-height: 32px;
  max-width: 560px;
}
.cursor-blink { animation: cursorBlink 1s step-end infinite; color: var(--cyan); }
.hero-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee-section {
  border-top: 1px solid rgba(0,195,255,0.08);
  border-bottom: 1px solid rgba(0,195,255,0.08);
  padding: 20px 0;
  overflow: hidden;
  position: relative; z-index: 1;
  background: rgba(13,21,53,0.4);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0 16px;
}
.marquee-dot { color: rgba(0,195,255,0.4); font-size: 18px; }
.marquee-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  padding: 0 24px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   SERVICES — BENTO GRID
═══════════════════════════════════════════════════════ */

/* Section background orbs */
#services {
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,101,254,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat2 18s ease-in-out infinite;
}
#services::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,195,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat3 22s ease-in-out infinite;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.bento-card {
  background: rgba(11,15,40,0.82);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,195,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.2s cubic-bezier(0.16,1,0.3,1);
  transform-style: preserve-3d;
  will-change: transform;
}
/* Glowing top-edge accent line */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover::before { opacity: 1; }
/* Radial glow on hover from card center */
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,195,255,0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bento-card:hover::after { opacity: 1; }
.bento-card:hover {
  border-color: rgba(0,195,255,0.45);
  box-shadow: 0 24px 80px rgba(0,101,254,0.25), 0 0 50px rgba(0,195,255,0.12);
  transform: translateY(-4px);
}
.bento-large { grid-row: span 2; }

/* Service number badge */
.bento-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,195,255,0.25);
  letter-spacing: 0.12em;
}

/* Icon container — glowing */
.bento-icon {
  margin-bottom: 22px;
  width: 56px; height: 56px;
  background: rgba(0,195,255,0.06);
  border: 1px solid rgba(0,195,255,0.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.bento-card:hover .bento-icon {
  background: rgba(0,195,255,0.12);
  box-shadow: 0 0 20px rgba(0,195,255,0.2);
}

.bento-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  transition: color 0.3s;
}
.bento-card:hover h3 { color: #fff; }
.bento-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Chat Demo */
.chat-demo {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  max-width: 85%;
  line-height: 1.5;
}
.chat-bubble.user {
  background: rgba(0,101,254,0.15);
  border: 1px solid rgba(0,101,254,0.3);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: var(--text-muted);
  opacity: 0;
  animation: chatIn 0.4s ease forwards;
}
.chat-bubble.ai {
  background: rgba(0,195,255,0.08);
  border: 1px solid rgba(0,195,255,0.2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--text);
  opacity: 0;
  animation: chatIn 0.4s ease forwards;
}
.chat-bubble:nth-child(1) { animation-delay: 0.3s; }
.chat-bubble:nth-child(2) { animation-delay: 0.9s; }
.chat-bubble:nth-child(3) { animation-delay: 1.6s; }
.chat-bubble:nth-child(4) { animation-delay: 2.3s; }
@keyframes chatIn {
  from { opacity:0; transform: translateY(8px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Flow Demo */
.flow-demo {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px; flex-wrap: wrap;
}
.flow-node {
  padding: 6px 12px;
  background: rgba(13,21,53,0.9);
  border: 1px solid rgba(0,195,255,0.2);
  border-radius: 6px;
  font-size: 12px;
  font-family: var(--font-head);
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}
.flow-node.active { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 10px var(--glow-cyan); }
.flow-arrow { color: rgba(0,195,255,0.4); font-size: 14px; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS — PINNED SCROLL
═══════════════════════════════════════════════════════ */
#how-it-works { padding: 0; }
.pinned-outer { height: 350vh; position: relative; }
.pinned-inner {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 40px 60px;
  overflow: hidden;
  text-align: center;
}
.pinned-label { margin-bottom: 12px; }
.pinned-title { margin-bottom: 60px; }

.steps-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  flex: 1;
}
.step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.step.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.step.exit    { opacity: 0; transform: translateX(-80px); }

.step-number {
  font-family: var(--font-head);
  font-size: 96px;
  font-weight: 900;
  color: rgba(0,195,255,0.07);
  line-height: 1;
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}
.step-icon { margin-top: 60px; margin-bottom: 20px; }
.step h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--cyan);
}
.step p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 24px;
}
.step-details {
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-start;
}
.step-details li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.step-details li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--cyan);
}
.step-dots {
  display: flex; gap: 10px; margin-top: 40px;
}
.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,195,255,0.25);
  transition: background 0.3s, transform 0.3s;
}
.step-dot.active { background: var(--cyan); transform: scale(1.4); }

/* Step image preview */
.step-img-preview {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,195,255,0.12);
  max-width: 480px;
  width: 100%;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.step-img-preview img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.step.active .step-img-preview { opacity: 0.75; }

/* ═══════════════════════════════════════════════════════
   N8N DEMO
═══════════════════════════════════════════════════════ */
/* Glitch effect */
.glitch-target { position: relative; }
.glitch-target::before,
.glitch-target::after {
  content: attr(data-glitch);
  position: absolute; inset: 0;
  opacity: 0;
  font-family: var(--font-head);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  pointer-events: none;
}
.glitch-target::before { color: #ff0055; }
.glitch-target::after  { color: #00ffee; }
.glitch-target.glitching::before { opacity: 0.7; animation: glitch1 0.1s steps(1) forwards; }
.glitch-target.glitching::after  { opacity: 0.7; animation: glitch2 0.1s steps(1) forwards; }

.demo-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.demo-screen {
  background: var(--surface);
  border: 1px solid rgba(0,195,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,101,254,0.15);
}
.screen-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid rgba(0,195,255,0.08);
}
.screen-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.screen-dot.red    { background: #ff5f57; }
.screen-dot.yellow { background: #febc2e; }
.screen-dot.green  { background: #28c840; }
.screen-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}
.screen-body { position: relative; }

/* ═══════════════════════════════════════════════════════
   WORKFLOW SCREENSHOT (real client n8n screenshot)
═══════════════════════════════════════════════════════ */
.wf-screenshot-wrap {
  position: relative;
  background: #060A20;
  overflow: hidden;
}
.wf-screenshot {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.88;
  transition: opacity 0.35s;
}
.wf-screenshot:hover { opacity: 1; }
.wf-screenshot-overlay {
  position: absolute;
  top: 14px; right: 14px;
  pointer-events: none;
}
.wf-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: rgba(6,10,32,0.88);
  border: 1px solid rgba(0,195,255,0.5);
  border-radius: 100px;
  font-size: 9px;
  font-family: var(--font-head);
  color: var(--cyan);
  letter-spacing: 0.1em;
  animation: borderPulse 1.5s ease-in-out infinite;
}
.wf-stats-bar {
  display: flex; justify-content: center; gap: 32px;
  padding: 12px 16px;
  background: rgba(13,21,53,0.9);
  border-top: 1px solid rgba(0,195,255,0.08);
  font-size: 12px;
  color: var(--text-muted);
}
.wf-stats-bar strong { color: var(--cyan); }
@media (max-width: 600px) {
  .wf-stats-bar { gap: 16px; font-size: 11px; flex-wrap: wrap; justify-content: center; }
}

/* Bento card image preview strip */
.bento-preview {
  margin-top: 18px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,195,255,0.1);
  opacity: 0.72;
  transition: opacity 0.3s;
}
.bento-preview:hover { opacity: 1; }
.bento-preview img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Bento wide — spans both grid columns */
.bento-wide {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
}

/* Background image layer inside bento card */
.bento-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.12;
  z-index: 0;
  transition: opacity 0.4s;
}
.bento-wide:hover .bento-bg-img { opacity: 0.2; }
.bento-wide > .bento-icon,
.bento-wide > h3,
.bento-wide > p,
.bento-wide > .outbound-stats { position: relative; z-index: 1; }

/* Outbound stats row */
.outbound-stats {
  display: flex; gap: 32px;
  margin-top: 20px;
}
.ob-stat {
  display: flex; flex-direction: column; gap: 2px;
}
.ob-stat strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.ob-stat span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .bento-wide { grid-column: auto; }
  .outbound-stats { gap: 20px; }
}

/* Terminal */
.terminal-block {
  background: #0a0f1a;
  border: 1px solid rgba(0,195,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: 'Courier New', monospace;
  width: 100%;
}
.terminal-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #0d1525;
  border-bottom: 1px solid rgba(0,195,255,0.08);
}
.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,195,255,0.3);
}
.t-title {
  font-size: 11px; color: var(--text-muted);
  margin-left: 6px; font-family: var(--font-head);
  letter-spacing: 0.05em;
}
/* Each typed line in terminal */
#terminal-output div {
  break-inside: avoid;
  white-space: nowrap;
}
.terminal-body {
  padding: 20px 24px;
  font-size: 13px;
  line-height: 2;
  color: #5fffb0;
  min-height: 120px;
  columns: 2;
  column-gap: 48px;
}

/* ═══════════════════════════════════════════════════════
   RESULTS
═══════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  padding: 36px 24px;
  background: rgba(13,21,53,0.6);
  border: 1px solid rgba(0,195,255,0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  transform-style: preserve-3d;
}
.stat-card:hover {
  border-color: rgba(0,195,255,0.35);
  box-shadow: 0 0 30px var(--glow-blue);
}
.stat-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.stat-desc { font-size: 12px; color: var(--text-muted); }

/* Use cases showcase */
.uc-section-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 56px;
  margin-bottom: 20px;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.use-case-card {
  background: rgba(13,21,53,0.7);
  border: 1px solid rgba(0,195,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.use-case-card:hover {
  border-color: rgba(0,195,255,0.35);
  transform: translateY(-6px);
}
.uc-img-wrap {
  overflow: hidden;
  height: 160px;
}
.uc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.use-case-card:hover .uc-img-wrap img { transform: scale(1.05); }
.use-case-card h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 16px 18px 8px;
  letter-spacing: 0.03em;
}
.use-case-card p {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 18px 20px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .use-cases-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.pricing-card {
  background: rgba(13,21,53,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,195,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(0,195,255,0.3);
  box-shadow: 0 20px 50px rgba(0,101,254,0.15);
}
.pricing-featured {
  border-color: rgba(0,195,255,0.4);
  box-shadow: 0 0 40px var(--glow-cyan), 0 0 80px rgba(0,101,254,0.15);
  transform: scale(1.04);
  animation: glowPulse 3s ease-in-out infinite;
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 5px 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 28px;
}
.pricing-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 4px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.check { width: 16px; height: 16px; flex-shrink: 0; }
.pricing-card .btn-primary { width: 100%; justify-content: center; margin-top: 28px; }

/* Flip-in animation for pricing */
.flip-card.visible {
  animation: flipIn 0.7s cubic-bezier(0.16,1,0.3,1) var(--delay, 0s) both;
}

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.faq-item {
  border-bottom: 1px solid rgba(0,195,255,0.08);
  transition: border-color 0.3s;
}
.faq-item:hover { border-bottom-color: rgba(0,195,255,0.2); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--cyan); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open { border-bottom-color: rgba(0,195,255,0.25); }
.faq-item.open .faq-question { color: var(--cyan); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* Left glow border for open items */
.faq-item.open .faq-question {
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
#contact { text-align: center; }
.contact-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,101,254,0.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px);
}
.contact-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-divider {
  display: flex; align-items: center; gap: 20px;
  color: var(--text-muted);
  font-size: 13px;
  margin: 48px 0 32px;
  text-align: left;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,195,255,0.12);
}

.contact-form {
  text-align: left;
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid rgba(0,195,255,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 14px var(--glow-cyan);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,172,204,0.4); }
.contact-form .btn-primary { align-self: flex-start; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  background: rgba(0,195,255,0.06);
  border: 1px solid rgba(0,195,255,0.2);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: 14px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#footer {
  border-top: 1px solid rgba(0,195,255,0.08);
  padding: 80px 0 40px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  height: 80px;
  mix-blend-mode: lighten;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,195,255,0.04);
  border: 1px solid rgba(0,195,255,0.18);
  border-radius: 10px;
  color: var(--text-muted);
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.social-link:hover {
  background: rgba(0,195,255,0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--glow-cyan);
  transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; }

/* Section divider accent */
.section-divider {
  width: 80px; height: 2px;
  background: linear-gradient(to right, var(--blue), var(--cyan));
  border-radius: 2px;
  margin: 0 auto 48px;
  box-shadow: 0 0 12px var(--glow-cyan);
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--cyan); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-cta {
  color: var(--cyan) !important;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0,195,255,0.06);
  font-size: 13px;
  color: rgba(138,172,204,0.5);
}

/* ═══════════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.industry-card {
  background: rgba(11,15,40,0.8);
  border: 1px solid rgba(0,195,255,0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.industry-card:hover {
  border-color: rgba(0,195,255,0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,101,254,0.18);
}
.ind-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.industry-card h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.industry-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.ind-stat {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: rgba(0,195,255,0.06);
  border: 1px solid rgba(0,195,255,0.2);
  border-radius: 100px;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(11,15,40,0.82);
  border: 1px solid rgba(0,195,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 64px;
  line-height: 1;
  color: rgba(0,195,255,0.12);
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  border-color: rgba(0,195,255,0.35);
  box-shadow: 0 20px 60px rgba(0,101,254,0.15);
  transform: translateY(-4px);
}
.t-stars {
  color: #FFB800;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.t-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
}
.t-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.t-info strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; }
.t-info span   { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   ROI CALCULATOR
═══════════════════════════════════════════════════════ */
.roi-calculator {
  background: rgba(11,15,40,0.8);
  border: 1px solid rgba(0,195,255,0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 40px;
}
.roi-inputs { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.roi-slider-group { display: flex; flex-direction: column; gap: 10px; }
.roi-slider-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--text-muted);
}
.roi-slider-label strong { color: var(--cyan); font-size: 15px; font-family: var(--font-head); }
.roi-slider {
  -webkit-appearance: none;
  width: 100%; height: 4px;
  background: rgba(0,195,255,0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--glow-cyan);
  cursor: pointer;
}
.roi-results {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}
.roi-result-card {
  background: rgba(6,10,32,0.6);
  border: 1px solid rgba(0,195,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.roi-highlight {
  border-color: rgba(0,195,255,0.45);
  box-shadow: 0 0 30px rgba(0,195,255,0.1);
  background: rgba(0,195,255,0.04);
}
.roi-label-top {
  font-size: 11px;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.roi-result-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.roi-highlight .roi-result-num {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.roi-result-sub { font-size: 12px; color: var(--text-muted); }
.roi-vs {
  font-size: 24px;
  color: var(--cyan);
  font-weight: 700;
  text-align: center;
}
.roi-cta { display: block; text-align: center; width: fit-content; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 5000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #25D366;
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-float span { line-height: 1; }

/* Form select styling */
.form-select {
  width: 100%;
  background: rgba(6,10,32,0.8);
  border: 1px solid rgba(0,195,255,0.15);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238AACCC' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.form-select:focus {
  border-color: rgba(0,195,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,195,255,0.08);
  color: var(--text);
}
.form-select option {
  background: #0D1535;
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════
   AI FOR IMPACT
═══════════════════════════════════════════════════════ */
.impact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.impact-quote {
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--cyan);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.85;
}
.impact-details h3, .impact-examples h4 {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.impact-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.impact-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.impact-list li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); }
.impact-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.impact-tags span {
  padding: 5px 12px;
  background: rgba(0,195,255,0.06);
  border: 1px solid rgba(0,195,255,0.18);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
}
.impact-apply-card {
  background: rgba(11,15,40,0.85);
  border: 1px solid rgba(0,195,255,0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.impact-apply-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.impact-apply-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
}
.impact-apply-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.impact-note {
  font-size: 11px;
  color: rgba(138,172,204,0.45);
  margin-top: 16px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   LAUNCH OFFER BANNER
═══════════════════════════════════════════════════════ */
.launch-offer-banner {
  background: linear-gradient(135deg, rgba(0,101,254,0.1), rgba(0,195,255,0.07));
  border: 1px solid rgba(0,195,255,0.28);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.lob-badge {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--cyan);
  white-space: nowrap;
  background: rgba(0,195,255,0.1);
  border: 1px solid rgba(0,195,255,0.3);
  border-radius: 100px;
  padding: 5px 12px;
}
.launch-offer-banner p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.launch-offer-banner strong { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  #neural-canvas { width: 50%; opacity: 0.5; }
  .hero-cards { width: 46%; }
  .card-float-1, .card-float-2, .card-float-3 { font-size: 11px; }
  .demo-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }

  #navbar { padding: 0 20px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  #hero { padding: 0; min-height: 100svh; }
  .hero-logo { height: 260px; max-width: 92vw; top: var(--nav-h); }
  .hero-content { padding: 80px 24px 60px; max-width: 100%; }
  .hero-title { font-size: clamp(24px, 6.5vw, 38px); }
  #neural-canvas { width: 100%; height: 40%; top: auto; bottom: 0; opacity: 0.22; }
  .hero-cards { display: none; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .impact-grid { grid-template-columns: 1fr; }
  .launch-offer-banner { flex-direction: column; align-items: flex-start; gap: 10px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-row: span 1; }

  .pinned-outer { height: auto; }
  .pinned-inner { position: relative; height: auto; padding: 80px 20px; }
  .steps-container { position: relative; min-height: 400px; }
  .step { position: relative; transform: none; opacity: 1; display: none; }
  .step.active { display: flex; }
  .step-dots { margin-top: 20px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 36px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-featured { transform: scale(1); }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .demo-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-logo { height: 200px; }
  .hero-title { font-size: 24px; }
  .section-title { font-size: 22px; }
  .contact-title { font-size: 24px; }
  .stat-number { font-size: 32px; }
  .micro-card { display: none; }
  .whatsapp-float { right: 16px; bottom: 16px; padding: 12px 14px; font-size: 13px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
