/* ============================================
   SYNTRIB v2 - Premium AI-Powered SaaS Website
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core Brand Colors - Syntrib Theme v33.0 */
  --primary: #8B5CF6;
  --primary-light: #a78bfa;
  --primary-dark: #6d28d9;
  --accent: #3B82F6;
  --accent-light: #60a5fa;
  --accent-dark: #2563eb;
  --secondary: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Backgrounds */
  --bg-dark: #0f1117;
  --bg-dark-2: #161822;
  --bg-dark-3: #1c1f2e;
  --bg-card: rgba(22, 24, 38, 0.7);
  --bg-card-hover: rgba(30, 33, 50, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: rgba(241, 245, 249, 0.65);
  --text-muted: rgba(241, 245, 249, 0.4);

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(139, 92, 246, 0.25);

  /* Gradients - Simplified, violet-based */
  --gradient-primary: linear-gradient(135deg, #8B5CF6, #a78bfa);
  --gradient-hero: linear-gradient(135deg, #a78bfa 0%, #8B5CF6 100%);
  --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(139, 92, 246, 0.02));
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.08), transparent 40%);

  /* Shadows - Clean premium */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 4px 16px rgba(139, 92, 246, 0.12);
  --shadow-accent-glow: 0 4px 16px rgba(59, 130, 246, 0.1);

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1280px;

  /* Transitions - Snappier */
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.25s ease;
  --transition-spring: 0.35s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* --- Light Theme --- */
[data-theme="light"] {
  --primary: #8B5CF6;
  --primary-light: #a78bfa;
  --primary-dark: #6d28d9;
  --accent: #3B82F6;
  --accent-light: #60a5fa;
  --accent-dark: #2563eb;
  --secondary: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  --bg-dark: #ffffff;
  --bg-dark-2: #f8fafc;
  --bg-dark-3: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.98);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --bg-glass: rgba(0, 0, 0, 0.02);
  --bg-glass-hover: rgba(0, 0, 0, 0.04);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --border: rgba(15, 23, 42, 0.06);
  --border-hover: rgba(15, 23, 42, 0.12);
  --border-accent: rgba(139, 92, 246, 0.15);

  --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.02), transparent);
  --gradient-glow: none;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-accent-glow: 0 4px 16px rgba(0, 0, 0, 0.06);

  --gradient-primary: linear-gradient(135deg, #8B5CF6, #a78bfa);
  --gradient-hero: linear-gradient(135deg, #a78bfa 0%, #8B5CF6 100%);
}

/* Light theme - preloader stays dark for brand impact */
[data-theme="light"] .preloader {
  background: #06060f;
}

/* Navbar stays dark purple in all themes */

[data-theme="light"] .hero-bg-gradient {
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
}

[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .text-gradient {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .text-gradient-hero {
  background: var(--primary);
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navbar link colors handled globally (dark purple navbar in all themes) */

[data-theme="light"] .nav-links.open {
  background: linear-gradient(135deg, #1a0533 0%, #2d1654 50%, #1e0a3c 100%);
}

[data-theme="light"] .form-select option {
  background: #fff;
  color: #0f172a;
}

/* Light theme card depth */
[data-theme="light"] .module-card,
[data-theme="light"] .industry-card,
[data-theme="light"] .about-feature,
[data-theme="light"] .more-module-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .module-card:hover,
[data-theme="light"] .industry-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .module-card.most-popular {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-dashboard {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .ai-demo-container {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .ai-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .contact-form-wrapper {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .how-step-number {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .cta-container {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .stats-section {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .partner-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .footer {
  background: #0a0a0f;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .hero-float-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .metric-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .about-stack-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .btn-outline {
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--primary);
}

[data-theme="light"] .btn-outline:hover {
  background: rgba(139, 92, 246, 0.04);
  border-color: var(--primary);
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-select:focus,
[data-theme="light"] .form-textarea:focus {
  background: #ffffff;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

[data-theme="light"] .map-container iframe {
  filter: grayscale(0.1) brightness(1) contrast(1.05);
}

[data-theme="light"] .map-container:hover iframe {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* --- Theme Toggle Button --- */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.theme-toggle:hover {
  color: #ffffff;
}

.theme-toggle .theme-icon-light,
.theme-toggle .theme-icon-dark {
  display: none;
}

/* Dark mode (default): show sun icon (click to switch to light) */
.theme-toggle .theme-icon-light {
  display: block;
}

/* Light mode: show moon icon (click to switch to dark) */
[data-theme="light"] .theme-toggle .theme-icon-light {
  display: none;
}

[data-theme="light"] .theme-toggle .theme-icon-dark {
  display: block;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

ul { list-style: none; }

/* --- Utility Classes --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-hero {
  background: var(--primary);
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes navbarSilkySweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-accent {
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-popular {
  background: rgba(139, 92, 246, 0.08);
  color: var(--primary);
  border: 1px solid rgba(139, 92, 246, 0.15);
  animation: none;
}

@keyframes popularPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2); }
  50% { box-shadow: 0 0 12px 4px rgba(239, 68, 68, 0.15); }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .badge {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Premium Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #06060f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo-text {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-logo-img {
  height: clamp(80px, 15vw, 140px);
  width: auto;
  mix-blend-mode: lighten;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: preloaderLetterIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.preloader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: preloaderLetterIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-nt {
  letter-spacing: -0.04em;
  position: relative;
}

@keyframes preloaderLetterIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.preloader-line {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.preloader-line-fill {
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.6), transparent);
  animation: preloaderShimmer 1.5s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes preloaderShimmer {
  0% { left: -60%; }
  100% { left: 100%; }
}

.preloader-tagline {
  margin-top: 20px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: #0a0a0f;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: #0a0a0f;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  padding: 0;
}

.navbar::before {
  display: none;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 3px;
}

.nav-logo img {
  height: 62px;
  width: auto;
  border-radius: 0;
  padding: 0;
  mix-blend-mode: lighten;
  transition: all var(--transition-smooth);
}

/* Nav logo uses mix-blend-mode: lighten — no border/shadow needed */

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.btn-primary::before {
  display: none;
}

.btn-primary:hover::before {
  display: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  background: var(--bg-glass-hover);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 16px;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  color: rgba(255, 255, 255, 0.8);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  animation: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

#particles-canvas {
  display: none;
}

/* Hero Headline Block - Full Width */
.hero-headline-block {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 48px;
}

.hero-headline-single {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: none;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Trusted By Banner */
.hero-trusted-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 14px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  animation: fadeInUp 0.8s ease 0.9s both;
  max-width: fit-content;
}

.trusted-banner-logo {
  height: 44px;
  width: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.trusted-banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trusted-banner-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.trusted-banner-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

@media (max-width: 1024px) {
  .hero-headline-single {
    white-space: normal;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-headline-block {
    text-align: center;
  }
  .hero-headline-single {
    text-align: center;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-trusted {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* Hero Visual (Right Side) */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.6s both;
}

.hero-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-dashboard::before {
  display: none;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background: #28c840; }

.dashboard-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.metric-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.metric-value.up { color: rgba(16, 185, 129, 0.85); }
.metric-value.highlight { color: rgba(167, 139, 250, 0.9); }
.metric-value.warn { color: rgba(251, 191, 36, 0.8); }

.metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-change {
  font-size: 0.7rem;
  margin-top: 4px;
  font-weight: 600;
}

.metric-change.positive { color: rgba(16, 185, 129, 0.7); }
.metric-change.negative { color: rgba(248, 113, 113, 0.7); }

.dashboard-chart {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  height: 140px;
  position: relative;
  overflow: hidden;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
  padding-top: 24px;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  transition: height 1s ease;
  position: relative;
}

.chart-bar:nth-child(odd) {
  background: var(--primary-light);
  opacity: 0.7;
}

.chart-bar:nth-child(even) {
  background: var(--accent);
  opacity: 0.5;
}

.chart-label {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Floating notification cards on hero */
.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
  animation: none;
  z-index: 3;
}

.hero-float-card .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-float-card.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-card.card-1 .icon {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent);
}

.hero-float-card.card-2 {
  bottom: 15%;
  right: -30px;
  animation-delay: 2s;
}

.hero-float-card.card-2 .icon {
  background: rgba(239, 68, 68, 0.15);
  color: var(--secondary);
}

.hero-float-card.card-3 {
  bottom: 40%;
  left: -20px;
  animation-delay: 4s;
}

.hero-float-card.card-3 .icon {
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-light);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- (Trusted section removed - merged into partner showcase) --- */

/* --- About / Why Syntrib Section --- */
.about-section {
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-smooth);
}

.about-feature:hover {
  border-color: var(--border-accent);
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-visual {
  position: relative;
}

.about-card-stack {
  position: relative;
  height: 400px;
}

.about-stack-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 320px;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}

.about-stack-card:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 3;
}

.about-stack-card:nth-child(2) {
  top: 40px;
  left: 40px;
  z-index: 2;
  opacity: 0.8;
}

.about-stack-card:nth-child(3) {
  top: 80px;
  left: 80px;
  z-index: 1;
  opacity: 0.6;
}

/* About Insights Grid */
.about-insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}

.about-insight-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.about-insight-wide {
  grid-column: 1 / -1;
}

.about-insight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about-insight-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.about-insight-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
}

.about-insight-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.about-modules-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-module-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition-smooth);
}

.about-module-tag:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .about-insights-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Modules / Products Section --- */
.modules-section {
  background: var(--bg-dark-2);
  position: relative;
}

.modules-section::before {
  display: none;
}

.modules-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.module-tab {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.module-tab:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.module-tab.active {
  background: var(--primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: pointer;
  group: true;
}

.module-card::before {
  display: none;
}

.module-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md);
}

.module-card:hover::before {
  display: none;
}

.module-card-content {
  position: relative;
  z-index: 1;
}

.module-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.module-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  position: relative;
}

.module-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.15;
}

.module-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.module-card > .module-card-content > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.module-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.module-feature-tag {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.module-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.module-card-footer a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.module-card-footer a:hover {
  color: var(--accent);
  gap: 10px;
}

/* Module color themes */
.module-card[data-color="purple"] .module-icon { background: rgba(139, 92, 246, 0.12); color: var(--primary-light); }
.module-card[data-color="green"] .module-icon { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.module-card[data-color="pink"] .module-icon { background: rgba(239, 68, 68, 0.12); color: var(--secondary); }
.module-card[data-color="blue"] .module-icon { background: rgba(59, 130, 246, 0.12); color: var(--info); }
.module-card[data-color="orange"] .module-icon { background: rgba(245, 158, 11, 0.12); color: var(--warning); }
.module-card[data-color="cyan"] .module-icon { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }

/* Most Popular card */
.module-card.most-popular {
  border-color: rgba(139, 92, 246, 0.15);
  background: var(--bg-card);
}

.module-card.most-popular:hover {
  box-shadow: var(--shadow-md);
}

/* --- AI Insights Dashboard Section --- */
.ai-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  display: none;
}

.ai-demo-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ai-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.ai-demo-tabs {
  display: flex;
  gap: 4px;
}

.ai-demo-tab {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.ai-demo-tab:hover {
  color: var(--text-secondary);
}

.ai-demo-tab.active {
  background: var(--primary);
  color: white;
}

.ai-demo-body {
  padding: 28px;
}

.ai-demo-content {
  display: none;
}

.ai-demo-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* AI Grid layout */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ai-grid-full {
  grid-column: 1 / -1;
}

.ai-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.ai-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ai-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-card-title i {
  color: var(--accent);
}

.ai-card-badge {
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* AI insight items */
.ai-insight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  margin-bottom: 4px;
}

.ai-insight-item:hover {
  background: var(--bg-glass-hover);
}

.ai-insight-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ai-insight-rank.gold { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.ai-insight-rank.silver { background: rgba(156, 163, 175, 0.2); color: #9ca3af; }
.ai-insight-rank.bronze { background: rgba(180, 83, 9, 0.2); color: #d97706; }
.ai-insight-rank.default { background: var(--bg-glass); color: var(--text-muted); }

.ai-insight-info {
  flex: 1;
}

.ai-insight-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.ai-insight-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.ai-insight-value {
  text-align: right;
  flex-shrink: 0;
}

.ai-insight-value .number {
  font-size: 0.95rem;
  font-weight: 700;
}

.ai-insight-value .change {
  font-size: 0.7rem;
  display: block;
}

.ai-insight-value .change.up { color: var(--accent); }
.ai-insight-value .change.down { color: var(--secondary); }

/* AI recommendation box */
.ai-recommendation {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 16px;
}

.ai-recommendation-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.ai-recommendation ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-recommendation li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(139, 92, 246, 0.04);
  border-left: 3px solid rgba(139, 92, 246, 0.25);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: border-color 0.2s, background 0.2s;
}

.ai-recommendation li:hover {
  border-left-color: var(--accent);
  background: rgba(139, 92, 246, 0.08);
}

.ai-recommendation li i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.ai-recommendation li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ai-recommendation li strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.83rem;
}

.ai-recommendation li span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  opacity: 0.85;
  line-height: 1.45;
}

/* Progress bars in AI section */
.ai-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-glass);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}

.ai-progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s ease;
}

.ai-progress-fill.purple { background: var(--primary); }
.ai-progress-fill.green { background: var(--accent); }
.ai-progress-fill.pink { background: #64748b; }
.ai-progress-fill.blue { background: #3b82f6; }

/* Peak hours chart */
.peak-hours-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  margin-top: 12px;
}

.peak-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  position: relative;
  transition: height 1s ease;
  cursor: pointer;
}

.peak-bar:hover::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  white-space: nowrap;
  color: var(--text-primary);
  z-index: 10;
}

.peak-bar.low { background: rgba(139, 92, 246, 0.3); }
.peak-bar.medium { background: rgba(139, 92, 246, 0.5); }
.peak-bar.high { background: var(--primary-light); }
.peak-bar.peak { background: var(--accent); }

.peak-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.peak-labels span {
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* Typing effect for AI */
.ai-typing {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
}

.ai-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: typing 1.4s ease infinite;
}

.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* --- How It Works Section --- */
.how-section {
  background: var(--bg-dark-2);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.2;
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--bg-glass);
  border: 2px solid var(--border);
  position: relative;
  z-index: 1;
  transition: all var(--transition-smooth);
}

.how-step:hover .how-step-number {
  background: var(--primary);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.how-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Partner Showcase --- */
.testimonials-section {
  background: var(--bg-dark);
}

.partner-showcase {
  max-width: 800px;
  margin: 0 auto;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.partner-card-glow {
  display: none;
}

.partner-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.partner-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.partner-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.partner-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.partner-quote {
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--primary-light);
}

.partner-quote p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

.partner-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.partner-metric {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: all var(--transition-smooth);
}

.partner-metric:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.partner-metric-value {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.partner-metric-value.accent { color: var(--accent); }
.partner-metric-value.primary { color: var(--primary-light); }

.partner-metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Stats Counter Section --- */
.stats-section {
  background: var(--bg-dark-2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  display: none;
}

@keyframes rotateBG {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.cta-container p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
}

/* --- Contact Form Section --- */
.contact-section {
  background: var(--bg-dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.contact-detail-item h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-detail-item a:hover {
  color: var(--primary-light);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
}

/* --- Footer --- */
.footer {
  background: #0a0a0f;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
}

.footer-column h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-column a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: rgba(16, 185, 129, 0.3);
}

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast.success .toast-icon {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.toast-message {
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
}

/* --- Industries Section --- */
.industries-section {
  background: var(--bg-dark-2);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-smooth);
}

.industry-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-light);
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- More Modules (Contact to Discuss) --- */
.more-modules-section {
  background: var(--bg-dark);
}

.more-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.more-module-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.more-module-item:hover {
  border-color: var(--primary-light);
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
}

.more-module-item i {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 10px;
  display: block;
}

.more-module-item h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.more-module-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.more-modules-cta {
  text-align: center;
}

/* --- Tech Stack --- */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.tech-item:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    display: none;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps::before {
    display: none;
  }

  .partner-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-container {
    padding: 48px 24px;
  }

  .navbar .container {
    padding: 0 24px;
  }

  .more-modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-card {
    padding: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a0533 0%, #2d1654 50%, #1e0a3c 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 998;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 999;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .partner-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .ai-demo-tabs {
    flex-wrap: wrap;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .modules-tabs {
    gap: 4px;
  }

  .module-tab {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  /* Navbar mobile */
  .navbar .container {
    padding: 0 16px;
  }

  .nav-logo img {
    height: 48px;
  }

  .nav-cta .btn-sm {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding-top: 80px;
  }

  .hero-headline-single {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    text-align: center;
  }

  .hero-headline-block {
    text-align: center;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .hero-trusted-banner {
    padding: 10px 16px;
    gap: 12px;
  }

  .trusted-banner-logo {
    height: 36px;
    width: 36px;
  }

  .trusted-banner-title {
    font-size: 0.78rem;
  }

  .trusted-banner-sub {
    font-size: 0.68rem;
  }

  /* About features - CRITICAL: was missing mobile override */
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Module cards mobile */
  .module-card {
    padding: 24px;
  }

  .module-feature-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .more-modules-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* AI Insights mobile */
  .ai-demo-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .ai-demo-tab {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .ai-demo-body {
    padding: 20px 16px;
  }

  .ai-card {
    padding: 16px;
  }

  .ai-insight-item {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 8px;
  }

  /* Partner mobile */
  .partner-card {
    padding: 28px 20px;
  }

  .partner-quote {
    padding-left: 16px;
  }

  .partner-quote p {
    font-size: 0.92rem;
  }

  /* CTA mobile */
  .cta-container {
    padding: 40px 20px;
  }

  .cta-container h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cta-container p {
    font-size: 0.95rem;
  }

  /* Contact mobile */
  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .map-container {
    height: 180px;
  }

  /* General mobile */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .more-modules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .custom-cursor,
  .cursor-dot {
    display: none !important;
  }

  /* Navbar smallest */
  .nav-logo img {
    height: 40px;
  }

  .nav-cta .btn-sm {
    display: none;
  }

  /* Hero smallest */
  .hero-headline-single {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  :root {
    --section-padding: 60px 0;
  }

  /* About feature cards compact */
  .about-feature {
    padding: 16px;
  }

  /* Module cards smallest */
  .module-card {
    padding: 20px;
  }

  .module-card h3 {
    font-size: 1.05rem;
  }

  /* Stats - CRITICAL: stack to 1-col */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  /* How steps smaller */
  .how-step-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  /* Industry cards compact */
  .industry-card {
    padding: 20px;
  }

  .industry-icon {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   PREMIUM MICRO-INTERACTIONS & WOW EFFECTS
   ============================================ */

/* --- Custom Cursor (Disabled) --- */
.custom-cursor {
  display: none !important;
}

.custom-cursor.hover {
  display: none !important;
}

.cursor-dot {
  display: none !important;
}

.custom-cursor.hover + .cursor-dot {
  display: none !important;
}

/* --- Button Shine Effect (Removed) --- */

/* --- Magnetic Button Effect (Neutralized) --- */
.magnetic-btn {
  transform: none !important;
}
.magnetic-btn:hover {
  transform: translateY(-1px) !important;
}

/* --- Card 3D Tilt (Disabled) --- */
.tilt-card {
  transform-style: flat;
  perspective: none;
  transition: transform var(--transition-smooth);
}

.tilt-card .module-card-content {
  transform: none;
}

/* --- Shimmer Effect on Badges (Removed) --- */
.badge-popular::after {
  display: none;
}

/* --- Glowing Border Animation on Cards (Removed) --- */
.module-card::after {
  display: none;
}

.module-card:hover::after {
  display: none;
}

/* --- Stagger Reveal Children --- */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-reveal.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-reveal.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-reveal.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-reveal.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-reveal.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-reveal.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-reveal.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero Ken Burns Background (Disabled) --- */
.hero-bg-gradient {
  animation: none;
}

@keyframes kenBurnsHero {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* --- Floating Decorative Particles (Hidden) --- */
.hero-particle {
  display: none;
}

@keyframes heroParticleFloat {
  0% { opacity: 0; transform: translateY(100px) scale(0.5); }
  20% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-200px) scale(1); }
  80% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-400px) scale(0.3); }
}

/* --- Glowing Rings (Hidden) --- */
.hero-glow-ring {
  display: none;
}

@keyframes ringPulseHero {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.6; }
}

/* --- Hero Corner Decorations (Hidden) --- */
.hero-corner {
  display: none;
}

.hero-corner::before,
.hero-corner::after {
  content: '';
  position: absolute;
  background: var(--primary-light);
}

.hero-corner.top-left { top: 40px; left: 40px; }
.hero-corner.top-left::before { top: 0; left: 0; width: 100%; height: 1px; }
.hero-corner.top-left::after { top: 0; left: 0; width: 1px; height: 100%; }

.hero-corner.top-right { top: 40px; right: 40px; }
.hero-corner.top-right::before { top: 0; right: 0; width: 100%; height: 1px; }
.hero-corner.top-right::after { top: 0; right: 0; width: 1px; height: 100%; }

.hero-corner.bottom-left { bottom: 40px; left: 40px; }
.hero-corner.bottom-left::before { bottom: 0; left: 0; width: 100%; height: 1px; }
.hero-corner.bottom-left::after { bottom: 0; left: 0; width: 1px; height: 100%; }

.hero-corner.bottom-right { bottom: 40px; right: 40px; }
.hero-corner.bottom-right::before { bottom: 0; right: 0; width: 100%; height: 1px; }
.hero-corner.bottom-right::after { bottom: 0; right: 0; width: 1px; height: 100%; }

/* --- Scroll Indicator - Mouse Animation --- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 2s both;
  opacity: 0;
}

.scroll-indicator-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Image Reveal Effect --- */
.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.revealed::after {
  transform: scaleX(0);
}

/* --- Section Divider (removed) --- */

/* --- About Feature Card Enhanced Hover (Removed) --- */
.about-feature::before {
  display: none;
}

.about-feature {
  position: relative;
  overflow: hidden;
}

/* --- How Steps Enhanced --- */
.how-step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all var(--transition-smooth);
}

.how-step:hover .how-step-number::before {
  inset: -8px;
  border-color: rgba(139, 92, 246, 0.2);
}

/* --- Module Card Shine on Hover (Removed) --- */
.module-card .shine-overlay {
  display: none;
}

/* --- Stat Number Glow (Removed) --- */
.stat-number {
  text-shadow: none;
}

/* --- CTA Ambient Glow Orbs (Hidden) --- */
.cta-glow-orb {
  display: none;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* --- Google Map Container --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 32px;
  height: 250px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) brightness(0.8) contrast(1.1);
  transition: filter var(--transition-smooth);
}

.map-container:hover iframe {
  filter: grayscale(0) brightness(1) contrast(1);
}

[data-theme="light"] .map-container iframe {
  filter: grayscale(0.3) brightness(1) contrast(1);
}

[data-theme="light"] .map-container:hover iframe {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* --- Video Ripple Play Button --- */
.video-play-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.video-play-btn::before,
.video-play-btn::after {
  display: none;
}

.video-play-btn::after {
  inset: -16px;
  animation-delay: 0.5s;
  opacity: 0.2;
}

@keyframes videoRipple {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.1; }
}

/* --- Video Section --- */
.video-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.video-showcase .video-wrapper {
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.video-showcase .video-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.video-showcase video {
  width: 100%;
  display: block;
}

/* Video Mode Toggle */
.video-toggle-wrapper {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
}

.video-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.video-toggle-btn:hover {
  color: var(--text-primary);
}

.video-toggle-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
}

.video-toggle-btn.active .video-toggle-duration {
  color: rgba(255, 255, 255, 0.8);
}

.video-toggle-duration {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.7;
}

@media (max-width: 480px) {
  .video-toggle-btn span:not(.video-toggle-duration) {
    display: none;
  }
  .video-toggle-btn {
    padding: 10px 16px;
  }
}

/* --- Partner Card Glow Animation --- */
.partner-glow {
  animation: none;
}

@keyframes partnerGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.05); }
  50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.1); }
}

/* --- Navbar Link Hover - Underline Reveal --- */
.nav-links a::after {
  transform-origin: center;
}

/* --- Enhanced Toast --- */
.toast {
  backdrop-filter: blur(20px);
}

/* --- Badge Dot Glow --- */
.hero-badge .dot {
  box-shadow: 0 0 6px var(--accent);
}

/* Hide custom cursor on mobile and touch */
@media (hover: none), (max-width: 768px) {
  .custom-cursor,
  .cursor-dot {
    display: none !important;
  }
}
