/* ===== VARIABLES ===== */
:root {
  --bg: #06070f;
  --bg-2: #0a0c1b;
  --bg-3: #0d1020;
  --surface: rgba(255,255,255,0.03);
  --glass: rgba(255,255,255,0.04);
  --glass-2: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.08);
  --glass-border-hover: rgba(255,255,255,0.15);
  --text: #e8eaf6;
  --text-muted: #8b8fa3;
  --text-dim: #5a5e72;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --gradient: linear-gradient(135deg, #7c3aed, #3b82f6, #06b6d4);
  --gradient-2: linear-gradient(135deg, #a855f7, #3b82f6);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(124,58,237,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-height: 72px;
  --container: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(124,58,237,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(124,58,237,0.08), transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(6,182,212,0.06), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(59,130,246,0.05), transparent 45%);
  pointer-events: none;
  z-index: 0;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.gradient-text {
  background: linear-gradient(90deg, #a855f7, #3b82f6, #06b6d4, #3b82f6, #a855f7);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s linear infinite;
}
@keyframes gradientShift { to { background-position: 200% center; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #fff;
  box-shadow: 0 0 20px rgba(124,58,237,0.3), 0 4px 12px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(124,58,237,0.5), 0 8px 24px rgba(0,0,0,0.4);
}
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-glow {
  box-shadow: 0 0 30px rgba(124,58,237,0.4), 0 0 60px rgba(59,130,246,0.2);
}
.btn-glow:hover {
  box-shadow: 0 0 50px rgba(124,58,237,0.6), 0 0 100px rgba(59,130,246,0.3);
}
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6,7,15,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo-mark { display: flex; align-items: center; }
.logo-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-signin:hover { color: var(--text); }
.nav-mobile-actions { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  justify-content: center;
  margin-left: auto;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  animation: floatGlow 12s ease-in-out infinite;
}
.hero-glow-2 {
  bottom: -150px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 70%);
  animation: floatGlow 14s ease-in-out infinite reverse;
}
@keyframes floatGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px,30px); }
}
.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 560px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  font-size: 13px;
  font-weight: 500;
  color: #c4b5fd;
  transition: all var(--transition);
}
.pill:hover { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.4); }
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 24px 0;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--bg);
  margin-left: -10px;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 14px; color: var(--text-muted); }
.proof-text strong { color: var(--text); }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-orb {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.25), rgba(59,130,246,0.1), transparent 70%);
  filter: blur(40px);
  animation: orbPulse 5s ease-in-out infinite;
}
.ai-orb-2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
  animation-delay: 2.5s;
}
@keyframes orbPulse {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}
.dashboard-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(13,16,32,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(124,58,237,0.15);
  z-index: 2;
}
.dashboard-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,0.4), rgba(59,130,246,0.2), rgba(6,182,212,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-bot { display: flex; align-items: center; gap: 10px; }
.bot-avatar {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
.bot-name { font-size: 14px; font-weight: 600; }
.bot-status { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  display: inline-block;
}
.dash-actions { color: var(--text-dim); cursor: pointer; }
.chat-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 340px;
}
.chat-msg { display: flex; gap: 8px; align-items: flex-end; }
.chat-msg-out { flex-direction: row-reverse; }
.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.msg-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.chat-msg-in .msg-bubble {
  background: rgba(255,255,255,0.06);
  border-bottom-left-radius: 4px;
}
.chat-msg-out .msg-bubble {
  background: linear-gradient(135deg, rgba(124,58,237,0.8), rgba(59,130,246,0.8));
  border-bottom-right-radius: 4px;
}
.msg-bubble strong { color: #fbbf24; }
.chat-typing { display: flex; gap: 8px; align-items: center; }
.typing-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
}
.typing-bubble {
  background: rgba(255,255,255,0.06);
  padding: 12px 16px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 5px;
}
.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}
.dashboard-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-dim);
  font-size: 13px;
}
.dashboard-input i { font-size: 14px; }
.dashboard-input span { flex: 1; }

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(13,16,32,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.2s ease-out;
}
.floating-card-1 {
  top: 20px; right: -10px;
  animation: floatY 4s ease-in-out infinite;
}
.floating-card-2 {
  bottom: 80px; left: -20px;
  animation: floatY 4s ease-in-out infinite 1s;
}
.floating-card-3 {
  bottom: 0; right: -15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  animation: floatY 4s ease-in-out infinite 2s;
  width: 140px;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(6,182,212,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
}
.floating-value { font-size: 18px; font-weight: 700; font-family: 'Space Grotesk'; color: var(--green); }
.floating-label { font-size: 11px; color: var(--text-muted); }
.floating-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseDot 2s ease-in-out infinite;
}
.floating-text { font-size: 13px; font-weight: 600; }
.floating-chart-label { font-size: 11px; color: var(--text-muted); }
.floating-chart { width: 100%; height: 36px; }
.floating-chart-value { font-size: 16px; font-weight: 700; font-family: 'Space Grotesk'; color: var(--cyan); }

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-hint span { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.scroll-line span {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gradient);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ===== LOGO STRIP ===== */
.logo-strip {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.01);
}
.logo-strip-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logo-strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.company-logo {
  font-size: 20px;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition), color var(--transition);
  cursor: default;
}
.company-logo:hover { opacity: 1; color: var(--text); }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-header p { font-size: 16px; color: var(--text-muted); }

/* ===== BENTO FEATURES ===== */
.features { padding: 100px 0; position: relative; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 20px 60px rgba(124,58,237,0.1), 0 0 40px rgba(124,58,237,0.05);
}
.bento-card:hover::before { opacity: 1; }
.bento-wide { grid-column: span 2; }
.bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}
.bento-icon-purple { background: rgba(124,58,237,0.15); color: var(--purple-light); }
.bento-icon-blue { background: rgba(59,130,246,0.15); color: var(--blue); }
.bento-icon-cyan { background: rgba(6,182,212,0.15); color: var(--cyan); }
.bento-icon-green { background: rgba(16,185,129,0.15); color: var(--green); }
.bento-icon-orange { background: rgba(245,158,11,0.15); color: var(--orange); }
.bento-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.bento-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Bento: Omnichannel Inbox Preview */
.bento-inbox-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.inbox-row:hover { background: rgba(255,255,255,0.05); }
.inbox-unread { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.15); }
.inbox-channel {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ch-wa { background: rgba(37,211,102,0.15); color: #25d366; }
.ch-ig { background: rgba(225,48,108,0.15); color: #e1306c; }
.ch-msg { background: rgba(0,132,255,0.15); color: #0084ff; }
.ch-web { background: rgba(124,58,237,0.15); color: var(--purple-light); }
.inbox-content { flex: 1; min-width: 0; }
.inbox-name { font-size: 13px; font-weight: 600; }
.inbox-msg { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-badge {
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Bento: AI Toggle */
.bento-ai-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 16px;
}
.toggle-label { font-size: 13px; font-weight: 500; }
.toggle-switch {
  width: 44px; height: 24px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-switch.active { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.toggle-knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}
.toggle-switch.active .toggle-knob { transform: translateX(20px); }
.bento-confidence { margin-bottom: 16px; }
.conf-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; }
.conf-val { font-weight: 600; color: var(--green); }
.conf-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.conf-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan)); border-radius: 100px; transition: width 1s ease; }
.bento-reply-preview {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.bento-reply-preview i { color: var(--purple-light); margin-top: 2px; }

/* Bento: Funnel */
.bento-funnel { display: flex; flex-direction: column; gap: 6px; }
.funnel-stage { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.funnel-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.funnel-name { flex: 1; font-weight: 500; }
.funnel-count { font-weight: 700; font-family: 'Space Grotesk'; }
.funnel-bar { height: 6px; background: rgba(255,255,255,0.04); border-radius: 100px; overflow: hidden; margin-bottom: 8px; }
.funnel-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }

/* Bento: Handoff */
.bento-handoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.handoff-node {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  color: var(--text-muted);
}
.handoff-node i { font-size: 18px; color: var(--purple-light); }
.handoff-human { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); }
.handoff-human i { color: var(--green); }
.handoff-arrow {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.06);
  position: relative;
  display: flex;
  align-items: center;
}
.handoff-line { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(124,58,237,0.3), rgba(16,185,129,0.3)); }
.handoff-particle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  top: 50%;
  transform: translateY(-50%);
  animation: flowRight 2.5s linear infinite;
}
@keyframes flowRight {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.handoff-arrow > i { position: absolute; right: -4px; color: var(--green); font-size: 12px; }
.bento-handoff-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.handoff-indicator {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulseDot 2s ease-in-out infinite;
}

/* Bento: Live Analytics */
.bento-live-badge {
  position: absolute;
  top: 28px; right: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulseDot 1.5s ease-in-out infinite;
}
.bento-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 16px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan), rgba(59,130,246,0.3));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1s ease-out backwards;
  transform-origin: bottom;
}
.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }
@keyframes barGrow { from { transform: scaleY(0); } }
.bento-chart-stats {
  display: flex;
  gap: 24px;
}
.stat-num { display: block; font-size: 20px; font-weight: 700; font-family: 'Space Grotesk'; }
.stat-lbl { font-size: 12px; color: var(--text-muted); }

/* ===== WORKFLOW ===== */
.workflow { padding: 100px 0; position: relative; }
.workflow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.workflow-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.step-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cyan);
  position: relative;
}
.step-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,0.4), rgba(6,182,212,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.workflow-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.workflow-step p { font-size: 14px; color: var(--text-muted); max-width: 280px; margin: 0 auto; }
.workflow-connector {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 48px;
}
.connector-line {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.connector-particle {
  position: absolute;
  top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  transform: translateY(-50%);
  animation: flowRight 3s linear infinite;
}

/* ===== AI DEMO ===== */
.ai-demo { padding: 100px 0; position: relative; }
.demo-container {
  max-width: 640px;
  margin: 0 auto;
}
.demo-chat {
  background: rgba(13,16,32,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(124,58,237,0.1);
  position: relative;
}
.demo-chat::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(6,182,212,0.2), rgba(124,58,237,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.demo-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
}
.demo-bot-info { display: flex; align-items: center; gap: 10px; }
.demo-bot-avatar {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.demo-bot-name { font-size: 15px; font-weight: 600; }
.demo-bot-status { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.demo-confidence { display: flex; align-items: center; gap: 8px; }
.conf-label { font-size: 11px; color: var(--text-muted); white-space: nowrap; }
.conf-bar-sm { width: 60px; height: 5px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden; }
.conf-fill-sm { height: 100%; background: linear-gradient(90deg, var(--purple), var(--cyan)); border-radius: 100px; transition: width 0.6s ease; }
.conf-val-sm { font-size: 12px; font-weight: 700; color: var(--cyan); min-width: 32px; }

.demo-chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  max-height: 380px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.demo-chat-body::-webkit-scrollbar { width: 4px; }
.demo-chat-body::-webkit-scrollbar-track { background: transparent; }
.demo-chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.demo-msg { display: flex; gap: 8px; align-items: flex-start; }
.demo-msg-out { flex-direction: row-reverse; }
.msg-avatar-sm {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.demo-msg-in .msg-bubble {
  background: rgba(255,255,255,0.06);
  border-bottom-left-radius: 4px;
}
.demo-msg-out .msg-bubble {
  background: linear-gradient(135deg, rgba(124,58,237,0.85), rgba(59,130,246,0.85));
  border-bottom-right-radius: 4px;
}
.demo-typing {
  display: flex;
  gap: 8px;
  align-items: center;
}
.demo-prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.prompt-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.prompt-chip:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.3);
  color: #c4b5fd;
}
.prompt-chip i { font-size: 12px; color: var(--cyan); }
.demo-chat-form {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
#demoChatInput {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  transition: border-color var(--transition);
}
#demoChatInput::placeholder { color: var(--text-dim); }
#demoChatInput:focus { outline: none; border-color: rgba(124,58,237,0.4); }
.demo-send-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.demo-send-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(124,58,237,0.4); }
.demo-send-btn:active { transform: scale(0.95); }

/* ===== INTEGRATIONS ===== */
.integrations { padding: 100px 0; position: relative; overflow: hidden; }
.marquee {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  direction: ltr !important;
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.integration-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  min-width: 220px;
}
.integration-card:hover {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.05);
}
.integration-card i { font-size: 24px; }
.integration-card .fa-whatsapp { color: #25d366; }
.integration-card .fa-instagram { color: #e1306c; }
.integration-card .fa-facebook-messenger { color: #0084ff; }
.integration-card .fa-shopify { color: #95bf47; }
.integration-card .fa-bag-shopping { color: #9b53b8; }
.integration-card .fa-telegram { color: #0088cc; }
.integration-card .fa-globe { color: var(--cyan); }
.integration-card span { font-size: 15px; font-weight: 600; }
.int-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  margin-left: auto;
}
.int-available { background: rgba(245,158,11,0.15); color: var(--orange); }

/* ===== METRICS ===== */
.metrics {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.04), transparent);
}
.metrics-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.metrics-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.metrics-content > p { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; max-width: 440px; }
.metrics-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.metric-item {
  padding: 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label { font-size: 14px; color: var(--text-muted); }

.metrics-panel {
  background: rgba(13,16,32,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow);
}
.metrics-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(6,182,212,0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.metrics-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.panel-title { font-size: 14px; font-weight: 600; }
.panel-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}
.metrics-chart { width: 100%; height: auto; margin-bottom: 16px; }
.metrics-panel-footer {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.panel-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-label { font-size: 11px; color: var(--text-muted); }
.stat-value { font-size: 18px; font-weight: 700; font-family: 'Space Grotesk'; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; position: relative; }
.testimonial-carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  direction: ltr !important;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 40px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
html[dir="rtl"] .testimonial-card {
  direction: rtl;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(124,58,237,0.2);
  line-height: 1;
}
html[dir="rtl"] .testimonial-card::before {
  left: auto;
  right: 24px;
  content: '\201D';
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: #fbbf24;
  font-size: 16px;
}
.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.author-name { font-size: 15px; font-weight: 600; }
.author-role { font-size: 13px; color: var(--text-muted); }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}
.testimonial-btn:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.3);
  color: #c4b5fd;
}
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--transition);
}
.testimonial-dot.active {
  width: 24px;
  border-radius: 100px;
  background: var(--gradient);
}

/* ===== PRICING ===== */
.pricing { padding: 100px 0; position: relative; }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-option {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.toggle-option.active { color: var(--text); }
.save-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  margin-left: 4px;
}
.pricing-switch {
  position: relative;
  width: 52px; height: 28px;
  display: inline-block;
}
.pricing-switch input { opacity: 0; width: 0; height: 0; }
.pricing-slider {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background var(--transition);
}
.pricing-slider::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}
.pricing-switch input:checked + .pricing-slider {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}
.pricing-switch input:checked + .pricing-slider::before { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  padding: 36px 28px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}
.pricing-popular {
  border-color: rgba(124,58,237,0.4);
  background: linear-gradient(180deg, rgba(124,58,237,0.08), rgba(59,130,246,0.03));
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(124,58,237,0.12), 0 0 40px rgba(124,58,237,0.06);
}
.pricing-popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(124,58,237,0.3);
}
.pricing-plan {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.price-period { font-size: 16px; color: var(--text-muted); }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.pricing-features i { color: var(--green); font-size: 13px; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.12), rgba(6,182,212,0.06), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  filter: blur(30px);
  animation: orbPulse 5s ease-in-out infinite;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.cta-content > p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-note {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  color: var(--text);
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.3);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(124,58,237,0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124,58,237,0.4); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 440px; max-width: 420px; margin: 0 auto; }
  .metrics-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .workflow-steps { flex-direction: column; gap: 40px; }
  .workflow-step { padding: 0; }
  .workflow-connector { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(6,7,15,0.97);
    backdrop-filter: blur(24px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: slideDown 0.3s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.mobile-open a { font-size: 16px; }
  .nav-links.mobile-open .nav-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.mobile-open .nav-mobile-actions .nav-signin {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }

  .hero { padding-top: calc(var(--nav-height) + 40px); }
  .hero h1 { font-size: 2.2rem; }
  .hero-visual { height: 400px; }
  .floating-card-1 { right: 0; }
  .floating-card-2 { left: 0; }
  .floating-card-3 { right: 0; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-popular { transform: none; }
  .pricing-popular:hover { transform: translateY(-4px); }

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

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .testimonial-card { padding: 28px 20px; }
  .testimonial-text { font-size: 16px; }
}

@media (max-width: 480px) {
  .container, .nav-container, .hero-container { padding: 0 16px; }
  .nav-links.mobile-open .nav-mobile-actions { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 15px; }
  .section-header h2 { font-size: 1.6rem; }
  .metric-value { font-size: 32px; }
  .price { font-size: 36px; }
  .floating-card-1, .floating-card-2, .floating-card-3 { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .gradient-text { animation: none; }
}

/* Pricing Select & Option styling */
#growthPlanSelector {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
#growthPlanSelector option {
  background: #0b0c16 !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
