/* ============================================================
   NUKA HONEY — Global Stylesheet
   Brand: Charcoal (#383530) + Gold (#c8922a)
   Fonts: Oswald (headings) + Inter (body) via Google Fonts
   ============================================================ */

/* === VARIABLES === */
:root {
  --dark:        #383530;
  --dark-2:      #2c2a27;
  --dark-3:      #1e1c1a;
  --gold:        #c8922a;
  --gold-dark:   #a8781e;
  --gold-light:  #d4a843;
  --gold-pale:   rgba(200, 146, 42, 0.12);
  --white:       #ffffff;
  --off-white:   #f9f5ee;
  --text-light:  rgba(255, 255, 255, 0.80);
  --text-muted:  rgba(255, 255, 255, 0.50);
  --text-dark:   #1a150a;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-width:   1260px;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,0.14);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.24);
  --transition:  0.28s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); line-height: 1.65; overflow-x: hidden; background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* === CONTAINER === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); text-transform: uppercase; letter-spacing: 0.03em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
h4 { font-size: 1.05rem; }
p { font-size: 0.975rem; line-height: 1.75; }
strong { font-weight: 600; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(200,146,42,0.25);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(30, 28, 26, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo svg { width: 46px; height: 46px; }
.nav-logo-img {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
  filter: contrast(1.3) brightness(0.95);
}
.footer-brand-logo .nav-logo-img {
  height: 56px;
  mix-blend-mode: screen;
  filter: contrast(1.3) brightness(0.95);
}
/* On light backgrounds, switch blend mode */
.section-light .nav-logo-img,
.section-white .nav-logo-img,
.section-gold .nav-logo-img {
  mix-blend-mode: multiply;
  filter: none;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-cta { margin-left: 20px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  padding: 8px;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  padding: 16px 28px 24px;
  border-bottom: 1px solid rgba(200,146,42,0.2);
  gap: 2px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu .nav-link { padding: 12px 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile-menu .nav-link::after { display: none; }
.nav-mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--dark-3);
  padding: 148px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,146,42,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero-title { color: var(--white); margin-bottom: 18px; }
.page-hero-title span { color: var(--gold); }
.page-hero-subtitle {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* === SECTION UTILITIES === */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-dark  { background: var(--dark);   color: var(--white); }
.section-dark2 { background: var(--dark-2); color: var(--white); }
.section-dark3 { background: var(--dark-3); color: var(--white); }
.section-gold  { background: var(--gold);   color: var(--text-dark); }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-dark  .section-eyebrow,
.section-dark2 .section-eyebrow,
.section-dark3 .section-eyebrow { color: var(--gold); }
.section-gold  .section-eyebrow { color: rgba(26,21,10,0.65); }
.section-title { margin-bottom: 16px; }
.section-dark  .section-title,
.section-dark2 .section-title,
.section-dark3 .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.72;
  line-height: 1.7;
}
.divider { width: 56px; height: 3px; background: var(--gold); margin: 14px auto 0; border-radius: 2px; }
.section-gold .divider { background: rgba(26,21,10,0.3); }

/* === HERO (homepage) === */
.hero {
  background: var(--dark-3);
  padding-top: 74px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(200,146,42,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 60px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,0.14);
  border: 1px solid rgba(200,146,42,0.40);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title .highlight { color: var(--gold); display: block; }
.hero-subtitle {
  color: var(--text-light);
  font-size: 1.08rem;
  margin-bottom: 44px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,146,42,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.55));
  animation: floatJar 7s ease-in-out infinite;
}
@keyframes floatJar {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

/* === TRUST BAR === */
.trust-bar {
  background: rgba(200,146,42,0.10);
  border-top: 1px solid rgba(200,146,42,0.20);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.trust-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* === VALUE PROPS === */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.18);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  background: rgba(200,146,42,0.07);
  transform: translateY(-4px);
}
.value-icon {
  width: 52px; height: 52px;
  background: rgba(200,146,42,0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.value-icon svg { color: var(--gold); width: 26px; height: 26px; }
.value-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 10px;
}
.value-card-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
/* On dark sections, product cards stay light but images blend */
.section-dark .product-card,
.section-dark2 .product-card { background: rgba(255,255,255,0.95); }
.section-gold .product-card { background: rgba(255,255,255,0.88); }
.section-gold .product-card-img img,
.section-white .product-card-img img { mix-blend-mode: multiply; }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  background: transparent;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  overflow: hidden;
}
.product-card-img img {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.20));
  transition: transform var(--transition);
  mix-blend-mode: multiply;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-mgo {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-card-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.product-sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.size-tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid rgba(200,146,42,0.45);
  border-radius: 5px;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.product-card-footer {
  border-top: 1px solid #f0ece6;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-strength-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #999;
  font-weight: 600;
}

/* Strength colour indicators */
.strength-entry   { color: #5dbb63; }
.strength-mid     { color: #f0a500; }
.strength-high    { color: #e06b2a; }
.strength-ultra   { color: #c8302a; }
.mgo-badge-entry  { background: #5dbb63; }
.mgo-badge-mid    { background: #f0a500; }
.mgo-badge-high   { background: #e06b2a; }
.mgo-badge-ultra  { background: #c8302a; }

/* === MGO COMPARISON TABLE === */
.mgo-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.mgo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
}
.mgo-table th {
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 20px;
  text-align: left;
  white-space: nowrap;
}
.mgo-table td { padding: 16px 20px; border-bottom: 1px solid #eee; vertical-align: middle; }
.mgo-table tr:last-child td { border-bottom: none; }
.mgo-table tr:nth-child(even) td { background: #faf7f2; }
.mgo-grade { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.strength-bar-wrap { display: flex; align-items: center; gap: 10px; }
.strength-bar { height: 8px; border-radius: 4px; background: var(--gold); }
.strength-text { font-size: 0.78rem; color: #888; white-space: nowrap; font-weight: 600; }
.tick { color: #5dbb63; font-size: 1.1rem; }
.cross { color: #ccc; }

/* === JOURNEY STEPS === */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.journey-step { text-align: center; }
.journey-img-wrap {
  position: relative;
  margin-bottom: 20px;
}
.journey-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}
.journey-num {
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  border: 2px solid var(--white);
}
.journey-step-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-top: 8px;
  margin-bottom: 6px;
}
.section-dark .journey-step-title { color: var(--white); }
.journey-step-desc { font-size: 0.8rem; color: #888; line-height: 1.6; }
.section-dark .journey-step-desc { color: rgba(255,255,255,0.55); }

/* === TRUST BADGES === */
.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-badge {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trust-badge-icon {
  width: 50px; height: 50px;
  background: rgba(200,146,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.trust-badge-icon svg { color: var(--gold); width: 24px; height: 24px; }
.trust-badge-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 6px;
}
.trust-badge-text { font-size: 0.78rem; color: #888; line-height: 1.55; }

/* === PILLARS (What Nuka Represents) === */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pillar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.pillar-card:hover {
  border-color: var(--gold);
  background: rgba(200,146,42,0.08);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 50px; height: 50px;
  background: rgba(200,146,42,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.pillar-icon svg { color: var(--gold); width: 22px; height: 22px; }
.pillar-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}
.pillar-text { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* === CTA BANNER === */
.cta-banner {
  background: var(--gold);
  padding: 88px 0;
  text-align: center;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 14px;
}
.cta-banner-sub {
  font-size: 1.05rem;
  color: rgba(26,21,10,0.72);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.10); }
.section-light .faq-item { border-bottom: 1px solid rgba(56,53,48,0.12); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.section-light .faq-btn { color: var(--dark); }
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.40s ease;
}
.faq-body-inner {
  padding: 0 0 24px;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-light);
}
.section-light .faq-body-inner { color: #555; }
.faq-body-inner ul { list-style: disc; padding-left: 20px; margin-top: 10px; }
.faq-body-inner li { margin-bottom: 6px; }
.faq-item.open .faq-body { max-height: 600px; }

/* === PARTNER FORM === */
.partner-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 72px;
  align-items: start;
}
.partner-sidebar { position: sticky; top: 100px; }
.partner-sidebar-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.partner-sidebar-title span { color: var(--gold); }
.partner-sidebar-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.partner-steps { display: flex; flex-direction: column; gap: 20px; }
.partner-step { display: flex; gap: 16px; align-items: flex-start; }
.partner-step-num {
  width: 34px; height: 34px;
  background: rgba(200,146,42,0.18);
  border: 1px solid rgba(200,146,42,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.partner-step-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.partner-step-text span { font-size: 0.84rem; color: var(--text-muted); }

.partner-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.20);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,146,42,0.20);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-grid.cols-1 { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.span-2 { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.93rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.30); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--dark-2); color: var(--white); }
.form-textarea { min-height: 130px; resize: vertical; }
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  transition: var(--transition);
}
.checkbox-label:hover { border-color: var(--gold); background: rgba(200,146,42,0.07); }
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.form-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 28px 0; }
.form-submit-row { margin-top: 28px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.form-privacy { font-size: 0.78rem; color: rgba(255,255,255,0.40); line-height: 1.6; }
#form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.form-success-icon {
  width: 72px; height: 72px;
  background: rgba(93,187,99,0.15);
  border: 2px solid rgba(93,187,99,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.form-success-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success-text { color: var(--text-light); font-size: 0.95rem; }

/* === CERTIFICATIONS === */
.cert-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
.cert-intro-text { color: var(--text-light); font-size: 0.97rem; line-height: 1.8; }
.cert-intro-text p { margin-bottom: 16px; }
.cert-intro-text p:last-child { margin-bottom: 0; }
.cert-status-legend {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.legend-dot.active   { background: #5dbb63; }
.legend-dot.progress { background: var(--gold); }
.legend-dot.planned  { background: rgba(255,255,255,0.25); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.22);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.cert-card.status-active { border-color: rgba(93,187,99,0.4); background: rgba(93,187,99,0.05); }
.cert-logo {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,146,42,0.10);
  border-radius: 16px;
}
.cert-logo svg { width: 40px; height: 40px; color: var(--gold); }
.cert-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}
.cert-full-name {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 14px;
}
.cert-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin-bottom: 18px;
}
.cert-status-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.badge-active   { background: rgba(93,187,99,0.18); color: #5dbb63; border: 1px solid rgba(93,187,99,0.35); }
.badge-progress { background: rgba(200,146,42,0.18); color: var(--gold); border: 1px solid rgba(200,146,42,0.40); }
.badge-planned  { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.40); border: 1px solid rgba(255,255,255,0.12); }

/* === ABOUT SPLIT SECTION === */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-split.reverse .about-image { order: -1; }
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-text-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 0.97rem; line-height: 1.8; }
.about-text p:last-of-type { margin-bottom: 28px; }
.about-list { margin-bottom: 28px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  line-height: 1.7;
}
.about-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* === MGO RANGE CARDS === */
.mgo-range-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.mgo-range-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,146,42,0.22);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
}
.mgo-range-card:hover { border-color: var(--gold); background: rgba(200,146,42,0.09); }
.mgo-range-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.mgo-range-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }

/* === BIOMARKER CARDS === */
.biomarker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.biomarker-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,146,42,0.20);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.biomarker-card:hover { border-color: var(--gold); }
.biomarker-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
}
.biomarker-card-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.biomarker-card-text { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.biomarker-card-list { list-style: none; margin-top: 10px; }
.biomarker-card-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.biomarker-card-list li::before { content: '›'; color: var(--gold); font-size: 1.1rem; font-weight: 700; }

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

/* === FOOTER === */
.footer {
  background: var(--dark-3);
  color: var(--white);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(200,146,42,0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 64px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-logo svg { width: 44px; height: 44px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 270px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 8px;
}
.footer-contact-item a { color: var(--gold); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-cert-list { display: flex; flex-direction: column; gap: 8px; }
.footer-cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-cert-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* === UTILITY === */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* === RESPONSIVE === */
@media (max-width: 1080px) {
  .value-grid        { grid-template-columns: repeat(2, 1fr); }
  .product-grid      { grid-template-columns: repeat(2, 1fr); }
  .journey-grid      { grid-template-columns: repeat(3, 1fr); }
  .trust-badge-grid  { grid-template-columns: repeat(3, 1fr); }
  .pillar-grid       { grid-template-columns: repeat(3, 1fr); }
  .mgo-range-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cert-grid         { grid-template-columns: repeat(2, 1fr); }
  .partner-layout    { grid-template-columns: 1fr; gap: 48px; }
  .partner-sidebar   { position: static; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 60px 0 40px; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { max-height: 300px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .trust-bar-inner { gap: 24px; justify-content: flex-start; padding: 0 4px; }
  .value-grid      { grid-template-columns: 1fr; }
  .product-grid    { grid-template-columns: 1fr; }
  .journey-grid    { grid-template-columns: repeat(2, 1fr); }
  .trust-badge-grid{ grid-template-columns: repeat(2, 1fr); }
  .pillar-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-split     { grid-template-columns: 1fr; gap: 40px; }
  .about-split.reverse .about-image { order: 0; }
  .cert-grid       { grid-template-columns: 1fr; }
  .cert-intro      { grid-template-columns: 1fr; gap: 36px; }
  .mgo-range-grid  { grid-template-columns: repeat(2, 1fr); }
  .biomarker-grid  { grid-template-columns: 1fr; }
  .form-grid       { grid-template-columns: 1fr; }
  .checkbox-group  { grid-template-columns: repeat(2, 1fr); }
  .partner-form-wrap { padding: 28px 20px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
  .cta-banner { padding: 64px 0; }
}

@media (max-width: 480px) {
  .journey-grid { grid-template-columns: 1fr; }
  .pillar-grid  { grid-template-columns: 1fr; }
  .trust-badge-grid { grid-template-columns: 1fr; }
  .mgo-range-grid { grid-template-columns: repeat(2, 1fr); }
  .checkbox-group { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
}

/* === ACCESSIBILITY === */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-image-wrap img { animation: none; }
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
