/* ============================================
   MuscleUp Premium Supplements — Design System
   Color palette extracted from reference image:
   - Deep green, golden yellow, cream/off-white
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --color-primary: #1a6b3c;
  --color-primary-dark: #0e4d2a;
  --color-primary-light: #2d8f54;
  --color-primary-lighter: #e8f5ec;

  /* Secondary / Gold */
  --color-secondary: #f5a623;
  --color-secondary-dark: #d4911a;
  --color-secondary-light: #ffc85c;
  --color-secondary-lighter: #fff4dc;

  /* Accent */
  --color-accent: #4caf50;
  --color-accent-light: #81c784;

  /* Backgrounds */
  --color-bg: #fefdf8;
  --color-bg-warm: #faf6ed;
  --color-bg-green: #f0f9f2;
  --color-bg-dark: #0e4d2a;

  /* Surfaces */
  --color-surface: #ffffff;
  --color-surface-alt: #f7faf7;

  /* Text */
  --color-text: #1a2e1a;
  --color-text-secondary: #5a6f5a;
  --color-text-muted: #8a9e8a;
  --color-text-on-dark: #ffffff;
  --color-text-on-primary: #ffffff;

  /* Borders */
  --color-border: #d4e4d4;
  --color-border-light: #e8f0e8;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,107,60,0.06);
  --shadow-md: 0 4px 12px rgba(26,107,60,0.08);
  --shadow-lg: 0 8px 30px rgba(26,107,60,0.10);
  --shadow-xl: 0 16px 50px rgba(26,107,60,0.12);
  --shadow-gold: 0 4px 20px rgba(245,166,35,0.25);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 100px;
  --radius-circle: 50%;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::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: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-5xl) 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-text);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.35);
}

.btn-secondary {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 17px 40px;
  font-size: 1.05rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(254,253,248,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(254,253,248,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.mobile-nav a:hover {
  color: var(--color-primary);
}

/* ---------- Hero Section ---------- */
.hero {
  padding-top: calc(var(--header-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* Gradient overlay on top of bg image */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,253,248,0.65) 0%, rgba(254,253,248,0.4) 40%, rgba(254,253,248,0.1) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,175,80,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-primary-lighter);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.hero h1 .text-green {
  color: var(--color-primary);
}

.hero h1 .text-gold {
  color: var(--color-secondary);
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}

.hero-image-bg {
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(ellipse, var(--color-primary-lighter) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Floating decorative leaves */
.floating-leaf {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: floatLeaf 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.floating-leaf:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-leaf:nth-child(2) { top: 60%; right: 3%; animation-delay: 2s; font-size: 1.5rem; }
.floating-leaf:nth-child(3) { bottom: 15%; left: 15%; animation-delay: 4s; font-size: 1.8rem; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ---------- Section Wave Dividers ---------- */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.section-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  transform: rotate(180deg);
}

.section-wave-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 var(--space-md);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.trust-info p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ---------- Featured Product ---------- */
.featured-product {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.featured-product .section-bg-decor {
  position: absolute;
  top: 5%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: url('../images/hero_bg_botanical.jpg') center/cover no-repeat;
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.featured-product .container {
  position: relative;
  z-index: 1;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.featured-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.featured-image img {
  max-width: 380px;
  width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(26,107,60,0.12));
}

.featured-badge {
  position: absolute;
  top: 10px;
  right: 30px;
  z-index: 2;
}

.featured-badge img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-md);
}

.featured-content .section-label {
  margin-bottom: var(--space-sm);
}

.featured-content .section-title {
  margin-bottom: var(--space-md);
}

.featured-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.featured-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.featured-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.featured-highlight:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.featured-highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary-lighter);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.featured-highlight h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.featured-highlight p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.featured-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.price-current {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.price-original {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price-badge {
  padding: 4px 12px;
  background: var(--color-secondary-lighter);
  color: var(--color-secondary-dark);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ---------- Benefits Section ---------- */
.benefits {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-green);
  position: relative;
  overflow: hidden;
}

.benefits .section-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/ingredients_bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.benefits > .container {
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.benefit-card {
  padding: var(--space-2xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ---------- Ingredients / Formula ---------- */
.ingredients {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.ingredients .section-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/ingredients_bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.ingredients .edge-decor-left {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: url('../images/tribulus_plant.jpg') center/cover no-repeat;
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.ingredients > .container {
  position: relative;
  z-index: 1;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  margin-top: var(--space-3xl);
}

.ingredients-image {
  display: flex;
  justify-content: center;
}

.ingredients-image img {
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.ingredient-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ingredient-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.ingredient-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.ingredient-number {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.ingredient-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.ingredient-info p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* ---------- Why Choose Us ---------- */
.why-choose {
  padding: var(--space-5xl) 0;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}

.why-choose .section-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/cta_bg_fitness.jpg') center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.why-choose > .container {
  position: relative;
  z-index: 1;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  z-index: 0;
}

.why-choose::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  z-index: 0;
}

.why-choose .section-label {
  color: var(--color-secondary);
}

.why-choose .section-title {
  color: var(--color-text-on-dark);
}

.why-choose .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.why-card {
  padding: var(--space-2xl);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ---------- Products Grid ---------- */
.products {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}

.products .section-bg-decor {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: url('../images/hero_bg_botanical.jpg') center/cover no-repeat;
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.products > .container {
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: var(--color-secondary);
  color: var(--color-text);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
}

.product-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: var(--color-bg-green);
}

.product-card-image img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: var(--space-lg);
}

.product-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.stars {
  color: var(--color-secondary);
  font-size: 0.85rem;
}

.rating-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.product-card-price .current {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
}

.product-card-price .original {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* ---------- Pricing / Packages ---------- */
.packages {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.packages .section-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/ingredients_bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.packages > .container {
  position: relative;
  z-index: 1;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  align-items: stretch;
}

.package-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-border-light);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card.popular {
  border-color: var(--color-primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.package-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.package-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.package-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.package-price {
  margin-bottom: var(--space-xl);
}

.package-price .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
}

.package-price .period {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.package-features {
  flex: 1;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li .check {
  color: var(--color-primary);
  font-weight: 700;
}

/* ---------- Lifestyle Section ---------- */
.lifestyle {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}

.lifestyle .section-bg-decor {
  position: absolute;
  top: -5%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: url('../images/hero_bg_botanical.jpg') center/cover no-repeat;
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.lifestyle > .container {
  position: relative;
  z-index: 1;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.lifestyle-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.lifestyle-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lifestyle-image:hover img {
  transform: scale(1.03);
}

.lifestyle-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
}

.lifestyle-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-primary-dark);
}

.lifestyle-play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-circle);
  opacity: 0.4;
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0; }
}

.lifestyle-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.lifestyle-content h2 span {
  color: var(--color-primary);
}

.lifestyle-content p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.lifestyle-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.lifestyle-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lifestyle-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.lifestyle-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ---------- Reviews ---------- */
.reviews {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-green);
  position: relative;
  overflow: hidden;
}

.reviews .section-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/ingredients_bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.reviews > .container {
  position: relative;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  background: var(--color-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
}

.review-author-info h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.review-author-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}

.faq-list {
  max-width: 760px;
  margin: var(--space-3xl) auto 0;
}

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  background: var(--color-surface);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-border);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition-fast);
  width: 100%;
  text-align: left;
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-circle);
  background: var(--color-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta .section-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/cta_bg_fitness.jpg') center/cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.final-cta .section-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,77,42,0.6) 0%, rgba(26,107,60,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

.final-cta > .container {
  position: relative;
  z-index: 1;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 50%);
  z-index: 0;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  position: relative;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  position: relative;
}

.final-cta .btn {
  position: relative;
}

.final-cta-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

.footer .section-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/hero_bg_botanical.jpg') center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1);
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-brand .logo-icon {
  background: var(--color-primary);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-xl);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-column a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-policies {
  display: flex;
  gap: var(--space-xl);
}

.footer-policies a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-policies a:hover {
  color: var(--color-secondary);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-grid { gap: var(--space-2xl); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

/* ---------- Mini Cart Drawer ---------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,46,26,0.6);
  backdrop-filter: blur(4px);
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 400px;
  max-width: 100vw;
  background: var(--color-surface);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  z-index: 4001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-text);
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.cart-close:hover {
  color: var(--color-primary);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl);
}

.cart-empty {
  text-align: center;
  padding: var(--space-4xl) 0;
  color: var(--color-text-secondary);
}

.cart-empty svg {
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  background: var(--color-bg-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.cart-item-price {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  height: 32px;
}

.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 100%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--color-bg-warm);
}

.qty-input {
  width: 36px;
  text-align: center;
  border: none;
  background: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: #e53935;
  cursor: pointer;
  text-decoration: underline;
}

.cart-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-warm);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-buttons .btn {
  width: 100%;
  justify-content: center;
}

/* Header Cart Icon */
.header-cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.header-cart-btn:hover {
  color: var(--color-primary);
}

.header-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-secondary);
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
}

@media (max-width: 768px) {
  :root {
    --space-5xl: 4rem;
    --space-4xl: 3rem;
  }

  .container { padding: 0 var(--space-lg); }

  .nav-links { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.2rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-description { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 350px; }

  .trust-items { gap: var(--space-xl); }

  .featured-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featured-image { order: -1; }
  .featured-highlights { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .ingredients-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ingredient-cards { max-width: 480px; margin: 0 auto; }

  .why-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .products-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .package-card.popular { transform: none; }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-image img { height: 300px; }

  .reviews-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }

  .section-title { font-size: 2rem; }
  .final-cta h2 { font-size: 2rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-stats { flex-direction: column; gap: var(--space-md); align-items: center; }
  .trust-items { flex-direction: column; align-items: center; }
  .section-title { font-size: 1.7rem; }
  .final-cta h2 { font-size: 1.7rem; }
  .btn-lg { padding: 14px 32px; font-size: 0.95rem; }
  .section-wave svg, .section-wave-top svg { height: 30px; }
}

/* ---------- Decorative Edge Images ---------- */
.edge-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.edge-decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(2px);
}

/* ---------- Parallax-like Background Layers ---------- */
.parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.parallax-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  opacity: 0.07;
  transform: translateY(-10%);
}

/* ---------- Botanical Scatter Decorations ---------- */
.botanical-scatter {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.botanical-scatter-item {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.06;
  filter: blur(1px);
}

.botanical-scatter-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.botanical-scatter-item:nth-child(1) {
  top: 10%;
  right: 3%;
  width: 180px;
  height: 180px;
}

.botanical-scatter-item:nth-child(2) {
  bottom: 15%;
  left: 2%;
  width: 140px;
  height: 140px;
  opacity: 0.05;
}

.botanical-scatter-item:nth-child(3) {
  top: 50%;
  left: 45%;
  width: 100px;
  height: 100px;
  opacity: 0.04;
}
