/* ========================
   DESIGN TOKENS
======================== */
:root {
  --green-deep: #1a3a1f;
  --green-mid: #2d6a35;
  --green-bright: #4caf50;
  --green-light: #a8d5a2;
  --cream: #f5f0e8;
  --cream-dark: #ebe4d6;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --text-dark: #1a1a1a;
  --text-mid: #555;
  --text-light: #888;
  --white: #ffffff;
  --card-bg: #ffffff;
  --nav-bg: rgba(255,255,255,0.94);
  --section-alt: #f8f5ef;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.11);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}
[data-theme="dark"] {
  --cream: #0f1a10;
  --cream-dark: #162119;
  --text-dark: #f0ead8;
  --text-mid: #c0b8a8;
  --text-light: #777;
  --card-bg: #1c2e1e;
  --nav-bg: rgba(15,26,16,0.96);
  --section-alt: #162119;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
}

/* ========================
   BASE
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  transition: background 0.4s, color 0.4s;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { line-height: 1.7; }
ul { list-style: none; }

/* ========================
   NAV
======================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(74,134,74,0.1);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-icon { width: 36px; height: 36px; background: var(--green-mid); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--green-deep); }
[data-theme="dark"] .nav-logo-text { color: var(--green-light); }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { padding: 8px 12px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; color: var(--text-mid); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { background: rgba(76,175,80,0.12); color: var(--green-mid); font-weight: 600; }
[data-theme="dark"] .nav-links a:hover, [data-theme="dark"] .nav-links a.active { background: rgba(168,213,162,0.12); color: var(--green-light); }
.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.theme-btn { width: 40px; height: 40px; border-radius: 10px; background: var(--cream-dark); color: var(--text-mid); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); flex-shrink: 0; }
.theme-btn:hover { background: var(--green-light); }
.nav-cta { padding: 10px 18px; background: var(--green-mid); color: #fff !important; border-radius: 10px; font-size: 0.875rem; font-weight: 600; transition: var(--transition); white-space: nowrap; }
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; border-radius: 10px; background: var(--cream-dark); align-items: center; justify-content: center; flex-shrink: 0; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer — always in DOM, slides from RIGHT, hidden on desktop via pointer-events+opacity */
.mobile-nav {
  position: fixed; top: 64px; left: auto; right: 0; bottom: 0; width: 100%; max-width: 340px;
  background: var(--cream); z-index: 999; padding: 24px 20px 40px;
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), box-shadow 0.38s ease;
  box-shadow: none;
  /* Hidden on desktop — no pointer interaction, no visibility */
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.open {
  transform: translateX(0);
  box-shadow: -8px 0 32px rgba(0,0,0,0.18);
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav a { display: block; padding: 16px 20px; border-radius: var(--radius-sm); font-size: 1.05rem; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--cream-dark); transition: var(--transition); }
.mobile-nav a:hover { background: rgba(76,175,80,0.1); color: var(--green-mid); }
.mobile-nav .mobile-cta { margin-top: 16px; background: var(--green-mid); color: #fff; text-align: center; border-radius: var(--radius-md); font-weight: 600; border-bottom: none; }
/* Backdrop overlay when drawer open */
.nav-backdrop { display: none; position: fixed; inset: 0; z-index: 998; background: rgba(0,0,0,0.35); backdrop-filter: blur(2px); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ========================
   PAGE HERO (inner pages)
======================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, #2a5030 55%, #1a3a1f 100%);
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  margin-top: 0;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(76,175,80,0.15) 0%, transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--cream); clip-path: ellipse(55% 100% at 50% 100%);
}
[data-theme="dark"] .page-hero::after { background: var(--cream); }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; color: #fff; line-height: 1.1; margin: 12px 0 16px; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ========================
   HERO (home only)
======================== */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, var(--green-deep) 0%, #2a5030 50%, #1a3a1f 100%);
  display: flex; align-items: center;
  padding: 90px 24px 60px; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(76,175,80,0.18) 0%, transparent 70%); }
.hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: var(--cream); clip-path: ellipse(55% 100% at 50% 100%); }
[data-theme="dark"] .hero::after { background: var(--cream); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; position: relative; z-index: 1; width: 100%; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); border-radius: 100px; color: var(--gold-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.hero-tag span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem,5.5vw,4.2rem); font-weight: 900; line-height: 1.08; color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero p { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.72); margin-bottom: 32px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 44px; }
.hero-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 16px 10px; text-align: center; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-blob { width: clamp(260px,36vw,420px); height: clamp(260px,36vw,420px); background: radial-gradient(ellipse at 40% 40%, rgba(76,175,80,0.3), rgba(44,106,53,0.5) 60%, rgba(26,58,31,0.8)); border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%; animation: morph 8s ease-in-out infinite; position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(76,175,80,0.25); overflow: hidden; }
@keyframes morph { 0%,100%{border-radius:60% 40% 70% 30% / 40% 60% 40% 60%} 33%{border-radius:50% 50% 30% 70% / 60% 40% 60% 40%} 66%{border-radius:40% 60% 50% 50% / 30% 70% 30% 70%} }
.hero-emoji { font-size: clamp(80px,11vw,130px); animation: float 5s ease-in-out infinite; width: 75%; height: 75%; display: flex; align-items: center; justify-content: center; }
.hero-emoji svg { filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3)); }
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }
.hero-badge { position: absolute; top: 16px; right: -10px; background: var(--gold); color: var(--green-deep); font-weight: 700; font-size: 0.75rem; padding: 8px 14px; border-radius: 100px; box-shadow: 0 4px 14px rgba(201,168,76,0.4); animation: float 4s ease-in-out infinite 0.5s; white-space: nowrap; }
.hero-badge-2 { position: absolute; bottom: 24px; left: -10px; background: rgba(255,255,255,0.95); color: var(--green-deep); font-weight: 700; font-size: 0.75rem; padding: 10px 16px; border-radius: 100px; box-shadow: 0 4px 14px rgba(0,0,0,0.12); animation: float 4.5s ease-in-out infinite 1s; white-space: nowrap; }

/* ========================
   FEATURES STRIP
======================== */
.features-strip { background: var(--green-deep); padding: 24px; overflow: hidden; }
.features-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 36px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.features-strip-inner::-webkit-scrollbar { display: none; }
.feature-chip { display: flex; align-items: center; gap: 10px; flex-shrink: 0; color: rgba(255,255,255,0.88); font-size: 0.875rem; font-weight: 500; }
.feature-chip-icon { font-size: 18px; width: 38px; height: 38px; background: rgba(76,175,80,0.22); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ========================
   LAYOUT
======================== */
.section { padding: 72px 24px; }
.section-alt { background: var(--section-alt); }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-subtitle { margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 12px; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--green-mid); border-radius: 2px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.8rem); font-weight: 800; line-height: 1.15; color: var(--text-dark); margin-bottom: 14px; }
.section-title em { font-style: normal; color: var(--green-mid); }
.section-subtitle { font-size: 1rem; line-height: 1.7; color: var(--text-mid); max-width: 540px; }
.small-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; margin-top: 4px; }

/* ========================
   BUTTONS
======================== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--gold); color: var(--green-deep); border-radius: var(--radius-sm); font-weight: 700; font-size: 0.93rem; transition: var(--transition); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border: 2px solid rgba(255,255,255,0.3); color: #fff; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.93rem; transition: var(--transition); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-green { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--green-mid); color: #fff; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.93rem; transition: var(--transition); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-outline-green { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border: 2px solid var(--green-mid); color: var(--green-mid); border-radius: var(--radius-sm); font-weight: 600; font-size: 0.93rem; transition: var(--transition); }
.btn-outline-green:hover { background: var(--green-mid); color: #fff; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: #fff; color: var(--green-deep); border-radius: var(--radius-sm); font-weight: 700; font-size: 0.93rem; transition: var(--transition); }
.btn-white:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost-white { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border: 2px solid rgba(255,255,255,0.35); color: #fff; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.93rem; transition: var(--transition); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }

/* ========================
   HOME — ABOUT SECTION
======================== */
.visual-card-stack { position: relative; height: 420px; }
.visual-main { position: absolute; top: 0; left: 0; width: 72%; height: 340px; background: linear-gradient(135deg,#e8f5e9,#c8e6c9); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 100px; border: 3px solid rgba(76,175,80,0.18); overflow: hidden; box-shadow: var(--shadow-card); }
[data-theme="dark"] .visual-main { background: rgba(76,175,80,0.1); border-color: rgba(76,175,80,0.2); }
.visual-sub { position: absolute; bottom: 0; right: 0; width: 52%; height: 180px; background: var(--green-mid); border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 20px; box-shadow: var(--shadow-card); }
.visual-sub-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--gold-light); }
.visual-sub-text { font-size: 0.82rem; color: rgba(255,255,255,0.8); text-align: center; line-height: 1.4; }
.pillar-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 18px; background: var(--card-bg); border-radius: var(--radius-sm); border: 1px solid var(--cream-dark); transition: var(--transition); box-shadow: var(--shadow-soft); }
.pillar-row:hover { border-color: var(--green-light); transform: translateX(4px); }
.pillar-icon { font-size: 22px; width: 44px; height: 44px; background: linear-gradient(135deg,#e8f5e9,#c8e6c9); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
[data-theme="dark"] .pillar-icon { background: rgba(76,175,80,0.13); }
.stat-chip { padding: 12px 20px; background: var(--card-bg); border: 1px solid var(--cream-dark); border-radius: var(--radius-sm); text-align: center; box-shadow: var(--shadow-soft); }
.stat-chip strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--green-mid); }
.stat-chip span { font-size: 0.78rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; }

/* ========================
   PRODUCT CARDS
======================== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 22px; }
.product-card { display: block; background: var(--card-bg); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--cream-dark); transition: var(--transition); position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }
.product-card-visual { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 75px; position: relative; overflow: hidden; }
.product-card-visual [data-svg] { display: flex; align-items: center; justify-content: center; }
.product-card-visual svg { filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12)); }
.pc-green .product-card-visual { background: linear-gradient(135deg,#e8f5e9,#a5d6a7); }
.pc-yellow .product-card-visual { background: linear-gradient(135deg,#fff9e6,#ffe082); }
.pc-blue .product-card-visual { background: linear-gradient(135deg,#e3f2fd,#90caf9); }
.pc-orange .product-card-visual { background: linear-gradient(135deg,#fff3e0,#ffcc80); }
.pc-purple .product-card-visual { background: linear-gradient(135deg,#f3e5f5,#ce93d8); }
.pc-teal .product-card-visual { background: linear-gradient(135deg,#e0f7fa,#80deea); }
[data-theme="dark"] .pc-green .product-card-visual { background: linear-gradient(135deg,rgba(46,125,50,0.3),rgba(76,175,80,0.18)); }
[data-theme="dark"] .pc-yellow .product-card-visual { background: linear-gradient(135deg,rgba(245,127,23,0.2),rgba(251,192,45,0.12)); }
[data-theme="dark"] .pc-blue .product-card-visual { background: linear-gradient(135deg,rgba(21,101,192,0.2),rgba(33,150,243,0.12)); }
[data-theme="dark"] .pc-orange .product-card-visual { background: linear-gradient(135deg,rgba(230,81,0,0.2),rgba(255,143,0,0.12)); }
[data-theme="dark"] .pc-purple .product-card-visual { background: linear-gradient(135deg,rgba(106,27,154,0.2),rgba(171,71,188,0.12)); }
[data-theme="dark"] .pc-teal .product-card-visual { background: linear-gradient(135deg,rgba(0,131,143,0.2),rgba(0,188,212,0.12)); }
.product-badge { position: absolute; top: 10px; right: 10px; background: var(--green-mid); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.05em; }
.product-card-body { padding: 18px 20px; }
.product-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 7px; color: var(--text-dark); }
.product-card-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-tag { font-size: 0.72rem; font-weight: 600; color: var(--green-mid); background: rgba(76,175,80,0.1); padding: 4px 10px; border-radius: 6px; }
.product-arrow { width: 32px; height: 32px; border-radius: 9px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); color: var(--text-dark); }
.product-card:hover .product-arrow { background: var(--green-mid); color: #fff; }

/* Products Full Page */
.product-full-grid { display: flex; flex-direction: column; gap: 80px; }
.product-full-card { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; }
.product-full-card.pfc-reverse { direction: rtl; }
.product-full-card.pfc-reverse > * { direction: ltr; }
.pfc-visual { height: 320px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 110px; position: relative; box-shadow: var(--shadow-card); overflow: hidden; }
.pfc-visual [data-svg] { display: flex; align-items: center; justify-content: center; }
.pfc-visual svg { filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15)); }
.pfc-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-dark); margin: 8px 0 14px; }
.pfc-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-mid); }
.pfc-desc { font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.pfc-features { display: flex; flex-wrap: wrap; gap: 8px; }
.pfc-features span { font-size: 0.8rem; font-weight: 600; color: var(--green-mid); background: rgba(76,175,80,0.1); padding: 5px 12px; border-radius: 8px; }
[data-theme="dark"] .pfc-features span { background: rgba(76,175,80,0.15); }

/* ========================
   BENEFITS PAGE
======================== */
.nutrition-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.nutrition-stat-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 24px 20px; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); text-align: center; transition: var(--transition); }
.nutrition-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.nsc-icon { font-size: 32px; margin-bottom: 12px; }
.nsc-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--green-mid); }
.nsc-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin: 4px 0 12px; }
.nsc-bar { height: 6px; background: var(--cream-dark); border-radius: 3px; overflow: hidden; margin-bottom: 12px; }
.nsc-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

.benefits-full-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px; }
.benefit-full-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); transition: var(--transition); position: relative; }
.benefit-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--green-light); }
.bfc-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; color: var(--green-light); margin-bottom: 12px; }
.bfc-num.hot-badge { display: inline-block; background: var(--gold); color: var(--green-deep); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; }
.bfc-icon { font-size: 32px; margin-bottom: 12px; }
.benefit-full-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.benefit-full-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

.phyto-cards { display: flex; flex-direction: column; gap: 16px; }
.phyto-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--card-bg); border-radius: var(--radius-sm); border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); }
.phyto-icon { font-size: 22px; flex-shrink: 0; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--section-alt); border-radius: 10px; }
.phyto-card h4 { font-size: 0.93rem; font-weight: 700; margin-bottom: 4px; }
.phyto-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }

/* ========================
   BENEFITS PREVIEW (HOME)
======================== */
.benefits-mini { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.benefit-mini-item { display: flex; gap: 14px; align-items: center; padding: 14px 18px; background: var(--card-bg); border-radius: var(--radius-sm); border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); }
.bmi-icon { font-size: 24px; flex-shrink: 0; }
.benefit-mini-item strong { font-size: 0.93rem; display: block; }

.benefits-big-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-card); }
.bbc-top { background: linear-gradient(135deg,var(--green-deep),#2d5a33); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; }
.bbc-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.bbc-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 8px; line-height: 1.4; }
.nutrition-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.nb-row { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--text-mid); }
.nb-row span:first-child { width: 60px; flex-shrink: 0; font-weight: 600; }
.nb-track { flex: 1; height: 8px; background: var(--cream-dark); border-radius: 4px; overflow: hidden; }
.nb-fill { height: 100%; border-radius: 4px; }
.nb-green { background: linear-gradient(90deg,var(--green-bright),var(--green-mid)); }
.nb-gold { background: linear-gradient(90deg,var(--gold),#b8860b); }
.nb-blue { background: linear-gradient(90deg,#42a5f5,#1565c0); }
.nb-orange { background: linear-gradient(90deg,#ff7043,#bf360c); }
.nb-val { width: 36px; text-align: right; font-weight: 700; font-size: 0.8rem; color: var(--text-dark); flex-shrink: 0; }
.bbc-sub { font-size: 0.78rem; color: var(--text-light); text-align: center; }

/* ========================
   TESTIMONIALS
======================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; margin-top: 44px; }
.testimonial-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--green-mid),var(--green-deep)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-role { font-size: 0.75rem; color: var(--text-light); }

/* ========================
   CTA BLOCK
======================== */
.cta-block {
  background: linear-gradient(135deg,var(--green-deep) 0%,#2a5030 60%,#1a3a1f 100%);
  border-radius: var(--radius-lg); padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-block::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(circle,rgba(76,175,80,0.13),transparent 70%); pointer-events: none; }
.cta-block h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3.5vw,2.6rem); font-weight: 900; color: #fff; margin-bottom: 14px; }
.cta-block p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========================
   ABOUT PAGE
======================== */
.mvw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mvw-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 32px 28px; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); transition: var(--transition); text-align: center; }
.mvw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.mvw-icon { font-size: 40px; margin-bottom: 16px; }
.mvw-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.mvw-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.value-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 28px 24px; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--green-mid); transform: translateY(-4px); }
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; }

/* ========================
   FAQ PAGE
======================== */
.faq-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border-radius: var(--radius-sm); border: 1px solid var(--cream-dark); overflow: hidden; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-soft); }
.faq-item:hover, .faq-item.open { border-color: var(--green-mid); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; gap: 12px; }
.faq-q span { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.faq-arrow { width: 32px; height: 32px; border-radius: 8px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; color: var(--green-mid); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-arrow { background: var(--green-mid); color: #fff; }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }
.faq-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }
.faq-cta-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); }
.faq-cta-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.faq-cta-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.faq-quick-links { background: var(--section-alt); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--cream-dark); }
.faq-quick-links h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 14px; }
.faq-quick-links a { display: block; padding: 8px 0; font-size: 0.88rem; color: var(--green-mid); font-weight: 500; border-bottom: 1px solid var(--cream-dark); transition: var(--transition); }
.faq-quick-links a:last-child { border-bottom: none; }
.faq-quick-links a:hover { color: var(--green-deep); padding-left: 4px; }

/* ========================
   CONTACT PAGE
======================== */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.contact-form-wrap { background: var(--card-bg); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-card); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-dark);
  background: var(--section-alt); color: var(--text-dark);
  font-family: var(--font-body); font-size: 0.93rem;
  transition: var(--transition); outline: none; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-mid); background: var(--card-bg); box-shadow: 0 0 0 3px rgba(45,106,53,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { padding: 15px 32px; background: var(--green-mid); color: #fff; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; transition: var(--transition); align-self: flex-start; }
.form-submit:hover { background: var(--green-deep); transform: translateY(-2px); }
.form-success { display: none; background: rgba(76,175,80,0.12); border: 1px solid var(--green-mid); border-radius: var(--radius-sm); padding: 14px 20px; font-size: 0.9rem; font-weight: 600; color: var(--green-mid); margin-top: 4px; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--cream-dark); box-shadow: var(--shadow-soft); }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-dark); }
.contact-info-items { display: flex; flex-direction: column; gap: 14px; }
.cii { display: flex; gap: 12px; align-items: flex-start; }
.cii-icon { font-size: 20px; width: 38px; height: 38px; background: rgba(76,175,80,0.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cii strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 2px; }
.cii p, .cii a { font-size: 0.9rem; color: var(--text-dark); line-height: 1.5; }
.cii a { color: var(--green-mid); font-weight: 500; }
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hour-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--cream-dark); }
.hour-row:last-child { border-bottom: none; }
.hour-time { font-weight: 700; font-size: 0.82rem; padding: 3px 10px; border-radius: 6px; }
.hour-time.open { background: rgba(76,175,80,0.12); color: var(--green-mid); }
.hour-time.closed { background: rgba(200,0,0,0.08); color: #c00; }

/* ========================
   FOOTER
======================== */
.footer { background: var(--green-deep); color: rgba(255,255,255,0.72); padding: 56px 24px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.8rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col span { font-size: 0.85rem; color: rgba(255,255,255,0.62); transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.social-btn { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); cursor: pointer; }
.social-btn:hover { background: var(--gold); color: var(--green-deep); }

/* ========================
   MOBILE BOTTOM NAV
======================== */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--nav-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(74,134,74,0.12); padding: 6px 4px; padding-bottom: calc(6px + env(safe-area-inset-bottom)); }
.mbn-inner { display: flex; justify-content: space-around; align-items: center; }
.mbn-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 10px; border-radius: 10px; flex: 1; transition: var(--transition); color: var(--text-light); }
.mbn-item.active, .mbn-item:hover { color: var(--green-mid); }
.mbn-item-icon { font-size: 20px; }
.mbn-item-label { font-size: 0.62rem; font-weight: 600; }

/* ========================
   SCROLL TO TOP
======================== */
.scroll-top { position: fixed; bottom: 28px; right: 20px; width: 44px; height: 44px; background: var(--green-mid); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.18); transition: var(--transition); opacity: 0; pointer-events: none; z-index: 500; font-weight: 700; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); background: var(--green-deep); }

/* ========================
   ANIMATIONS
======================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .nutrition-stats-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-full-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .product-full-card { grid-template-columns: 260px 1fr; gap: 32px; }
  .pfc-visual { height: 260px; font-size: 90px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .scroll-top { bottom: calc(72px + env(safe-area-inset-bottom)); }
  .two-col { grid-template-columns: 1fr; }
  .visual-card-stack { height: 280px; }
  .visual-main { width: 70%; height: 260px; font-size: 80px; }
  .visual-sub { width: 50%; height: 150px; }
  .mvw-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .product-full-card, .product-full-card.pfc-reverse { grid-template-columns: 1fr; direction: ltr; }
  .pfc-visual { height: 240px; font-size: 80px; }
  .cta-block { padding: 44px 24px; border-radius: var(--radius-md); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-blob { width: 220px; height: 220px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px) {
  .section { padding: 56px 16px; }
  .hero { padding: 85px 16px 90px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-stats { gap: 8px; }
  .hero-stat { padding: 12px 8px; }
  .hero-stat-num { font-size: 1.5rem; }
  .page-hero { padding: 100px 16px 70px; }
  .nutrition-stats-grid { grid-template-columns: 1fr 1fr; }
  .benefits-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .cta-block { padding: 36px 20px; }
}

/* ========================
   REAL PRODUCT IMAGES
======================== */
.hero-product-img {
  width: 118%; height: 118%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  animation: float 5s ease-in-out infinite;
}
.product-real-img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
  transition: transform 0.4s ease;
}
.product-card:hover .product-real-img {
  transform: scale(1.07) translateY(-4px);
}
.pfc-real-img {
  width: 90%; height: 90%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
  transition: transform 0.5s ease;
}
.product-full-card:hover .pfc-real-img {
  transform: scale(1.04);
}
