/* ============================================================
   BRAVO1 WELLNESS — Design System
   Fonts: Space Grotesk (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #FAFAF8;
  --bg-2:        #F3F3EF;
  --bg-3:        #EAEAE6;
  --green:       #718959;
  --green-light: #B5C4A0;
  --green-dark:  #4D5E3A;
  --green-muted: #DCE5CF;
  --silver:      #C4C4C0;
  --silver-light:#E8E8E4;
  --text:        #16160E;
  --text-2:      #56564E;
  --text-3:      #9898A0;
  --border:      rgba(22,22,14,0.09);
  --border-2:    rgba(22,22,14,0.15);
  --white:       #FFFFFF;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 4px rgba(22,22,14,0.06);
  --shadow-md:   0 4px 20px rgba(22,22,14,0.08);
  --shadow-lg:   0 12px 48px rgba(22,22,14,0.10);
  --font-display:'Space Grotesk', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --max-w:       1280px;
  --section-py:  100px;
  --nav-h:       72px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

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

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.display-1 { font-size: clamp(52px, 7vw, 96px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.0; }
.display-2 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.0; }
.display-3 { font-size: clamp(32px, 4vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
.h1 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; letter-spacing: -0.03em; }
.h2 { font-size: clamp(22px, 2.5vw, 36px); font-weight: 600; letter-spacing: -0.02em; }
.h3 { font-size: clamp(18px, 2vw, 28px); font-weight: 500; letter-spacing: -0.02em; }
.h4 { font-size: clamp(16px, 1.5vw, 22px); font-weight: 500; letter-spacing: -0.01em; }
.body-lg { font-size: clamp(16px, 1.2vw, 20px); line-height: 1.7; font-weight: 300; }
.body-md { font-size: 16px; line-height: 1.7; font-weight: 300; }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--text-2); }
.caption { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }
.text-muted { color: var(--text-2); }
.text-green { color: var(--green-dark); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-py) 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 64px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--white);
  border: 1.5px solid var(--text);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(77,94,58,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-secondary:hover {
  background: var(--bg-2);
  border-color: var(--silver);
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(77,94,58,0.3);
}

/* ── Physician Review pulse glow ─────────────────────────────── */
.btn-physician-pulse {
  animation: physicianPulse 2.4s ease-in-out infinite;
}
@keyframes physicianPulse {
  0%,100% { box-shadow: 0 0 0px 0px rgba(113,137,89,0); }
  50%      { box-shadow: 0 0 18px 6px rgba(113,137,89,0.35); }
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid transparent;
  padding: 14px 20px;
}
.btn-ghost:hover { color: var(--text); background: var(--bg-2); }
.btn-sm { font-size: 13px; padding: 10px 20px; }
.btn-lg { font-size: 16px; padding: 18px 36px; }
.btn-arrow::after { content: '→'; font-family: var(--font-body); transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.badge-green { background: var(--green-muted); color: var(--green-dark); }
.badge-grey  { background: var(--bg-3); color: var(--text-2); }
.badge-white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }
.badge-dot::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.7; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--transition);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.scrolled {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--text);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 18px; height: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--text); background: var(--bg-2); }
.nav-link.active { color: var(--text); font-weight: 500; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all var(--transition); border-radius: 2px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.hero-canvas-mobile { display: none; }
@media (max-width: 768px) {
  .hero-canvas-desktop { display: none; }
  .hero-canvas-mobile { display: block; opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
  width: 100%;
}
.hero-inner { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--green); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline .accent { color: var(--green-dark); }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-media-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}
.hero-media-placeholder {
  flex: 1;
  min-width: 0;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: var(--bg-3);
  border: 1px dashed var(--border-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-media-placeholder.tall { aspect-ratio: 9/16; max-width: 200px; }
.placeholder-icon { font-size: 28px; opacity: 0.25; }
.placeholder-label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── Section Intros ─────────────────────────────────────────── */
.section-intro { margin-bottom: 64px; }
.section-intro.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-kicker {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-kicker::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green); }
.section-intro.centered .section-kicker { justify-content: center; }
.section-intro.centered .section-kicker::before { display: none; }
.section-title { margin-bottom: 20px; }
.section-desc { font-size: clamp(16px, 1.2vw, 19px); font-weight: 300; color: var(--text-2); line-height: 1.7; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-body { padding: 28px; }
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-muted) 0%, var(--bg-3) 100%);
}
.card-img-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); position: relative; z-index: 1; }
.card-img-icon { font-size: 24px; opacity: 0.2; position: relative; z-index: 1; }
.card-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.card-desc { font-size: 14px; line-height: 1.65; color: var(--text-2); margin-bottom: 20px; }
.card-footer { padding: 20px 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }

/* ── Peptide Catalog Card ─────────────────────────────────────── */
.peptide-card { cursor: pointer; }
.peptide-card .card-img { aspect-ratio: 2/3; }

/* ── Feature Grid ─────────────────────────────────────────────── */
.feature-item {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.feature-desc { font-size: 15px; line-height: 1.65; color: var(--text-2); font-weight: 300; }

/* ── Steps ────────────────────────────────────────────────────── */
.steps-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 24px;
  position: relative;
  padding-bottom: 40px;
}
.step-item:last-child { padding-bottom: 0; }
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.step-num.green { background: var(--green); }
.step-line {
  flex: 1;
  width: 1px;
  background: var(--border-2);
  margin-top: 8px;
}
.step-item:last-child .step-line { display: none; }
.step-content { padding-top: 10px; }
.step-label { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 6px; }
.step-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.step-desc { font-size: 15px; line-height: 1.65; color: var(--text-2); font-weight: 300; }

/* ── Trust Bar ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--text);
  color: var(--white);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.trust-item-icon { font-size: 18px; opacity: 0.7; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

/* ── FAQ Accordion ────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  background: none;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.faq-question:hover { color: var(--green-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: all var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--text); color: var(--white); border-color: var(--text); transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer-inner { padding-bottom: 24px; font-size: 16px; line-height: 1.75; color: var(--text-2); font-weight: 300; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ── Forms ────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; font-family: var(--font-display); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  transition: all var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(113,137,89,0.15); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Image/Video Placeholders ─────────────────────────────────── */
.media-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--bg-3);
  border: 1.5px dashed var(--border-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.media-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.media-placeholder .placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-muted) 0%, var(--bg-3) 60%, var(--silver-light) 100%);
  opacity: 0.5;
}
.media-placeholder .placeholder-icon-lg { font-size: 40px; opacity: 0.2; }
.media-placeholder .placeholder-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.media-placeholder .placeholder-sub { font-size: 11px; color: var(--text-3); opacity: 0.7; }

/* ── Chat Widget ─────────────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
}
.chat-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(22,22,14,0.2);
  transition: all var(--transition);
}
.chat-btn:hover { background: var(--green-dark); transform: scale(1.05); }
.chat-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: #E24B4A;
  border-radius: 50%;
  border: 2px solid var(--bg);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.chat-panel {
  position: absolute;
  bottom: 70px; right: 0;
  width: 360px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 560px;
}
.chat-panel.open { display: flex; animation: chatSlide 0.3s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes chatSlide { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: none; } }
.chat-header {
  background: var(--text);
  color: var(--white);
  padding: 20px 20px 16px;
}
.chat-header-top { display: flex; justify-content: space-between; align-items: flex-start; }
.chat-header-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.chat-header-sub { font-size: 12px; opacity: 0.6; margin-top: 2px; }
.chat-close { font-size: 20px; opacity: 0.6; cursor: pointer; background: none; border: none; color: white; line-height: 1; }
.chat-close:hover { opacity: 1; }
.chat-online { display: flex; align-items: center; gap: 6px; font-size: 12px; opacity: 0.7; margin-top: 10px; }
.chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #5DCB7A; box-shadow: 0 0 0 2px rgba(93,203,122,0.3); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
}
.chat-msg { max-width: 80%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}
.chat-msg.bot .chat-msg-bubble { background: var(--bg-2); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-msg-bubble { background: var(--text); color: white; border-bottom-right-radius: 4px; }
.chat-form { padding: 16px; border-top: 1px solid var(--border); }
.chat-form-row { display: flex; gap: 8px; }
.chat-input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  background: var(--bg-2);
  color: var(--text);
  transition: all var(--transition);
}
.chat-input:focus { border-color: var(--green); background: var(--white); }
.chat-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.chat-send:hover { background: var(--green-dark); }
.chat-intake { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-intake-title { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.chat-intake-sub { font-size: 13px; color: var(--text-2); margin-bottom: 8px; font-weight: 300; }

/* ── Modal ────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22,22,14,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlide 0.3s cubic-bezier(0.34,1.3,0.64,1);
}
@keyframes modalSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.modal-header { padding: 28px 32px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.modal-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.modal-close { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-2); border: none; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; color: var(--text-2); flex-shrink: 0; }
.modal-close:hover { background: var(--bg-3); color: var(--text); }
.modal-body { padding: 24px 32px 32px; overflow-y: auto; flex: 1; }

/* ── Disclaimer ─────────────────────────────────────────────── */
.disclaimer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.disclaimer-text { font-size: 12px; line-height: 1.7; color: var(--text-3); text-align: center; max-width: 800px; margin: 0 auto; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.9);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo-mark {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-col-title { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-link { display: block; font-size: 14px; color: rgba(255,255,255,0.65); padding: 4px 0; transition: color var(--transition); font-weight: 300; }
.footer-link:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── Admin ────────────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 240px;
  background: var(--text);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
}
.admin-sidebar-logo {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.04em;
  color: white;
}
.admin-nav { padding: 16px 12px; flex: 1; overflow-y: auto; }
.admin-nav-section { margin-bottom: 24px; }
.admin-nav-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 0 12px; margin-bottom: 6px; }
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
  font-weight: 400;
}
.admin-nav-link:hover { background: rgba(255,255,255,0.07); color: white; }
.admin-nav-link.active { background: rgba(255,255,255,0.1); color: white; font-weight: 500; }
.admin-nav-link .nav-icon { font-size: 17px; opacity: 0.75; width: 20px; text-align: center; }
.admin-badge { margin-left: auto; background: var(--green); color: var(--text); font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 100px; }
.admin-main {
  margin-left: 240px;
  flex: 1;
  padding: 40px;
  background: var(--bg);
  min-height: 100vh;
}
.admin-header { margin-bottom: 36px; }
.admin-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.admin-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
.admin-subtitle { font-size: 14px; color: var(--text-2); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-card-label { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.stat-card-value { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -0.04em; margin-bottom: 6px; }
.stat-card-delta { font-size: 13px; color: var(--green-dark); font-weight: 500; }
.stat-card-delta.down { color: #A32D2D; }
.chart-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-3);
  font-size: 13px;
  margin-top: 16px;
}
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td { padding: 16px 20px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr { transition: background var(--transition); }
.data-table tbody tr:hover { background: var(--bg-2); }
.status-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 100px; }
.status-new     { background: #E6F1FB; color: #185FA5; }
.status-contacted { background: var(--green-muted); color: var(--green-dark); }
.status-followup { background: #FAEEDA; color: #854F0B; }
.status-closed  { background: var(--bg-3); color: var(--text-3); }
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.panel-body { padding: 24px; }

/* ── Scroll animations ────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Utility ──────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.sticky-top { position: sticky; top: calc(var(--nav-h) + 24px); }
.rounded-full { border-radius: 9999px; }

/* ── Mobile Nav ───────────────────────────────────────────────── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-mobile-link:hover { background: var(--bg-2); color: var(--text); }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-4 { grid-template-columns: 1fr; }
  :root { --section-py: 64px; --nav-h: 64px; }
  .container, .container-sm { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .featured-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .featured-product-grid .card-body { padding: 12px; }
  .featured-product-grid .card-tag { font-size: 9px; letter-spacing: 0.04em; margin-bottom: 6px; }
  .featured-product-grid .card-title { font-size: 13px; margin-bottom: 6px; }
  .featured-product-grid .card-desc { font-size: 11px; line-height: 1.5; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .featured-product-grid .card-footer { padding: 8px 12px; }
  .featured-product-grid .card-footer .btn-ghost { font-size: 10px; padding: 0; background: none; }
  .featured-product-grid .card-footer .badge { font-size: 9px; padding: 3px 7px; }
  .hero-headline { font-size: clamp(42px, 11vw, 72px); }
  .hero-media-row { flex-direction: column; }
  .hero-media-placeholder.tall { max-width: 100%; aspect-ratio: 16/9; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-items { gap: 24px; }
  .trust-divider { display: none; }
  .chat-panel { width: calc(100vw - 56px); right: 0; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 20px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  /* Full-width buttons only in specific CTA contexts, not globally */
  .hero-actions .btn,
  .peptide-sticky .btn,
  .glp-sub-panel .btn,
  .glp-detail-sub .btn { width: 100%; justify-content: center; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* ── Mobile: modal ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .modal {
    max-width: calc(100vw - 32px);
    margin: 16px;
    max-height: 90vh;
  }
  .modal-header { padding: 20px 20px 0; }
  .modal-body { padding: 16px 20px 24px; }
  .modal-title { font-size: 18px; }
}

/* (mobile fixes consolidated in final pass below) */

/* ── Logo image ──────────────────────────────────────────────────── */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.82; }

.footer-logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.sidebar-logo-img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  flex: 1;
  min-width: 0;
}

.login-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto 8px;
}

/* ── SVG icon sizing ─────────────────────────────────────────────── */
.card-img-icon svg,
.placeholder-icon-lg svg {
  display: block;
}
.sidebar-link-icon svg { vertical-align: middle; }
.feature-icon svg { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   HOMEPAGE REDESIGN — Dark Hero + Marble/Glass Design System
   ═══════════════════════════════════════════════════════════════════ */

/* ── Dark Hero Variant ─────────────────────────────────────────── */
.hero-dark {
  background: linear-gradient(160deg, #0a0e07 0%, #0e140a 35%, #111808 65%, #0c0f08 100%);
  min-height: 100vh;
}
.hero-dark .nav-link { color: rgba(255,255,255,0.6); }
.hero-dark .nav-link:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.06); }

/* Canvas fills section completely */
.hero-dark .hero-canvas {
  opacity: 1;
  pointer-events: none;
}

/* Fade overlay at bottom */
.hero-canvas-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #0e140a 100%);
  z-index: 1;
  pointer-events: none;
}

/* Centered hero layout */
.hero-content-centered {
  padding: calc(var(--nav-h) + 60px) 40px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}
.hero-content-centered .hero-inner {
  max-width: 820px;
}

/* Light text for dark hero */
.hero-eyebrow-light {
  color: rgba(181,196,160,0.85);
}
.hero-eyebrow-light .hero-eyebrow-line {
  background: #718959;
}
.hero-headline-light {
  color: #f5f5f0;
}
.hero-sub-light {
  color: rgba(245,245,240,0.65);
  margin: 0 auto 44px;
}
.accent-glow {
  color: #b5c4a0;
  text-shadow: 0 0 60px rgba(113,137,89,0.55), 0 0 120px rgba(113,137,89,0.25);
  position: relative;
}

/* Hero stats row */
.hero-stats-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  padding: 24px 0 0;
}
.hero-stat {
  padding: 0 36px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #f5f5f0;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Glass secondary button */
.btn-secondary-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.btn-secondary-glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* ── Marble-Glass Panel (Why BRAVO1 visual) ────────────────────── */
.why-visual-col {
  display: flex;
  flex-direction: column;
}
.marble-glass-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(245,245,240,0.95) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(230,228,218,0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(238,236,228,0.85) 0%, transparent 70%),
    linear-gradient(135deg, #f7f6f0 0%, #edecea 25%, #f0ede6 50%, #ebe8e0 75%, #f4f2ec 100%);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 0 0 1px rgba(200,196,180,0.3),
    0 20px 60px rgba(22,22,14,0.12),
    0 4px 20px rgba(22,22,14,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(200,196,180,0.3);
  min-height: 500px;
  flex: 1;
}
.marble-glass-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

/* Marble vein texture via pseudo-element */
.marble-glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -35deg,
      transparent 0px, transparent 18px,
      rgba(200,196,180,0.12) 18px, rgba(200,196,180,0.12) 19px
    ),
    repeating-linear-gradient(
      55deg,
      transparent 0px, transparent 28px,
      rgba(180,176,160,0.08) 28px, rgba(180,176,160,0.08) 29px
    );
  pointer-events: none;
}
.marble-glass-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(113,137,89,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Orbs for depth */
.mgp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.mgp-orb-1 {
  width: 200px; height: 200px;
  background: rgba(113,137,89,0.12);
  top: -40px; right: -40px;
}
.mgp-orb-2 {
  width: 160px; height: 160px;
  background: rgba(181,196,160,0.15);
  bottom: 60px; left: -30px;
}
.mgp-orb-3 {
  width: 120px; height: 120px;
  background: rgba(220,229,207,0.2);
  top: 40%; right: 30%;
}

/* DNA SVG inside the panel */
.mgp-lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mgp-svg {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

/* Glass info badges */
.mgp-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 4px 20px rgba(22,22,14,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.mgp-badge-2 { background: rgba(255,255,255,0.55); }
.mgp-badge-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--green-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}
.mgp-badge-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.mgp-badge-sub {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ── Marble Section Backgrounds ────────────────────────────────── */
.section-marble {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(238,236,228,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(232,230,220,0.7) 0%, transparent 50%),
    repeating-linear-gradient(
      -40deg,
      transparent 0px, transparent 22px,
      rgba(200,196,180,0.06) 22px, rgba(200,196,180,0.06) 23px
    ),
    linear-gradient(180deg, #f5f4ee 0%, #f0ede6 100%);
}

/* ── Glass Cards ───────────────────────────────────────────────── */
.card-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 4px 24px rgba(22,22,14,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Marble border treatment on section dividers */
.marble-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,196,180,0.5) 20%, rgba(200,196,180,0.5) 80%, transparent);
  margin: 0;
}

/* Trust bar — dark marble (keep dark background, add veining) */
.trust-bar {
  background:
    repeating-linear-gradient(
      -40deg,
      transparent 0px, transparent 18px,
      rgba(255,255,255,0.025) 18px, rgba(255,255,255,0.025) 19px
    ),
    repeating-linear-gradient(
      55deg,
      transparent 0px, transparent 30px,
      rgba(113,137,89,0.06) 30px, rgba(113,137,89,0.06) 31px
    ),
    linear-gradient(135deg, #18180f 0%, #1c1c12 50%, #151509 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Feature items — glass-marble upgrade (overrides original white) */
.feature-item {
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(255,255,255,0.9) !important;
  box-shadow:
    0 2px 16px rgba(22,22,14,0.07),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(200,196,180,0.2) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}
.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(
      -38deg,
      transparent 0px, transparent 20px,
      rgba(200,196,180,0.07) 20px, rgba(200,196,180,0.07) 21px
    );
  pointer-events: none;
  border-radius: var(--radius-lg);
}

/* Peptide cards glass effect */
.peptide-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.peptide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(22,22,14,0.13);
}

/* Nav upgrades for dark hero */
.nav.nav-over-dark {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
.nav.nav-over-dark .nav-link {
  color: rgba(255,255,255,0.65);
}
.nav.nav-over-dark .nav-link:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}
.nav.nav-over-dark .nav-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav.nav-over-dark .nav-hamburger span {
  background: rgba(255,255,255,0.85);
}

/* Marble card borders in featured section */
.peptide-card .card-body {
  border-left: 1px solid rgba(200,196,180,0.2);
  border-right: 1px solid rgba(200,196,180,0.2);
  border-bottom: 1px solid rgba(200,196,180,0.2);
}

/* ── How It Works marble treatment ────────────────────────────── */
.how-step {
  position: relative;
}
.how-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(113,137,89,0.3), rgba(113,137,89,0.08));
}

/* ── Shipping / CTA section marble ────────────────────────────── */
.section[aria-labelledby="trust-title"],
.section-marble-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(113,137,89,0.06) 0%, transparent 60%),
    repeating-linear-gradient(
      -35deg,
      transparent 0px, transparent 25px,
      rgba(200,196,180,0.045) 25px, rgba(200,196,180,0.045) 26px
    ),
    linear-gradient(180deg, #f5f4ee 0%, #eeece4 100%);
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content-centered {
    padding: calc(var(--nav-h) + 40px) 24px 80px;
    text-align: center;
  }
  .hero-stat { padding: 0 20px; }
  .hero-stat-num { font-size: 24px; }
  .marble-glass-panel { min-height: 360px; }
  .marble-glass-inner { padding: 24px; min-height: 360px; }
  .hero-actions { justify-content: center; }
  .hero-stats-row { justify-content: center; }
  .hero-scroll { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════
   PREMIUM TRUST RIBBON CAROUSEL
   ═══════════════════════════════════════════════════════════════════ */

/* ── Section shell ─────────────────────────────────────────────── */
.trust-ribbon {
  position: relative;
  overflow: hidden;
  padding: 52px 0;

  /* Off-white marble base */
  background:
    radial-gradient(ellipse at 15% 50%, rgba(113,137,89,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(113,137,89,0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.9) 0%, transparent 60%),
    repeating-linear-gradient(
      -38deg,
      transparent 0px, transparent 22px,
      rgba(200,196,180,0.065) 22px, rgba(200,196,180,0.065) 23px
    ),
    repeating-linear-gradient(
      52deg,
      transparent 0px, transparent 34px,
      rgba(180,176,160,0.04) 34px, rgba(180,176,160,0.04) 35px
    ),
    linear-gradient(180deg, #f7f6f0 0%, #f0ede6 50%, #f4f2ec 100%);

  border-top: 1px solid rgba(200,196,180,0.4);
  border-bottom: 1px solid rgba(200,196,180,0.4);
}

/* Marble texture overlay */
.tr-marble-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.5) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 70%, rgba(240,237,230,0.4) 0%, transparent 40%);
  pointer-events: none;
}

/* Left/right edge fade — create the "appearing from nothing" effect */
.tr-fade-left,
.tr-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 10;
  pointer-events: none;
}
.tr-fade-left {
  left: 0;
  background: linear-gradient(to right,
    #f5f4ee 0%,
    rgba(245,244,238,0.9) 30%,
    rgba(245,244,238,0.4) 70%,
    transparent 100%
  );
}
.tr-fade-right {
  right: 0;
  background: linear-gradient(to left,
    #f5f4ee 0%,
    rgba(245,244,238,0.9) 30%,
    rgba(245,244,238,0.4) 70%,
    transparent 100%
  );
}

/* ── Track ──────────────────────────────────────────────────────── */
.tr-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.tr-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: trust-scroll 38s linear infinite;
  will-change: transform;
}
.tr-track-wrap:hover .tr-track {
  animation-play-state: paused;
}

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

/* ── Cards ──────────────────────────────────────────────────────── */
.tr-card {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;

  /* Glassmorphism */
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 16px 24px;
  min-width: 230px;

  /* Premium shadows */
  box-shadow:
    0 2px 12px rgba(22,22,14,0.06),
    0 1px 3px rgba(22,22,14,0.04),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(200,196,180,0.2);

  /* Subtle green top-border accent */
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1.5px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(113,137,89,0.45) 30%,
    rgba(113,137,89,0.45) 70%,
    transparent
  );
  border-radius: 1px;
}

/* Marble vein texture on each card */
.tr-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background:
    repeating-linear-gradient(
      -42deg,
      transparent 0px, transparent 18px,
      rgba(200,196,180,0.06) 18px, rgba(200,196,180,0.06) 19px
    );
  pointer-events: none;
}

/* Hover lift — only when track is paused */
.tr-track-wrap:hover .tr-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px rgba(22,22,14,0.10),
    0 2px 8px rgba(22,22,14,0.06),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(200,196,180,0.2);
}

/* ── Card icon ──────────────────────────────────────────────────── */
.tr-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);

  /* Soft green glow */
  background: linear-gradient(135deg, #dce5cf 0%, #c8d9b4 100%);
  box-shadow:
    0 2px 8px rgba(113,137,89,0.2),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* ── Card text ──────────────────────────────────────────────────── */
.tr-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tr-card-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.tr-card-sub {
  font-size: 11.5px;
  color: var(--text-3);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ── Dot separator between cards ───────────────────────────────── */
.tr-separator {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(113,137,89,0.3);
}

/* ── Reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .tr-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
  }
}

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .trust-ribbon { padding: 40px 0; }
  .tr-fade-left,
  .tr-fade-right { width: 80px; }
  .tr-card {
    padding: 12px 18px;
    min-width: 196px;
    gap: 11px;
  }
  .tr-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }
  .tr-card-icon svg { width: 18px; height: 18px; }
  .tr-card-label { font-size: 12px; }
  .tr-card-sub { font-size: 11px; }
  .tr-track { gap: 14px; animation-duration: 28s; }
}


/* ── LegitScript links ──────────────────────────────────────────── */
.footer-link-verify {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--green-light) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid rgba(181,196,160,0.2);
  border-radius: 6px;
  padding: 7px 10px;
  transition: all var(--transition);
}
.footer-link-verify:hover {
  color: #c8d9b4 !important;
  border-color: rgba(181,196,160,0.45);
  background: rgba(113,137,89,0.08);
}
.footer-link-verify svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* Trust ribbon card as link */
.tr-card-link {
  text-decoration: none;
  cursor: pointer;
}
.tr-card-link:hover .tr-card-sub {
  color: var(--green-dark);
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT IMAGES — E-COM pictures
   ═══════════════════════════════════════════════════════════════════ */

/* ── Catalog & homepage card images ─────────────────────────────── */
.card-img {
  position: relative;
  overflow: hidden;
  background: #f4f3f1; /* neutral fallback; product photos fill the frame */
}
.card-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
}
.card:hover .card-product-img {
  transform: scale(1.04);
}
/* Overlay — hidden when a real product image is present */
.card-img-overlay {
  display: none;
  pointer-events: none;
}
/* Show overlay only on placeholder cards (no product img) */
.card-img:not(:has(.card-product-img)) .card-img-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(14,14,10,0.35) 100%
  );
}

/* ── Peptide detail page gallery ────────────────────────────────── */
.peptide-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #f4f3f1;
  border: 1px solid rgba(180,180,170,0.2);
  aspect-ratio: 2/3; /* matches the actual product photos (1024×1536) */
  display: flex;
  align-items: center;
  justify-content: center;
}
.peptide-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}
.peptide-img-frame:hover .peptide-product-img {
  transform: scale(1.03);
}

/* Thumbnail variant */
.peptide-thumb-img {
  cursor: pointer;
}
.peptide-gallery-thumbs .peptide-img-frame {
  aspect-ratio: 2/3;
  flex: 1;
  border-radius: var(--radius-md);
}
.peptide-gallery-thumbs .peptide-img-frame:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(113,137,89,0.25);
}

/* ═══════════════════════════════════════════════════════════════════
   GLP SUBSCRIPTION PANEL
   ═══════════════════════════════════════════════════════════════════ */
/* Equal-height GLP cards — Sema / Tirz / Lipo-B always match */
.glp-card {
  display: flex;
  flex-direction: column;
}
.glp-card > a {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.glp-card > a .card-body {
  flex: 1;
}
.glp-card .glp-sub-panel {
  margin-top: auto;
}

.glp-sub-panel {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg-1), var(--bg-2));
}
.glp-sub-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.glp-sub-heading::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--green);
}
.glp-plan-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.glp-plan-toggle input[type="radio"] { display: none; }
.glp-plan-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.18s ease;
  background: var(--white);
  text-align: center;
  user-select: none;
}
.glp-plan-opt:hover { border-color: var(--green); background: rgba(113,137,89,0.04); }
.glp-plan-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  font-family: var(--font-display);
  line-height: 1;
}
.glp-plan-note { font-size: 10px; color: var(--text-3); line-height: 1.3; }
.glp-save-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  background: rgba(113,137,89,0.12);
  padding: 2px 6px;
  border-radius: 20px;
}
.glp-plan-toggle input[type="radio"]:checked + .glp-plan-opt {
  border-color: var(--green);
  background: rgba(113,137,89,0.07);
  box-shadow: 0 0 0 2px rgba(113,137,89,0.18);
}
.glp-plan-toggle input[type="radio"]:checked + .glp-plan-opt .glp-plan-name { color: var(--green-dark); }

/* Peptide detail page subscription box */
.glp-detail-sub {
  background: linear-gradient(135deg, rgba(113,137,89,0.06) 0%, rgba(113,137,89,0.02) 100%);
  border: 1.5px solid rgba(113,137,89,0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}
.glp-detail-sub .glp-plan-opt { padding: 12px 10px; }
.glp-detail-sub .glp-plan-name { font-size: 14px; }
.glp-detail-sub .glp-plan-note { font-size: 11px; }

/* ── Per-plan subscription cards with individual Subscribe Now buttons ── */
.glp-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.glp-plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
  transition: border-color 0.18s, background 0.18s;
}
.glp-plan-card:hover { border-color: var(--green); background: rgba(113,137,89,0.03); }
/* Larger version inside the peptide sticky panel */
.glp-detail-sub .glp-plan-card { padding: 12px 10px 10px; gap: 4px; }
.glp-detail-sub .glp-plan-card .glp-plan-name { font-size: 13px; }
.glp-detail-sub .glp-plan-card .glp-plan-note { font-size: 10px; }
/* Subscribe Now pill inside each card */
.glp-subscribe-btn {
  display: inline-block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  padding: 4px 11px;
  background: var(--text);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.glp-subscribe-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
/* Catalog card variant — even more compact */
.glp-sub-panel .glp-plan-card { padding: 8px 6px 8px; gap: 2px; }
.glp-sub-panel .glp-plan-card .glp-plan-name { font-size: 11px; }
.glp-sub-panel .glp-plan-card .glp-plan-note { font-size: 9px; }
.glp-sub-panel .glp-subscribe-btn { font-size: 9px; padding: 3px 9px; margin-top: 5px; }


/* ═══════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS — Final Pass
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { padding: 0 20px; padding-top: var(--nav-h); }
  .hero-inner { max-width: 100%; }
  .hero-sub { max-width: 100%; font-size: clamp(15px, 4vw, 17px); margin-bottom: 32px; }
  .hero-actions { margin-bottom: 40px; }
  .hero-stat { padding: 0 14px; }
  .hero-stat-divider { height: 28px; }
}
@media (max-width: 480px) {
  .hero-stat-divider { display: none; }
  .hero-stats-row { gap: 12px; }
  .hero-stat { padding: 8px 16px; }
}

/* ── Why BRAVO1 feature rows (icon + text) ───────────────────────── */
@media (max-width: 480px) {
  .grid-2[style*="gap:80px"] { gap: 40px !important; }
}

/* ── Section padding on mobile ───────────────────────────────────── */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
}

/* ── Video containers ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .video-wrap { border-radius: var(--radius-lg) !important; }
  /* Homepage video: remove fixed max-width constraint on small screens */
  .video-wrap[style*="max-width:860px"] { max-width: 100% !important; }
}

/* ── Peptide page: gallery thumbnails ────────────────────────────── */
@media (max-width: 480px) {
  .peptide-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .peptide-gallery-thumb {
    flex: unset;
  }
}

/* ── Peptide page: sidebar sticky CTA buttons ────────────────────── */
@media (max-width: 768px) {
  .peptide-sticky .btn { width: 100%; justify-content: center; }
}

/* ── GLP subscription panels ─────────────────────────────────────── */
@media (max-width: 480px) {
  .glp-sub-panel { padding: 12px 16px 16px; }
  .glp-plan-toggle { gap: 6px; }
  .glp-plan-opt { padding: 8px 6px; }
  .glp-plan-name { font-size: 12px; }
}

/* ── BPC-157 option cards ────────────────────────────────────────── */
@media (max-width: 480px) {
  .bpc-option-img-wrap { max-height: 200px; }
  .bpc-option-body { padding: 16px; }
  .bpc-option-actions { flex-direction: column; }
  .bpc-option-actions .btn { width: 100%; }
}

/* ── Cards on catalog / homepage ─────────────────────────────────── */
@media (max-width: 480px) {
  .card-body { padding: 16px; }
  .card-title { font-size: 17px; }
}

/* ── How It Works steps ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .step-item { grid-template-columns: 52px 1fr; gap: 0 16px; }
  .step-num { width: 40px; height: 40px; font-size: 13px; }
  .step-title { font-size: 17px; }
  .step-desc { font-size: 14px; }
}

/* ── About / Education / Contact text sections ───────────────────── */
@media (max-width: 480px) {
  .section-intro .h1 { font-size: clamp(28px, 8vw, 40px); }
  .section-intro .h2 { font-size: clamp(24px, 7vw, 32px); }
}

/* ── Lab docs icon+text rows ─────────────────────────────────────── */
@media (max-width: 480px) {
  [style*="width:48px;height:48px"] { width: 40px !important; height: 40px !important; flex-shrink: 0; }
}

/* ── Modal ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .modal { max-width: calc(100vw - 24px); }
  .modal-header { padding: 16px 16px 0; }
  .modal-body { padding: 16px; }
  .modal-title { font-size: 17px; }
}

/* ── Lab Document Modal: mobile — skip iframe, show download only ── */
@media (max-width: 768px) {
  /* Hide the PDF iframe — mobile browsers can't display it properly */
  #lab-modal .modal-body iframe {
    display: none !important;
  }
  /* Keep modal body flush for the download area */
  #lab-modal .modal-body {
    padding: 0 !important;
    overflow: hidden !important;
  }
  /* Document icon placeholder before buttons */
  #lab-modal .modal-body::before {
    content: "";
    display: flex;
    width: 56px;
    height: 56px;
    margin: 28px auto 4px;
    background: var(--bg-2);
    border-radius: 14px;
    border: 1px solid var(--border);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px;
  }
  /* Caption below the icon */
  #lab-modal .modal-body::after {
    content: "Tap below to download or open the document";
    display: block;
    text-align: center;
    font-size: 12.5px;
    color: var(--text-3);
    padding: 8px 20px 0;
  }
  /* Stack download buttons full-width and centered */
  #lab-modal .modal-body > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 20px 20px 28px !important;
    border-top: none !important;
    justify-content: center !important;
  }
  #lab-modal .modal-body > div a.btn {
    text-align: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    display: flex !important;
  }
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .faq-question { font-size: 14px; padding: 16px 0; }
}

/* ── Footer ──────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .footer { padding: 48px 0 0; }
  .footer-grid { gap: 24px; }
}

/* ── Chat widget ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-panel { width: calc(100vw - 32px); right: 0; bottom: 56px; }
}

/* ── Breadcrumb wrapping ─────────────────────────────────────────── */
@media (max-width: 480px) {
  [aria-label="Breadcrumb"] ol { flex-wrap: wrap; }
}

/* ── Prevent horizontal overflow globally ────────────────────────── */
html, body { overflow-x: hidden; }

/* ── Touch tap targets ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .btn { min-height: 44px; }
  .nav-hamburger { min-height: 44px; min-width: 44px; }
  .faq-question { min-height: 44px; display: flex; align-items: center; }
}

/* ── Peptide Gallery Flip Animation ─────────────────────────────── */
.peptide-gallery-main { perspective: 1000px; }
@keyframes galleryFlip {
  0%   { transform: rotateY(0deg);   opacity: 1; }
  45%  { transform: rotateY(90deg);  opacity: 0; }
  55%  { transform: rotateY(-90deg); opacity: 0; }
  100% { transform: rotateY(0deg);   opacity: 1; }
}
.peptide-gallery-main.gallery-flip img {
  animation: galleryFlip 0.36s ease-in-out forwards;
}
.peptide-gallery-thumb {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  opacity: 0.72;
}
.peptide-gallery-thumb:hover {
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.peptide-gallery-thumb.thumb-active {
  opacity: 1;
  box-shadow: 0 0 0 2.5px var(--green-dark);
}

/* ── Mobile: collapse 3-column inline stat grids to 2-column ─────── */
@media (max-width: 480px) {
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Mobile: about page contact section grid ─────────────────────── */
@media (max-width: 768px) {
  /* Veterans section h2 break */
  .founder-block .section-title br { display: none; }
}

/* ── Mobile: contact info section padding adjustments ────────────── */
@media (max-width: 480px) {
  /* Transparency note strip */
  [style*="padding:28px 40px"][style*="display:flex"] {
    padding: 20px 16px !important;
  }
  /* Filter row horizontal scroll on tiny screens */
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filter-row::-webkit-scrollbar { display: none; }
}

/* ── Mobile: catalog filter row scrollable on small screens ─────── */
@media (max-width: 600px) {
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }
}

/* ── Mobile: b1 trust bar always scrollable ──────────────────────── */
@media (max-width: 768px) {
  .b1-trust-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .b1-trust-inner::-webkit-scrollbar { display: none; }
  .b1-trust-item { flex-shrink: 0; }
  .b1-trust-divider { flex-shrink: 0; }
}

/* ── Mobile: GLP card equal height fix ───────────────────────────── */
@media (max-width: 600px) {
  .glp-card { min-height: unset; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM SUBSCRIPTION LAYOUT — Apple / WHOOP / Eight Sleep
════════════════════════════════════════════════════════════ */
.sub-wrap { margin-bottom:28px; }
.sub-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:16px; }
.sub-label { font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-3); }
.sub-header-note { font-size:11px; color:var(--text-3); }
.sub-list {
  background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:14px;
  overflow:hidden; box-shadow:0 1px 3px rgba(0,0,0,0.04),0 4px 14px rgba(0,0,0,0.03);
  margin-bottom:10px;
}
.sub-row {
  display:flex; align-items:center; gap:14px; padding:15px 20px;
  border-bottom:1px solid rgba(0,0,0,0.06); position:relative; transition:background 0.12s;
}
.sub-row:last-child { border-bottom:none; }
.sub-row:hover { background:#fafaf9; }
.sub-row.sub-featured { background:rgba(113,137,89,0.05); }
.sub-row.sub-featured::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--green-dark);
}
.sub-row-info { flex:1; min-width:0; }
.sub-row-name {
  font-size:13px; font-weight:600; color:var(--text);
  display:flex; align-items:center; gap:7px; margin-bottom:2px; letter-spacing:-0.01em;
}
.sub-row-name.sub-featured-name { color:var(--green-dark); }
.sub-badge-pill {
  font-size:9px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--green-dark); background:rgba(113,137,89,0.12); padding:2px 7px; border-radius:100px; flex-shrink:0;
}
.sub-row-desc { font-size:11px; color:var(--text-3); line-height:1.4; }
.sub-row-price { text-align:right; flex-shrink:0; }
.sub-price-crossed { font-size:10px; color:var(--text-3); text-decoration:line-through; line-height:1.2; }
.sub-price-save { font-size:10px; color:var(--green-dark); font-weight:600; line-height:1.2; }
.sub-price-main {
  font-size:16px; font-weight:700; color:var(--text);
  font-family:var(--font-display); line-height:1.1; letter-spacing:-0.02em;
}
.sub-price-main.sub-featured-price { color:var(--green-dark); }
.sub-price-unit { font-size:10px; font-weight:400; color:var(--text-3); }
.sub-btn {
  flex-shrink:0; display:inline-flex; align-items:center; justify-content:center;
  padding:6px 14px; border-radius:100px; font-size:11px; font-weight:600; letter-spacing:0.03em;
  text-decoration:none; white-space:nowrap; cursor:pointer; transition:all 0.15s; border:1px solid transparent;
}
.sub-btn-outline { border-color:rgba(0,0,0,0.14); color:var(--text-2); background:transparent; }
.sub-btn-outline:hover { border-color:var(--text-2); color:var(--text); background:#f5f5f3; }
.sub-btn-filled { background:var(--green-dark); color:#fff; border-color:var(--green-dark); }
.sub-btn-filled:hover { background:#3d4e28; }
.sub-annual {
  background:linear-gradient(145deg,#0d1808 0%,#182c09 55%,#0f1f07 100%);
  border:1px solid rgba(113,137,89,0.28); border-radius:14px; overflow:hidden;
  box-shadow:0 0 28px rgba(113,137,89,0.1),0 6px 20px rgba(0,0,0,0.16);
}
.sub-annual-header {
  padding:8px 20px; border-bottom:1px solid rgba(113,137,89,0.15);
  display:flex; align-items:center; justify-content:space-between;
}
.sub-annual-label { font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--green); }
.sub-annual-save { font-size:10px; color:rgba(255,255,255,0.35); }
.sub-annual-body { padding:16px 20px; display:flex; align-items:center; gap:14px; }
.sub-annual-info { flex:1; min-width:0; }
.sub-annual-name { font-size:14px; font-weight:700; color:#fff; margin-bottom:2px; letter-spacing:-0.01em; }
.sub-annual-desc { font-size:11px; color:rgba(255,255,255,0.4); line-height:1.4; }
.sub-annual-per { font-size:10px; color:var(--green); font-weight:600; margin-top:4px; }
.sub-annual-price { text-align:right; flex-shrink:0; }
.sub-annual-crossed { font-size:10px; color:rgba(255,255,255,0.25); text-decoration:line-through; line-height:1.2; }
.sub-annual-main { font-size:18px; font-weight:800; color:#fff; font-family:var(--font-display); line-height:1.1; letter-spacing:-0.03em; }
.sub-annual-unit { font-size:10px; font-weight:400; color:rgba(255,255,255,0.35); }
.sub-btn-annual {
  flex-shrink:0; display:inline-flex; align-items:center; justify-content:center;
  padding:7px 16px; border-radius:100px; font-size:11px; font-weight:600; letter-spacing:0.03em;
  text-decoration:none; white-space:nowrap; cursor:pointer;
  background:rgba(113,137,89,0.22); color:#fff; border:1px solid rgba(113,137,89,0.4); transition:all 0.18s;
}
.sub-btn-annual:hover { background:var(--green); border-color:var(--green); }
.sub-footer-note { font-size:11px; color:var(--text-3); text-align:center; margin-top:12px; line-height:1.6; }
@media(max-width:480px){
  .sub-row { flex-wrap:wrap; }
  .sub-btn,.sub-btn-annual { width:100%; justify-content:center; margin-top:4px; }
}

/* ── Desktop: compact Subscribe Now / Start Physician Review buttons ─
   btn-lg (16px / 18px 36px) is oversized for these inline contexts.
   Scales down to a refined pill without affecting mobile (handled above).
─────────────────────────────────────────────────────────────────────── */
@media (min-width: 769px) {
  /* "Get Started" pill inside GLP subscription panels on catalog cards */
  .glp-sub-panel .btn {
    font-size: 11px !important;
    padding: 5px 14px !important;
    width: auto !important;
    display: inline-flex !important;
    border-radius: 100px;
  }

  /* "Subscribe Now" / "Start Physician Review" in the peptide sticky sidebar */
  .peptide-sticky .btn,
  .glp-detail-sub .btn {
    font-size: 12px !important;
    padding: 8px 18px !important;
    min-height: unset !important;
  }

  /* "Start Physician Review" in the dark bottom CTA section */
  .btn-green.btn-lg {
    font-size: 13px !important;
    padding: 10px 22px !important;
  }
}
