/* ═══════════════════════════════════════════════════════════════════════════
   ESSENTIAL MICROGREENS — Premium Award-Winning Design System
   Psychology-Driven | Conversion-Optimized | Immersive Experience
   ═══════════════════════════════════════════════════════════════════════════ */

/* ══ CSS CUSTOM PROPERTIES (Visual Psychology: Consistency & Pattern Recognition) ══ */
:root {
  /* Primary Organic Palette (Color Psychology: Health, Growth, Nature) */
  --green-900: #0a1208;
  --green-800: #121f0e;
  --green-700: #1a2f14;
  --green-600: #2d5016;
  --green-500: #4a7c23;
  --green-400: #6abf4d;
  --green-300: #8ed96e;
  --green-200: #b8e89c;
  --green-100: #e8f5e1;
  
  /* Premium Gold Accents (Psychology: Premium, Trust, Value) */
  --gold-500: #c4a35a;
  --gold-400: #d4b86a;
  --gold-300: #e4cd7a;
  
  /* Earth Tones (Psychology: Grounded, Natural, Authentic) */
  --earth-900: #1a1510;
  --earth-700: #3d2f20;
  --earth-500: #6b5642;
  --earth-300: #a89680;
  
  /* Semantic Colors */
  --bg-primary: var(--green-900);
  --bg-secondary: var(--green-800);
  --bg-elevated: var(--green-700);
  --text-primary: var(--green-100);
  --text-secondary: #a8c99b;
  --text-muted: #7a9b6a;
  --accent-primary: var(--green-400);
  --accent-gold: var(--gold-500);
  
  /* Glassmorphism (Modern Premium Aesthetic) */
  --glass-bg: rgba(26, 47, 20, 0.7);
  --glass-border: rgba(106, 191, 77, 0.15);
  --glass-shadow: rgba(0, 0, 0, 0.4);
  
  /* Golden Ratio Typography Scale (Visual Psychology: Harmony) */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.618rem;
  --font-3xl: 2.618rem;
  --font-4xl: 4.236rem;
  --font-5xl: 6.854rem;
  
  /* Spacing (Golden Ratio: 1.618) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.618rem;
  --space-6: 2.618rem;
  --space-7: 4.236rem;
  --space-8: 6.854rem;
  
  /* Easing (Premium Feel) */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows (Depth Psychology) */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(106, 191, 77, 0.3);
}

/* ══ RESET & BASE (Cognitive Ease: Clean Foundation) ══ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ══ CUSTOM CURSOR (Premium Interaction) ══ */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--green-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: transform 0.15s var(--ease-smooth), width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}

.cursor-trail {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 191, 77, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(106, 191, 77, 0.1);
}

/* ══ PRELOADER (Peak-End Rule: First Impression) ══ */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.8s var(--ease-premium), visibility 0.8s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.loader-sprout {
  width: 4px;
  height: 0;
  background: linear-gradient(to top, var(--green-600), var(--green-400));
  border-radius: 2px;
  animation: sprout-grow 1.5s var(--ease-premium) forwards;
}

@keyframes sprout-grow {
  0% { height: 0; }
  100% { height: 80px; }
}

.loader-leaves {
  display: flex;
  gap: 4px;
  transform: translateY(-40px);
}

.loader-leaf {
  width: 20px;
  height: 30px;
  background: var(--green-400);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: scale(0) rotate(-30deg);
  animation: leaf-unfurl 0.8s var(--ease-bounce) forwards;
}

.loader-leaf:nth-child(2) {
  transform: scale(0) rotate(30deg);
  animation-delay: 0.2s;
}

@keyframes leaf-unfurl {
  0% { transform: scale(0) rotate(var(--rotation, -30deg)); }
  100% { transform: scale(1) rotate(var(--rotation, -30deg)); }
}

.loader-text {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ══ SCROLL PROGRESS (Commitment & Consistency) ══ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-400), var(--gold-500), var(--green-400));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 10000;
  box-shadow: var(--shadow-glow);
}

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

/* ══ AMBIENT BACKGROUND EFFECTS ══ */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

.ambient-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(106, 191, 77, 0.2) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: ambient-drift-1 25s ease-in-out infinite;
}

.ambient-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.15) 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  animation: ambient-drift-2 30s ease-in-out infinite;
}

.ambient-glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(106, 191, 77, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ambient-pulse 20s ease-in-out infinite;
}

@keyframes ambient-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(80px, 60px); }
  50% { transform: translate(-40px, 100px); }
  75% { transform: translate(-80px, -40px); }
}

@keyframes ambient-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-60px, -80px); }
  66% { transform: translate(80px, -40px); }
}

@keyframes ambient-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

/* Noise Texture Overlay (Premium Tactile Feel) */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ══ NAVIGATION (Pattern Recognition: Familiar UX) ══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 18, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-3) var(--space-6);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--green-400)
}

.nav-logo-icon {
  width: 45px;
  height: 45px;
  position: relative;
}

.nav-logo-badge {
  width: 56px;
  height: 56px;
  display: block;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--green-400);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text strong {
  color: var(--text-primary);
  font-size: var(--font-lg);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  color: var(--text-muted);
  font-size: var(--font-xs);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-premium);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Primary CTA Button (Button Psychology) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: var(--font-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  color: var(--green-900);
  box-shadow: 0 4px 20px rgba(106, 191, 77, 0.3);
}

.btn-primary::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: left 0.6s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(106, 191, 77, 0.4);
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  box-shadow: 0 4px 20px rgba(196, 163, 90, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 163, 90, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--green-400);
}

.btn-outline:hover {
  background: var(--green-400);
  color: var(--green-900);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--font-base);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-2);
}

/* ══ HERO SECTION (Visual Hierarchy + Priming) ══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-8) var(--space-6);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 18, 8, 0.85) 0%,
    rgba(10, 18, 8, 0.6) 50%,
    rgba(10, 18, 8, 0.85) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

/* Eyebrow (Authority + Social Proof) */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(106, 191, 77, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  margin-bottom: var(--space-5);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-eyebrow span {
  color: var(--green-400);
  font-size: var(--font-xs);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, var(--font-5xl));
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -2px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--green-400), var(--gold-500), var(--green-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: var(--font-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 550px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

/* Hero Stats (Social Proof + Authority) */
.hero-stats {
  display: flex;
  gap: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--glass-border);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: var(--font-3xl);
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--font-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-1);
}

/* Hero Visual Card (Endowment Effect) */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 191, 77, 0.5), transparent);
}

/* Floating Product Preview */
.floating-product {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.floating-product:nth-child(1) {
  top: -20px;
  right: -40px;
  animation-delay: 0s;
}

.floating-product:nth-child(2) {
  bottom: -30px;
  left: -50px;
  animation-delay: 2s;
}

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

/* ══ SECTION BASE ══ */
section {
  padding: var(--space-8) var(--space-6);
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--green-400);
  font-size: var(--font-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--green-400);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2rem, 4vw, var(--font-4xl));
  font-weight: 800;
  margin-bottom: var(--space-4);
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ══ GLASS CARDS (Glassmorphism - Modern Premium) ══ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: var(--space-5);
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(106, 191, 77, 0.3);
}

/* ══ PRODUCT CARDS (Visual Hierarchy + Scarcity) ══ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}

.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s var(--ease-premium);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

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

/* Scarcity Badge */
.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-1) var(--space-3);
  border-radius: 50px;
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-popular {
  background: var(--gold-500);
  color: var(--green-900);
}

.badge-limited {
  background: #e74c3c;
  color: white;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}

.badge-new {
  background: var(--green-400);
  color: var(--green-900);
}

.product-content {
  padding: var(--space-5);
}

.product-name {
  font-size: var(--font-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.product-description {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
}

.product-meta .btn {
  width: 100%;
  text-align: center;
}

.product-price {
  font-size: var(--font-2xl);
  font-weight: 800;
  color: var(--green-400);
}

.product-price .price-original {
  font-size: var(--font-sm);
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: var(--space-2);
}

/* ══ BENEFITS SECTION (Visual Psychology: Icons + Hierarchy) ══ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

.benefit-card {
  text-align: center;
  padding: var(--space-6);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, rgba(106, 191, 77, 0.2), rgba(106, 191, 77, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.4s var(--ease-bounce);
}

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

.benefit-title {
  font-size: var(--font-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.benefit-text {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  line-height: 1.7;
}

/* ══ TESTIMONIALS (Social Proof) ══ */
.testimonials-section {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-5);
}

.testimonial-card {
  padding: var(--space-6);
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: var(--font-lg);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--font-lg);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-100);
}

.testimonial-info strong {
  display: block;
  font-size: var(--font-base);
}

.testimonial-info span {
  color: var(--text-muted);
  font-size: var(--font-sm);
}

/* ══ PRICING SECTION (Decoy Effect + Anchoring) ══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: var(--space-6);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-color: var(--green-400);
  z-index: 2;
}

.pricing-card.featured::before {
  content: "BEST VALUE";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--green-900);
  padding: var(--space-1) var(--space-4);
  border-radius: 50px;
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-name {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
}

.pricing-price {
  margin-bottom: var(--space-4);
}

.pricing-amount {
  font-size: var(--font-4xl);
  font-weight: 800;
  color: var(--green-400);
}

.pricing-period {
  color: var(--text-muted);
  font-size: var(--font-sm);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-5);
}

.pricing-features li {
  padding: var(--space-2) 0;
  color: var(--text-secondary);
  font-size: var(--font-sm);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* ══ CTA SECTION (Urgency + FOMO) ══ */
.cta-section {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='rgba(255,255,255,0.03)' fill='none' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: var(--font-3xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.cta-text {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-5);
}

/* Urgency Counter */
.urgency-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  background: rgba(0,0,0,0.2);
  padding: var(--space-3) var(--space-5);
  border-radius: 12px;
  margin-bottom: var(--space-5);
}

.urgency-item {
  text-align: center;
}

.urgency-value {
  font-size: var(--font-2xl);
  font-weight: 800;
  color: var(--gold-500);
}

.urgency-label {
  font-size: var(--font-xs);
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ══ FOOTER ══ */
.footer {
  background: var(--green-900);
  padding: var(--space-8) var(--space-6) var(--space-5);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  max-width: 1200px;
  margin: 0 auto var(--space-6);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  margin-top: var(--space-3);
  line-height: 1.7;
}

.footer h4 {
  font-size: var(--font-sm);
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--font-sm);
  padding: var(--space-2) 0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--green-400);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: var(--font-sm);
}

/* ══ SOCIAL PROOF TOAST (Real-Time Notifications) ══ */
.social-toast {
  position: fixed;
  bottom: 100px;
  left: var(--space-5);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateX(-120%);
  transition: transform 0.5s var(--ease-bounce);
}

.social-toast.show {
  transform: translateX(0);
}

.social-toast-icon {
  width: 40px;
  height: 40px;
  background: var(--green-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-weight: 700;
}

.social-toast-content {
  font-size: var(--font-sm);
}

.social-toast-content strong {
  display: block;
  color: var(--text-primary);
}

.social-toast-content span {
  color: var(--text-muted);
  font-size: var(--font-xs);
}

/* ══ STICKY CTA (Mobile) ══ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  padding: var(--space-3) var(--space-4);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
}

/* ══ MEET MITCH AVATAR ══ */
.mitch-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  overflow: hidden;
  background: var(--green-600);
  border: 2px solid var(--green-400);
}

.mitch-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* ══ FAQ ACCORDION (native <details>/<summary>) ══ */
.faq-item {
  padding: var(--space-5);
}

.faq-item > summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-indicator {
  color: var(--green-400);
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  transition: transform 0.2s var(--ease-smooth);
}

.faq-item .faq-indicator::before {
  content: "+";
}

.faq-item[open] .faq-indicator::before {
  content: "–";
}

.faq-item .faq-answer {
  margin-top: var(--space-3);
  color: var(--text-secondary);
}

/* ══ REVEAL ANIMATIONS ══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered reveals */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 18, 8, 0.98);
    flex-direction: column;
    padding: var(--space-4);
    border-bottom: 1px solid var(--glass-border);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  section {
    padding: var(--space-7) var(--space-4);
  }
  
  .hero {
    padding: var(--space-7) var(--space-4);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }
  
  .hero-stat {
    text-align: center;
  }
  
  .products-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
  
  .sticky-cta {
    display: block;
  }
  
  .footer {
    padding-bottom: 80px;
  }
  
  .custom-cursor,
  .cursor-trail {
    display: none \!important;
  }
}

/* ══ REDUCED MOTION ══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms \!important;
    transition-duration: 0.01ms \!important;
  }
  
  .reveal, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
