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

:root {
  /* Colors - High-End Dark Theme */
  --teal: #10b981; 
  --teal-l: #34d399; 
  --teal-d: #047857;
  
  --bg-base: #030712;
  --bg-surface: #111827;
  --bg-surface-elevated: #1f2937;
  
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  
  --wa: #25D366; 
  --wa-d: #128C7E;
  
  /* 3D Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.7), 0 0 0 1px rgba(16, 185, 129, 0.3);
  
  --inner-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  
  --transition-snappy: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  color: var(--text-main);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; }

::selection { background: var(--teal); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-surface-elevated); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ── LOADER ─────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-base);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}
#loader.hide { opacity: 0; visibility: hidden; transform: scale(1.05); }
.ld-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
  animation: ldFloat 2s ease-in-out infinite alternate;
}
.ld-icon img { width: 100%; height: 100%; object-fit: cover; }
@keyframes ldFloat { from { transform: translateY(0) scale(1); } to { transform: translateY(-10px) scale(1.05); } }
.ld-name {
  font-size: 24px; font-weight: 800; color: var(--teal-l);
  letter-spacing: 4px; text-transform: uppercase;
}
.ld-bar {
  width: 240px; height: 4px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden;
}
.ld-fill {
  height: 100%; background: linear-gradient(90deg, var(--teal-d), var(--teal-l));
  border-radius: 10px; animation: ldFill 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes ldFill { 0% { width: 0%; } 100% { width: 100%; } }

/* ── CANVAS & BACKGROUND ─────────────────────────────── */
#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.3; }
#cglow {
  position: fixed; pointer-events: none; z-index: 1; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%); transition: transform 0.1s linear; mix-blend-mode: screen;
}

/* Global Ambient Glows */
body::before {
  content: ''; position: fixed; top: -20vh; left: -10vw; width: 60vw; height: 60vh;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
  filter: blur(100px); z-index: 0; pointer-events: none;
}
body::after {
  content: ''; position: fixed; bottom: -20vh; right: -10vw; width: 50vw; height: 50vh;
  background: radial-gradient(ellipse at center, rgba(37, 211, 102, 0.08) 0%, transparent 60%);
  filter: blur(80px); z-index: 0; pointer-events: none;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 80px;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
  background: rgba(3, 7, 18, 0); border-bottom: 1px solid transparent;
  transition: var(--transition-snappy);
}
nav.scrolled {
  background: rgba(3, 7, 18, 0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05); height: 70px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 48px; border-radius: 10px; transition: var(--transition-snappy); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.nav-logo:hover .nav-logo-img { transform: scale(1.08) rotate(-2deg); box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3); }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 15px; font-weight: 600;
  position: relative; padding: 8px 0; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--teal-l); border-radius: 2px; transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.open-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 30px; padding: 8px 20px; font-size: 13px; font-weight: 700; color: var(--teal-l);
  cursor: default; transition: var(--transition-snappy); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.open-badge:hover { background: rgba(16, 185, 129, 0.2); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(16,185,129,0.2), inset 0 1px 0 rgba(255,255,255,0.2); }
.pdot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; position: relative; }
.pdot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #34d399; animation: ping 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 5px; }
.nav-toggle span { display: block; width: 28px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition-snappy); }
.mob-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(3, 7, 18, 0.95); backdrop-filter: blur(24px); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 32px 32px; flex-direction: column; gap: 16px; z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.mob-menu.open { display: flex; animation: slideDownMob 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes slideDownMob { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mob-menu a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 18px; font-weight: 700; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(ellipse 70% 70% at 75% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
              linear-gradient(145deg, rgba(3,7,18,0.9) 0%, rgba(3,7,18,0.95) 100%),
              url('../images/vaporesso-xros3.jpg');
  background-size: cover, cover, cover; background-position: center; background-attachment: fixed;
}
.hero-rings { position: absolute; right: -5vw; top: 50%; transform: translateY(-50%); width: 800px; height: 800px; pointer-events: none; perspective: 1000px; }
.ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(16, 185, 129, 0.2);
  top: 50%; left: 50%; transform: translate(-50%, -50%) rotateX(60deg) rotateY(10deg);
  animation: ringPulse3D 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.1), 0 0 30px rgba(16, 185, 129, 0.1);
}
.ring:nth-child(1) { width: 300px; height: 300px; border-color: rgba(16, 185, 129, 0.4); animation-delay: 0s; }
.ring:nth-child(2) { width: 500px; height: 500px; animation-delay: -2s; }
.ring:nth-child(3) { width: 700px; height: 700px; animation-delay: -4s; }
.ring:nth-child(4) { width: 900px; height: 900px; animation-delay: -6s; }
@keyframes ringPulse3D {
  0% { transform: translate(-50%, -50%) rotateX(60deg) rotateY(10deg) rotateZ(0deg) scale(0.9); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) rotateX(65deg) rotateY(15deg) rotateZ(180deg) scale(1.1); opacity: 0.3; }
  100% { transform: translate(-50%, -50%) rotateX(60deg) rotateY(10deg) rotateZ(360deg) scale(0.9); opacity: 0.8; }
}

.hero-glow {
  position: absolute; right: 10vw; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  animation: floatGlow 6s ease-in-out infinite alternate; filter: blur(40px);
}
@keyframes floatGlow { 0% { transform: translateY(-50%) scale(1); } 100% { transform: translateY(-60%) scale(1.2); } }

.hero-content { position: relative; z-index: 2; padding: 140px 80px 80px; max-width: 800px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 30px; padding: 8px 20px; font-size: 13px; font-weight: 800;
  color: var(--teal-l); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15), inset 0 1px 0 rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  animation: slideDownHero 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes slideDownHero { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 { font-size: 82px; font-weight: 900; line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; animation: slideUpHero 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.hero h1 .l2 {
  background: linear-gradient(110deg, #fff 0%, #34d399 50%, #10b981 100%);
  background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite; display: inline-block;
}
@keyframes shine { to { background-position: 200% center; } }
@keyframes slideUpHero { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub { font-size: 20px; color: var(--text-muted); line-height: 1.7; max-width: 600px; margin-bottom: 40px; font-weight: 400; animation: slideUpHero 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; animation: slideUpHero 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
  padding: 18px 36px; border-radius: 16px; text-decoration: none; font-size: 17px; font-weight: 800;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), inset 0 2px 0 rgba(255,255,255,0.3);
  transition: var(--transition-snappy); position: relative; overflow: hidden;
}
.btn-wa::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition-smooth);
}
.btn-wa:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5), inset 0 2px 0 rgba(255,255,255,0.4); }
.btn-wa:hover::before { left: 100%; transition: 0.6s ease-in-out; }
.btn-wa:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 18px 36px; border-radius: 16px; text-decoration: none; font-size: 17px; font-weight: 700;
  backdrop-filter: blur(12px); box-shadow: var(--inner-highlight);
  transition: var(--transition-snappy);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md), var(--inner-highlight);
}

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 800; letter-spacing: 2px;
  animation: shint 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes shint { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; } 50% { transform: translateX(-50%) translateY(10px); opacity: 1; } }
.sarrow { width: 24px; height: 24px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }

/* ── STATS ───────────────────────────────────────────── */
.stats-bar {
  position: relative; z-index: 10; display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(17, 24, 39, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 40px 24px; border-right: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden;
  transition: var(--transition-snappy);
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-l));
  border-radius: 3px 3px 0 0; transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-cell:hover::before { width: 80%; }
.stat-cell:hover { background: rgba(255,255,255,0.02); transform: translateY(-4px); }
.stat-val { font-size: 42px; font-weight: 900; color: var(--text-main); line-height: 1; letter-spacing: -1px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.stat-lbl { font-size: 14px; color: var(--teal-l); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; background: var(--teal-d); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: inset 0 2px 10px rgba(0,0,0,0.3); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: mscroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes mscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mi { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; }
.mi .dot { color: #34d399; font-size: 18px; filter: drop-shadow(0 0 8px rgba(52,211,153,0.8)); }

/* ── SECTION COMMONS ─────────────────────────────────── */
section { padding: 120px 80px; position: relative; z-index: 1; }
.sec-lbl {
  font-size: 14px; font-weight: 800; color: var(--teal-l); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.sec-lbl::before { content: ''; display: block; width: 40px; height: 3px; background: var(--teal-l); border-radius: 3px; box-shadow: 0 0 10px var(--teal); }
.sec-title { font-size: 54px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.sec-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 64px; max-width: 600px; font-weight: 400; line-height: 1.6; }

/* Animations */
.reveal { 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); }
.reveal.vis { opacity: 1; transform: none; }
.reveal-l { 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); }
.reveal-l.vis { opacity: 1; transform: none; }
.reveal-r { 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); }
.reveal-r.vis { opacity: 1; transform: none; }

/* ── FEATURES ────────────────────────────────────────── */
.features { background: var(--bg-surface); position: relative; }
.features::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at right, rgba(16, 185, 129, 0.05) 0%, transparent 70%); pointer-events: none; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat-card {
  background: var(--bg-surface-elevated); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px;
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: var(--transition-snappy); box-shadow: var(--shadow-sm), var(--inner-highlight);
  z-index: 1;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
  opacity: 0; transition: var(--transition-smooth); z-index: -1;
}
.feat-card:hover { transform: translateY(-10px) scale(1.02); border-color: rgba(16, 185, 129, 0.4); box-shadow: var(--shadow-hover), var(--inner-highlight); }
.feat-card:hover::before { opacity: 1; }
.ficon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  margin-bottom: 24px; transition: var(--transition-snappy); box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.feat-card:hover .ficon { transform: scale(1.15) rotate(-10deg); box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3); background: var(--teal); color: #fff; }
.feat-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.feat-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── PRODUCTS ────────────────────────────────────────── */
.products { background: var(--bg-base); position: relative; }
.filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }
.fbtn {
  padding: 12px 28px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03); color: var(--text-muted);
  font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--transition-snappy);
  backdrop-filter: blur(10px); box-shadow: var(--inner-highlight);
}
.fbtn:hover { border-color: rgba(16, 185, 129, 0.5); color: #fff; background: rgba(16, 185, 129, 0.1); transform: translateY(-2px); }
.fbtn.active {
  background: var(--teal); color: #fff; border-color: var(--teal-l);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4), inset 0 2px 0 rgba(255,255,255,0.3);
}
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; perspective: 1000px; }
.pcard {
  background: var(--bg-surface-elevated); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px;
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: var(--transition-snappy); animation: cardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow: var(--shadow-sm), var(--inner-highlight); transform-style: preserve-3d;
}
@keyframes cardIn { from { opacity: 0; transform: scale(0.95) translateY(20px) rotateX(10deg); } to { opacity: 1; transform: none; } }
.pcard:hover {
  transform: translateY(-12px) scale(1.02) rotateX(2deg);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: var(--shadow-hover), var(--inner-highlight);
}
.pcard.hidden { display: none; }

/* Product Image */
.pimg {
  height: 240px; display: flex; align-items: center; justify-content: center; position: relative;
  background: radial-gradient(circle at top, #1f2937 0%, #111827 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden;
}
.pimg img {
  width: 100%; height: 100%; object-fit: contain; padding: 24px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}
.pcard:hover .pimg img { transform: scale(1.15) translateY(-8px) rotate(2deg); }
.pimg .fb { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 80px; background: rgba(3,7,18,0.8); z-index: 1; }
.img-glow {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s; z-index: 1; filter: blur(20px);
}
.pcard:hover .img-glow { opacity: 1; }

/* Product Badge */
.pbadge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  background: rgba(16, 185, 129, 0.15); color: var(--teal-l);
  border: 1px solid rgba(16, 185, 129, 0.4); border-radius: 8px; padding: 6px 12px;
  backdrop-filter: blur(8px); box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pbadge.hot { background: rgba(239, 68, 68, 0.15); color: #fca5a5; border-color: rgba(239, 68, 68, 0.4); }
.pbadge.new { background: rgba(59, 130, 246, 0.15); color: #93c5fd; border-color: rgba(59, 130, 246, 0.4); }

/* Product Body */
.pbody { padding: 24px; flex: 1; display: flex; flex-direction: column; background: var(--bg-surface); }
.pbrand { font-size: 12px; font-weight: 800; color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.pname { font-size: 20px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; color: #fff; letter-spacing: -0.5px; }
.pdesc { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* Product Footer */
.pfoot { padding: 0 24px 24px; background: var(--bg-surface); }
.btn-order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--wa), var(--wa-d)); color: #fff;
  padding: 14px 24px; border-radius: 14px; text-decoration: none; font-size: 15px; font-weight: 800;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2), inset 0 2px 0 rgba(255,255,255,0.2);
  transition: var(--transition-snappy); width: 100%; position: relative; overflow: hidden;
}
.btn-order::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: var(--transition-smooth);
}
.btn-order:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255,255,255,0.3); }
.btn-order:hover::before { left: 100%; transition: 0.5s ease-in-out; }
.btn-order:active { transform: translateY(0); }

/* ── BRANDS ──────────────────────────────────────────── */
.brands { background: var(--bg-surface); position: relative; }
.brands::before { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: radial-gradient(circle at left, rgba(16, 185, 129, 0.05) 0%, transparent 70%); pointer-events: none; }
.bgrid { display: flex; flex-wrap: wrap; gap: 16px; }
.bpill {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-surface-elevated); border: 1px solid rgba(255,255,255,0.05); border-radius: 40px;
  padding: 16px 28px; font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.8);
  text-decoration: none; cursor: pointer; transition: var(--transition-snappy);
  box-shadow: var(--shadow-sm), var(--inner-highlight);
}
.bpill:hover {
  border-color: var(--teal); color: #fff; background: rgba(16, 185, 129, 0.1);
  transform: translateY(-6px) scale(1.05); box-shadow: 0 12px 30px rgba(16, 185, 129, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.bpill .bi { font-size: 24px; transition: var(--transition-snappy); filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.bpill:hover .bi { transform: scale(1.3) rotate(-10deg); }

/* ── CTA BAND ────────────────────────────────────────── */
.cta {
  padding: 100px 80px; background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(3, 7, 18, 0.9) 100%);
  border-top: 1px solid rgba(16, 185, 129, 0.2); border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%); pointer-events: none;
}
.cta h2 { font-size: 48px; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; }
.cta p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 40px; font-weight: 400; line-height: 1.6; }
.cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: #010308; border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 80px 0; position: relative; }
.fgrid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.fbrand .bn { margin-bottom: 16px; }
.footer-logo-img { height: 44px; border-radius: 8px; }
.fbrand p { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 400px; }
.fcol h4 { font-size: 13px; font-weight: 900; color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.fcol a {
  display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; margin-bottom: 12px; transition: var(--transition-snappy);
}
.fcol a:hover { color: var(--teal-l); transform: translateX(6px); }
.fcol a::before { content: '›'; color: var(--teal); font-size: 20px; line-height: 1; }
.fbot { border-top: 1px solid rgba(255,255,255,0.05); padding: 32px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.fbot p { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; }
.built-by-brand { font-weight: 800; color: var(--teal-l); }

/* ── FLOATING WA ─────────────────────────────────────── */
.float-wrap { position: fixed; bottom: 32px; right: 32px; z-index: 9000; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.float-tip {
  background: rgba(3, 7, 18, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 12px 20px; font-size: 14px; font-weight: 700;
  white-space: nowrap; transform: scale(0.9); transform-origin: bottom right; opacity: 0;
  transition: var(--transition-snappy); pointer-events: none; box-shadow: var(--shadow-md);
}
.float-wrap:hover .float-tip { opacity: 1; transform: scale(1); }
.float-wa {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wa), var(--wa-d)); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255,255,255,0.3);
  text-decoration: none; animation: waBounce 3s cubic-bezier(0.4, 0, 0.2, 1) infinite; transition: var(--transition-snappy);
}
@keyframes waBounce { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.05); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); } }
.float-wa:hover { animation: none; transform: scale(1.15) rotate(-5deg); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6); }
.float-wa svg { width: 36px; height: 36px; fill: #fff; }

/* ── TOAST ───────────────────────────────────────────── */
#toast {
  position: fixed; bottom: 120px; right: 32px; z-index: 9999;
  background: rgba(17, 24, 39, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.4); border-radius: 16px; padding: 16px 24px;
  display: flex; align-items: center; gap: 16px; font-size: 15px; font-weight: 700;
  transform: translateY(100px); opacity: 0; transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
  pointer-events: none; box-shadow: var(--shadow-lg), var(--inner-highlight);
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ── BACK TO TOP ─────────────────────────────────────── */
#btt {
  position: fixed; bottom: 32px; left: 32px; z-index: 8999;
  width: 50px; height: 50px; border-radius: 16px;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--teal-l);
  font-size: 20px; transform: translateY(100px); opacity: 0; transition: var(--transition-snappy);
  backdrop-filter: blur(8px); box-shadow: var(--shadow-md);
}
#btt.show { transform: translateY(0); opacity: 1; }
#btt:hover { background: rgba(16, 185, 129, 0.2); transform: translateY(-5px); color: #fff; border-color: var(--teal); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media(max-width: 1200px) {
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 100px 40px; }
  nav { padding: 0 40px; }
  .hero-rings { right: -20vw; }
}
@media(max-width: 900px) {
  .nav-links, .open-badge { display: none; }
  .nav-toggle { display: flex; }
  .hero-rings, .hero-glow { display: none; }
  .hero h1 { font-size: 56px; }
  .hero-content { padding: 120px 40px 80px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .lgrid { grid-template-columns: 1fr; }
  section { padding: 80px 40px; }
  footer { padding: 64px 40px 0; }
  .fgrid { grid-template-columns: 1fr; gap: 40px; }
  .cta { padding: 80px 40px; }
  .cta h2 { font-size: 36px; }
  .map-frame, .map-frame iframe { min-height: 320px; }
  .fbot { flex-direction: column; justify-content: center; text-align: center; gap: 12px; }
}
@media(max-width: 600px) {
  .pgrid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .sec-title { font-size: 36px; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns a { justify-content: center; }
  .lbtns a { flex: 1 1 100%; }
  #toast { left: 20px; right: 20px; bottom: 110px; max-width: none; }
  .float-wrap { right: 20px; bottom: 20px; }
  .float-wa { width: 60px; height: 60px; }
  .float-wa svg { width: 30px; height: 30px; }
  #btt { left: 20px; bottom: 20px; width: 44px; height: 44px; }
  nav { padding: 0 20px; }
  section { padding: 64px 20px; }
  .hero-content { padding: 100px 20px 60px; }
}
@media(max-width: 400px) {
  .hero h1 { font-size: 36px; }
  .sec-title { font-size: 30px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-val { font-size: 36px; }
  .stat-cell { padding: 32px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .cta h2 { font-size: 30px; }
  .linfo { padding: 32px 24px; }
}
