/* PeptideAware — Comparison Page Shared CSS */

:root {
  --navy: #0D1B2A;
  --navy-mid: #1a2f45;
  --steel: #4E83C5;
  --steel-light: #7eb8e8;
  --teal: #007A8A;
  --teal-light: #e0f4f6;
  --cream: #F8F6F1;
  --cream-dark: #EDE9E0;
  --red: #C0392B;
  --red-light: #fce8e8;
  --green: #1a7a4a;
  --green-light: #e8f2e8;
  --gold: #b8860b;
  --gold-light: #fef9e7;
  --purple: #8e44ad;
  --purple-light: #f3edf8;
  --border: #d8d4cc;
  --text: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #7a7a9a;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--steel); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--navy-mid);
}
.nav-logo {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.nav-logo strong { color: var(--steel-light); }
.nav-links { display: flex; gap: 20px; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 64px 24px 48px;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(78,131,197,0.2);
  border: 1px solid rgba(78,131,197,0.4);
  color: var(--steel-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 .peptide { color: var(--steel-light); }
.hero h1 .arrow { color: var(--text-light); font-size: 0.7em; padding: 0 8px; }
.hero h1 .pharma { color: #7ee8a8; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  line-height: 1.6;
}

/* ── CONTAINER ────────────────────────────────── */
.container { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.container-wide { max-width: 1000px; margin: 0 auto; padding: 48px 24px; }

/* ── SECTION ────────────────────────────────── */
.section { margin-bottom: 56px; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-text { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }
.section-text strong { color: var(--navy); }

/* ── COMPARISON TABLE ────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 24px 0;
}
.comparison-table thead {
  background: var(--navy);
  color: var(--white);
}
.comparison-table th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.comparison-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  vertical-align: top;
}
.comparison-table tr:nth-child(even) td {
  background: var(--cream);
}
.comparison-table .label-cell {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 28%;
  background: var(--cream-dark) !important;
}
.comparison-table .peptide-cell { color: var(--purple); font-weight: 500; }
.comparison-table .pharma-cell { color: var(--green); font-weight: 500; }

/* ── VERDICT CARDS ─────────────────────────── */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.verdict-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid;
}
.verdict-card.peptide { border-left-color: var(--purple); }
.verdict-card.pharma { border-left-color: var(--green); }
.verdict-card.warning { border-left-color: var(--red); }
.verdict-card.gold { border-left-color: var(--gold); }
.verdict-icon { font-size: 1.5rem; margin-bottom: 8px; }
.verdict-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.verdict-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }

/* ── BOTTOM LINE CALLOUT ────────────────────── */
.bottom-line {
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 12px;
  margin: 24px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.bottom-line-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.bottom-line strong { color: var(--steel-light); font-weight: 700; }

/* ── QUESTIONS ─────────────────────────────── */
.questions-box {
  background: var(--teal-light);
  border: 1px solid #b8dfe5;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
}
.questions-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}
.questions-list { list-style: none; padding: 0; }
.questions-list li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.5;
}
.questions-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── EVIDENCE BOX ─────────────────────────── */
.evidence-box {
  background: var(--gold-light);
  border: 1px solid #fde9a0;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.evidence-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a6a1a;
  margin-bottom: 8px;
}
.evidence-text { font-size: 0.88rem; color: #5a4a0a; line-height: 1.6; }

/* ── CTA ─────────────────────────────────── */
.cta-box {
  background: var(--white);
  border: 2px solid var(--steel);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
  text-align: center;
}
.cta-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.cta-text { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 16px; }
.cta-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.cta-btn:hover { background: #005f6b; text-decoration: none; }

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.8rem;
  margin-top: 48px;
}
footer a { color: rgba(255,255,255,0.6); }
footer a:hover { color: var(--white); }

/* ── DISCLAIMER ───────────────────────────── */
.disclaimer {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 32px 0 0;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.disclaimer strong { color: var(--navy); }

/* ── KEY FACTS GRID ─────────────────────── */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.fact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.fact-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.fact-value { font-size: 0.95rem; font-weight: 700; color: var(--navy); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 700px) {
  .verdict-grid, .facts-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .comparison-table .label-cell { width: 32%; }
  .nav { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.78rem; }
}
