/* ============================================
   ViLG Electronics — Ultra Premium 3D Edition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --cyan: #00e5ff;
  --blue: #0d6efd;
  --magenta: #ff00cc;
  --gold: #ffd700;
  --dark: #030308;
  --dark-2: #0a0a15;
  --dark-3: #10101f;
  --dark-4: #15152a;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.07);
  --border: rgba(0,229,255,0.15);
  --border-bright: rgba(0,229,255,0.4);
  --text: #e8eaf6;
  --text-muted: #7986cb;
  --glow-cyan: 0 0 40px rgba(0,229,255,0.3);
  --glow-blue: 0 0 40px rgba(13,110,253,0.3);
  --radius: 20px;
  --radius-lg: 30px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================
   NOISE GRAIN OVERLAY
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 99998;
  opacity: 0.4;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  width: 14px;
  height: 14px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  left: 0;
  top: 0;
  margin-left: -7px;
  margin-top: -7px;
  mix-blend-mode: screen;
  transition: transform 0.12s ease, opacity 0.2s;
  box-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0,229,255,0.4);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0,229,255,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  left: 0;
  top: 0;
  margin-left: -20px;
  margin-top: -20px;
  transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor.hover {
  transform: scale(0);
  opacity: 0;
}

.cursor-ring.hover {
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  border-color: var(--cyan);
  background: rgba(0,229,255,0.06);
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--magenta));
  z-index: 10001;
  transition: width 0.08s linear;
  box-shadow: 0 0 10px var(--cyan);
}

/* ============================================
   HEADER
   ============================================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 75px;
  background: rgba(3,3,8,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, box-shadow 0.4s;
}

header.scrolled {
  background: rgba(3,3,8,0.95);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,229,255,0.5));
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--cyan), var(--blue) 50%, var(--magenta));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShimmer 4s linear infinite;
  letter-spacing: -0.5px;
}

@keyframes logoShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
}

nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(13,110,253,0.15), rgba(0,229,255,0.1));
  border: 1px solid transparent;
  opacity: 0;
  transition: opacity 0.3s;
}

nav a:hover {
  color: white;
}

nav a:hover::before {
  opacity: 1;
  border-color: var(--border-bright);
}

/* ============================================
   HAMBURGER
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3,3,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding: 16px 50px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: all 0.3s;
  transform: translateY(20px);
  opacity: 0;
}

.nav-overlay.active a {
  transform: translateY(0);
  opacity: 1;
}

.nav-overlay.active a:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.active a:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.active a:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.active a:nth-child(4) { transition-delay: 0.2s; }

.nav-overlay a:hover {
  background: linear-gradient(135deg, rgba(13,110,253,0.3), rgba(0,229,255,0.15));
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 20s linear infinite;
-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes gridPan {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

/* Orbs */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,229,255,0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255,0,204,0.10) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(13,110,253,0.12) 0%, transparent 50%);
  animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(0,229,255,0); }
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 40%, var(--blue) 70%, var(--magenta) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGradient 6s linear infinite;
}

@keyframes heroGradient {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 0.2px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating shapes */
.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,229,255,0.08), transparent 70%);
  top: 10%;
  left: 5%;
  animation: float1 12s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,204,0.08), transparent 70%);
  top: 40%;
  right: 8%;
  animation: float2 15s ease-in-out infinite;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(13,110,253,0.12), transparent 70%);
  bottom: 20%;
  left: 25%;
  animation: float1 10s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-40px) translateX(20px); }
  66% { transform: translateY(20px) translateX(-15px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  padding: 15px 35px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  box-shadow: 0 8px 30px rgba(13,110,253,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before { left: 100%; }

.btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 45px rgba(0,229,255,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cyan);
  padding: 14px 34px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 1.5px solid var(--border-bright);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(0,229,255,0.08));
  opacity: 0;
  transition: 0.3s;
}

.btn-outline:hover::before { opacity: 1; }
.btn-outline:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-tag {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  vertical-align: middle;
  margin-right: 10px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.section-title span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 120px 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13,110,253,0.06), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.features-center {
  text-align: center;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,229,255,0.1), transparent 70%);
  transform: translateX(-50%);
  transition: bottom 0.5s;
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { bottom: -30px; }

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--border-bright);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), var(--glow-cyan);
  background: var(--surface-2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0,229,255,0.3));
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

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

/* ============================================
   PRODUCTS HOME SECTION
   ============================================ */
.products-home {
  padding: 120px 60px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.products-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0,229,255,0.05), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,0,204,0.04), transparent 50%);
}

.products-home h2 {
  font-family: 'Outfit', sans-serif;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.product-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  perspective: 1200px;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 240px;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), transparent);
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--magenta));
  transform: scaleX(0);
  transition: transform 0.4s;
}

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

.card:hover {
  transform: translateY(-16px) rotateX(3deg) rotateY(-3deg) translateZ(10px);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 40px rgba(0,229,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: var(--border-bright);
}

.card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.card:hover img {
  transform: scale(1.12) translateZ(20px) translateY(-5px);
  filter: drop-shadow(0 20px 30px rgba(0,229,255,0.3));
}

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   BULB SECTION
   ============================================ */
.bulb-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.bulb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,200,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.8s;
}

.bulb-section.active::before { opacity: 1; }

.bulb-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 50px;
}

.bulb-container {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  cursor: pointer;
}

.bulb-container:hover {
  transform: rotateY(12deg) rotateX(8deg) scale(1.05);
  transition: transform 0.4s ease;
}

.bulb-container img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: filter 0.5s;
}

#bulbOn {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s, filter 0.5s;
}

#bulbOn.light-on {
  opacity: 1 !important;
  filter: drop-shadow(0 0 40px rgba(255,200,0,0.9)) drop-shadow(0 0 80px rgba(255,180,0,0.5));
  animation: glowBulb 2s ease-in-out infinite alternate;
}

.bulb-hidden { opacity: 0; }

@keyframes glowBulb {
  from { filter: drop-shadow(0 0 30px rgba(255,200,0,0.7)) drop-shadow(0 0 60px rgba(255,180,0,0.4)); }
  to { filter: drop-shadow(0 0 60px rgba(255,220,0,1)) drop-shadow(0 0 120px rgba(255,200,0,0.6)); }
}

.bulb-section p {
  margin-top: 25px;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ============================================
   TV SECTION
   ============================================ */
.tv-section {
  padding: 100px 40px;
  text-align: center;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.tv-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 50px;
}

.tv-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.5s ease;
}

.tv-container::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--magenta), var(--blue));
  background-size: 400% 400%;
  border-radius: 25px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0.6;
}

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

.tv-container:hover {
  transform: perspective(1000px) rotateX(4deg) scale(1.01);
}

.tv-container video,
.tv-container .video-placeholder {
  width: 100%;
  border-radius: 22px;
  display: block;
  background: var(--dark-3);
}

.tv-container video {
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about {
  padding: 120px 60px 80px;
  max-width: 980px;
  margin: 0 auto;
  background: transparent;
  min-height: 100vh;
  position: relative;
}

body:has(.about) {
  background: var(--dark);
}

.about h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: -1px;
}

.about h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 60px;
  margin-bottom: 24px;
  position: relative;
  padding-left: 18px;
}

.about h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 4px;
}

.about p {
  line-height: 1.85;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.about-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.about-content:hover {
  border-color: var(--border-bright);
  box-shadow: var(--glow-cyan);
}

.highlight {
  background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(13,110,253,0.06));
  border: 1px solid rgba(0,229,255,0.2);
  border-left: 4px solid var(--cyan);
  padding: 24px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin: 20px 0;
}

.vision-box {
  background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(13,110,253,0.06));
  border: 1px solid rgba(0,229,255,0.2);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
}

.vision-box p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.mission-list {
  list-style: none;
  padding: 0;
}

.mission-list li {
  padding: 22px 24px;
  margin: 12px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-left: 4px solid var(--cyan);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.mission-list li:hover {
  transform: translateX(8px);
  border-left-color: var(--magenta);
  background: var(--surface-2);
}

.mission-list li span {
  font-size: 1.4rem;
  margin-right: 12px;
}

.mission-list li strong { color: var(--cyan); }

.product-list {
  list-style: none;
  padding: 0;
}

.product-list li {
  padding: 16px 20px;
  margin: 10px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--blue);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.3s;
}

.product-list li:hover {
  background: var(--surface-2);
  border-left-color: var(--cyan);
  transform: translateX(5px);
}

.product-list li span { margin-right: 10px; }

.cta-section {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(0,229,255,0.05));
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.15;
}

.cta-section h2 {
  color: var(--cyan);
  margin-top: 0;
  padding-left: 0;
}

.cta-section h2::before { display: none; }
.cta-section > p { font-size: 1rem; }

.contact-details {
  margin: 30px 0;
  padding: 24px;
  background: rgba(0,229,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-details p {
  margin: 10px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.contact-details strong { color: var(--cyan); }

.tagline {
  text-align: center;
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.8;
}

.tagline-bottom {
  text-align: center;
  font-size: 1.1rem;
  color: var(--cyan);
  margin-top: 30px;
  opacity: 0.8;
}

.social-section {
  margin-top: 60px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.social-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 15px;
}

.social-section p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.social-section a { color: var(--cyan); text-decoration: none; }
.social-section a:hover { text-decoration: underline; }

/* About features grid */
.about .features-grid {
  margin-top: 30px;
}

.about .feature-card {
  text-align: left;
  padding: 26px;
}

.about .feature-icon { font-size: 1.8rem; }
.about .feature-card h3 { font-size: 1.1rem; }
.about .feature-card p { font-size: 0.85rem; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products {
  padding: 130px 50px 80px;
  text-align: center;
  background: var(--dark);
  min-height: 100vh;
}

.products h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.product-grid-full {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.175,0.885,0.32,1.275);
  position: relative;
  width: 280px;
  text-align: left;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
  pointer-events: none;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

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

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,229,255,0.12);
  border-color: var(--border-bright);
}

.product-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: linear-gradient(180deg, var(--dark-4) 0%, var(--dark-3) 100%);
  padding: 20px;
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-info {
  padding: 22px;
}

.product-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 14px;
}

.btn-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  border: none;
  cursor: none;
}

.btn-small:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,229,255,0.35);
}

/* Product Details */
.product-details {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3,3,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  overflow-y: auto;
  padding: 40px 20px;
}

.details-content {
  background: var(--dark-3);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  animation: modalPop 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}

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

.close-details {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.5rem;
  cursor: none;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.close-details:hover {
  color: white;
  transform: rotate(90deg);
}

.details-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  padding-right: 40px;
}

.product-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.details-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.details-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 25px;
  margin-bottom: 15px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 10px 16px;
  margin: 8px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.features-list li:hover {
  background: var(--surface-2);
  border-color: var(--border-bright);
}

.contact-info-box {
  background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(13,110,253,0.06));
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 14px;
  padding: 20px;
  margin: 20px 0;
}

.contact-info-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 6px 0;
}

.contact-info-box a { color: var(--cyan); text-decoration: none; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 130px 60px 80px;
  background: var(--dark);
  min-height: 100vh;
}

.contact-container {
  max-width: 920px;
  margin: 0 auto;
}

.contact-page h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -1px;
}

.contact-page h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--glow-cyan);
}

.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.contact-card p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-card .contact-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.text-muted { color: var(--text-muted); }
.margin-top-sm { margin-top: 15px; }
.margin-top-md { margin-top: 24px; }
.contact-details-lg { margin-top: 20px; }

.map-container {
  margin: 20px 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-bright);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 400px;
  display: block;
}

.map-link {
  color: var(--cyan);
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: opacity 0.2s;
  font-size: 0.9rem;
}

.map-link:hover { opacity: 0.8; text-decoration: underline; }

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--cyan);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.88rem;
  font-weight: 500;
}

.social-link:hover {
  background: var(--surface-2);
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

.social-link img {
  height: 18px;
  width: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.contact-form input,
.contact-form textarea,
input, textarea {
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus,
input:focus, textarea:focus {
  border-color: var(--border-bright);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08), var(--glow-cyan);
}

input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact-form textarea, textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button, button[type="submit"] {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  border: none;
  border-radius: 100px;
  cursor: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(13,110,253,0.35);
  align-self: flex-start;
}

.contact-form button:hover, button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(0,229,255,0.4);
}

/* Marketplace */
.marketplace-section { margin: 30px 0; }

.marketplace-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.marketplace-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

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

.marketplace-btn:hover::before { left: 100%; }
.marketplace-btn img { width: 28px; height: 28px; object-fit: contain; }
.marketplace-btn span { color: white; font-weight: 600; }
.marketplace-btn.flipkart { background: linear-gradient(135deg, #2874f0, #1a5dc9); }
.marketplace-btn.amazon { background: linear-gradient(135deg, #232f3e, #131921); }
.marketplace-btn.amazon:hover { border-color: #ff9900; }
.marketplace-btn.indiamart { background: linear-gradient(135deg, #df4a2a, #b83820); }
.marketplace-btn.justdial { background: linear-gradient(135deg, #ffbd06, #e5a805); }
.marketplace-btn.justdial span { color: #1a1a1a; }

.marketplace-btn:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* ============================================
   CTA ALT SECTION
   ============================================ */
.cta-section-alt {
  background: linear-gradient(180deg, var(--dark-2), var(--dark-3));
}

.cta-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   COMING SOON
   ============================================ */
.coming-soon-grid {
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coming-soon-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  text-align: center;
  padding: 40px 30px;
  border-top: 1px solid var(--border);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

footer p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  margin: 5px 0;
}

.social-logo {
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px;
  right: 28px;
  background: linear-gradient(135deg, #25D366, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  animation: waPulse 2.5s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ============================================
   VI LG ASSISTANT CHATBOT - BOTTOM LEFT
   ============================================ */
.assistant-toggle {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 30px rgba(0,229,255,0.4);
  z-index: 9998;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  animation: assistPulse 2s infinite;
  cursor: none;
  font-size: 1.4rem;
  border: none;
}

.assistant-toggle span {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-3);
  color: var(--cyan);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.assistant-toggle:hover span {
  opacity: 1;
  visibility: visible;
  bottom: -34px;
}

.assistant-toggle:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,229,255,0.6);
}

.assistant-toggle.active {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

@keyframes assistPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(0,229,255,0.4), 0 0 0 0 rgba(0,229,255,0.4); }
  50% { box-shadow: 0 8px 30px rgba(0,229,255,0.4), 0 0 0 12px rgba(0,229,255,0); }
}

#assistant-chat {
  position: fixed;
  bottom: 170px;
  left: 28px;
  width: 360px;
  max-height: 500px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--glow-cyan);
  border: 1px solid var(--border-bright);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 9999;
  overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
}

#assistant-chat.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-header div {
  flex: 1;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-online {
  width: 8px;
  height: 8px;
  background: #20c997;
  border-radius: 50%;
  margin-left: 6px;
  animation: onlinePulse 2s infinite;
}

@keyframes onlinePulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

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

.chat-actions button {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}

.chat-actions button:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

.chat-body {
  height: 320px;
  overflow-y: auto;
  padding: 16px;
  background: var(--dark-3);
}

.message {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  animation: messageSlide 0.3s ease;
}

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

.user-message { flex-direction: row-reverse; }
.user-message .message-avatar { display: none; }
.user-message .message-content {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  padding: 12px 16px;
  border-radius: 18px 18px 4px 18px;
  max-width: 80%;
  margin-left: auto;
}

.bot-message {
  flex-direction: row;
}

.message-avatar {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bot-message .message-content {
  background: var(--surface-2);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  max-width: 85%;
  border: 1px solid var(--border);
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-radius: 18px 18px 18px 4px;
  border: 1px solid var(--border);
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: typingAnim 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingAnim {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-8px); opacity: 1; }
}

.chat-input-container {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--dark-3);
}

#chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  color: var(--text);
  outline: none;
  font-size: 0.9rem;
}

#chat-input:focus {
  border-color: var(--border-bright);
  box-shadow: var(--glow-cyan);
}

#send-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  color: white;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

#send-btn:hover { transform: scale(1.1); }

.quick-replies {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: var(--dark-4);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.quick-replies button {
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  font-size: 0.75rem;
  cursor: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.quick-replies button:hover {
  background: var(--border-bright);
  color: var(--dark);
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.product-preview {
  margin-top: 12px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(13,110,253,0.05));
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex;
  gap: 12px;
}

.product-preview img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.product-preview h4 {
  margin: 0 0 2px 0;
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 600;
}

.product-preview p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Chat scroll */
.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-track { background: var(--dark-4); }
.chat-body::-webkit-scrollbar-thumb {
  background: var(--border-bright);
  border-radius: 4px;
}

/* RESPONSIVE CHAT */
@media (max-width: 768px) {
  #assistant-chat {
    left: 20px;
    right: 20px;
    width: auto;
    bottom: 20px;
    max-height: 70vh;
  }
  
  .chat-body { height: 50vh; }
  
  .quick-replies { flex-direction: column; }
  .quick-replies button { width: 100%; }
}

@media (hover: none) and (pointer: coarse) {
  .assistant-toggle, .chat-actions button, #send-btn, .quick-replies button { cursor: auto !important; }
}


@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   STATS STRIP (NEW)
   ============================================ */
.stats-strip {
  padding: 60px;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   MISC HELPERS
   ============================================ */
.text-center { text-align: center; }
.margin-top-60 { margin-top: 60px; }
.margin-top-lg { margin-top: 50px; }
.chat-whatsapp-link { color: #25D366 !important; text-decoration: none; font-weight: 600; }
.chat-whatsapp-link:hover { text-decoration: underline; }

/* ============================================
   SCROLL BAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  border-radius: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none !important; }
  * { cursor: auto !important; }

  .hamburger { display: flex !important; }
  header nav { display: none !important; }
  header { padding: 0 20px; }

  .hero h1 { letter-spacing: -1px; }
  .hero p { font-size: 0.95rem; }

  .features { padding: 80px 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  .products-home { padding: 80px 20px; }
  .product-grid { flex-direction: column; align-items: center; }
  .card { width: 100%; max-width: 340px; }

  .about { padding: 100px 20px 60px; }
  .about h1 { font-size: 2rem; }
  .about h2 { font-size: 1.3rem; }
  .about-content { padding: 20px; }
  .about .features-grid { grid-template-columns: 1fr; }

  .products { padding: 100px 20px 60px; }
  .product-card { width: 100%; max-width: 380px; }

  .contact-page { padding: 100px 20px 60px; }
  .contact-card { padding: 20px; }
  .social-links { flex-direction: column; }
  .map-container iframe { height: 250px; }

  .stats-strip { padding: 50px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

  .cta-section { padding: 30px 20px; }
  footer { padding: 30px 20px; }

  .details-content { padding: 30px 20px; }
  .marketplace-links { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  header { padding: 0 30px; }
  .hamburger { display: flex !important; }
  header nav { display: none !important; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cursor, .cursor-ring { display: none !important; }
  * { cursor: auto !important; }
}

@media (max-width: 480px) {
  .logo-text { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .marketplace-links { grid-template-columns: 1fr 1fr; }
}

@media (hover: none) and (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
  * { cursor: auto !important; }
  .card:hover { transform: none; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 7rem; }
}
