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

:root {
  --neon-blue: #00d4ff;
  --neon-purple: #8b5cf6;
  --neon-cyan: #06b6d4;
  --dark-bg: #0a0a0f;
  --dark-secondary: #0d0d14;
  --dark-tertiary: #111118;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-primary: #f8fafc;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-dim: rgba(255, 255, 255, 0.4);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;

}

a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #fff;
}

/* ============= SCROLLBAR ============= */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); border-radius: 4px; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.3), rgba(139, 92, 246, 0.3));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.5), rgba(139, 92, 246, 0.5));
}

/* ============= GLASSMORPHISM ============= */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-dark {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* ============= NEON GLOW EFFECTS ============= */
.neon-glow-blue {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(0, 212, 255, 0.15),
    0 0 60px rgba(0, 212, 255, 0.08), inset 0 0 20px rgba(0, 212, 255, 0.03);
}
.neon-glow-purple {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25), 0 0 40px rgba(139, 92, 246, 0.15),
    0 0 60px rgba(139, 92, 246, 0.08), inset 0 0 20px rgba(139, 92, 246, 0.03);
}
.neon-glow-cyan {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.25), 0 0 40px rgba(6, 182, 212, 0.15),
    0 0 60px rgba(6, 182, 212, 0.08), inset 0 0 20px rgba(6, 182, 212, 0.03);
}

/* ============= TEXT EFFECTS ============= */
.gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow-blue {
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3),
    0 0 40px rgba(0, 212, 255, 0.2), 0 0 80px rgba(0, 212, 255, 0.1);
}

.animated-gradient-text {
  background: linear-gradient(90deg, #00d4ff, #8b5cf6, #06b6d4, #00d4ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease-in-out infinite;
}

/* ============= KEYFRAME ANIMATIONS ============= */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-10px) rotateX(1deg) rotateY(-1deg); }
  50% { transform: translateY(-20px) rotateX(2deg) rotateY(2deg); }
  75% { transform: translateY(-10px) rotateX(1deg) rotateY(-1deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.15); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.25), 0 0 100px rgba(0, 212, 255, 0.1); }
}

@keyframes dividerPulse {
  0%, 100% { opacity: 0.5; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.02); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

@keyframes gradientPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ============= LAYOUT UTILITIES ============= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.shrink-0 { flex-shrink: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============= SECTION DIVIDER ============= */
.section-divider {
  height: 1px;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.2) 15%,
    rgba(139, 92, 246, 0.3) 50%, rgba(0, 212, 255, 0.2) 85%, transparent 100%);
  animation: dividerPulse 4s ease-in-out infinite;
}

/* ============= CANVAS BACKGROUND ============= */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.bg-overlay-gradient {
  background: linear-gradient(to bottom, transparent, transparent 60%, rgba(10, 10, 15, 0.9));
}

.bg-overlay-vignette {
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 15, 0.6) 100%);
}

.bg-overlay-scanlines {
  opacity: 0.02;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
}

/* ============= CUSTOM CURSOR ============= */
.cursor-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.4;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  filter: blur(8px);
  transition: width 0.3s, height 0.3s;
}

.cursor-hovering .cursor-inner { width: 12px; height: 12px; }
.cursor-hovering .cursor-outer { width: 60px; height: 60px; opacity: 0.8; }
.cursor-hovering .cursor-glow { width: 150px; height: 150px; }

/* ============= MOUSE GLOW ============= */
.mouse-glow {
  position: fixed;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.5s;
}
.mouse-glow.visible { opacity: 1; }

.mouse-glow-primary {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
}

.mouse-glow-secondary {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(40px);
}

/* ============= NAVIGATION ============= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  animation: slideDown 0.6s ease-out;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: none;
  transition: transform 0.3s;
}
.logo:hover { transform: scale(1.05); }

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
  padding: 4px 0;
}
.nav-link:hover { color: var(--text-primary); transform: scale(1.05); }

.mobile-toggle {
  display: flex;
  padding: 8px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.mobile-menu-link:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.05); }
.mobile-menu-link.active { color: var(--neon-blue); }

/* ============= SITE NAVIGATION (links to other pages) ============= */
.site-nav-links {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .site-nav-links { display: flex; }
}

.site-nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 4px 0;
  text-decoration: none;
  position: relative;
}
.site-nav-link:hover { color: var(--text-primary); }
.site-nav-link.active {
  color: var(--neon-blue);
}
.site-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-blue);
  border-radius: 1px;
  box-shadow: 0 0 8px var(--neon-blue);
}

.site-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-mobile-menu.open { display: flex; }

@media (min-width: 768px) {
  .site-mobile-menu { display: none !important; }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }

.btn-primary {
  background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
  color: var(--dark-bg);
  font-weight: 600;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
}
.btn-outline:hover { background: rgba(0, 212, 255, 0.1); }

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-md { padding: 12px 24px; font-size: 1rem; }
.btn-lg { padding: 16px 32px; font-size: 1.125rem; }

.btn-pulse { animation: pulseGlow 3s ease-in-out infinite; }

/* ============= HERO SECTION ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 16px 128px;
  z-index: 5;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 768px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
  cursor: none;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* ============= DASHBOARD MOCKUP ============= */
.dashboard-mockup {
  max-width: 1024px;
  margin: 0 auto;
  perspective: 1000px;
}

.dashboard-inner {
  transform: rotateX(8deg) rotateY(-3deg);
  transform-style: preserve-3d;
  animation: float 8s ease-in-out infinite;
  border-radius: 16px;
  padding: 16px;
}

@media (min-width: 768px) { .dashboard-inner { padding: 24px; } }

.window-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  align-items: center;
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.window-bar {
  flex: 1;
  height: 24px;
  border-radius: 8px;
  margin-left: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-card {
  border-radius: 12px;
  padding: 16px;
  cursor: none;
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-2px); }

.stat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
}

.stat-change {
  font-size: 0.875rem;
  color: #4ade80;
  margin-top: 4px;
}

/* ============= SECTIONS ============= */
.section {
  position: relative;
  padding: 96px 16px;
  z-index: 5;
}

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

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ============= FILTER BAR ============= */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .filter-bar { flex-direction: row; justify-content: space-between; }
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 384px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}
.search-input::placeholder { color: var(--text-dim); }
.search-input:focus { border-color: rgba(0, 212, 255, 0.5); }

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  color: var(--text-secondary);
}
.filter-btn:hover { background: rgba(255, 255, 255, 0.1); color: white; }
.filter-btn.active {
  background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
  color: var(--dark-bg);
}

.filter-btn-alt.active {
  background: linear-gradient(to right, var(--neon-purple), var(--neon-cyan));
  color: white;
}

/* ============= CARD GRIDS ============= */
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.grid-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .grid-footer { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-footer { grid-template-columns: repeat(4, 1fr); } }

/* ============= TOOL CARD ============= */
.tool-card {
  border-radius: 16px;
  padding: 24px;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tool-card:hover {
  transform: translateY(-4px) scale(1.02);
}
.tool-card:hover .neon-glow-on-hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(0, 212, 255, 0.15);
}

.tool-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tool-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.tool-card:hover .tool-icon { transform: scale(1.1); }

.tool-info { flex: 1; min-width: 0; }

.tool-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.tool-name {
  font-size: 1.125rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.star-icon { color: #facc15; }

.tool-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============= BOT CARD ============= */
.bot-card {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bot-card:hover { transform: translateY(-8px) scale(1.02); }

.bot-card.popular {
  border: 2px solid rgba(0, 212, 255, 0.5);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
  color: var(--dark-bg);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.bot-category {
  font-size: 0.75rem;
  color: var(--neon-blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bot-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 4px;
}

.bot-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.bot-price {
  margin: 16px 0 24px;
}

.bot-price-value {
  font-size: 2.25rem;
  font-weight: 700;
}

.bot-price-period {
  color: var(--text-muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.feature-check {
  color: var(--neon-blue);
  flex-shrink: 0;
}

/* ============= SERVICE CARD ============= */
.service-card {
  border-radius: 16px;
  padding: 24px;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover { transform: translateY(-4px) scale(1.02); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--neon-blue);
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-blue);
  flex-shrink: 0;
}

/* ============= DASHBOARD PREVIEW ============= */
.dashboard-preview {
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s;
}

@media (min-width: 768px) { .dashboard-preview { padding: 32px; } }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) { .dashboard-grid { grid-template-columns: 2fr 1fr; } }

.chart-container {
  border-radius: 12px;
  padding: 16px;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.chart-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.chart-actions {
  display: flex;
  gap: 8px;
}

.chart-action-btn {
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s;
}
.chart-action-btn:hover { background: rgba(255, 255, 255, 0.1); }

.chart-canvas-wrapper {
  height: 256px;
  position: relative;
}

.activity-feed {
  border-radius: 12px;
  padding: 16px;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 256px;
  overflow-y: auto;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s;
  cursor: none;
}
.activity-item:hover { background: rgba(255, 255, 255, 0.05); }

.activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--neon-blue);
}

.activity-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-time {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Workflow Progress */
.workflow-section {
  border-radius: 12px;
  padding: 16px;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid;
}

.step-completed {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border-color: #22c55e;
}

.step-active {
  background: rgba(0, 212, 255, 0.2);
  color: var(--neon-blue);
  border-color: var(--neon-blue);
  animation: pulseGlow 2s ease-in-out infinite;
}

.step-pending {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

.step-connector {
  width: 48px;
  height: 2px;
  margin: 0 8px;
  margin-bottom: 24px;
}
.step-connector.completed { background: #22c55e; }
.step-connector.pending { background: rgba(255, 255, 255, 0.2); }

/* Active Bots */
.active-bots {
  border-radius: 12px;
  padding: 16px;
}

.active-bot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  cursor: none;
  transition: background 0.3s;
  margin-bottom: 12px;
}
.active-bot-item:last-child { margin-bottom: 0; }
.active-bot-item:hover { background: rgba(255, 255, 255, 0.1); }

.bot-info { display: flex; align-items: center; gap: 12px; }

.bot-icon-small {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseGlow 2s ease-in-out infinite;
}

.status-text {
  font-size: 0.75rem;
  color: #4ade80;
}

/* ============= TESTIMONIAL CARD ============= */
.testimonial-card {
  border-radius: 16px;
  padding: 24px;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.testimonial-card:hover { transform: translateY(-4px) scale(1.02); }

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-bg);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star-filled { color: #facc15; }
.star-empty { color: rgba(255, 255, 255, 0.2); }

.testimonial-content {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============= PRICING CARD ============= */
.pricing-section .container { max-width: 1024px; }

.pricing-card {
  position: relative;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: none;
}
.pricing-card:hover { transform: translateY(-8px) scale(1.02); }

.pricing-card.popular-pricing {
  border: 2px solid rgba(0, 212, 255, 0.5);
}

.pricing-tier-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 4px;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.pricing-amount {
  margin: 24px 0 32px;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-period {
  color: var(--text-muted);
}

.pricing-custom {
  font-size: 1.875rem;
  font-weight: 700;
}

/* ============= FOOTER ============= */
.footer {
  position: relative;
  padding: 64px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-description {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--text-muted);
}
.social-link:hover { background: rgba(255, 255, 255, 0.1); transform: scale(1.1); }

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-muted);
  transition: color 0.3s;
  font-size: 0.875rem;
}
.footer-link:hover { color: white; }

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus { border-color: rgba(0, 212, 255, 0.5); }

.contact-info {
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  text-align: left;
  transition: background 0.3s;
}
.contact-item:hover { background: rgba(255, 255, 255, 0.05); }

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.875rem;
  color: white;
}

.footer-bottom {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* ============= MODALS ============= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 512px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-content { transform: scale(1) translateY(0); }

.modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  color: var(--text-muted);
}
.modal-close:hover { background: rgba(255, 255, 255, 0.1); }

.modal-body {
  padding: 24px;
}

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: rgba(0, 212, 255, 0.5); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }

.form-select {
  padding-left: 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form-select option { background: var(--dark-bg); }

.form-textarea {
  padding-left: 40px;
  resize: none;
  min-height: 100px;
}

.form-textarea-icon {
  position: absolute;
  left: 12px;
  top: 12px;
  color: var(--text-dim);
  pointer-events: none;
}

.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
  color: var(--dark-bg);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover { transform: scale(1.02); }
.form-submit:active { transform: scale(0.98); }
.form-submit:disabled { opacity: 0.5; pointer-events: none; }

.modal-success {
  padding: 32px;
  text-align: center;
}

.success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: scaleIn 0.5s ease-out;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.success-text {
  color: var(--text-muted);
}

/* ============= TOOL DETAIL MODAL ============= */
.tool-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
}

.tool-detail-actions {
  display: flex;
  gap: 12px;
}

.tool-detail-actions .btn { flex: 1; padding: 12px; }

/* ============= CHATBOT ============= */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
  animation: chatBounce 2s ease-in-out infinite;
  transition: transform 0.3s;
  color: var(--dark-bg);
}
.chatbot-toggle:hover { transform: scale(1.1); }
.chatbot-toggle.hidden { display: none; }

.chatbot-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
}

.chatbot-window {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 550px;
  max-height: calc(100vh - 100px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.25), 0 0 50px rgba(139, 92, 246, 0.15);
}
.chatbot-window.open { display: flex; animation: scaleIn 0.3s ease-out; }

.chat-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseGlow 2s ease-in-out infinite;
}

.chat-online-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  display: flex;
  gap: 12px;
}
.chat-message.user { flex-direction: row-reverse; }

.chat-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-msg-avatar.assistant {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: var(--dark-bg);
}

.chat-msg-avatar.user-avatar {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.chat-msg-bubble {
  max-width: 75%;
  border-radius: 16px;
  padding: 10px 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.chat-msg-bubble.assistant {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.chat-msg-bubble.user-bubble {
  background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
  color: var(--dark-bg);
}

.chat-msg-time {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 4px;
}

.chat-loading {
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-loading-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: var(--neon-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.quick-questions {
  padding: 0 16px 8px;
}

.quick-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-btn {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  transition: all 0.3s;
}
.quick-btn:hover { border-color: rgba(0, 212, 255, 0.5); color: white; }

.chat-input-area {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: white;
  outline: none;
  font-size: 0.875rem;
  transition: border-color 0.3s;
}
.chat-input::placeholder { color: var(--text-dim); }
.chat-input:focus { border-color: rgba(0, 212, 255, 0.5); }

.chat-send {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  transition: all 0.3s;
  flex-shrink: 0;
}
.chat-send:disabled { opacity: 0.5; }
.chat-send:hover:not(:disabled) { transform: scale(1.05); }

/* ============= NEWSLETTER TOAST ============= */
.toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  z-index: 70;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
}

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

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

/* ============= SVG ICONS (inline) ============= */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 28px; height: 28px; }

/* ============= RESPONSIVE ADJUSTMENTS ============= */
@media (max-width: 767px) {
  .form-row { grid-template-columns: 1fr; }
  .workflow-steps { gap: 4px; }
  .step-connector { width: 24px; }
  .step-name { font-size: 0.625rem; }
  .step-circle { width: 32px; height: 32px; font-size: 0.75rem; }
  .dashboard-inner { transform: rotateX(4deg) rotateY(-1deg); }
}

@media (hover: none) {
  .tool-card:hover, .bot-card:hover, .service-card:hover,
  .testimonial-card:hover, .pricing-card:hover { transform: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  .cursor-inner, .cursor-outer, .cursor-glow { 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;
  }
}
