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

/* ==========================================================================
   DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-dark: #07070a;
  --bg-darker: #040405;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 255, 255, 0.15);
  
  --text-primary: #edece8;
  --text-secondary: rgba(237, 236, 232, 0.6);
  --text-muted: rgba(237, 236, 232, 0.35);
  
  /* Brand Flavors */
  --c-lychee: #ff6b1a;
  --c-lychee-glow: rgba(255, 107, 26, 0.15);
  
  --c-berry: #e8192c;
  --c-berry-glow: rgba(232, 25, 44, 0.15);
  
  --c-mandarin: #39ff14;
  --c-mandarin-glow: rgba(57, 255, 20, 0.12);
  
  /* Active Theme (Changes dynamically via JS) */
  --c-active: var(--c-lychee);
  --c-active-glow: var(--c-lychee-glow);
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darker);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
  background-color: var(--c-active);
  color: #000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--bg-darker);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-active);
}

/* ==========================================================================
   CUSTOM CURSOR (PREMIUM INTERACTIVE)
   ========================================================================== */
#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--c-active);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.3s;
}

#cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--c-active);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Hide on Touch Devices */
@media (max-width: 1024px) {
  #cursor, #cursor-ring {
    display: none !important;
  }
}

/* ==========================================================================
   LAYOUT & CONTAINER UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Typography headers */
.s-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-active);
  margin-bottom: 12px;
  display: inline-block;
  transition: color 0.3s;
}

.s-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.s-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-glow);
  background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 32px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--c-active);
  color: #000;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(var(--c-active-rgb, 255, 107, 26), 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}

.btn-secondary:hover {
  border-color: var(--c-active);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-3px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 4, 5, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-active);
  transition: var(--transition-fast);
}

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

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

.nav-cta {
  background: transparent;
  color: var(--c-active);
  border: 1px solid var(--c-active);
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--c-active);
  color: #000;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Mobile menu can toggle in JS */
  }
  .nav-toggle {
    display: block;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, var(--c-active-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.8s ease;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-right: 40px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-active);
  display: inline-block;
  box-shadow: 0 0 8px var(--c-active);
  animation: pulse-dot 1.5s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title .h-solid {
  color: var(--text-primary);
}

.hero-title .h-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-primary);
}

.hero-title .h-accent {
  background: linear-gradient(90deg, var(--c-active), #fff, var(--c-active));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 4s linear infinite;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-active);
  transition: color 0.3s;
}

.stat-lbl {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Center Bottle Display */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.bottle-frame {
  position: relative;
  width: 320px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.bottle-showcase {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
  cursor: grab;
}

.bottle-showcase img {
  position: absolute;
  max-height: 420px;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  animation: float-bottle 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.bottle-showcase img.active {
  opacity: 1;
}

/* Bubble Particle Field */
.bubble-field {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bub {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: rise var(--dur) ease-in var(--delay) infinite;
}

/* Flavor Dot Picker */
.flavor-selector-wrap {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.f-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 30px;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.f-dot-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.f-dot-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: none;
}

.f-dot.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.f-dot.active .f-dot-label {
  display: block;
  color: var(--text-primary);
}

.f-dot[data-flavor="0"] .f-dot-circle { background-color: var(--c-lychee); }
.f-dot[data-flavor="1"] .f-dot-circle { background-color: var(--c-berry); }
.f-dot[data-flavor="2"] .f-dot-circle { background-color: var(--c-mandarin); }

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 60px;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions, .hero-stats {
    justify-content: center;
  }
}

/* ==========================================================================
   INFINITE MARQUEE
   ========================================================================== */
.marquee-container {
  overflow: hidden;
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: scroll-marquee 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 48px;
}

.marquee-item.solid {
  color: var(--c-active);
  transition: color 0.3s;
}

.marquee-item.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.marquee-item span {
  margin-left: 48px;
}

/* ==========================================================================
   FLAVOURS SECTION
   ========================================================================== */
.flavours-grid {
  margin-top: 40px;
}

.flav-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.flav-card-glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 150px; height: 150px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  transition: var(--transition-smooth);
}

.flav-card:hover .flav-card-glow {
  opacity: 0.5;
  transform: scale(1.3);
}

.flav-img-container {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
}

.flav-img-container img {
  max-height: 240px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.flav-card:hover .flav-img-container img {
  transform: translateY(-10px) rotate(4deg);
}

.flav-flavor {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.flav-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.flav-tagline {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.flav-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flav-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.flav-order-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.flav-card[data-flavor="lychee"] { --c-card: var(--c-lychee); }
.flav-card[data-flavor="berry"] { --c-card: var(--c-berry); }
.flav-card[data-flavor="mandarin"] { --c-card: var(--c-mandarin); }

.flav-card:hover .flav-order-btn {
  background: var(--c-card);
  color: #000;
  border-color: var(--c-card);
}

.flav-card:hover .flav-flavor {
  color: var(--c-card);
}

/* ==========================================================================
   SPIRULINA LAB SECTION
   ========================================================================== */
.lab-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.lab-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lab-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px dashed rgba(57, 255, 20, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate-dashed 20s linear infinite;
}

.lab-img {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.15) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(57, 255, 20, 0.15);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.1);
}

.lab-img span {
  font-size: 72px;
  animation: float-bottle 3s ease-in-out infinite;
}

.lab-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.lab-node-item {
  position: absolute;
  background: #000;
  border: 1px solid rgba(57, 255, 20, 0.4);
  color: #39ff14;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  letter-spacing: 1px;
}

.lab-node-item:nth-child(1) { top: 10%; left: 10%; }
.lab-node-item:nth-child(2) { bottom: 15%; right: 5%; }
.lab-node-item:nth-child(3) { top: 40%; right: -5%; }

.lab-content {
  padding-left: 20px;
}

.lab-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.lab-point {
  display: flex;
  gap: 16px;
}

.lab-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #39ff14;
  font-size: 18px;
  flex-shrink: 0;
}

.lab-point-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lab-point-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .lab-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lab-content {
    padding-left: 0;
  }
}

/* ==========================================================================
   STORY / HISTORY SUMMARY SECTION
   ========================================================================== */
.story-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-text {
  max-width: 65%;
}

.story-tag {
  color: var(--c-active);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.story-paragraph {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .story-box {
    flex-direction: column;
    padding: 32px;
    text-align: center;
    gap: 24px;
  }
  .story-text {
    max-width: 100%;
  }
}

/* ==========================================================================
   STORES & DIRECT ORDER
   ========================================================================== */
.store-card {
  position: relative;
  padding-top: 48px;
}

.store-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.store-badge {
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.2);
  color: var(--c-lychee);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.store-addr {
  font-size: 14px;
  color: var(--text-secondary);
}

.order-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.1) 0%, transparent 100%);
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-banner-text h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.order-banner-text p {
  color: var(--text-secondary);
  font-size: 15px;
}

.order-banner-actions {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  .order-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px;
  }
  .order-banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* ==========================================================================
   TRUST BADGES & FAQS
   ========================================================================== */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.badge-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: var(--transition-fast);
}

.badge-item:hover {
  border-color: var(--c-active);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.badge-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.faq-toggle-icon {
  font-size: 20px;
  color: var(--c-active);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  color: var(--text-secondary);
  font-size: 14px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 16px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--c-active);
  transition: color 0.3s;
}

.footer-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--c-active);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--c-active);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-bottom span {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ==========================================================================
   ORDER MODAL & CALCULATOR
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-box {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 1101;
  padding: 36px;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--c-active);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.modal-step {
  margin-bottom: 24px;
}

.step-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-label span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-active);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
}

/* Calculator Grid */
.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

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

.calc-flavor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.calc-flavor-dot.lychee { background: var(--c-lychee); }
.calc-flavor-dot.berry { background: var(--c-berry); }
.calc-flavor-dot.mandarin { background: var(--c-mandarin); }

.calc-flavor-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.calc-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition-fast);
  user-select: none;
}

.calc-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--c-active);
}

.calc-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  width: 24px;
  text-align: center;
}

/* User Form Inputs */
.input-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.input-group input {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.input-group input:focus {
  border-color: var(--c-active);
  background: rgba(255, 255, 255, 0.06);
}

.input-full {
  grid-column: span 2;
}

@media (max-width: 576px) {
  .input-grid {
    grid-template-columns: 1fr;
  }
  .input-full {
    grid-column: span 1;
  }
}

/* Billing Summary */
.bill-summary {
  background: rgba(255, 107, 26, 0.05);
  border: 1px solid rgba(255, 107, 26, 0.15);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.bill-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.bill-row.total {
  border-top: 1px solid rgba(255, 107, 26, 0.2);
  padding-top: 12px;
  margin-top: 12px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.bill-row.total span:last-child {
  color: var(--c-lychee);
  font-size: 24px;
}

.bill-warning {
  color: #e8192c;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
  display: none;
}

/* ==========================================================================
   EXIT POPUP & FLOATING FAB
   ========================================================================== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exit-box {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 16px;
  width: 90%;
  max-width: 440px;
  padding: 40px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 50px rgba(255, 107, 26, 0.15);
}

.exit-overlay.active {
  display: flex;
  opacity: 1;
}

.exit-overlay.active .exit-box {
  transform: scale(1);
}

.exit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.exit-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--c-lychee);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.exit-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.exit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.exit-timer-box {
  background: rgba(255, 107, 26, 0.06);
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 24px;
}

.exit-timer-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.exit-timer-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-lychee);
}

.exit-btn-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 1px;
  margin-top: 16px;
  transition: var(--transition-fast);
}

.exit-btn-close:hover {
  color: var(--text-primary);
}

/* Floating WhatsApp FAB */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.fab-wa.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fab-wa:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

/* ==========================================================================
   FOUNDERS PAGE SPECIFICS
   ========================================================================== */
.founders-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  background: radial-gradient(ellipse 60% 70% at 50% 10%, rgba(255, 107, 26, 0.08) 0%, transparent 60%);
  text-align: center;
}

.founders-grid-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.founder-card-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-img-box {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
}

.founder-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.founder-card-page:hover .founder-img-box img {
  transform: scale(1.04);
}

.founder-role {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--c-active);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.founder-title-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.founder-quote {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 440px;
  position: relative;
  padding: 0 20px;
}

.founder-quote::before, .founder-quote::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--c-active);
  opacity: 0.3;
  position: absolute;
  line-height: 1;
}

.founder-quote::before {
  top: -10px;
  left: -5px;
}

.founder-quote::after {
  bottom: -30px;
  right: -5px;
}

@media (max-width: 768px) {
  .founders-grid-page {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 12px var(--c-active); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes shimmer-text {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

@keyframes float-bottle {
  0% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
  50% { transform: translate(-50%, -50%) translateY(-15px) rotate(2deg); }
  100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
}

@keyframes rise {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-400px) scale(1.2); opacity: 0; }
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes rotate-dashed {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Field Shake for Form validation */
@keyframes shake-field {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}
.shake {
  animation: shake-field 0.4s ease;
  border-color: #e8192c !important;
}
