/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --border: rgba(255,255,255,0.08);
  --text: #f0f0f0;
  --muted: #888;
  --accent: #38B6FF;
  --accent2: #1a9de8;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --blue-shadow: 0 0 20px rgba(56,182,255,0.15), 0 4px 24px rgba(56,182,255,0.08);
  --blue-shadow-hover: 0 0 32px rgba(56,182,255,0.3), 0 8px 32px rgba(56,182,255,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-primary.btn-large { padding: 16px 36px; font-size: 17px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 32px; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 14px;
  border-top: 1px solid var(--border);
}
.nav-mobile a { font-size: 15px; font-weight: 500; color: var(--muted); }
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn-primary { text-align: center; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: #000;
}
.hero-bg-grid { display: none; }

/* Stars */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: startwinkle 3s ease-in-out infinite;
}

@keyframes startwinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

/* Planet glow */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at center,
    rgba(56,182,255,0.55) 0%,
    rgba(30,120,220,0.3) 30%,
    rgba(10,60,150,0.15) 55%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

/* Orbits */
.hero-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}
.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56,182,255,0.2);
  transform-origin: center center;
}
.circle::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background: #38B6FF;
  border-radius: 50%;
  top: -3.5px;
  left: 50%;
  margin-left: -3.5px;
  box-shadow: 0 0 8px #38B6FF, 0 0 16px #38B6FF;
}
.circle-1 {
  width: 320px;
  height: 320px;
  margin-left: -160px;
  margin-top: -160px;
  animation: orbitCW 10s linear infinite;
}
.circle-2 {
  width: 500px;
  height: 500px;
  margin-left: -250px;
  margin-top: -250px;
  animation: orbitCCW 16s linear infinite;
  border-style: dashed;
  opacity: 0.7;
}
.circle-3 {
  width: 700px;
  height: 700px;
  margin-left: -350px;
  margin-top: -350px;
  animation: orbitCW 24s linear infinite;
  opacity: 0.4;
}
@keyframes orbitCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbitCCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 100px;
  text-align: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,20,20,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 14px 5px 6px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-pill {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}
.hero-badge-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hero-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-transform: none;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 40px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-hero {
  padding: 13px 28px !important;
  font-size: 15px !important;
  border-radius: 10px !important;
}

/* ===========================
   MARQUEE
=========================== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   SECTIONS
=========================== */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--bg2);
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 60px;
}

/* ===========================
   SERVICES
=========================== */
.services-header { text-align: center; margin-bottom: 80px; }
.section-badge {
  display: inline-block;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.section-title-lg {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.service-row-reverse { direction: rtl; }
.service-row-reverse > * { direction: ltr; }
.service-row-text {}
.service-badge {
  display: inline-block;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.service-row-text h3 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.service-row-text p { font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.service-pills span {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: var(--text);
}
.service-row-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-mockup {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: inset 0 0 40px rgba(56,182,255,0.05);
}

/* Tasks mockup */
.tasks-top { margin-bottom: 16px; }
.tasks-title { font-size: 14px; font-weight: 700; display: block; }
.tasks-sub { font-size: 11px; color: var(--muted); }
.tasks-list { display: flex; flex-direction: column; gap: 0; }
.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.task-item.visible { opacity: 1; transform: translateY(0); }
.task-item:last-child { border: none; }
.task-icon { font-size: 14px; }
.task-item div { flex: 1; }
.task-item b { display: block; font-size: 12px; font-weight: 600; }
.task-item small { font-size: 11px; color: var(--muted); }
.task-check { color: #2ecc71; font-size: 13px; }
.task-x { color: #e74c3c; font-size: 13px; }
.task-gear { color: var(--muted); font-size: 13px; }

/* Chatbot mockup */
.chatbot-anim { text-align: center; }
.chatbot-orb {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(56,182,255,0.8) 0%, rgba(20,100,200,0.4) 50%, transparent 70%);
  animation: orbPulse 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(56,182,255,0.6);
  animation: orbitCCW 4s linear infinite;
}
@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(56,182,255,0.4); }
  50% { box-shadow: 0 0 40px rgba(56,182,255,0.7); }
}
.chatbot-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.chatbot-sub { font-size: 11px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.chatbot-input {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 10px;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.chatbot-cursor {
  animation: blink 0.8s step-end infinite;
  color: var(--accent);
  font-weight: 300;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.chatbot-actions { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.chatbot-actions span { font-size: 10px; padding: 4px 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 4px; color: var(--muted); }

/* Email mockup */
.email-top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.email-sending-txt { font-size: 12px; color: var(--muted); }
.email-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(56,182,255,0.2);
  border-top-color: #38B6FF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.email-tags { display: flex; gap: 6px; margin-bottom: 14px; }
.email-tags span { font-size: 10px; padding: 3px 8px; background: rgba(56,182,255,0.1); border: 1px solid rgba(56,182,255,0.2); color: #38B6FF; border-radius: 4px; }
.email-contacts { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.email-contacts li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.email-contacts li:last-child { border: none; }
.email-contacts li.active-contact { background: rgba(56,182,255,0.05); border-radius: 8px; padding: 10px 8px; }
.av {
  width: 30px; height: 30px; border-radius: 50%;
  background: #38B6FF; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; flex-shrink: 0;
}
.av.teal { background: #0e9f6e; }
.av.purple { background: #7c3aed; }
.email-contacts li div { flex: 1; }
.email-contacts b { display: block; font-weight: 600; }
.email-contacts small { color: var(--muted); font-size: 10px; }
.ev { font-size: 10px; color: #38B6FF; }
.email-progress-wrap {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}
.email-progress-bar {
  height: 100%;
  width: 0%;
  background: #38B6FF;
  border-radius: 2px;
  animation: progressMove 3s ease-in-out infinite;
}
@keyframes progressMove {
  0% { width: 0%; margin-left: 0%; }
  50% { width: 60%; margin-left: 20%; }
  100% { width: 0%; margin-left: 100%; }
}
.email-stages { display: flex; justify-content: space-between; }
.stage { font-size: 11px; color: var(--muted); }
.stage.active { color: #38B6FF; font-weight: 600; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.service-pills span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
}

/* Service mockups */
.service-mockup {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  width: 100%;
  font-size: 12px;
}
.mock-header { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.mock-sub { color: var(--muted); font-size: 11px; margin-bottom: 10px; }
.mock-list { display: flex; flex-direction: column; gap: 8px; }
.mock-list li { display: flex; align-items: center; gap: 8px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.blue { background: var(--accent); }
.mock-dot.grey { background: #555; }
.mock-dot.red { background: #e74c3c; }
.mock-dot.green { background: #2ecc71; }
.mock-tag {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(56,182,255,0.15);
  color: #38B6FF;
}
.mock-tag.grey { background: rgba(255,255,255,0.05); color: var(--muted); }
.mock-tag.red { background: rgba(231,76,60,0.15); color: #e74c3c; }
.mock-tag.green { background: rgba(46,204,113,0.15); color: #2ecc71; }

/* Chat mockup */
.chat-mockup { display: flex; flex-direction: column; gap: 8px; }
.chat-bubble {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  max-width: 85%;
}
.chat-bubble.bot { background: rgba(42,157,244,0.15); color: var(--accent); align-self: flex-start; border-bottom-left-radius: 2px; }
.chat-bubble.user { background: rgba(255,255,255,0.08); align-self: flex-end; border-bottom-right-radius: 2px; }
.chat-bubble.typing { display: flex; gap: 4px; align-items: center; padding: 10px 12px; }
.chat-bubble.typing span {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.chat-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.chat-actions span { font-size: 10px; padding: 3px 8px; background: rgba(255,255,255,0.05); border-radius: 4px; color: var(--muted); }

/* Email mockup */
.email-mockup { display: flex; flex-direction: column; gap: 10px; }
.email-row { display: flex; gap: 6px; flex-wrap: wrap; }
.email-badge { font-size: 10px; padding: 2px 8px; background: rgba(42,157,244,0.15); color: var(--accent); border-radius: 4px; }
.email-sending { font-size: 11px; color: var(--muted); font-style: italic; }
.email-list { display: flex; flex-direction: column; gap: 8px; }
.email-list li { display: flex; align-items: center; gap: 8px; }
.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.avatar.teal { background: #0e9f6e; }
.avatar.purple { background: #7c3aed; }
.email-list li div { flex: 1; }
.email-list b { display: block; font-size: 11px; font-weight: 600; }
.email-list small { font-size: 10px; color: var(--muted); }
.verified { color: var(--accent); font-size: 11px; }

/* ===========================
   PROCESS
=========================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.process-card {
  background: var(--bg3);
  border: 1px solid rgba(56,182,255,0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: inset 0 0 50px rgba(56,182,255,0.08);
}
.process-card:hover { border-color: rgba(56,182,255,0.45); box-shadow: inset 0 0 80px rgba(56,182,255,0.16); }
.proc-step {
  display: inline-block;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.process-card h3 { font-family: 'Barlow', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.process-card p { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.proc-visual {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  overflow: hidden;
}

/* RADAR */
.radar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
}
.radar-circles { position: absolute; inset: 0; }
.radar-c {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56,182,255,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.r1 { width: 30px; height: 30px; }
.r2 { width: 55px; height: 55px; }
.r3 { width: 80px; height: 80px; }
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(rgba(56,182,255,0.4) 0deg, transparent 60deg, transparent 360deg);
  animation: radarSpin 2s linear infinite;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
.radar-center {
  position: absolute;
  width: 6px; height: 6px;
  background: #38B6FF;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 6px #38B6FF;
}
.radar-checks { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.rc-row { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.rc-row span { color: #2ecc71; }
.radar-label { font-size: 10px; color: rgba(56,182,255,0.6); text-align: center; font-style: italic; }

/* CONSOLE */
.console-wrap {
  background: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
}
.console-bar { padding: 8px 12px; background: #1a1a1a; display: flex; gap: 6px; align-items: center; }
.cb { width: 10px; height: 10px; border-radius: 50%; }
.cb.r { background: #ff5f57; }
.cb.y { background: #febc2e; }
.cb.g { background: #28c840; }
.console-body { padding: 12px; font-size: 11px; line-height: 1.8; min-height: 120px; color: #ccc; }
.console-body .ckw { color: #c792ea; }
.console-body .cfn { color: #82aaff; }
.console-body .cstr { color: #c3e88d; }
.console-cursor { display: inline-block; width: 7px; height: 13px; background: #38B6FF; animation: blink 0.8s step-end infinite; vertical-align: text-bottom; }

/* INTEGRATIONS */
.proc-integrations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 0;
}
.proc-int-col { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.proc-int-label { font-size: 11px; color: var(--muted); }
.proc-arrow-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.proc-arrow-lines span {
  display: block;
  height: 2px;
  background: rgba(56,182,255,0.4);
  border-radius: 2px;
}
.proc-arrow-lines span:nth-child(1) { width: 40px; }
.proc-arrow-lines span:nth-child(2) { width: 30px; }
.proc-arrow-lines span:nth-child(3) { width: 20px; }
.proc-app-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(56,182,255,0.08);
  border: 1px solid rgba(56,182,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: opacity 0.4s ease;
}
.proc-app-icon.fade { opacity: 0; }
.proc-int-label { font-size: 11px; color: var(--muted); }
.proc-orb {
  position: relative;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
}
.proc-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56,182,255,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.proc-orb-ring.r1 { width: 64px; height: 64px; animation: orbitCW 6s linear infinite; }
.proc-orb-ring.r1::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: #38B6FF;
  border-radius: 50%;
  top: -2.5px; left: 50%;
  margin-left: -2.5px;
  box-shadow: 0 0 6px #38B6FF;
}
.proc-orb-ring.r2 { width: 44px; height: 44px; animation: orbitCCW 4s linear infinite; border-style: dashed; }
.proc-orb-core {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,182,255,0.9) 0%, rgba(20,80,180,0.5) 60%, transparent 100%);
  box-shadow: 0 0 12px #38B6FF;
}
.integrations-scroll {
  height: 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.int-item {
  font-size: 11px;
  padding: 5px 10px;
  background: rgba(56,182,255,0.08);
  border: 1px solid rgba(56,182,255,0.15);
  border-radius: 6px;
  color: #38B6FF;
  white-space: nowrap;
  animation: scrollUp 8s linear infinite;
}
@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* METRICS */
.metric-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.metric-card:last-child { border: none; }
.metric-icon { font-size: 16px; }
.metric-info { flex: 1; }
.metric-info b { display: block; font-size: 12px; font-weight: 600; }
.metric-info small { font-size: 10px; color: var(--muted); }
.metric-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(56,182,255,0.2);
  border-top-color: #38B6FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}
.metric-arrow {
  color: #38B6FF;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  animation: arrowBounce 1.2s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-5px); opacity: 0.6; }
}
.metric-tick { color: #2ecc71; font-size: 16px; flex-shrink: 0; }

/* ===========================
   BENEFITS
=========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.benefit-card {
  background: var(--bg3);
  border: 1px solid rgba(56,182,255,0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: inset 0 0 50px rgba(56,182,255,0.08);
}
.benefit-card:hover {
  border-color: rgba(56,182,255,0.45);
  transform: translateY(-3px);
  box-shadow: inset 0 0 80px rgba(56,182,255,0.16);
}
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 16px;
}
.benefit-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.benefit-card p { font-size: 14px; color: var(--muted); }

/* ===========================
   CONTACT
=========================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left p { color: var(--muted); margin-top: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--muted); }
.form-group input,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }

/* ===========================
   FAQ
=========================== */
.faq-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.faq-list { margin-top: 48px; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg3);
  border: 1px solid rgba(56,182,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(56,182,255,0.08);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(56,182,255,0.45);
  box-shadow: inset 0 0 80px rgba(56,182,255,0.16);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 20px; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--muted);
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ===========================
   CTA FINAL
=========================== */
.cta-section {
  background: linear-gradient(135deg, rgba(42,157,244,0.08) 0%, transparent 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-inner p { color: var(--muted); margin-bottom: 32px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo img { margin-bottom: 12px; }
.footer-logo p { font-size: 13px; color: var(--muted); max-width: 280px; }
.footer-cols { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: #444; }

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; gap: 40px; }
  .service-row-reverse { direction: ltr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 48px; }
  .footer-cols { flex-direction: column; gap: 24px; }
}
