/*
 * Proteinverse Design System — main.css v1.0
 * Dark-first premium supplement store
 * Brand: Golden Amber + Glass Morphism + Bold Typography
 * Built by KORIX Inc. — April 2026
 */

/* ============================================================
   0. FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Backgrounds */
  --bg: 0 0% 4%;
  --bg2: 0 0% 8%;
  --bg3: 0 0% 12%;
  --bg4: 0 0% 14%;

  /* Foreground / Text */
  --fg: 0 0% 100%;
  --fg2: 0 0% 85%;
  --fg3: 0 0% 64%;
  --fg4: 0 0% 45%;

  /* Primary — Golden Amber */
  --primary: 42 90% 50%;
  --primary-dark: 42 85% 40%;
  --primary-light: 42 90% 60%;

  /* Health Accent Palette */
  --h-green: 160 60% 45%;
  --h-orange: 25 95% 55%;
  --h-teal: 185 65% 45%;
  --h-coral: 350 70% 60%;
  --h-gold: 42 90% 55%;
  --h-lime: 90 55% 50%;

  /* Semantic */
  --success: 142 76% 36%;
  --danger: 0 84% 60%;
  --warning: 42 90% 50%;

  /* Surfaces */
  --card: 0 0% 8%;
  --card-hover: 0 0% 10%;
  --border: 0 0% 18%;
  --border-subtle: 0 0% 100% / 0.08;
  --border-glass: 0 0% 100% / 0.1;

  /* Glass */
  --glass-bg: 0 0% 100% / 0.05;
  --glass-bg-hover: 0 0% 100% / 0.08;
  --glass-blur: 12px;

  /* Glow */
  --glow: 0 0 30px hsla(42, 90%, 50%, 0.3);
  --glow-sm: 0 0 15px hsla(42, 90%, 50%, 0.2);
  --glow-lg: 0 0 40px hsla(42, 90%, 50%, 0.4);
  --glow-btn: 0 0 20px hsla(42, 90%, 50%, 0.4);
  --glow-btn-hover: 0 0 30px hsla(42, 90%, 50%, 0.6);

  /* Typography */
  --font-heading: 'Saira Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing (base 4px) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 200ms;
  --t-base: 300ms;
  --t-slow: 500ms;

  /* Layout */
  --container: 1200px;
  --container-sm: 800px;
  --container-lg: 1400px;
  --nav-h: 88px;
  --nav-h-mobile: 68px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  background: hsl(var(--bg));
  color: hsl(var(--fg));
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

/* Focus ring — golden amber */
:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: hsl(var(--primary) / 0.3);
  color: hsl(var(--fg));
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: hsl(var(--fg));
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; }

p {
  color: hsl(var(--fg2));
  line-height: 1.7;
  max-width: 65ch;
}

.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.text-muted { color: hsl(var(--fg3)); }
.text-dim { color: hsl(var(--fg4)); }
.text-primary { color: hsl(var(--primary)); }
.text-white { color: hsl(var(--fg)); }

/* Label / Eyebrow text */
.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(var(--primary));
}

/* Gradient text effects */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--fg)) 0%, hsl(var(--fg3)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-health {
  background: linear-gradient(135deg, hsl(var(--h-green)) 0%, hsl(var(--h-teal)) 50%, hsl(var(--h-lime)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: linear-gradient(135deg, hsl(var(--h-orange)) 0%, hsl(var(--h-coral)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, hsl(var(--h-gold)) 0%, hsl(var(--h-orange)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.container-sm { max-width: var(--container-sm); }
.container-lg { max-width: var(--container-lg); }

/* Section spacing */
.section {
  padding: var(--sp-20) 0;
}

.section-lg {
  padding: var(--sp-32) 0;
}

/* Asymmetric grid helpers */
.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5-7 { grid-template-columns: 5fr 7fr; }
.grid-7-5 { grid-template-columns: 7fr 5fr; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; align-items: center; }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }

/* ============================================================
   5. GLASS CARD SYSTEM
   ============================================================ */
.glass-card {
  background: hsl(var(--glass-bg));
  border: 1px solid hsl(var(--border-glass));
  border-radius: var(--radius-xl);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: all var(--t-base) var(--ease-out);
}

.glass-card:hover {
  background: hsl(var(--glass-bg-hover));
}

/* Solid card variant */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  transition: all var(--t-base) var(--ease-out);
}

.card:hover {
  background: hsl(var(--card-hover));
}

/* Card with glow on hover */
.card-glow:hover,
.glass-card-glow:hover {
  box-shadow: var(--glow);
  border-color: hsl(var(--primary) / 0.3);
}

/* Persistent glow */
.glow-border {
  box-shadow: var(--glow-sm);
  border-color: hsl(var(--primary) / 0.2);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius);
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

/* Primary — golden amber with glow */
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(0 0% 5%);
  font-weight: 700;
  box-shadow: var(--glow-btn);
}

.btn-primary:hover {
  background: hsl(var(--primary-light));
  box-shadow: var(--glow-btn-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--glow-sm);
}

/* Secondary — glass */
.btn-secondary {
  background: hsl(var(--glass-bg));
  color: hsl(var(--fg));
  border: 1px solid hsl(var(--border));
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.btn-secondary:hover {
  background: hsl(var(--fg) / 0.1);
  border-color: hsl(var(--fg) / 0.2);
}

/* Ghost */
.btn-ghost {
  color: hsl(var(--fg3));
  padding: var(--sp-3) var(--sp-4);
}

.btn-ghost:hover {
  color: hsl(var(--fg));
  background: hsl(var(--fg) / 0.05);
}

/* WhatsApp CTA — green */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

/* Small */
.btn-sm {
  font-size: 0.75rem;
  padding: var(--sp-2) var(--sp-4);
}

/* Full width on mobile */
.btn-block {
  width: 100%;
  text-align: center;
}

/* ============================================================
   7. FORM INPUTS
   ============================================================ */
.input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: hsl(var(--bg2));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: hsl(var(--fg));
  font-size: 0.9375rem;
  transition: border-color var(--t-fast) ease;
}

.input::placeholder {
  color: hsl(var(--fg4));
}

.input:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}

.input-glass {
  background: hsl(var(--glass-bg));
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* ============================================================
   8. BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.badge-gold {
  background: hsl(var(--primary) / 0.15);
  color: hsl(var(--primary));
}

.badge-green {
  background: hsl(var(--success) / 0.15);
  color: hsl(var(--h-green));
}

.badge-teal {
  background: hsl(var(--h-teal) / 0.15);
  color: hsl(var(--h-teal));
}

/* ============================================================
   9. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--t-base) var(--ease-out);
}

.nav.scrolled {
  background: hsl(var(--bg) / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--border-subtle));
  box-shadow: 0 1px 20px hsl(0 0% 0% / 0.3);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

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

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

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--fg3));
  transition: color var(--t-fast) ease;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--fg));
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(var(--primary));
  border-radius: 1px;
}

/* Disabled nav link (Phase 2 placeholder) */
.nav-link-disabled {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--fg4));
  cursor: not-allowed;
  opacity: 0.5;
  position: relative;
}

/* Nav right-side actions (icons) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: hsl(var(--fg3));
  transition: all var(--t-fast) ease;
  cursor: pointer;
}

.nav-icon-btn:hover {
  color: hsl(var(--fg));
  background: hsl(var(--fg) / 0.05);
}

/* Disabled icon (Phase 2) */
.nav-icon-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Cart badge count */
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: hsl(var(--primary));
  color: hsl(0 0% 5%);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
}

/* Theme toggle icons — show/hide based on mode */
.icon-moon { display: none; }
.light .icon-sun { display: none; }
.light .icon-moon { display: block; }

/* Mobile disabled link */
.nav-mobile-disabled {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(var(--fg4));
  padding: var(--sp-3) 0;
  border-bottom: 1px solid hsl(var(--border-subtle));
  opacity: 0.5;
  cursor: not-allowed;
  display: flex;
  align-items: center;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.nav-mega-wrap {
  position: relative;
}

.nav-mega-wrap:hover > .nav-link svg {
  transform: rotate(180deg);
}

.nav-mega {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: hsl(var(--bg) / 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 20px 60px hsl(0 0% 0% / 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-base) var(--ease-out);
  pointer-events: none;
}

.nav-mega-wrap:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mega-inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-8);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: var(--sp-8);
}

.nav-mega-col {
  display: flex;
  flex-direction: column;
}

.nav-mega-col-highlight {
  background: hsl(var(--glass-bg));
  border: 1px solid hsl(var(--border-glass));
  border-radius: var(--radius);
  padding: var(--sp-5);
  margin: calc(-1 * var(--sp-2)) 0;
}

.nav-mega-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--primary));
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid hsl(var(--primary) / 0.2);
}

.nav-mega-sub {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(var(--fg2));
  margin-bottom: var(--sp-2);
}

.nav-mega-link {
  font-size: 0.9375rem;
  color: hsl(var(--fg3));
  padding: 5px 0;
  transition: color var(--t-fast) ease, padding-left var(--t-fast) ease;
  text-decoration: none;
  display: block;
}

.nav-mega-link:hover {
  color: hsl(var(--fg));
  padding-left: 6px;
}

.nav-mega-link-icon {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-mega-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-mega-badge {
  text-align: center;
  padding: var(--sp-4) var(--sp-4);
  border-top: 1px solid hsl(var(--border-subtle));
  font-size: 0.875rem;
  color: hsl(var(--fg3));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.nav-mega-badge a {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: hsl(var(--fg));
  border-radius: 1px;
  transition: all var(--t-base) var(--ease-out);
}

.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: hsl(var(--bg) / 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-8) var(--sp-6);
  flex-direction: column;
  gap: var(--sp-6);
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--t-base) var(--ease-out);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(var(--fg2));
  padding: var(--sp-3) 0;
  border-bottom: 1px solid hsl(var(--border-subtle));
  transition: color var(--t-fast) ease;
}

.nav-mobile a:hover {
  color: hsl(var(--primary));
}

/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlays on hero image */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, hsl(var(--bg)) 0%, hsl(var(--bg) / 0.7) 50%, transparent 100%),
    linear-gradient(to top, hsl(var(--bg)) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  margin-bottom: var(--sp-6);
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: var(--sp-8);
  color: hsl(var(--fg2));
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Trust bar below hero */
.trust-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid hsl(var(--border-subtle));
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  color: hsl(var(--fg3));
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trust-item strong {
  color: hsl(var(--fg));
}

/* ============================================================
   11. SECTION PATTERNS
   ============================================================ */
/* Section header — centered with label */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .label {
  margin-bottom: var(--sp-4);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--sp-4);
}

.section-header p {
  margin: 0 auto;
  color: hsl(var(--fg3));
}

/* Asymmetric section header — left aligned */
.section-header-left {
  max-width: 600px;
  margin-bottom: var(--sp-10);
}

.section-header-left .label {
  margin-bottom: var(--sp-3);
  display: block;
}

/* ============================================================
   12. GOAL CARDS (4-col, health colors)
   ============================================================ */
.goal-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: all var(--t-slow) var(--ease-out);
  cursor: pointer;
}

.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: hsl(var(--primary) / 0.3);
}

.goal-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 1.5rem;
  transition: transform var(--t-base) var(--ease-out);
}

.goal-card:hover .goal-icon {
  transform: scale(1.1);
}

.goal-icon-green { background: hsl(var(--h-green) / 0.15); color: hsl(var(--h-green)); }
.goal-icon-orange { background: hsl(var(--h-orange) / 0.15); color: hsl(var(--h-orange)); }
.goal-icon-teal { background: hsl(var(--h-teal) / 0.15); color: hsl(var(--h-teal)); }
.goal-icon-coral { background: hsl(var(--h-coral) / 0.15); color: hsl(var(--h-coral)); }
.goal-icon-gold { background: hsl(var(--h-gold) / 0.15); color: hsl(var(--h-gold)); }
.goal-icon-lime { background: hsl(var(--h-lime) / 0.15); color: hsl(var(--h-lime)); }

.goal-card h3 {
  margin-bottom: var(--sp-3);
}

.goal-card p {
  font-size: 0.875rem;
  color: hsl(var(--fg3));
}

/* ============================================================
   13. FOUNDER SECTION
   ============================================================ */
.founder-img-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.founder-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--bg) / 0.8) 0%, transparent 40%);
}

/* Decorative offset border */
.founder-img-wrap::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid hsl(var(--h-green) / 0.2);
  border-radius: var(--radius-2xl);
  z-index: -1;
}

.founder-stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid hsl(var(--border-subtle));
}

.founder-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1;
}

.founder-stat-label {
  font-size: 0.75rem;
  color: hsl(var(--fg3));
  margin-top: var(--sp-1);
}

/* ============================================================
   14. WHY CHOOSE / FEATURES (6-col)
   ============================================================ */
.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  transition: all var(--t-base) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.2);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.25rem;
  transition: all var(--t-base) var(--ease-out);
}

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

.feature-card h4 {
  margin-bottom: var(--sp-2);
}

.feature-card p {
  font-size: 0.8125rem;
  color: hsl(var(--fg3));
  line-height: 1.6;
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  max-width: var(--container-sm);
  margin: 0 auto;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: hsl(var(--fg2));
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  position: relative;
  padding-left: var(--sp-6);
  border-left: 3px solid hsl(var(--primary) / 0.3);
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid hsl(var(--primary) / 0.3);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: hsl(var(--fg3));
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: hsl(var(--fg4));
  transition: all var(--t-base) var(--ease-out);
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  background: hsl(var(--primary));
}

/* ============================================================
   16. STATS / SOCIAL PROOF
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.stat {
  text-align: center;
  padding: var(--sp-6);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: hsl(var(--primary));
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: hsl(var(--fg3));
  margin-top: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================================
   17. BLOG CARDS
   ============================================================ */
.blog-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--t-slow) var(--ease-out);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: hsl(var(--primary) / 0.3);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

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

.blog-card-body {
  padding: var(--sp-5);
}

.blog-card-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--h-green));
  margin-bottom: var(--sp-2);
}

.blog-card h4 {
  margin-bottom: var(--sp-2);
  transition: color var(--t-fast) ease;
  line-height: 1.3;
}

.blog-card:hover h4 {
  color: hsl(var(--primary));
}

.blog-card-excerpt {
  font-size: 0.8125rem;
  color: hsl(var(--fg3));
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid hsl(var(--border-subtle));
  font-size: 0.75rem;
  color: hsl(var(--fg4));
}

/* ============================================================
   18. CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: var(--sp-24) 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, hsl(var(--primary) / 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: var(--sp-4);
}

.cta-content p {
  margin: 0 auto var(--sp-8);
  text-align: center;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--card) / 0.5);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.footer-brand p {
  font-size: 0.8125rem;
  color: hsl(var(--fg3));
  margin-top: var(--sp-3);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--fg));
  margin-bottom: var(--sp-4);
}

.footer-links a {
  display: block;
  font-size: 0.8125rem;
  color: hsl(var(--fg3));
  padding: var(--sp-1) 0;
  transition: color var(--t-fast) ease;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: hsl(var(--glass-bg));
  border: 1px solid hsl(var(--border-glass));
  color: hsl(var(--fg3));
  transition: all var(--t-fast) ease;
}

.footer-social a:hover {
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.3);
}

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid hsl(var(--border-subtle));
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: hsl(var(--fg4));
}

.footer-bottom a {
  color: hsl(var(--fg3));
  transition: color var(--t-fast) ease;
}

.footer-bottom a:hover {
  color: hsl(var(--primary));
}

/* Trust badges in footer */
.footer-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding: var(--sp-3) var(--sp-4);
  background: hsl(var(--glass-bg));
  border: 1px solid hsl(var(--border-glass));
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: hsl(var(--fg3));
}

.footer-trust svg {
  flex-shrink: 0;
}

/* ============================================================
   20. WHATSAPP FLOATING CTA (with tooltip label)
   ============================================================ */
.wa-float-wrap {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-direction: row-reverse;
}

.whatsapp-float {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.4),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: all var(--t-base) var(--ease-out);
  animation: wa-pulse 2s infinite;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
}

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

.wa-float-label {
  background: hsl(var(--bg2));
  color: hsl(var(--fg));
  font-size: 0.8125rem;
  font-weight: 600;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  box-shadow: 0 4px 12px hsl(0 0% 0% / 0.3);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--t-base) var(--ease-out);
  pointer-events: none;
}

.wa-float-wrap:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   21. ANIMATIONS
   ============================================================ */

/* Scroll-triggered fade in up */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .anim-up:nth-child(1) { transition-delay: 0s; }
.stagger > .anim-up:nth-child(2) { transition-delay: 0.1s; }
.stagger > .anim-up:nth-child(3) { transition-delay: 0.2s; }
.stagger > .anim-up:nth-child(4) { transition-delay: 0.3s; }
.stagger > .anim-up:nth-child(5) { transition-delay: 0.4s; }
.stagger > .anim-up:nth-child(6) { transition-delay: 0.5s; }

/* Fade in from left/right */
.anim-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.anim-left.visible { opacity: 1; transform: translateX(0); }

.anim-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.anim-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.anim-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.anim-scale.visible { opacity: 1; transform: scale(1); }

/* Keyframe animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsl(var(--primary) / 0.3); }
  50% { box-shadow: 0 0 40px hsl(var(--primary) / 0.6); }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.float { animation: float 3s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.shimmer {
  background: linear-gradient(90deg, transparent, hsl(var(--fg) / 0.08), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

/* ============================================================
   22. GRAIN OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   23. DECORATIVE GLOWS (background)
   ============================================================ */
.glow-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(150px);
  opacity: 0.05;
}

.glow-bg-green {
  background: hsl(var(--h-green));
  width: 500px;
  height: 500px;
}

.glow-bg-gold {
  background: hsl(var(--primary));
  width: 400px;
  height: 400px;
}

/* ============================================================
   24. UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.pt-section { padding-top: var(--sp-20); }
.pb-section { padding-bottom: var(--sp-20); }

/* Scrollbar hide */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* ============================================================
   25. RESPONSIVE
   ============================================================ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5-7,
  .grid-7-5 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

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

  .hero-content { max-width: 100%; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root {
    --nav-h: var(--nav-h-mobile);
  }

  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .section { padding: var(--sp-12) 0; }
  .section-lg { padding: var(--sp-16) 0; }

  .hero { min-height: 85vh; }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .trust-bar {
    gap: var(--sp-4);
  }

  .grid-2 { grid-template-columns: 1fr; }

  .founder-stats {
    flex-wrap: wrap;
    gap: var(--sp-4);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-3);
    text-align: center;
  }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--sp-4);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .grid-4,
  .grid-3 { grid-template-columns: 1fr; }

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

  .whatsapp-float {
    bottom: var(--sp-4);
    right: var(--sp-4);
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

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

  html { scroll-behavior: auto; }

  .anim-up, .anim-left, .anim-right, .anim-scale {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   25b. PROMO BANNER (below nav)
   ============================================================ */
.promo-banner {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 95;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--h-orange)));
  color: hsl(0 0% 5%);
  padding: var(--sp-2) var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

.promo-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.promo-countdown {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.promo-unit {
  text-align: center;
  background: hsl(0 0% 5% / 0.15);
  border-radius: 4px;
  padding: 2px 6px;
  min-width: 36px;
}

.promo-unit span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.promo-unit small {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.promo-sep {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  opacity: 0.5;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.promo-cta {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  background: hsl(0 0% 5%);
  color: hsl(var(--primary));
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--t-fast) ease;
}

.promo-cta:hover {
  background: hsl(0 0% 15%);
}

.promo-close {
  position: absolute;
  right: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.25rem;
  color: hsl(0 0% 5% / 0.5);
  cursor: pointer;
  padding: var(--sp-1);
  line-height: 1;
}

.promo-close:hover {
  color: hsl(0 0% 5%);
}

/* Adjust hero to account for promo banner */
.hero-carousel {
  padding-top: 40px; /* promo banner height */
}

/* ============================================================
   25c. ANIMATED COUNTER
   ============================================================ */
.counter-num {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  display: inline-block;
}

/* ============================================================
   26. SCROLLING TICKER / MARQUEE
   ============================================================ */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--sp-8) 0;
  background: hsl(var(--primary));
  color: hsl(0 0% 5%);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 0 var(--sp-10);
  flex-shrink: 0;
}

.ticker-sep {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(0 0% 5% / 0.3);
  flex-shrink: 0;
}

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

/* ============================================================
   26b. HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* First slide sets the height context */
.hero-slide:first-child {
  position: relative;
}

.hero-dots {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-2);
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: hsl(var(--fg) / 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  padding: 0;
}

.hero-dot.active {
  width: 32px;
  background: hsl(var(--primary));
}

.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--sp-4);
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: hsl(var(--bg) / 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--border-glass));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--fg));
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--t-fast) ease;
  padding: 0;
}

.hero-arrow:hover {
  background: hsl(var(--primary) / 0.2);
  border-color: hsl(var(--primary) / 0.4);
}

/* ============================================================
   26c. HORIZONTAL PRODUCT SCROLLER
   ============================================================ */
.product-scroll-wrap {
  position: relative;
}

.product-scroll {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--sp-4);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-scroll::-webkit-scrollbar { display: none; }

.product-scroll > * {
  scroll-snap-align: start;
  flex: 0 0 260px;
}

.product-scroll-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
}

.product-scroll-header h3 {
  margin: 0;
}

.scroll-arrows {
  display: flex;
  gap: var(--sp-2);
}

.scroll-arrow {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: hsl(var(--glass-bg));
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: hsl(var(--fg3));
  transition: all var(--t-fast) ease;
  padding: 0;
}

.scroll-arrow:hover {
  background: hsl(var(--primary) / 0.15);
  border-color: hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
}

/* ============================================================
   26c2. FOUNDER CUTOUT STYLE (not traditional box)
   ============================================================ */
.founder-cutout {
  position: relative;
  max-width: 420px;
}

.founder-cutout img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-2xl);
  width: 100%;
}

/* Decorative glow behind */
.founder-cutout::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -8%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, hsl(var(--primary) / 0.2) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  border-radius: 50%;
}

/* Decorative geometric accent */
.founder-cutout::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border: 2px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius-2xl);
  z-index: 1;
}

/* Stats overlay on image */
.founder-cutout-stats {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-4);
  right: var(--sp-4);
  z-index: 3;
  background: hsl(var(--bg) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border-glass));
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  justify-content: space-around;
}

.founder-cutout-stat {
  text-align: center;
}

.founder-cutout-stat-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1;
}

.founder-cutout-stat-label {
  font-size: 0.6rem;
  color: hsl(var(--fg3));
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ============================================================
   26c3. CATEGORY TABS
   ============================================================ */
.cat-tabs {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
  justify-content: center;
}

.cat-tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
  background: hsl(var(--glass-bg));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--fg3));
  cursor: pointer;
  transition: all var(--t-fast) ease;
}

.cat-tab:hover {
  color: hsl(var(--fg));
  border-color: hsl(var(--fg) / 0.2);
}

.cat-tab.active {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(0 0% 5%);
}

.cat-panel {
  display: none;
}

.cat-panel.active {
  display: grid;
}

/* ============================================================
   26d. FLAVOUR CARDS
   ============================================================ */
.flavour-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-xl);
  transition: all var(--t-base) var(--ease-out);
  cursor: pointer;
}

.flavour-card:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--primary) / 0.2);
}

.flavour-swatch {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.flavour-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.flavour-card p {
  font-size: 0.75rem;
  color: hsl(var(--fg3));
  margin: 0;
}

/* ============================================================
   26e. INSTAGRAM GRID
   ============================================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.insta-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: hsl(var(--bg3));
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(var(--bg) / 0.4);
  opacity: 0;
  transition: opacity var(--t-base) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-item:hover::after {
  opacity: 1;
}

/* ============================================================
   26f. SMASH BALLOON INSTAGRAM OVERRIDE (match dark theme)
   ============================================================ */
#sb_instagram,
#sbi_images {
  background: transparent !important;
}

#sb_instagram .sbi_photo_wrap {
  border-radius: var(--radius) !important;
  overflow: hidden !important;
}

#sb_instagram .sbi_photo_wrap img {
  transition: transform var(--t-slow) var(--ease-out) !important;
}

#sb_instagram .sbi_photo_wrap:hover img {
  transform: scale(1.08) !important;
}

#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_follow_btn a {
  background: hsl(var(--primary)) !important;
  color: hsl(0 0% 5%) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  font-size: 0.8rem !important;
}

/* ============================================================
   26g. FEATURED IN (bigger)
   ============================================================ */
.featured-in {
  padding: var(--sp-12) 0;
  background: hsl(var(--bg2));
  border-top: 1px solid hsl(var(--border-subtle));
  border-bottom: 1px solid hsl(var(--border-subtle));
}

.featured-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
}

.featured-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(var(--fg3));
  transition: color var(--t-fast) ease;
  text-decoration: none;
}

.featured-logo:hover {
  color: hsl(var(--primary));
}

.featured-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: hsl(var(--glass-bg));
  border: 1px solid hsl(var(--border-glass));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   27. LIGHT MODE
   ============================================================ */
.light {
  --bg: 0 0% 98%;
  --bg2: 0 0% 100%;
  --bg3: 0 0% 94%;
  --bg4: 0 0% 92%;

  --fg: 0 0% 8%;
  --fg2: 0 0% 20%;
  --fg3: 0 0% 40%;
  --fg4: 0 0% 55%;

  --primary: 42 90% 45%;
  --primary-dark: 42 85% 35%;
  --primary-light: 42 90% 55%;

  --card: 0 0% 100%;
  --card-hover: 0 0% 97%;
  --border: 0 0% 85%;
  --border-subtle: 0 0% 0% / 0.06;
  --border-glass: 0 0% 0% / 0.08;

  --glass-bg: 0 0% 100% / 0.7;
  --glass-bg-hover: 0 0% 100% / 0.85;

  --glow: 0 0 30px hsla(42, 90%, 45%, 0.15);
  --glow-sm: 0 0 15px hsla(42, 90%, 45%, 0.1);
  --glow-lg: 0 0 40px hsla(42, 90%, 45%, 0.2);
  --glow-btn: 0 0 20px hsla(42, 90%, 45%, 0.2);
  --glow-btn-hover: 0 0 30px hsla(42, 90%, 45%, 0.35);
}

.light body::before {
  opacity: 0.015;
}

.light .nav.scrolled {
  background: hsl(0 0% 100% / 0.9);
  box-shadow: 0 1px 20px hsl(0 0% 0% / 0.08);
}

.light .wa-float-label {
  background: hsl(0 0% 100%);
  border-color: hsl(0 0% 88%);
  box-shadow: 0 4px 12px hsl(0 0% 0% / 0.08);
}

.light .text-gradient {
  background: linear-gradient(135deg, hsl(0 0% 8%) 0%, hsl(0 0% 40%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ============================================================
   27. PRODUCT PLACEHOLDER CARDS (Phase 1 — before WooCommerce)
   ============================================================ */
.product-placeholder {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}

.product-placeholder:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.2);
}

.product-placeholder-img {
  aspect-ratio: 1/1;
  background: hsl(var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--fg4));
  font-size: 0.75rem;
  overflow: hidden;
}

.product-placeholder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-placeholder-body {
  padding: var(--sp-4);
}

.product-placeholder-body h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}

.product-placeholder-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.product-placeholder-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 2;
}

/* Coming soon overlay on product cards */
.product-coming-soon {
  position: absolute;
  inset: 0;
  background: hsl(var(--bg) / 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
  border-radius: var(--radius-xl);
  z-index: 3;
}

.product-placeholder:hover .product-coming-soon {
  opacity: 1;
}

.product-coming-soon span {
  background: hsl(var(--primary));
  color: hsl(0 0% 5%);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius);
}

/* ============================================================
   28. TRANSFORMATION STORIES / PLACEHOLDER CARDS
   ============================================================ */
.story-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.2);
}

.story-card-img {
  aspect-ratio: 4/3;
  background: hsl(var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--fg4));
  font-size: 0.8rem;
  overflow: hidden;
  position: relative;
}

.story-card-body {
  padding: var(--sp-5);
}

.story-card-body h4 {
  margin-bottom: var(--sp-2);
}

.story-card-body p {
  font-size: 0.8125rem;
  color: hsl(var(--fg3));
}

/* ============================================================
   29. PAGE CONTENT TYPOGRAPHY (blog posts, legal pages)
   ============================================================ */
.page-content h2 {
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid hsl(var(--border-subtle));
}

.page-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.page-content h3 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.page-content h4 {
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
}

.page-content p {
  margin-bottom: var(--sp-4);
  color: hsl(var(--fg2));
}

.page-content ul,
.page-content ol {
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-6);
  color: hsl(var(--fg2));
}

.page-content li {
  margin-bottom: var(--sp-2);
  line-height: 1.7;
}

.page-content ul li { list-style: disc; }
.page-content ol li { list-style: decimal; }

.page-content strong {
  color: hsl(var(--fg));
  font-weight: 600;
}

.page-content a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast) ease;
}

.page-content a:hover {
  color: hsl(var(--primary-light));
}

.page-content blockquote {
  border-left: 3px solid hsl(var(--primary) / 0.3);
  padding: var(--sp-4) var(--sp-6);
  margin: var(--sp-6) 0;
  background: hsl(var(--card));
  border-radius: 0 var(--radius) var(--radius) 0;
  color: hsl(var(--fg2));
  font-style: italic;
}

.page-content img {
  border-radius: var(--radius);
  margin: var(--sp-6) 0;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-6) 0;
}

.page-content th,
.page-content td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid hsl(var(--border));
  text-align: left;
  font-size: 0.875rem;
}

.page-content th {
  background: hsl(var(--card));
  font-weight: 600;
  color: hsl(var(--fg));
}

/* FAQ details/summary styling */
details summary::-webkit-details-marker { display: none; }
details[open] summary svg { transform: rotate(180deg); }

/* ============================================================
   TABLE OF CONTENTS (blog posts)
   ============================================================ */
.toc {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8);
}

.toc-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(var(--primary));
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.toc ol {
  margin: 0;
  padding-left: var(--sp-5);
  counter-reset: toc-counter;
  list-style: none;
}

.toc ol li {
  counter-increment: toc-counter;
  margin-bottom: var(--sp-2);
  font-size: 0.875rem;
  line-height: 1.5;
}

.toc ol li::before {
  content: counter(toc-counter) ".";
  color: hsl(var(--primary));
  font-weight: 600;
  margin-right: var(--sp-2);
  font-size: 0.8125rem;
}

.toc a {
  color: hsl(var(--fg3));
  text-decoration: none;
  transition: color var(--t-fast) ease;
}

.toc a:hover {
  color: hsl(var(--primary));
}

/* Nested TOC (H3s under H2s) */
.toc ol ol {
  margin-top: var(--sp-2);
  padding-left: var(--sp-5);
}

.toc ol ol li {
  font-size: 0.8125rem;
  margin-bottom: var(--sp-1);
}

.toc ol ol li::before {
  content: "–";
  color: hsl(var(--fg4));
}

/* ============================================================
   BLOG FAQ ACCORDION
   ============================================================ */
.blog-faq {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid hsl(var(--border-subtle));
}

.blog-faq-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.blog-faq details {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: border-color var(--t-fast) ease;
}

.blog-faq details[open] {
  border-color: hsl(var(--primary) / 0.3);
}

.blog-faq summary {
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: hsl(var(--fg));
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}

.blog-faq summary:hover {
  color: hsl(var(--primary));
}

.blog-faq summary svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: hsl(var(--fg4));
}

.blog-faq details[open] summary svg {
  transform: rotate(180deg);
  color: hsl(var(--primary));
}

.blog-faq .faq-answer {
  padding: 0 var(--sp-5) var(--sp-4);
  font-size: 0.875rem;
  color: hsl(var(--fg3));
  line-height: 1.8;
}

/* ============================================================
   READING PROGRESS BAR
   ============================================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--h-orange)));
  z-index: 9998;
  transition: width 50ms linear;
}

/* Share buttons */
.share-buttons {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--t-fast) ease;
  text-decoration: none;
}

.share-btn:hover { transform: translateY(-1px); }
.share-btn-wa { background: #25D36620; color: #25D366; }
.share-btn-wa:hover { background: #25D36630; }
.share-btn-tw { background: #1DA1F220; color: #1DA1F2; }
.share-btn-tw:hover { background: #1DA1F230; }
.share-btn-fb { background: #1877F220; color: #1877F2; }
.share-btn-fb:hover { background: #1877F230; }
.share-btn-copy { background: hsl(var(--glass-bg)); color: hsl(var(--fg3)); border: 1px solid hsl(var(--border)); }
.share-btn-copy:hover { color: hsl(var(--fg)); }

/* ============================================================
   30. VISUAL ENERGY — Ken Burns, Parallax, Shimmer, Tilt
   ============================================================ */

/* Ken Burns on hero images — slow zoom + pan */
@keyframes kenburns-1 {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}
@keyframes kenburns-2 {
  0%   { transform: scale(1.1) translate(-2%, 0); }
  100% { transform: scale(1) translate(1%, -2%); }
}
@keyframes kenburns-3 {
  0%   { transform: scale(1) translate(1%, 1%); }
  100% { transform: scale(1.12) translate(-1%, 2%); }
}

.hero-slide .hero-bg img {
  animation: kenburns-1 20s ease-in-out infinite alternate;
}
.hero-slide[data-slide="1"] .hero-bg img,
.hero-slide:nth-child(2) .hero-bg {
  animation: kenburns-2 18s ease-in-out infinite alternate;
}
.hero-slide[data-slide="2"] .hero-bg img {
  animation: kenburns-3 22s ease-in-out infinite alternate;
}

/* Full-width parallax image break */
.parallax-break {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-break img {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center 30%;
}

.parallax-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--bg) / 0.85) 0%, hsl(var(--bg) / 0.4) 50%, hsl(var(--bg) / 0.85) 100%);
}

.parallax-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 0 var(--sp-4);
}

/* Shimmer effect on placeholder product images */
.product-placeholder-img {
  position: relative;
  overflow: hidden;
}

.product-placeholder-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, hsl(var(--fg) / 0.04), transparent);
  animation: placeholder-shimmer 3s ease-in-out infinite;
}

@keyframes placeholder-shimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

/* Card tilt + shine on hover */
.card-tilt {
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card-tilt::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, hsl(var(--fg) / 0.03) 50%, transparent 60%);
  transform: rotate(0deg);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.card-tilt:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: var(--glow), 0 20px 40px hsl(0 0% 0% / 0.3);
}

.card-tilt:hover::before {
  transform: rotate(180deg);
}

/* Section with colored tint backgrounds */
.section-tint-green {
  background: linear-gradient(135deg, hsl(var(--bg)) 0%, hsl(160 30% 6%) 50%, hsl(var(--bg)) 100%);
}

.section-tint-amber {
  background: linear-gradient(135deg, hsl(var(--bg)) 0%, hsl(42 40% 7%) 50%, hsl(var(--bg)) 100%);
}

.section-tint-coral {
  background: linear-gradient(135deg, hsl(var(--bg)) 0%, hsl(350 30% 7%) 50%, hsl(var(--bg)) 100%);
}

/* Floating/pulsing trust icons */
.trust-icon-float {
  animation: trust-float 3s ease-in-out infinite;
}

.trust-icon-float:nth-child(2) { animation-delay: 0.5s; }
.trust-icon-float:nth-child(3) { animation-delay: 1s; }
.trust-icon-float:nth-child(4) { animation-delay: 1.5s; }
.trust-icon-float:nth-child(5) { animation-delay: 2s; }
.trust-icon-float:nth-child(6) { animation-delay: 2.5s; }

@keyframes trust-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Slide-in-from-left animation (variation) */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.anim-slide-left.visible { opacity: 1; transform: translateX(0); }

/* Slide-in-from-right animation */
.anim-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.anim-slide-right.visible { opacity: 1; transform: translateX(0); }

/* Scale + rotate subtle */
.anim-zoom {
  opacity: 0;
  transform: scale(0.85) rotate(-1deg);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.anim-zoom.visible { opacity: 1; transform: scale(1) rotate(0deg); }

/* Clip reveal from bottom */
.anim-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s var(--ease-out);
}
.anim-reveal.visible { clip-path: inset(0 0 0 0); }

/* Pulsing golden border for emphasis */
.pulse-border {
  animation: pulse-border-anim 2s ease-in-out infinite;
}

@keyframes pulse-border-anim {
  0%, 100% { border-color: hsl(var(--primary) / 0.2); box-shadow: 0 0 0 0 hsl(var(--primary) / 0.15); }
  50% { border-color: hsl(var(--primary) / 0.5); box-shadow: 0 0 20px 0 hsl(var(--primary) / 0.1); }
}

/* Print */
@media print {
  body { background: #fff; color: #000; }
  body::before { display: none; }
  .nav, .wa-float-wrap, .grain-overlay { display: none; }
}
