/* =========================================================
   Zenith Leads Outreach — Stylesheet
   ========================================================= */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9fa;
  --color-surface: #ffffff;
  --color-text: #14232e;
  --color-text-muted: #566876;
  --color-border: #e4e9ec;
  --color-accent: #147d80;
  --color-accent-dark: #0d5c5e;
  --color-accent-light: #e6f4f3;
  --color-navy: #0f2430;
  --color-navy-alt: #17303e;
  --color-danger: #c2483c;
  --color-success: #1f8a5e;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(15, 36, 48, 0.06), 0 1px 2px rgba(15, 36, 48, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 36, 48, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 36, 48, 0.14);

  --max-width: 1180px;
  --header-height: 76px;

  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); text-align: center; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--color-text-muted); }

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

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.section-sub.center { max-width: 720px; margin-top: 32px; }

section { padding: 96px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(20, 125, 128, 0.25);
}
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: var(--color-bg-alt);
  color: var(--color-navy);
  border-color: var(--color-border);
}
.btn-secondary:hover { background: #eef2f3; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--color-accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero { padding: 88px 0 96px; overflow: hidden; }

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-sub {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-credibility {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.hero-visual { display: flex; justify-content: center; }

.flow-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-step {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.flow-step-final {
  background: var(--color-accent-light);
  border-color: #bfe3e1;
}

.flow-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.flow-icon svg { width: 20px; height: 20px; }

.flow-text { display: flex; flex-direction: column; }
.flow-value { font-weight: 700; color: var(--color-navy); font-size: 0.98rem; }
.flow-label { font-size: 0.82rem; color: var(--color-text-muted); }

.flow-arrow {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  padding: 6px 0;
}

/* ---------- Video Section ---------- */
.video-section { background: var(--color-bg-alt); }

.video-section h2, .video-section .section-sub { }

.video-placeholder {
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}

.video-thumb-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(20,125,128,0.35), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(20,125,128,0.25), transparent 50%),
    linear-gradient(135deg, #0f2430 0%, #16323f 55%, #103032 100%);
}

.play-btn {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-accent-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s ease;
}
.play-btn:hover { transform: scale(1.06); }
.play-btn svg { width: 32px; height: 32px; margin-left: 4px; }

.video-thumb-text {
  position: relative;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ---------- How It Works ---------- */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
}

.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; margin: 0; }

.step-connector {
  align-self: center;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 6px, transparent 6px 12px);
  margin-top: -60px;
}

/* ---------- Opportunity Example ---------- */
.opportunity-example { background: var(--color-bg-alt); }

.opportunity-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.opportunity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--color-navy);
}

.opportunity-tag {
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.priority-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.priority-high { background: #fdece9; color: var(--color-danger); }

.opportunity-body { padding: 24px; }

.opportunity-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.93rem;
}
.opportunity-row:last-child { border-bottom: none; }
.opportunity-row .label { color: var(--color-text-muted); }
.opportunity-row .value { font-weight: 600; color: var(--color-navy); }

.opportunity-footer {
  background: var(--color-accent-light);
  padding: 18px 24px;
}
.recommended-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent-dark);
  margin-bottom: 6px;
}
.opportunity-footer p {
  margin: 0;
  font-weight: 600;
  color: var(--color-navy);
  font-style: italic;
}

.illustrative-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 20px;
  font-style: italic;
}

/* ---------- Conversation Intelligence ---------- */
.conversation-intelligence h2 { text-align: center; }

.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.intel-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.intel-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.intel-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.intel-stat {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
}

/* ---------- What You Get ---------- */
.what-you-get { background: var(--color-bg-alt); }

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--color-navy);
}

.checklist-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--color-accent);
}

/* ---------- Free Analysis ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.offer-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.offer-card h3 { margin-bottom: 12px; }

.score-panel {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.score-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.score-total { font-size: 1.6rem; color: var(--color-accent); }
.score-max { font-size: 0.9rem; color: var(--color-text-muted); font-weight: 600; }

.score-breakdown {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.score-breakdown li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.score-breakdown li span:last-child { font-weight: 700; color: var(--color-navy); }

.findings-panel {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.findings-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.findings-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 10px;
}
.findings-list li:last-child { border-bottom: none; padding-bottom: 0; }
.findings-label { color: var(--color-text-muted); }
.findings-value { font-weight: 700; color: var(--color-navy); }

.sample-tag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.offer-footer { font-size: 0.88rem; margin-bottom: 20px; }

/* ---------- Why Different ---------- */
.why-different h2 { text-align: center; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.diff-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.diff-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-icon svg { width: 26px; height: 26px; }

.diff-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Who It's For ---------- */
.who-its-for { background: var(--color-bg-alt); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--color-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-card svg { width: 30px; height: 30px; color: var(--color-accent); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-alt) 100%);
  text-align: center;
}

.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; }

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.final-positioning {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-navy); color: rgba(255,255,255,0.7); padding: 48px 0 0; }

.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.15s ease; }
.footer-nav a:hover { color: #fff; }

.footer-contact a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.5); }

/* ---------- Modals ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 36, 48, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px;
  overflow-y: auto;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.2s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-bg-alt);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: #eef2f3; color: var(--color-navy); }

.modal h3 { margin-bottom: 8px; padding-right: 30px; }
.modal-sub { font-size: 0.92rem; margin-bottom: 24px; }

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-form[hidden] { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--color-navy); }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.94rem;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-field textarea { resize: vertical; }

.file-hint { font-size: 0.78rem; color: var(--color-text-muted); }

.form-error {
  background: #fdece9;
  color: var(--color-danger);
  border: 1px solid #f4c6bd;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  margin: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.modal-success { text-align: center; padding: 12px 0; }
.modal-success svg { width: 56px; height: 56px; color: var(--color-success); margin: 0 auto 16px; }
.modal-success h3 { margin-bottom: 10px; }
.modal-success p { margin-bottom: 24px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .steps-flow { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .step-connector { display: none; }
  .intel-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .offer-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
  }
  .nav-links a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-toggle { display: flex; }
  .nav-cta { width: 100%; }

  .steps-flow { grid-template-columns: 1fr; }
  .intel-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }

  .legal-page .section-container { padding: 0 20px; }
}

/* =========================================================
   Legal pages (Privacy Policy, Terms)
   ========================================================= */
.legal-page {
  padding: 64px 0 96px;
}

.legal-page .section-container {
  max-width: 780px;
}

.legal-page h1 {
  text-align: left;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.legal-page h2 {
  text-align: left;
  font-size: 1.3rem;
  margin-top: 40px;
}

.legal-page h3 {
  font-size: 1.02rem;
  margin-top: 24px;
  color: var(--color-navy);
}

.legal-page p,
.legal-page li {
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--color-text-muted);
}

.legal-page a.inline-link {
  color: var(--color-accent);
  text-decoration: underline;
}
