/* ============================================================
   PLANTED HEALTH — PREMIUM MARKETING WEBSITE
   Design System: Dark Matte + Sage Green + Muted Gold
   ============================================================ */

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

:root {
  --bg-primary: #0A0A0A;
  --bg-forest: #0B1A12;
  --bg-card: #111811;
  --bg-card-alt: #0F1A0F;
  --accent-sage: #7DAF7A;
  --accent-sage-dim: #5a8a57;
  --accent-ivory: #F5F0E8;
  --accent-gold: #C9A84C;
  --accent-gold-dim: #a8882e;
  --text-primary: #EDEADE;
  --text-muted: #8A8A7A;
  --text-dark: #1A1A1A;
  --border: rgba(125, 175, 122, 0.15);
  --border-gold: rgba(201, 168, 76, 0.3);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--accent-sage);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-sage);
  color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: #8ec48b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(125, 175, 122, 0.35);
}

.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(237, 234, 222, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent-sage);
  color: var(--accent-sage);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  padding: 8px 12px;
}

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

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold:hover {
  background: #d9b85c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-xl { padding: 20px 48px; font-size: 1.05rem; }

/* ---- NAVIGATION ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  padding: 0;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(125, 175, 122, 0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.25s;
}

.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile .btn-primary { margin-top: 8px; justify-content: center; }

.nav-mobile.open { display: flex; }

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-forest);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.6;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  filter: grayscale(30%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(11, 26, 18, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(125, 175, 122, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.75) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-sage);
  border: 1px solid rgba(125, 175, 122, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-line-1 {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-line-2 {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-sage);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(237, 234, 222, 0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.hero-stats {
  position: relative;
  z-index: 4;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 48px;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}

.hero-stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(237, 234, 222, 0.15);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-sage), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- TRUST BAR ---- */
#trust-bar {
  background: var(--bg-forest);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-wrapper { overflow: hidden; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 28px;
  transition: color 0.25s;
}

.marquee-track span:hover { color: var(--accent-sage); }

.marquee-track .dot {
  color: var(--accent-sage);
  font-size: 0.4rem;
  padding: 0;
}

/* ---- HOW IT WORKS ---- */
#how-it-works {
  padding: 120px 0 100px;
  background: var(--bg-primary);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-sage), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(125, 175, 122, 0.2);
  border-color: rgba(125, 175, 122, 0.25);
}

.step-card:hover::before { opacity: 1; }

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(125, 175, 122, 0.12);
  line-height: 1;
  margin-bottom: 20px;
  position: absolute;
  top: 24px;
  right: 28px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(125, 175, 122, 0.08);
  border: 1px solid rgba(125, 175, 122, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 40px;
}

/* ---- PRODUCTS (Horizontal Scroll) ---- */
#products {
  padding: 120px 0 80px;
  background: var(--bg-forest);
  overflow: hidden;
}

#products .container { margin-bottom: 48px; }

.productSwiper {
  padding: 0 40px 40px !important;
  overflow: visible !important;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 320px !important;
  flex-shrink: 0;
  transition: transform 0.35s, box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.product-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.6));
}

.product-card-body {
  padding: 28px;
}

.product-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-sage);
  background: rgba(125, 175, 122, 0.1);
  border: 1px solid rgba(125, 175, 122, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-sage);
  transition: gap 0.25s;
}

.card-cta:hover { gap: 10px; }

.productScrollbar {
  bottom: 0 !important;
  height: 2px !important;
  background: rgba(255,255,255,0.05) !important;
}

.swiper-scrollbar-drag {
  background: var(--accent-sage) !important;
}

/* ---- SCIENCE ---- */
#science {
  padding: 140px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.science-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 900;
  color: rgba(125, 175, 122, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.science-title { max-width: 700px; }

.science-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 60px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.science-stat {
  flex: 1;
  padding: 48px 40px;
  background: var(--bg-card);
  transition: background 0.3s;
}

.science-stat:hover { background: var(--bg-card-alt); }

.science-stat-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.science-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--accent-sage);
  line-height: 1;
  margin-bottom: 10px;
}

.science-stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.science-stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.science-body {
  max-width: 680px;
}

.science-body p {
  font-size: 1.05rem;
  color: rgba(237, 234, 222, 0.65);
  line-height: 1.8;
}

/* ---- SPOTLIGHT ---- */
#spotlight {
  padding: 80px 0;
  background: var(--bg-forest);
}

.spotlight-item {
  max-width: var(--max-w);
  margin: 0 auto 80px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-item:last-child { margin-bottom: 0; }

.spotlight-reverse { direction: rtl; }
.spotlight-reverse > * { direction: ltr; }

.spotlight-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.spotlight-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.spotlight-img:hover .spotlight-img-inner {
  transform: scale(1.04);
}

.spotlight-content .product-tag { margin-bottom: 20px; }

.spotlight-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.spotlight-content h2 em {
  font-style: italic;
  color: var(--accent-sage);
}

.spotlight-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.spotlight-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(237, 234, 222, 0.8);
  line-height: 1.5;
}

.spotlight-benefits svg { flex-shrink: 0; }

/* ---- TESTIMONIALS ---- */
#testimonials {
  padding: 120px 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  border-color: rgba(125, 175, 122, 0.2);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(237, 234, 222, 0.8);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(125, 175, 122, 0.15);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(125, 175, 122, 0.15);
  border: 1px solid rgba(125, 175, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-sage);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-result {
  font-size: 0.78rem;
  color: var(--accent-sage);
  margin-top: 2px;
}

/* ---- BIOMARKERS ---- */
#biomarkers {
  padding: 120px 0;
  background: var(--bg-forest);
}

.biomarker-accordion {
  margin-top: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:last-child { border-bottom: none; }

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.25s;
}

.accordion-header:hover { background: rgba(125, 175, 122, 0.04); }

.accordion-item.active .accordion-header {
  background: rgba(125, 175, 122, 0.06);
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.accordion-category {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-sage);
  background: rgba(125, 175, 122, 0.1);
  border: 1px solid rgba(125, 175, 122, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.accordion-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.3s;
  display: inline-block;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--accent-sage);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.accordion-item.active .accordion-body {
  max-height: 400px;
  padding-bottom: 8px;
}

.biomarker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 36px 28px;
}

.biomarker-list span {
  font-size: 0.8rem;
  color: rgba(237, 234, 222, 0.65);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.biomarker-list span:hover {
  background: rgba(125, 175, 122, 0.1);
  color: var(--accent-sage);
  border-color: rgba(125, 175, 122, 0.25);
}

.biomarker-cta {
  margin-top: 48px;
  text-align: center;
}

/* ---- CTA BANNER ---- */
#cta-banner {
  padding: 160px 0;
  background: var(--bg-forest);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125, 175, 122, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-label { justify-content: center; display: flex; }

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.cta-headline em {
  font-style: italic;
  color: var(--accent-sage);
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
#footer {
  background: #060C08;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.footer-social a:hover {
  color: var(--accent-sage);
  border-color: rgba(125, 175, 122, 0.4);
  background: rgba(125, 175, 122, 0.06);
}

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

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--accent-sage); }

.footer-newsletter-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.footer-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
}

.footer-form input::placeholder { color: var(--text-muted); }

.footer-form button {
  background: var(--accent-sage);
  border: none;
  color: var(--bg-primary);
  padding: 10px 16px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.25s;
}

.footer-form button:hover { background: #8ec48b; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

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

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(138, 138, 122, 0.5);
  line-height: 1.6;
  max-width: 800px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* AOS overrides */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 560px; margin: 60px auto 0; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 60px auto 0; }
  .spotlight-item { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-reverse { direction: ltr; }
  .spotlight-img { aspect-ratio: 16/9; }
  .science-stats { flex-direction: column; }
  .science-stat-divider { width: 100%; height: 1px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { padding: 0 24px 40px; flex-wrap: wrap; gap: 24px; }
  .hero-stat { padding: 0; }
  .hero-stat-divider { display: none; }
  .hero-scroll-hint { display: none; }
  .productSwiper { padding: 0 24px 32px !important; }
  .spotlight-item { padding: 0 24px; }
  .footer-inner { padding: 60px 24px 32px; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  #cta-banner { padding: 100px 0; }
  .accordion-header { padding: 20px 24px; }
  .biomarker-list { padding: 8px 24px 24px; }
  .science-stat { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { text-align: center; justify-content: center; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .accordion-header-left { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   PEPTIDES TEASER SECTION (Homepage)
   ============================================================ */

#peptides-teaser {
  padding: 100px 0;
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.pep-teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pep-teaser-viewall {
  font-size: 14px;
  padding: 10px 22px;
  white-space: nowrap;
  margin-bottom: 8px;
}

.pep-teaser-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(237, 234, 222, 0.5);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 48px;
}

/* Teaser Grid */
.pep-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* Product teaser card */
.pep-teaser-card {
  background: var(--bg-forest);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pep-teaser-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 175, 122, 0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.pep-teaser-card-img {
  background: #111a14;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 220px;
}

.pep-teaser-card-img img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}

.pep-teaser-card:hover .pep-teaser-card-img img {
  transform: scale(1.05) translateY(-4px);
}

.pep-teaser-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pep-teaser-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
}

.pep-teaser-card-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 8px;
  line-height: 1.2;
}

.pep-teaser-card-body p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(237, 234, 222, 0.55);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.pep-teaser-card-body .card-cta {
  margin-top: auto;
}

/* Dark "all categories" card */
.pep-teaser-card-dark {
  background: linear-gradient(135deg, rgba(125, 175, 122, 0.06) 0%, rgba(11, 26, 18, 0.8) 100%);
  border-color: rgba(125, 175, 122, 0.15);
}

.pep-teaser-card-body-full {
  padding: 36px;
  justify-content: space-between;
  height: 100%;
}

.pep-teaser-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pep-teaser-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(237, 234, 222, 0.7);
  letter-spacing: 0.02em;
}

.pep-teaser-cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.pep-teaser-fullbtn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .pep-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pep-teaser-card-dark {
    grid-column: span 2;
  }
  .pep-teaser-card-body-full {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .pep-teaser-categories {
    margin-bottom: 0;
    flex: 1;
  }
}

@media (max-width: 640px) {
  .pep-teaser-grid {
    grid-template-columns: 1fr;
  }
  .pep-teaser-card-dark {
    grid-column: span 1;
  }
  .pep-teaser-card-body-full {
    flex-direction: column;
  }
  .pep-teaser-categories {
    margin-bottom: 28px;
  }
  .pep-teaser-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   LEGAL DISCLAIMER BLOCK (Footer)
   ============================================================ */

.footer-legal-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 32px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimer-block {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: rgba(237, 234, 222, 0.32);
  line-height: 1.7;
  margin: 0;
}

.footer-disclaimer-block:first-child {
  color: rgba(237, 234, 222, 0.42);
  font-weight: 500;
}

/* ============================================================
   CONTEXTUAL INLINE DISCLAIMERS
   ============================================================ */

.section-disclaimer {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: rgba(237, 234, 222, 0.28);
  line-height: 1.7;
  text-align: center;
  margin: 32px auto 0;
  max-width: 680px;
}

.section-disclaimer a {
  color: rgba(237, 234, 222, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-disclaimer a:hover {
  color: rgba(237, 234, 222, 0.65);
}

.spotlight-disclaimer {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(237, 234, 222, 0.28);
  line-height: 1.65;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.spotlight-disclaimer a {
  color: rgba(237, 234, 222, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.spotlight-disclaimer a:hover {
  color: rgba(237, 234, 222, 0.65);
}

/* ============================================================
   UNIFIED LEGAL SECTION (embedded in single page)
   ============================================================ */

.legal-page-section {
  background: #0a1810;
  border-top: 1px solid rgba(125, 175, 122, 0.15);
}

.legal-section-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #071210 0%, #0a1810 100%);
  border-bottom: 1px solid rgba(125, 175, 122, 0.12);
  text-align: center;
}

.legal-hero-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #7DAF7A;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.legal-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #EDEADE;
  line-height: 1.1;
  margin: 0 0 20px;
}

.legal-section-heading em {
  font-style: italic;
  color: #7DAF7A;
}

.legal-section-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(237, 234, 222, 0.65);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Peptides stats bar on unified page */
.pep-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 40px;
  background: rgba(125, 175, 122, 0.06);
  border-top: 1px solid rgba(125, 175, 122, 0.12);
  border-bottom: 1px solid rgba(125, 175, 122, 0.12);
  margin-bottom: 0;
}

.pep-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}

.pep-stat-item .pep-stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: #EDEADE;
  line-height: 1;
}

.pep-stat-item .pep-stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 234, 222, 0.5);
}

.pep-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pep-stats-bar {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 20px;
  }
  .pep-stat-divider { display: none; }
  .pep-stat-item { padding: 0 20px; }
}
