/* lipids.pages.dev — Clinical Lipidomics & Biomarker Risk Terminal */
:root {
  --bg-deep: #070d18;
  --bg-card: rgba(13, 23, 42, 0.75);
  --bg-card-hover: rgba(18, 32, 59, 0.85);
  --border-line: #1e293b;
  --accent-cyan: #00e5ff;
  --accent-cyan-dim: rgba(0, 229, 255, 0.15);
  --accent-coral: #ff4d6d;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --text-primary: #f8fafc;
  --text-muted: #cbd5e1;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Bioluminescent Ambient Glows */
.bio-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  top: -120px;
  left: 5%;
}
.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.08) 0%, transparent 70%);
  top: 350px;
  right: -50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header */
.clinical-header {
  border-bottom: 1px solid var(--border-line);
  background: rgba(7, 13, 24, 0.88);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}
.brand-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 2px;
}
.brand-title-link {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
}
.brand-title-link:hover {
  color: #ffffff;
  text-decoration: none;
}
.brand-sub-domain {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  letter-spacing: 0.2px;
  opacity: 0.9;
  transition: opacity 0.2s, text-decoration 0.2s;
}
.brand-sub-domain:hover {
  opacity: 1;
  text-decoration: underline;
}
.cross-icon {
  color: var(--accent-cyan);
  font-size: 24px;
  font-weight: bold;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.cyan-accent {
  color: var(--accent-cyan);
}
.sub-badge {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  letter-spacing: 1px;
}

.clinical-nav {
  display: flex;
  gap: 32px;
}
.clinical-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s;
}
.clinical-nav a:hover {
  color: var(--accent-cyan);
}

.guideline-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pulse-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Hero */
.hero-clinical {
  padding: 68px 0 44px;
  text-align: center;
}
.badge-clinical {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  background: var(--accent-cyan-dim);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}
.cyan-gradient {
  background: linear-gradient(135deg, var(--accent-cyan), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
}

/* Calculator Grid */
.calc-section {
  padding: 20px 0 64px;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
}
@media (max-width: 960px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

.panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: 14px;
  padding: 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.input-panel {
  border-top: 3px solid var(--accent-cyan);
}
.results-panel {
  border-top: 3px solid var(--accent-coral);
}
.panel-header {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
}
.panel-num {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  font-weight: 700;
}
.panel-header h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-top: 6px;
}

/* Form inputs */
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .input-grid {
    grid-template-columns: 1fr;
  }
}

.field-item {
  display: flex;
  flex-direction: column;
}
.field-item label {
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap input {
  width: 100%;
  background: #0f1c30;
  border: 1.5px solid var(--border-line);
  color: #ffffff;
  padding: 12px 54px 12px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
}
.input-wrap input:focus {
  border-color: var(--accent-cyan);
}
.input-wrap .unit {
  position: absolute;
  right: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  pointer-events: none;
}
.field-hint {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 6px;
  line-height: 1.4;
}

.calc-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.preset-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  min-height: 44px;
}
.preset-btn:hover {
  background: var(--accent-cyan-dim);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* Results Panel */
.risk-banner {
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.risk-banner.tier-optimal {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
}
.risk-banner.tier-moderate {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
}
.risk-banner.tier-high {
  background: rgba(255, 77, 109, 0.15);
  border-color: rgba(255, 77, 109, 0.45);
}

.banner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.banner-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: #cbd5e1;
  font-weight: 700;
}
.tier-pill {
  font-size: 13px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.tier-optimal .tier-pill { background: var(--accent-emerald); color: #000; }
.tier-moderate .tier-pill { background: var(--accent-amber); color: #000; }
.tier-high .tier-pill { background: var(--accent-coral); color: #fff; }

.risk-headline {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.risk-sub {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Biomarker Diagnostic Cards */
.biomarker-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.bio-metric {
  background: #0b1526;
  border: 1px solid var(--border-line);
  border-radius: 10px;
  padding: 16px;
}
.metric-name {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  display: block;
}
.metric-score {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin: 4px 0;
}
.metric-status {
  font-size: 13px;
  font-weight: 600;
}

.text-emerald { color: var(--accent-emerald); }
.text-amber { color: var(--accent-amber); }
.text-coral { color: var(--accent-coral); }

.clinical-recommendation {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 10px;
  padding: 18px;
}
.rec-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}
.rec-body {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.65;
}

/* Partner Requisition Card */
.partner-cta-card {
  margin-top: 22px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(13, 23, 42, 0.95));
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.15);
}
.partner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.partner-badge {
  background: var(--accent-cyan);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}
.partner-price {
  font-size: 14px;
  color: var(--accent-cyan);
  font-weight: 700;
}
.partner-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}
.partner-cta-card p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 16px;
  line-height: 1.6;
}
.partner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00e5ff, #00b4d8);
  color: #040810;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 48px;
}
.btn-partner:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.45);
}
.partner-guarantee {
  font-size: 13px;
  color: #94a3b8;
}

/* Lead Capture Section */
.lead-capture-section {
  padding: 20px 0 50px;
}
.capture-box {
  background: linear-gradient(135deg, #0b1526, #070d18);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 14px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 860px) {
  .capture-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
.capture-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 10px 0;
}
.capture-content p {
  font-size: 17px;
  color: #cbd5e1;
  line-height: 1.65;
}
.form-input-wrap {
  display: flex;
  gap: 10px;
}
@media (max-width: 500px) {
  .form-input-wrap {
    flex-direction: column;
  }
}
.form-input-wrap input {
  flex: 1;
  background: #0f1c30;
  border: 1.5px solid var(--border-line);
  color: var(--text-primary);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 17px;
  outline: none;
}
.form-input-wrap input:focus {
  border-color: var(--accent-cyan);
}
.btn-subscribe {
  background: var(--accent-cyan);
  color: #040810;
  font-weight: 800;
  border: none;
  padding: 14px 26px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: opacity 0.2s;
  white-space: nowrap;
  min-height: 48px;
}
.btn-subscribe:hover {
  opacity: 0.9;
}
.capture-note {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 10px;
}

/* Science Explainer */
.scientific-section {
  padding: 60px 0 70px;
  border-top: 1px solid var(--border-line);
}
.section-title-wrap {
  text-align: center;
  margin-bottom: 44px;
}
.section-title-wrap h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 12px 0 10px;
}
.section-title-wrap p {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.science-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: 14px;
  padding: 32px;
  position: relative;
}
.card-glow-pill {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: var(--accent-cyan-dim);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.science-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 12px;
}
.science-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Guidelines Table */
.guidelines-section {
  padding: 50px 0 80px;
  border-top: 1px solid var(--border-line);
}
.guidelines-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-line);
}
.guidelines-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 16px;
  text-align: left;
}
.guidelines-table th {
  background: #091222;
  padding: 18px 22px;
  color: #f1f5f9;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid var(--border-line);
}
.guidelines-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.6;
}
.guidelines-table tr:last-child td {
  border-bottom: none;
}

/* Outcome Carousel */
.carousel-section {
  padding: 20px 0 50px;
}
.carousel-shell {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.carousel-nav-tabs {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 24px;
  overflow-x: auto;
}
.tab-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.tab-btn.active {
  background: var(--accent-cyan-dim);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.step-badge {
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
}
.tab-btn.active .step-badge {
  background: var(--accent-cyan);
  color: #000;
}
.tab-title {
  font-size: 15px;
  font-weight: 700;
}

.carousel-viewport {
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
.carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .carousel-slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.visual-panel-mock {
  background: #091222;
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 24px;
}
.mock-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
}
.mock-row:last-child {
  border-bottom: none;
}
.hazard-badge {
  display: inline-block;
  background: var(--accent-coral);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.action-tag {
  display: inline-block;
  background: var(--accent-emerald);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.visual-panel-mock h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 8px;
}
.mock-sub {
  font-size: 14px;
  color: #cbd5e1;
}

.slide-copy h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 10px 0 12px;
}
.slide-copy p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.65;
}
.slide-tag {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  font-weight: 800;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ctrl-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-line);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ctrl-btn:hover {
  background: var(--accent-cyan);
  color: #000;
  border-color: var(--accent-cyan);
}
.carousel-dots {
  display: flex;
  gap: 10px;
}
.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dots .dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--accent-cyan);
}

/* Comparison Paradigm Table */
.comparison-section {
  padding: 50px 0 70px;
  border-top: 1px solid var(--border-line);
}
.table-card {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border-line);
  background: var(--bg-card);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  text-align: left;
}
.comparison-table th {
  background: #091222;
  padding: 18px 22px;
  color: #f1f5f9;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid var(--border-line);
}
.comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.check-good {
  color: var(--accent-emerald);
  font-weight: 800;
}
.cross-bad {
  color: var(--accent-coral);
  font-weight: 700;
}

/* FAQ Accordion */
.faq-section {
  padding: 50px 0 90px;
  border-top: 1px solid var(--border-line);
}
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(0, 229, 255, 0.45);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon {
  font-size: 22px;
  color: var(--accent-cyan);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 350px;
  padding-bottom: 24px;
}

/* Article & Long-Form Reading Rules (Senior-Accessible) */
article {
  font-size: 18px;
  line-height: 1.8;
  color: #e2e8f0;
}
article p {
  font-size: 18px;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 22px;
}
article h1 {
  font-size: clamp(34px, 4.5vw, 46px);
  line-height: 1.25;
  color: #ffffff;
}
article h2 {
  font-size: 26px;
  color: #ffffff;
  margin: 40px 0 18px;
  line-height: 1.35;
}
article h3 {
  font-size: 22px;
  color: #ffffff;
  margin: 32px 0 14px;
}
article ul, article ol {
  font-size: 18px;
  line-height: 1.75;
  color: #e2e8f0;
  margin-bottom: 24px;
}
article li {
  margin-bottom: 8px;
}

/* Footer */
.clinical-footer {
  border-top: 1px solid var(--border-line);
  padding: 44px 0;
  background: #040810;
  font-size: 14px;
  color: #cbd5e1;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.medical-disclaimer {
  max-width: 560px;
  font-size: 13px;
  line-height: 1.65;
  color: #94a3b8;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}
