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

:root {
  --bg: #050810;
  --bg2: #0a0e1a;
  --card: #111827;
  --border: #1f2937;
  --text: #e5e7eb;
  --text2: #9ca3af;
  --cyan: #00E5FF;
  --green: #00E676;
  --orange: #FF6D00;
  --purple: #7C4DFF;
  --blue: #448AFF;
  --pink: #FF4081;
  --red: #FF5252;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================
   NAV
   ============================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5, 8, 16, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s;
}

#nav.hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(11, 15, 24, 0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  z-index: 1001;
}

/* Mega menu layout */
.nav-mega {
  min-width: 480px;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.mega-left {
  width: 190px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}

.mega-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text2);
  margin-bottom: 10px;
}

.mega-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.mega-right {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-right a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px !important;
  color: var(--text) !important;
  transition: background 0.15s;
  text-decoration: none;
}

.mega-right a:hover {
  background: rgba(255,255,255,0.05);
}

.ndm-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.cyan-icon { background: rgba(0,229,255,0.1); }
.blue-icon { background: rgba(68,138,255,0.1); }
.green-icon { background: rgba(0,230,118,0.1); }
.orange-icon { background: rgba(255,109,0,0.1); }

.ndm-text {
  display: flex;
  flex-direction: column;
}

.ndm-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.ndm-text span {
  font-size: 11px;
  color: var(--text2);
  margin-top: 2px;
}

/* Wide mega menu (Casi d'uso) */
.nav-mega-wide {
  min-width: 680px;
}
.nav-mega-wide .mega-left {
  width: 200px;
}
.mega-right-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 2px !important;
  padding: 10px !important;
}

/* Auth buttons group */
.nav-auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.06);
  min-width: 220px;
  /* Hidden until auth check completes */
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-auth.ready {
  opacity: 1;
}

.nav-login {
  color: var(--text) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s !important;
  font-size: 14px;
  text-decoration: none;
}
.nav-login:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  color: #fff !important;
}

/* Account button (logged in state) */
.nav-account-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px !important;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none !important;
  color: #fff !important;
  transition: all 0.25s !important;
}
.nav-account-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.nav-avatar {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #000;
}
.nav-account-name {
  font-size: 13px;
  font-weight: 600;
}

.nav-cta {
  background: var(--cyan) !important;
  color: #000 !important;
  padding: 8px 20px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

/* ============================
   HERO - HORIZONTAL SCROLL
   ============================ */
#hero-horizontal {
  position: relative;
  height: 800vh;
}

.horizontal-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: 2;
  transform-origin: center center;
  will-change: transform, opacity;
}

.horizontal-track {
  height: 100vh;
  width: 400vw;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.h-panel {
  flex: 0 0 100vw;
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  will-change: opacity, filter, transform;
  transform-origin: center center;
}

/* Progress bar */
.scroll-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.05);
  z-index: 100;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  width: 0%;
  transition: width 0.05s linear;
}

/* Panel 1: Hero Main */
.hero-main {
  gap: 60px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,229,255,0.07) 0%, transparent 60%);
}

.hero-content { flex: 1; max-width: 540px; }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-content h1 .line { display: block; }
.hero-content h1 .accent {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.btn-primary.large { padding: 18px 40px; font-size: 17px; }
.btn-primary.full-w { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  width: 100%;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.h-stat { display: flex; flex-direction: column; }
.h-stat-num { font-size: 28px; font-weight: 800; color: #fff; }
.h-stat-label { font-size: 13px; color: var(--text2); margin-top: 2px; }

/* Hero Visual - App Mockup */
.hero-visual {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.app-window {
  background: #0f1320;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0, 229, 255, 0.05);
}

.app-titlebar {
  height: 36px;
  background: #0b0f18;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}

.app-dots { display: flex; gap: 6px; }
.app-dots span { width: 10px; height: 10px; border-radius: 50%; }
.app-dots span:nth-child(1) { background: #ff5f57; }
.app-dots span:nth-child(2) { background: #ffbd2e; }
.app-dots span:nth-child(3) { background: #28ca42; }
.app-title { color: var(--text2); font-size: 11px; }

.app-content { display: flex; min-height: 280px; }

.app-sidebar {
  width: 44px;
  background: #0b0e18;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sb-item {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}

.sb-item.active { background: rgba(0, 229, 255, 0.15); border: 1px solid rgba(0, 229, 255, 0.3); }

.app-main { flex: 1; padding: 16px; }

.app-kpi-row { display: flex; gap: 8px; margin-bottom: 14px; }

.app-kpi {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.app-kpi.cyan { border-color: rgba(0, 229, 255, 0.15); }
.app-kpi.purple { border-color: rgba(124, 77, 255, 0.15); }
.app-kpi.green { border-color: rgba(0, 230, 118, 0.15); }
.app-kpi.orange { border-color: rgba(255, 109, 0, 0.15); }

.kpi-val { font-size: 18px; font-weight: 800; color: #fff; }
.kpi-lbl { font-size: 10px; color: var(--text2); margin-top: 2px; }

.app-chart {
  margin-bottom: 14px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.04);
}

.chart-svg { width: 100%; height: auto; }

.app-pipeline { display: flex; flex-direction: column; gap: 5px; }

.pipe-bar {
  height: 18px;
  background: linear-gradient(90deg, rgba(68, 138, 255, 0.3), rgba(68, 138, 255, 0.1));
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 9px;
  color: var(--text2);
}

.pipe-bar.interested { background: linear-gradient(90deg, rgba(255, 171, 0, 0.3), rgba(255, 171, 0, 0.1)); }
.pipe-bar.won { background: linear-gradient(90deg, rgba(0, 230, 118, 0.3), rgba(0, 230, 118, 0.1)); }

/* Floating cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.fc1 { top: 20px; right: -20px; animation-delay: 0s; }
.fc2 { bottom: 30px; left: -30px; animation-delay: -3s; }

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

.fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.green-bg { background: rgba(0, 230, 118, 0.15); color: var(--green); }
.orange-bg { background: rgba(255, 109, 0, 0.15); color: var(--orange); }

.fc-text strong { font-size: 13px; display: block; }
.fc-text small { font-size: 11px; color: var(--text2); }

/* Feature Panels (2, 3, 4) */
.feature-panel {
  gap: 80px;
  background: var(--bg);
}

.feature-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,229,255,0.03) 0%, transparent 50%);
}

.dark-panel { background: var(--bg2); }

.panel-number {
  position: absolute;
  top: 100px;
  left: 60px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
}

.panel-content {
  flex: 1;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.feature-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 20px;
}

.green-tag { background: rgba(0, 230, 118, 0.1); border-color: rgba(0, 230, 118, 0.2); color: var(--green); }
.orange-tag { background: rgba(255, 109, 0, 0.1); border-color: rgba(255, 109, 0, 0.2); color: var(--orange); }

.panel-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.panel-content p {
  color: var(--text2);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 28px;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.check.green { background: rgba(0, 230, 118, 0.1); color: var(--green); }
.check.orange { background: rgba(255, 109, 0, 0.1); color: var(--orange); }

.panel-visual {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

/* Scraper Demo */
.scraper-demo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.search-bar-demo {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.sbd-input {
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
}

.sbd-icon { margin-right: 6px; }

.sbd-cats { display: flex; gap: 6px; }

.sbd-cat {
  padding: 6px 12px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 16px;
  font-size: 11px;
  color: var(--cyan);
}

.sbd-btn {
  padding: 10px 20px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
}

.results-demo { padding: 8px 16px; }

.result-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 16px;
}

.r-name { flex: 1; font-size: 13px; font-weight: 600; }
.r-phone { font-size: 12px; color: var(--text2); }
.r-stars { font-size: 12px; color: #FFD700; font-weight: 700; }
.fade-row { opacity: 0.3; }

.results-counter {
  padding: 12px 0 8px;
  text-align: center;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

/* Email Advanced Demo */
.email-advanced-demo {
  position: relative;
  max-width: 480px;
}

.ead-window {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.ead-topbar {
  height: 34px;
  background: #080c14;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 14px;
}

.ead-dots { display: flex; gap: 5px; margin-right: 6px; }
.ead-dots span { width: 8px; height: 8px; border-radius: 50%; }
.ead-dots span:nth-child(1) { background: #ff5f57; }
.ead-dots span:nth-child(2) { background: #ffbd2e; }
.ead-dots span:nth-child(3) { background: #28ca42; }

.ead-tab {
  font-size: 10px;
  color: var(--text2);
  padding: 4px 10px;
  border-radius: 5px;
  cursor: default;
}

.active-tab {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.ead-body {
  display: flex;
  background: #0b0f18;
  min-height: 240px;
}

.ead-sidebar-mini {
  width: 130px;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ead-sb-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 10px;
  color: var(--text2);
  cursor: default;
}

.active-row {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.ead-sb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.green-dot { background: var(--green); }
.cyan-dot { background: var(--cyan); }
.orange-dot { background: var(--orange); }
.purple-dot { background: var(--purple); }

.ead-sb-count {
  margin-left: auto;
  font-weight: 700;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.ead-main {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.ead-email-header {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 12px;
}

.ead-from, .ead-to, .ead-subject {
  font-size: 10px;
  color: var(--text2);
}

.ead-from strong, .ead-to strong, .ead-subject strong {
  color: #fff;
  font-weight: 600;
}

.ead-email-body { flex: 1; position: relative; }

.ead-ai-badge {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}

.ead-typing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ead-line {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.ead-cursor {
  display: inline-block;
  color: var(--green);
  font-weight: 300;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Floating stat cards */
.ead-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17,24,39,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(10px);
}

.ead-float-1 {
  top: -15px;
  right: -30px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 140px;
  animation: float 5s ease-in-out infinite;
}

.ead-float-2 {
  bottom: 50px;
  left: -40px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -2s;
}

.ead-float-3 {
  bottom: -10px;
  right: -25px;
  animation: float 5.5s ease-in-out infinite;
  animation-delay: -3.5s;
}

.ead-float-bar {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.ead-float-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 3px;
}

.ead-float-label {
  font-size: 10px;
  color: var(--text2);
  line-height: 1.3;
}

.ead-float-label strong {
  color: #fff;
}

.ead-float-label small {
  color: rgba(255,255,255,0.3);
  font-size: 9px;
}

.ead-float-icon {
  font-size: 16px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,229,255,0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.green-fl {
  background: rgba(0,230,118,0.1);
  color: var(--green);
}

/* Voice Demo */
.voice-demo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.voice-wave {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 70px;
  margin-bottom: 20px;
}

.wave-bar {
  width: 4px;
  height: var(--h);
  background: linear-gradient(180deg, var(--orange), var(--orange));
  border-radius: 4px;
  animation: waveAnim 1.2s ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes waveAnim {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.voice-transcript {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.vt-line {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 85%;
}

.vt-line.ai {
  background: rgba(255, 109, 0, 0.08);
  border: 1px solid rgba(255, 109, 0, 0.15);
  align-self: flex-start;
}

.vt-line.human {
  background: rgba(68, 138, 255, 0.08);
  border: 1px solid rgba(68, 138, 255, 0.15);
  align-self: flex-end;
}

.vt-who { font-weight: 700; margin-right: 4px; }
.vt-line.ai .vt-who { color: var(--orange); }
.vt-line.human .vt-who { color: var(--blue); }

.voice-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.voice-outcome.positive {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  color: var(--green);
}

.vo-icon {
  width: 24px; height: 24px;
  background: rgba(0, 230, 118, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ============================
   PARTNER LOGOS
   ============================ */
.partners-section {
  padding: 60px 0;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}

.partners-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text2);
  margin-bottom: 32px;
}

.partners-track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-slide {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: partnerScroll 25s linear infinite;
}

@keyframes partnerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
  cursor: default;
  user-select: none;
  flex-shrink: 0;
  transition: all 0.3s;
}

.partner-logo:hover {
  color: rgba(255,255,255,0.35);
}

.partner-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.4);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}

.partner-logo:hover img {
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.8;
}

.partner-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Transition between horizontal and zoom */
.section-transition {
  padding: 140px 0 120px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.section-transition .reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-transition .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-transition .reveal-up:nth-child(2) {
  transition-delay: 0.15s;
}

.section-transition::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.06), transparent 60%);
  pointer-events: none;
}

.section-transition .accent,
.cta-box .accent {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-transition h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
}

.section-transition p {
  color: var(--text2);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}

/* ============================
   FLOW BUILDER ANIMATION
   ============================ */
#flow-anim {
  height: 500vh;
  position: relative;
  background: var(--bg2);
}

.flow-anim-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  gap: 60px;
  overflow: hidden;
}

.flow-anim-left {
  flex: 1;
  max-width: 420px;
}

.fa-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 14px;
}

.fa-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.fa-title .accent {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fa-desc {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fa-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fa-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  opacity: 0.35;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fa-step.active {
  opacity: 1;
  background: rgba(0, 229, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.12);
}

.fa-step-num {
  width: 26px; height: 26px;
  min-width: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: var(--text2);
  transition: all 0.5s;
}

.fa-step.active .fa-step-num {
  background: var(--cyan);
  color: #000;
}

.fa-step-text strong {
  font-size: 12px;
  display: block;
}

.fa-step-text span {
  font-size: 10px;
  color: var(--text2);
}

/* Mobile flow visual — hidden on desktop */
.flow-mobile-visual { display: none; }

/* Right side: app mockup */
.flow-anim-right {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* App window mockup */
.app-mockup-flow {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 40px rgba(0,229,255,0.04);
}

.amf-titlebar {
  height: 32px;
  background: #080c14;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
}

.amf-dots { display: flex; gap: 5px; }
.amf-dots span { width: 9px; height: 9px; border-radius: 50%; }
.amf-dots span:nth-child(1) { background: #ff5f57; }
.amf-dots span:nth-child(2) { background: #ffbd2e; }
.amf-dots span:nth-child(3) { background: #28ca42; }
.amf-title { font-size: 11px; color: var(--text2); font-weight: 600; }

.amf-body { display: flex; background: #0b0f18; height: 500px; }

/* Mini sidebar */
.amf-sidebar {
  width: 44px;
  background: #080c14;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 10px 7px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.amf-sb-item {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: rgba(255,255,255,0.03);
}

.amf-sb-item.active {
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.25);
}

/* Canvas area */
.amf-canvas-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.amf-topbar {
  height: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.amf-back {
  color: var(--text2);
  font-size: 18px;
  cursor: pointer;
}

.amf-campaign-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.amf-avvia-btn {
  padding: 6px 18px;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s, transform 0.5s, background 0.3s;
}

.amf-avvia-btn.visible {
  opacity: 1;
  transform: scale(1);
}

.amf-avvia-btn.pulse {
  background: var(--green);
  color: #000;
  animation: avviaPulse 2s ease-in-out infinite;
}

@keyframes avviaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
}

/* Flow canvas */
.amf-canvas {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.amf-connections {
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Card node container needs position relative for plus button */
.amf-card-node { position: absolute; }

.conn {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.conn.drawn { stroke-dashoffset: 0; }

/* Nodes */
.amf-node {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.amf-node.visible {
  opacity: 1;
  transform: scale(1);
}

/* Play button */
.amf-play-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.3);
}

/* Card nodes */
.amf-card {
  width: 120px;
  background: #151c28;
  border-radius: 8px;
  border: 1.5px solid;
  overflow: hidden;
}

.email-border { border-color: rgba(149, 117, 205, 0.5); }
.wait-border { border-color: rgba(255, 171, 0, 0.5); }
.cond-border { border-color: rgba(68, 138, 255, 0.5); }

.amf-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 4px;
}

.amf-card-icon { font-size: 14px; }
.email-icon { color: #9575CD; }
.wait-icon { color: #FFAB00; }
.cond-icon { color: #448AFF; }

.amf-card-title { font-size: 12px; font-weight: 700; flex: 1; }
.email-color { color: #9575CD; }
.wait-color { color: #FFAB00; }
.cond-color { color: #448AFF; }

.amf-card-x { font-size: 10px; color: rgba(255,255,255,0.2); }

.amf-card-sub {
  padding: 2px 10px 8px;
  font-size: 11px;
  color: var(--text2);
}

/* SI / NO labels — positioned by JS */
.amf-label {
  position: absolute;
  z-index: 3;
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.amf-label.visible { opacity: 1; }

.si-label { color: var(--green); }
.no-label { color: var(--red); }

/* Card node container */
.amf-card-node {
  position: absolute;
}

.amf-plus-btn.visible { opacity: 1; }

/* Bottom toolbar */
.amf-toolbar {
  height: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.5s;
}

.amf-toolbar.visible { opacity: 1; }

.amf-zoom-ctrl, .amf-tools {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 2px;
}

.amf-zoom-ctrl span, .amf-tools span {
  padding: 4px 8px;
  font-size: 12px;
  color: var(--text2);
  border-radius: 4px;
}

.amf-zoom-ctrl span:hover, .amf-tools span:hover {
  background: rgba(255,255,255,0.06);
}

/* ============================
   CRM SECTION
   ============================ */
#crm-section {
  height: 350vh;
  position: relative;
  background: var(--bg);
}

.crm-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  gap: 60px;
}

.crm-visual { flex: 1.2; }
.crm-text { flex: 1; max-width: 400px; }

.crm-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.crm-title .accent {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crm-desc {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* CRM Mockup */
.crm-mockup {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.crm-mock-body {
  background: #0b0f18;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Lead rows */
.crm-lead {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.crm-lead.visible {
  opacity: 1;
  transform: translateX(0);
}

.crm-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
}

.hot-av { background: rgba(255,82,82,0.15); color: var(--red); }
.med-av { background: rgba(255,171,0,0.15); color: #FFAB00; }
.new-av { background: rgba(0,230,118,0.15); color: var(--green); }
.cool-av { background: rgba(68,138,255,0.15); color: var(--blue); }

.crm-lead-info { flex: 1; }
.crm-lead-name { font-size: 13px; font-weight: 600; }
.crm-lead-comp { font-size: 11px; color: var(--text2); }

.crm-stage-badge {
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}

.stage-interested { background: rgba(255,171,0,0.12); color: #FFAB00; border: 1px solid rgba(255,171,0,0.25); }
.stage-contacted { background: rgba(0,230,118,0.12); color: var(--green); border: 1px solid rgba(0,230,118,0.25); }
.stage-won { background: rgba(0,230,118,0.2); color: var(--green); border: 1px solid rgba(0,230,118,0.4); }
.stage-new { background: rgba(68,138,255,0.12); color: var(--blue); border: 1px solid rgba(68,138,255,0.25); }

.crm-heat-ring {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}

.hot-ring { border-color: var(--red); color: var(--red); }
.med-ring { border-color: #FFAB00; color: #FFAB00; }
.fire-ring { border-color: var(--red); color: var(--red); animation: pulse 2s ease-in-out infinite; }
.cool-ring { border-color: var(--blue); color: var(--blue); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,82,82,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(255,82,82,0); }
}

/* Pipeline */
.crm-pipeline {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s 0.1s, transform 0.6s 0.1s cubic-bezier(0.16,1,0.3,1);
}

.crm-pipeline.visible {
  opacity: 1;
  transform: translateY(0);
}

.crm-pipe-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.crm-pipe-label {
  font-size: 11px;
  color: var(--text2);
  min-width: 68px;
}

.crm-pipe-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
}

.crm-pipe-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}

.crm-pipeline.visible .crm-pipe-fill {
  width: var(--target);
}

.blue-fill { background: linear-gradient(90deg, rgba(68,138,255,0.7), rgba(68,138,255,0.3)); }
.green-fill { background: linear-gradient(90deg, rgba(0,230,118,0.7), rgba(0,230,118,0.3)); }
.yellow-fill { background: linear-gradient(90deg, rgba(255,171,0,0.7), rgba(255,171,0,0.3)); }
.mint-fill { background: linear-gradient(90deg, rgba(0,230,118,0.9), rgba(0,230,118,0.4)); }

.crm-pipe-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  min-width: 24px;
  text-align: right;
}

/* ============================
   FEATURES GRID
   ============================ */
#features {
  padding: 140px 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s, box-shadow 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}

/* Animated border glow on hover */
.fc-border-glow {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.feature-card:hover .fc-border-glow { opacity: 1; }

.feature-card[data-color="cyan"]:hover { box-shadow: 0 8px 40px rgba(0,229,255,0.1); }
.feature-card[data-color="cyan"] .fc-border-glow { background: linear-gradient(135deg, rgba(0,229,255,0.2), transparent 60%); }

.feature-card[data-color="green"]:hover { box-shadow: 0 8px 40px rgba(0,230,118,0.1); }
.feature-card[data-color="green"] .fc-border-glow { background: linear-gradient(135deg, rgba(0,230,118,0.2), transparent 60%); }

.feature-card[data-color="orange"]:hover { box-shadow: 0 8px 40px rgba(255,109,0,0.1); }
.feature-card[data-color="orange"] .fc-border-glow { background: linear-gradient(135deg, rgba(255,109,0,0.2), transparent 60%); }

.feature-card[data-color="purple"]:hover { box-shadow: 0 8px 40px rgba(124,77,255,0.1); }
.feature-card[data-color="purple"] .fc-border-glow { background: linear-gradient(135deg, rgba(124,77,255,0.2), transparent 60%); }

.feature-card[data-color="blue"]:hover { box-shadow: 0 8px 40px rgba(68,138,255,0.1); }
.feature-card[data-color="blue"] .fc-border-glow { background: linear-gradient(135deg, rgba(68,138,255,0.2), transparent 60%); }

.feature-card[data-color="pink"]:hover { box-shadow: 0 8px 40px rgba(255,64,129,0.1); }
.feature-card[data-color="pink"] .fc-border-glow { background: linear-gradient(135deg, rgba(255,64,129,0.2), transparent 60%); }

/* Top row: icon + stat */
.fc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.fc-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cyan-wrap { background: rgba(0, 229, 255, 0.1); color: var(--cyan); }
.green-wrap { background: rgba(0, 230, 118, 0.1); color: var(--green); }
.orange-wrap { background: rgba(255, 109, 0, 0.1); color: var(--orange); }
.purple-wrap { background: rgba(124, 77, 255, 0.1); color: var(--purple); }
.blue-wrap { background: rgba(68, 138, 255, 0.1); color: var(--blue); }
.pink-wrap { background: rgba(255, 64, 129, 0.1); color: var(--pink); }

.fc-stat {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.cyan-stat { color: var(--cyan); }
.green-stat { color: var(--green); }
.orange-stat { color: var(--orange); }
.purple-stat { color: var(--purple); }
.blue-stat { color: var(--blue); }
.pink-stat { color: var(--pink); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text2);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Tags row */
.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.fc-tag {
  padding: 3px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.3px;
}

/* ============================
   HOW IT WORKS
   ============================ */
#how-it-works {
  padding: 120px 0;
  background: var(--bg2);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* Dashed connecting line */
.hiw-connector {
  position: absolute;
  top: 42px;
  left: 0; right: 0;
  height: 8px;
  z-index: 0;
  opacity: 0.4;
}

/* Card */
.hiw-card {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}

.hiw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Number badge */
.hiw-num-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative;
}

.hiw-num-wrap span {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 1;
}

.cyan-glow-border {
  background: linear-gradient(135deg, var(--cyan), rgba(0,229,255,0.3));
  box-shadow: 0 0 20px rgba(0,229,255,0.25);
}
.green-glow-border {
  background: linear-gradient(135deg, var(--green), rgba(0,230,118,0.3));
  box-shadow: 0 0 20px rgba(0,230,118,0.25);
}
.orange-glow-border {
  background: linear-gradient(135deg, var(--orange), rgba(255,109,0,0.3));
  box-shadow: 0 0 20px rgba(255,109,0,0.25);
}
.purple-glow-border {
  background: linear-gradient(135deg, var(--purple), rgba(124,77,255,0.3));
  box-shadow: 0 0 20px rgba(124,77,255,0.25);
}

/* Mini mockup area */
.hiw-icon-area {
  margin-bottom: 16px;
}

.hiw-mini-mockup {
  width: 100%;
  height: 90px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.hiw-mm-bar {
  height: 4px;
  width: 60%;
  background: rgba(0,229,255,0.3);
  border-radius: 2px;
}
.green-bar-mm { background: rgba(0,230,118,0.3); }
.orange-bar-mm { background: rgba(255,109,0,0.3); }
.purple-bar-mm { background: rgba(124,77,255,0.3); }

/* Step 1: search results */
.hiw-mm-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hiw-mm-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.6;
}

.hiw-mm-line {
  height: 3px;
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.hiw-mm-line.short { width: 60%; flex: none; }

/* Step 2: avatars */
.hiw-mm-avatar-row {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.hiw-mm-avatar {
  width: 22px; height: 22px;
  border-radius: 6px;
}
.c1 { background: rgba(255,82,82,0.25); }
.c2 { background: rgba(68,138,255,0.25); }
.c3 { background: rgba(0,230,118,0.25); }
.c4 { background: rgba(255,171,0,0.25); }

.hiw-mm-pipe {
  height: 5px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
  margin-top: auto;
}

.hiw-mm-pipe-fill {
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), rgba(0,230,118,0.3));
  border-radius: 3px;
}

/* Step 3: voice wave */
.hiw-mm-wave {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  height: 28px;
}

.hiw-w {
  width: 3px;
  height: var(--h);
  background: var(--orange);
  border-radius: 2px;
  animation: waveAnim 1.2s ease-in-out infinite;
  animation-delay: var(--d);
}

.hiw-mm-msg {
  font-size: 8px;
  color: var(--text2);
  text-align: left;
  padding: 3px 6px;
  background: rgba(255,109,0,0.08);
  border-radius: 4px;
  margin-top: auto;
}

/* Step 4: deal */
.hiw-mm-deal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: auto 0;
}

.hiw-mm-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}

.hiw-mm-deal-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.hiw-mm-confetti {
  position: relative;
  height: 0;
  display: flex;
  justify-content: center;
}

.hiw-mm-confetti span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  transform: translate(var(--x), var(--y));
  animation: confettiFloat 2s ease-in-out infinite;
}

@keyframes confettiFloat {
  0%, 100% { opacity: 0.3; transform: translate(var(--x), var(--y)); }
  50% { opacity: 1; transform: translate(var(--x), calc(var(--y) - 5px)); }
}

/* Title + description */
.hiw-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hiw-card p {
  color: var(--text2);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Bottom result stat */
.hiw-result {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hiw-r-num {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-r-label {
  font-size: 11px;
  color: var(--text2);
}

/* ============================
   PRICING
   ============================ */
#pricing {
  padding: 120px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.price-card {
  padding: 36px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.price-card:hover { transform: translateY(-4px); }

.price-card.featured {
  border-color: rgba(0, 229, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.03), var(--card));
  transform: scale(1.03);
}

.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pc-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--cyan);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
}

.pc-name { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

.pc-price {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.currency { font-size: 24px; vertical-align: top; }
.period { font-size: 16px; color: var(--text2); font-weight: 400; letter-spacing: 0; }

.pc-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}

.pc-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pc-features li.disabled {
  color: var(--text2);
  opacity: 0.4;
}

.pc-features li.disabled::before {
  content: '\2715';
  color: var(--text2);
}

/* ============================
   CTA — FUTURISTIC
   ============================ */
#cta-section {
  position: relative;
  padding: 160px 0;
  background: #030510;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Perspective grid */
.cta-grid-bg {
  position: absolute;
  inset: 0;
  perspective: 600px;
  overflow: hidden;
}

.cta-grid-lines {
  position: absolute;
  bottom: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background-image:
    linear-gradient(rgba(0,229,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(60deg);
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: rotateX(60deg) translateY(0); }
  100% { transform: rotateX(60deg) translateY(60px); }
}

/* Orbiting rings */
.cta-orbits {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 400px; height: 400px;
  border-color: rgba(0,229,255,0.08);
  animation: orbitSpin 30s linear infinite;
}

.orbit-2 {
  width: 550px; height: 550px;
  border-color: rgba(124,77,255,0.06);
  animation: orbitSpin 45s linear infinite reverse;
}

.orbit-3 {
  width: 700px; height: 700px;
  border-color: rgba(0,230,118,0.04);
  animation: orbitSpin 60s linear infinite;
}

/* Orbit dots */
.orbit-1::after, .orbit-2::after, .orbit-3::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  top: 0; left: 50%;
  transform: translateX(-50%);
}

.orbit-1::after { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.orbit-2::after { background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.orbit-3::after { background: var(--green); box-shadow: 0 0 12px var(--green); }

@keyframes orbitSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating particles */
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background: rgba(0,229,255,0.6);
  border-radius: 50%;
  animation: particleFloat var(--dur) ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  25% { transform: translate(10px, -20px); opacity: 0.8; }
  50% { transform: translate(-5px, -35px); opacity: 0.4; }
  75% { transform: translate(15px, -15px); opacity: 0.9; }
}

/* Center orb glow */
.cta-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.12), rgba(124,77,255,0.06) 40%, transparent 70%);
  filter: blur(40px);
  animation: orbPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-badge-wrap { margin-bottom: 24px; }

.cta-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.cta-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
}

#cta-section h2 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
  color: #fff;
}

.cta-gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--green), var(--purple));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

#cta-section p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-main-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--cyan), #00b8d4);
  color: #000;
  font-weight: 800;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,229,255,0.35);
}

.cta-btn-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
  animation: btnGlowMove 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnGlowMove {
  0%, 100% { transform: translate(-30%, -30%); }
  50% { transform: translate(10%, 10%); }
}

.cta-btn-text { position: relative; z-index: 1; }
.cta-main-btn svg { position: relative; z-index: 1; }

.cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
}

.cta-secondary-btn:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

/* Trust bar */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-avatars {
  display: flex;
}

.cta-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
  margin-left: -8px;
  border: 2px solid #030510;
}

.cta-av:first-child { margin-left: 0; }

.cta-trust-text {
  font-size: 13px;
  color: var(--text2);
}

/* ============================
   FOOTER
   ============================ */
footer {
  padding: 80px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p { color: var(--text2); font-size: 14px; margin-top: 12px; line-height: 1.6; max-width: 280px; }

.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }

.footer-col a {
  display: block;
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p { color: var(--text2); font-size: 13px; }

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================
   RESPONSIVE
   ============================ */
/* ============================
   HAMBURGER MENU BUTTON
   ============================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 1002;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,8,16,0.97);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 80px 30px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.nav-mobile-overlay a:hover { color: var(--cyan); }
.nav-mobile-overlay .nav-auth {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 1;
  min-width: auto;
}
.nav-mobile-overlay .nav-auth.ready { opacity: 1; }

/* ============================
   RESPONSIVE — TABLET (<=1024px)
   ============================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .crm-sticky { flex-direction: column; gap: 40px; }
  .crm-visual { width: 100%; }
  .crm-text { width: 100%; }

  .h-panel { padding: 80px 30px; }
  .hero-main { flex-direction: column; padding: 100px 30px 40px; gap: 30px; }

  /* Flow builder mockup smaller */
  .amf-body { height: 350px; }
  .amf-sidebar { width: 50px; }
}

/* ============================
   RESPONSIVE — MOBILE (<=768px)
   ============================ */
@media (max-width: 768px) {
  /* Hamburger visible, nav-links hidden */
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 16px; }

  /* === KILL HORIZONTAL SCROLL — Stack panels vertically === */
  #hero-horizontal {
    height: auto !important;
    position: relative;
  }
  .horizontal-wrapper {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    height: auto !important;
    width: 100% !important;
    overflow: visible !important;
  }
  .horizontal-wrapper.before-pin,
  .horizontal-wrapper.after-pin {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
  }
  .horizontal-track {
    width: 100% !important;
    height: auto !important;
    flex-direction: column !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .h-panel {
    width: 100% !important;
    min-width: 100% !important;
    flex: none !important;
    height: auto !important;
    min-height: auto !important;
    padding: 80px 20px !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .scroll-progress { display: none; }

  /* Hero panel */
  .hero-main {
    flex-direction: column !important;
    text-align: center;
    gap: 30px !important;
    padding-top: 100px !important;
  }
  .hero-content { max-width: 100%; }
  .hero-content h1 {
    font-size: 32px !important;
    letter-spacing: -1px;
  }
  .hero-content h1 .line { display: inline; }
  .hero-sub { font-size: 15px !important; }
  .hero-badge { font-size: 12px; }
  .hero-buttons {
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons a { width: 100%; text-align: center; justify-content: center; }
  .hero-visual { max-width: 100%; }

  /* Feature panels */
  .feature-panel {
    flex-direction: column !important;
    gap: 24px !important;
    text-align: center;
  }
  .feature-panel h2 { font-size: 24px !important; }
  .feature-panel p { font-size: 15px !important; }
  .feature-list li { justify-content: center; }

  /* Trust bar / partners */
  .trust-bar { padding: 30px 20px; }
  .trust-logos { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .trust-logos img { height: 18px; }

  /* Flow builder section */
  #flow-anim { height: auto !important; }
  .flow-anim-sticky {
    position: relative !important;
    height: auto !important;
    flex-direction: column !important;
    padding: 60px 20px !important;
    gap: 32px !important;
  }
  .flow-anim-left {
    max-width: 100% !important;
    text-align: center;
  }
  .fa-title { font-size: 26px !important; }
  .fa-desc { font-size: 14px; }
  .fa-steps { gap: 6px; }
  .fa-step { padding: 8px 12px; }
  .fa-step-text strong { font-size: 12px; }
  .fa-step-text span { font-size: 10px; }
  .flow-anim-right {
    width: 100% !important;
    flex: none !important;
  }
  /* Hide interactive mockup on mobile — too complex */
  .flow-anim-right { display: none !important; }

  /* Show mobile-only simplified flow visual */
  .flow-mobile-visual { display: flex !important; }
  .flow-mobile-visual {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 10px !important;
  }
  .fmv-node {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 18px !important;
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 300px !important;
  }
  .fmv-node-icon {
    width: 36px !important; height: 36px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
  }
  .fmv-node-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
  }
  .fmv-node-sub {
    font-size: 11px !important;
    color: var(--text2) !important;
  }
  .fmv-line {
    width: 2px !important;
    height: 24px !important;
    background: rgba(255,255,255,0.08) !important;
  }
  .fmv-branch {
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 300px !important;
    justify-content: center !important;
  }
  .fmv-branch .fmv-node {
    flex: 1 !important;
    max-width: none !important;
    padding: 10px 12px !important;
  }

  /* CRM section */
  #crm-section { padding: 60px 0; }
  .crm-sticky {
    flex-direction: column !important;
    padding: 0 20px !important;
    gap: 30px;
  }
  .crm-visual, .crm-text { width: 100% !important; }
  .crm-title { font-size: 26px !important; }
  .crm-mockup { width: 100% !important; }

  /* Section headers */
  .section-header { padding: 0; text-align: center; }
  .section-header h2 { font-size: 26px !important; }

  /* Features grid */
  .features-grid { grid-template-columns: 1fr !important; }

  /* How it works */
  .hiw-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .hiw-connector { display: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 100%; }

  /* CTA section */
  #cta-section { padding: 60px 20px; }
  .cta-content h2 { font-size: 26px !important; }
  .cta-content p { font-size: 15px; padding: 0 10px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons a { width: 100%; text-align: center; justify-content: center; }
  .cta-orbits, .cta-particles { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-bottom { text-align: center; }
}

/* ============================
   RESPONSIVE — SMALL MOBILE (<=480px)
   ============================ */
@media (max-width: 480px) {
  .hero-main h1 { font-size: 26px; }
  .hero-main { padding: 80px 16px 24px; }
  .h-panel { padding: 50px 16px; }
  .container { padding: 0 16px; }
  .section-header h2 { font-size: 22px; }
  .crm-title { font-size: 24px; }
  .cta-content h2 { font-size: 24px; }
  .features-grid { gap: 12px; }
}
