/* ============================================================
   PASHUDHAN AI — Ultra-Premium Light Theme
   Apple.com / Linear.app / Vercel-inspired
   ============================================================ */

/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Palette */
  --bg-base: #FAFBFF;
  --bg-card: #FFFFFF;
  --bg-dark: #1E293B;
  --bg-dark-accent: #0F172A;

  --primary: #6366F1;
  --primary-light: #818CF8;
  --primary-dark: #4F46E5;
  --primary-glow: rgba(99, 102, 241, 0.15);
  --primary-glow-strong: rgba(99, 102, 241, 0.25);

  --secondary: #10B981;
  --secondary-light: #34D399;
  --secondary-dark: #059669;
  --secondary-glow: rgba(16, 185, 129, 0.15);

  --accent: #0EA5E9;
  --accent-light: #38BDF8;
  --accent-dark: #0284C7;
  --accent-glow: rgba(14, 165, 233, 0.15);

  --accent-indigo: #6366F1;
  --accent-indigo-light: #E0E7FF;
  --accent-indigo-gradient: linear-gradient(135deg, #6366F1, #818CF8);
  
  --accent-emerald: #10B981;
  --accent-emerald-light: #D1FAE5;
  --accent-emerald-gradient: linear-gradient(135deg, #10B981, #34D399);

  --accent-sky: #0EA5E9;
  --accent-sky-light: #E0F2FE;
  --accent-sky-gradient: linear-gradient(135deg, #0EA5E9, #38BDF8);


  --text-main: #0F172A;
  --text-secondary: #64748B;
  --text-dim: #94A3B8;
  --text-white: #F8FAFC;

  --border-card: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.08);
  --border-subtle: rgba(0, 0, 0, 0.04);

  --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-glow-indigo: 0 8px 32px rgba(99, 102, 241, 0.18);
  --shadow-glow-emerald: 0 8px 32px rgba(16, 185, 129, 0.18);
  --shadow-glow-sky: 0 8px 32px rgba(14, 165, 233, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1280px;
  --section-py: clamp(80px, 10vw, 140px);
  --section-px: clamp(20px, 5vw, 40px);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* --- Keyframes --- */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--primary-glow);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(99, 102, 241, 0);
  }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) translateX(15px) scale(1.1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-15px) translateX(-10px) scale(0.95);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-40px) translateX(20px) scale(1.05);
    opacity: 0.8;
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

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

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes orbitFloat {
  0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
  50% { transform: translateY(-10px) translateX(-15px) rotate(180deg); }
  75% { transform: translateY(-30px) translateX(5px) rotate(270deg); }
  100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes expandGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes logoGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4), 0 0 20px rgba(99,102,241,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(99,102,241,0), 0 0 40px rgba(99,102,241,0.4); }
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--text-main);
  background-color: var(--bg-base);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--primary-glow-strong);
  color: var(--primary-dark);
}

/* --- Custom Scrollbar (Light) --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-base);
  transition: background 0.3s var(--ease-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 var(--bg-base);
}

/* ============================================================
   1. CURSOR GLOW
   ============================================================ */
#cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.06) 0%,
    rgba(99, 102, 241, 0.02) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s var(--ease-smooth);
  will-change: transform;
  mix-blend-mode: normal;
}

/* ============================================================
   2. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--section-px);
  transition: all 0.5s var(--ease-out-expo);
  /* Always visible frosted glass — even at top of page */
  background: rgba(250, 251, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-card);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 12px var(--section-px);
  background: rgba(250, 251, 255, 0.97);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid #6366F1;
  box-shadow: 0 0 0 0 rgba(99,102,241,0.4), 0 0 18px rgba(99,102,241,0.25);
  padding: 3px;
  background: #fff;
  transition: all 0.4s var(--ease-spring);
  animation: logoGlowPulse 3s ease-in-out infinite;
}

.logo:hover img {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.3), 0 0 30px rgba(99,102,241,0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.3s var(--ease-smooth);
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-pill);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
  letter-spacing: -0.01em;
  border: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99,102,241,0.55);
  background: linear-gradient(135deg, #818CF8, #6366F1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   3. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px var(--section-px) 80px;
  overflow: hidden;
  background: var(--bg-base);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  filter: saturate(0.8);
}

/* Animated background particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

.particle:nth-child(1) {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  top: 10%; left: 5%;
  animation-duration: 18s;
  animation-delay: 0s;
  opacity: 0.7;
}
.particle:nth-child(2) {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, transparent 70%);
  top: 60%; left: 80%;
  animation-duration: 22s;
  animation-delay: -5s;
  opacity: 0.6;
}
.particle:nth-child(3) {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  top: 30%; left: 70%;
  animation-duration: 16s;
  animation-delay: -8s;
  opacity: 0.5;
}
.particle:nth-child(4) {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  top: 80%; left: 20%;
  animation-duration: 14s;
  animation-delay: -3s;
  opacity: 0.8;
}
.particle:nth-child(5) {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  top: 20%; left: 40%;
  animation-duration: 25s;
  animation-delay: -12s;
  opacity: 0.5;
}
.particle:nth-child(6) {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(14,165,233,0.10) 0%, transparent 70%);
  top: 70%; left: 55%;
  animation-duration: 20s;
  animation-delay: -7s;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeInUp 1s var(--ease-out-expo) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  animation: badgePulse 3s ease-in-out infinite;
  transition: transform 0.3s var(--ease-spring);
}

.hero-badge:hover {
  transform: scale(1.04);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent) 30%,
    var(--secondary) 60%,
    var(--primary) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 44px;
}

.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 20px var(--primary-glow);
  letter-spacing: -0.01em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-15deg);
  transition: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--primary-glow-strong);
}

.btn-primary:hover::before {
  animation: shineSweep 0.8s ease forwards;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  letter-spacing: -0.01em;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-medium);
}

/* ============================================================
   4. STATS BAR
   ============================================================ */
.stats-bar {
  position: relative;
  padding: 60px var(--section-px);
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 8px 0;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================================
   5. PRODUCTS OVERVIEW
   ============================================================ */
.products-overview {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-base);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}

.product-card.card-indigo:hover {
  box-shadow: var(--shadow-glow-indigo);
}

.product-card.card-emerald:hover {
  box-shadow: var(--shadow-glow-emerald);
}

.product-card.card-sky:hover {
  box-shadow: var(--shadow-glow-sky);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-spring);
}

.product-card:hover .product-icon {
  transform: scale(1.08) rotate(-3deg);
}

.card-indigo .product-icon {
  background: var(--primary-glow);
  color: var(--primary);
}

.card-emerald .product-icon {
  background: var(--secondary-glow);
  color: var(--secondary);
}

.card-sky .product-icon {
  background: var(--accent-glow);
  color: var(--accent);
}

.product-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.product-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s var(--ease-out-expo);
  margin-bottom: 20px;
}

.card-emerald .product-link {
  color: var(--secondary);
}

.card-sky .product-link {
  color: var(--accent);
}

.product-link:hover {
  gap: 10px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags span {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-base);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-smooth);
}

.product-card:hover .product-tags span {
  border-color: var(--border-hover);
}

/* ============================================================
   6. PRODUCT DETAIL
   ============================================================ */
.product-detail {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-base);
}

.product-detail-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.product-detail-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.product-detail-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.detail-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  background: var(--primary-glow);
  color: var(--primary);
}

.feature-category {
  max-width: var(--container-max);
  margin: 0 auto 56px;
}

.feature-category h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
  letter-spacing: -0.01em;
}

.nutri-section .feature-category h3 {
  border-left-color: var(--secondary);
}

.vision-section .feature-category h3 {
  border-left-color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.nutri-section .feature-card::after {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.vision-section .feature-card::after {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-hover);
}

.feature-card .icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover .icon {
  transform: scale(1.12);
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   7. PRICING
   ============================================================ */
.pricing {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-card);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: var(--shadow-glow-indigo);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.22);
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pricing-subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  padding: 5px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-glow);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.price {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0;
}

.features-list {
  text-align: left;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  background: var(--secondary-glow);
  border-radius: 50%;
  margin-top: 2px;
}

.btn-price {
  display: block;
  width: 100%;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-base);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  letter-spacing: -0.01em;
}

.btn-price:hover {
  background: var(--bg-card);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.btn-featured {
  display: block;
  width: 100%;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 16px var(--primary-glow);
  letter-spacing: -0.01em;
}

.btn-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow-strong);
}

/* ============================================================
   8. NUTRI PRICING
   ============================================================ */
.nutri-pricing {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-base);
}

.nutri-pricing .pricing-card.featured {
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow-emerald);
}

.nutri-pricing .pricing-card.featured:hover {
  box-shadow: 0 12px 48px rgba(16, 185, 129, 0.22);
}

.nutri-pricing .badge {
  color: var(--secondary);
  background: var(--secondary-glow);
}

.nutri-pricing .btn-featured {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  box-shadow: 0 4px 16px var(--secondary-glow);
}

.nutri-pricing .btn-featured:hover {
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.3);
}

/* ============================================================
   9. VISION
   ============================================================ */
.vision {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-card);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.vision-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-hover);
}

.card-number {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-base);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.06em;
  transition: color 0.4s var(--ease-smooth);
}

.vision-card:hover .card-number {
  color: var(--primary-glow);
}

.vision-card h4 {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.vision-card p {
  position: relative;
  z-index: 1;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   10. TEAM
   ============================================================ */
.team {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-base);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-hover);
}

.team-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--bg-base);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s var(--ease-spring);
}

.team-card:hover .team-img {
  transform: scale(1.06);
}

.team-img-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  border: 3px solid var(--bg-base);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s var(--ease-spring);
}

.team-card:hover .team-img-placeholder {
  transform: scale(1.06);
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-card .role {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
}

.edu-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-base);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.contact-info a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s var(--ease-smooth);
}

.contact-info a:hover {
  color: var(--primary-dark);
}

/* ============================================================
   11. DOWNLOAD
   ============================================================ */
.download {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-card);
  text-align: center;
}

.download-content {
  max-width: 640px;
  margin: 0 auto;
}

.download-content h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.download-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge a,
.store-badge img {
  height: 52px;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
}

.store-badge a:hover,
.store-badge img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* ============================================================
   12. FOOTER
   ============================================================ */
footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 60px var(--section-px) 32px;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: #CBD5E1;
  transition: all 0.3s var(--ease-smooth);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease-out-expo);
  white-space: nowrap;
}

.social-links a svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}

.social-links a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.social-links a:hover svg {
  transform: scale(1.15);
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.copyright a {
  color: var(--primary-light);
  font-weight: 500;
  transition: color 0.3s var(--ease-smooth);
}

.copyright a:hover {
  color: #fff;
}

/* ============================================================
   13. SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children > *:nth-child(7) { transition-delay: 480ms; }
.stagger-children > *:nth-child(8) { transition-delay: 560ms; }
.stagger-children > *:nth-child(9) { transition-delay: 640ms; }
.stagger-children > *:nth-child(10) { transition-delay: 720ms; }
.stagger-children > *:nth-child(11) { transition-delay: 800ms; }
.stagger-children > *:nth-child(12) { transition-delay: 880ms; }

/* ============================================================
   14. SECTION / CONTAINER / UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-divider {
  width: 80px;
  height: 3px;
  margin: 0 auto 40px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   15. LEGAL PAGE
   ============================================================ */
.legal-page {
  padding: 140px var(--section-px) var(--section-py);
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-card);
}

.legal-page h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-page p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-page ol li {
  list-style: decimal;
}

.legal-page a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease-smooth);
}

.legal-page a:hover {
  color: var(--primary-dark);
}

.legal-page strong {
  font-weight: 600;
  color: var(--text-main);
}

/* ============================================================
   16. RESPONSIVE
   ============================================================ */

/* --- Tablet / Medium screens --- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  #cursor-glow {
    display: none;
  }

  /* Navbar mobile menu */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 80px 40px 40px;
    background: rgba(250, 251, 255, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-left: 1px solid var(--border-card);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.1);
    transition: right 0.5s var(--ease-out-expo);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding: 120px var(--section-px) 60px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Grids to single column */
  .products-grid,
  .pricing-grid,
  .feature-grid,
  .vision-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

/* --- Small phones --- */
@media (max-width: 480px) {
  :root {
    --section-py: 48px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .product-card,
  .pricing-card,
  .feature-card,
  .vision-card,
  .team-card {
    padding: 24px 20px;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .price {
    font-size: 2rem;
  }

  .card-number {
    font-size: 5rem;
  }

  .legal-page {
    padding: 120px 20px 48px;
  }

  .nav-links {
    width: 100vw;
  }

  .store-badge a,
  .store-badge img {
    height: 44px;
  }
}

/* --- Preference: Reduce motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* --- Print --- */
@media print {
  .navbar,
  #cursor-glow,
  .hamburger,
  .hero-bg-image {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }
}


/* === NEW PRODUCT SLIDES === */

/* NEW CLASS CONTRACT FOR PRODUCTS */

.product-slide {
  padding: 100px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.product-slide:nth-child(even) {
  background-color: var(--bg-secondary);
}

.product-slide .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: flex-start;
}

/* Product Slide Header (Left Side) */
.product-slide-header {
  position: sticky;
  top: 120px;
}

.product-slide-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  background-color: #fff;
  padding: 12px;
  border: 1px solid var(--border-light);
}

.product-slide-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-slide-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.store-badge-compact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #18181b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.store-badge-compact:hover {
  background: #27272a;
}

.store-badge-compact svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Product Slide Content (Right Side) */
.product-slide-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.slide-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 8px;
  display: inline-block;
}

/* Pills */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--border-light);
  color: var(--text-secondary);
}

/* Accent Indigo */
.slide-indigo .pill {
  background-color: var(--accent-indigo-light);
  color: var(--accent-indigo);
}

.slide-indigo .compact-price-card.featured {
  border-color: var(--accent-indigo);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.15);
}

.slide-indigo .compact-price-card.featured .price {
  background: var(--accent-indigo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-indigo .benefit-list li::before {
  border-left-color: var(--accent-indigo);
}

/* Accent Emerald */
.slide-emerald .pill {
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
}

.slide-emerald .compact-price-card.featured {
  border-color: var(--accent-emerald);
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.15);
}

.slide-emerald .compact-price-card.featured .price {
  background: var(--accent-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-emerald .benefit-list li::before {
  border-left-color: var(--accent-emerald);
}

/* Accent Sky */
.slide-sky .pill {
  background-color: var(--accent-sky-light);
  color: var(--accent-sky);
}

.slide-sky .compact-price-card.featured {
  border-color: var(--accent-sky);
  box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.15);
}

.slide-sky .compact-price-card.featured .price {
  background: var(--accent-sky-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-sky .benefit-list li::before {
  border-left-color: var(--accent-sky);
}

/* Benefits List */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  height: 12px;
  width: 0;
  border-radius: 2px;
  border-left: 3px solid var(--text-tertiary);
}

/* Pricing Grid */
.compact-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.compact-price-card {
  background-color: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.compact-price-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.compact-price-card .price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.compact-price-card .price-period {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.compact-price-card.featured {
  border-width: 2px;
  position: relative;
}

/* Responsive Product Slide */
@media (max-width: 992px) {
  .product-slide .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-slide-header {
    position: static;
    text-align: center;
  }
  
  .product-slide-logo {
    margin: 0 auto 24px;
  }
  
  .compact-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
/* --- Product Slide Enhancements --- */
.product-slide {
  position: relative;
  overflow: hidden;
}

.product-slide::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  top: -150px;
  right: -150px;
}

.slide-indigo::before { background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%); }
.slide-emerald::before { background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%); }
.slide-sky::before { background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%); }

.product-slide .container {
  position: relative;
  z-index: 2;
}

.pill {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.compact-price-card {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
}
/* --- Dynamic Brand Card (Left Side) --- */
.dynamic-brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.dynamic-brand-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide-indigo .dynamic-brand-card::after { background: linear-gradient(90deg, var(--accent-indigo), var(--accent-indigo-light)); opacity: 1; }
.slide-emerald .dynamic-brand-card::after { background: linear-gradient(90deg, var(--accent-emerald), var(--accent-emerald-light)); opacity: 1; }
.slide-sky .dynamic-brand-card::after { background: linear-gradient(90deg, var(--accent-sky), var(--accent-sky-light)); opacity: 1; }

.dynamic-brand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
  border-color: var(--border-hover);
}

.dynamic-icon-wrapper {
  transition: transform 0.5s var(--ease-spring);
}

.dynamic-brand-card:hover .dynamic-icon-wrapper {
  transform: scale(1.1) rotate(-3deg);
}

/* --- Benefit Cards (Right Side) --- */
.benefit-card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.4s var(--ease-out-expo);
}

.benefit-card:hover {
  transform: translateX(8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.benefit-card .b-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.4s var(--ease-spring);
}

.benefit-card:hover .b-icon {
  transform: scale(1.15);
}

.benefit-card .b-content {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefit-card .b-content strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
/* --- Dynamic 3D Card Enhancements --- */
.dynamic-brand-card {
  transform-style: preserve-3d;
  perspective: 1500px;
}

.dynamic-brand-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: -1;
  border-radius: calc(var(--radius-xl) + 2px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide-indigo .dynamic-brand-card::after { background: linear-gradient(135deg, var(--accent-indigo), transparent, var(--accent-indigo)); }
.slide-emerald .dynamic-brand-card::after { background: linear-gradient(135deg, var(--accent-emerald), transparent, var(--accent-emerald)); }
.slide-sky .dynamic-brand-card::after { background: linear-gradient(135deg, var(--accent-sky), transparent, var(--accent-sky)); }

.dynamic-brand-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.dynamic-brand-card:hover::after {
  opacity: 1;
}

.slide-indigo .dynamic-brand-card:hover { box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25); }
.slide-emerald .dynamic-brand-card:hover { box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25); }
.slide-sky .dynamic-brand-card:hover { box-shadow: 0 30px 60px rgba(14, 165, 233, 0.25); }

/* --- Features 3D Cards Enhancements --- */
.benefit-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slide-indigo .benefit-card::before { background: linear-gradient(135deg, var(--accent-indigo), transparent); }
.slide-emerald .benefit-card::before { background: linear-gradient(135deg, var(--accent-emerald), transparent); }
.slide-sky .benefit-card::before { background: linear-gradient(135deg, var(--accent-sky), transparent); }

.benefit-card:hover {
  transform: translateX(8px) rotateX(2deg) rotateY(-2deg);
  border-color: transparent;
}

.benefit-card:hover::before {
  opacity: 1;
}

.slide-indigo .benefit-card:hover { box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15); }
.slide-emerald .benefit-card:hover { box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15); }
.slide-sky .benefit-card:hover { box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15); }

/* ============================================================
   GLOBAL DOT PARTICLE CANVAS
   ============================================================ */
#dot-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2;   /* above section backgrounds, below all content */
  opacity: 0.18;  /* subtle — visible but never obscures text */
}

/* ── All page content sits above the dot canvas ── */
.navbar,
.hero-content,
.hero-particles,
.stats-bar,
.stats-grid,
.products-overview .container,
.products-grid,
.product-card,
.product-slide .container,
.product-slide-header,
.product-slide-content,
.benefit-card,
.benefit-card-grid,
.feature-card,
.feature-grid,
.pricing-card,
.pricing-grid,
.compact-pricing-grid,
.compact-price-card,
.vision-dark .container,
.roadmap-cards-grid,
.roadmap-card,
.team-grid,
.team-card,
.download-content,
footer,
.section-header,
.section-badge,
.slide-block {
  position: relative;
  z-index: 3;
}

/* ============================================================
   FUTURE VISION DARK SECTION
   ============================================================ */
.vision-dark {
  position: relative;
  overflow: hidden;
  padding: 120px 40px;
  background: linear-gradient(135deg, #0D1117 0%, #0F172A 50%, #1A1035 100%);
}

.vision-dark-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* Animated orbs */
.vision-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: expandGlow 8s ease-in-out infinite;
}

.vision-orb-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  animation-delay: 0s;
}

.vision-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(16,185,129,0.14) 0%, transparent 70%);
  animation-delay: -3s;
}

.vision-orb-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 55%;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  animation-delay: -6s;
}

/* ============================================================
   ROADMAP CARDS
   ============================================================ */
@keyframes roadmapGlow {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes progressShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.roadmap-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.roadmap-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 28px;
  overflow: hidden;
  cursor: default;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  perspective: 1200px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.roadmap-card:hover {
  transform: translateY(-12px) rotateX(3deg) rotateY(-3deg);
  background: rgba(255,255,255,0.07);
}

/* Glow behind card */
.roadmap-card-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.roadmap-card:hover .roadmap-card-glow {
  opacity: 1;
}

/* Color variants */
.roadmap-card-indigo {
  border-color: rgba(99,102,241,0.25);
}
.roadmap-card-indigo:hover {
  border-color: rgba(99,102,241,0.6);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.4), 0 30px 60px rgba(99,102,241,0.3), inset 0 1px 0 rgba(99,102,241,0.2);
}
.roadmap-card-indigo .roadmap-card-glow {
  background: #6366F1;
}
.roadmap-card-indigo .roadmap-phase { color: #818CF8; }
.roadmap-card-indigo .roadmap-title { color: #C7D2FE; }
.roadmap-card-indigo .roadmap-tags span {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.3);
  color: #A5B4FC;
}

.roadmap-card-emerald {
  border-color: rgba(16,185,129,0.25);
}
.roadmap-card-emerald:hover {
  border-color: rgba(16,185,129,0.6);
  box-shadow: 0 0 0 1px rgba(16,185,129,0.4), 0 30px 60px rgba(16,185,129,0.3), inset 0 1px 0 rgba(16,185,129,0.2);
}
.roadmap-card-emerald .roadmap-card-glow {
  background: #10B981;
}
.roadmap-card-emerald .roadmap-phase { color: #34D399; }
.roadmap-card-emerald .roadmap-title { color: #A7F3D0; }
.roadmap-card-emerald .roadmap-tags span {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
  color: #6EE7B7;
}

.roadmap-card-sky {
  border-color: rgba(14,165,233,0.25);
}
.roadmap-card-sky:hover {
  border-color: rgba(14,165,233,0.6);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.4), 0 30px 60px rgba(14,165,233,0.3), inset 0 1px 0 rgba(14,165,233,0.2);
}
.roadmap-card-sky .roadmap-card-glow {
  background: #0EA5E9;
}
.roadmap-card-sky .roadmap-phase { color: #38BDF8; }
.roadmap-card-sky .roadmap-title { color: #BAE6FD; }
.roadmap-card-sky .roadmap-tags span {
  background: rgba(14,165,233,0.15);
  border-color: rgba(14,165,233,0.3);
  color: #7DD3FC;
}

.roadmap-phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.roadmap-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.roadmap-card:hover .roadmap-icon {
  transform: scale(1.2) rotate(-5deg);
}

.roadmap-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.roadmap-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.75;
  margin-bottom: 24px;
}

.roadmap-progress {
  margin-bottom: 20px;
}

.roadmap-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roadmap-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.roadmap-progress-fill {
  height: 100%;
  border-radius: 100px;
  background-size: 200% auto;
  animation: progressShimmer 3s linear infinite;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.roadmap-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.roadmap-tags span:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .roadmap-cards-grid {
    grid-template-columns: 1fr;
  }
}
