/* =========================================================
   ProAudit — shared stylesheet
   Palette derived from the logo:
   Green #179937  ·  Navy #214A78  ·  Ink #0E302F
   ========================================================= */

:root {
  /* Brand */
  --brand-green: #179937;
  --brand-green-strong: #128030;
  --brand-green-soft: #E6F4EA;
  --brand-green-softer: #F2FAF4;
  --brand-green-line: #CDE8D3;

  --brand-navy: #214A78;
  --brand-navy-strong: #193B62;
  --brand-navy-soft: #EEF3F9;
  --brand-navy-softer: #F5F8FC;
  --brand-navy-line: #D7E1EE;

  /* Neutrals */
  --ink: #0E302F;
  --ink-90: #17403D;
  --text: #3E4E5C;
  --muted: #6B7A8A;
  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --border: #E6EAEF;
  --border-soft: #EEF1F5;

  /* Accents for states */
  --amber: #C48416;
  --amber-soft: #FFF5E2;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(14, 48, 47, 0.04);
  --shadow-sm: 0 2px 8px rgba(14, 48, 47, 0.05), 0 1px 2px rgba(14, 48, 47, 0.03);
  --shadow-md: 0 8px 24px rgba(14, 48, 47, 0.06), 0 2px 6px rgba(14, 48, 47, 0.04);
  --shadow-lg: 0 20px 48px rgba(14, 48, 47, 0.08), 0 6px 16px rgba(14, 48, 47, 0.04);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;

  /* Type */
  --f-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.15; }
p { margin: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Typography utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-navy);
  padding: 6px 12px;
  background: var(--brand-navy-soft);
  border-radius: 999px;
}
.eyebrow.green {
  color: var(--brand-green-strong);
  background: var(--brand-green-soft);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}

.serif-italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.h-display {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
}
.h-section {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.h-card {
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 700;
}
.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text);
  line-height: 1.55;
}
.micro {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(23, 153, 55, 0.22), 0 1px 2px rgba(23, 153, 55, 0.2);
}
.btn-primary:hover { background: var(--brand-green-strong); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(23, 153, 55, 0.28); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink);
  padding: 10px 14px;
}
.btn-ghost:hover { color: var(--brand-green-strong); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-green-strong);
  transition: gap .15s ease;
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 14px; height: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.9);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-mark {
  width: 34px; height: 34px;
  border: 2.5px solid var(--brand-green);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}
.brand-mark svg { width: 18px; height: 18px; color: var(--brand-green); }
.brand-text {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-text span:first-child { color: var(--brand-navy); }
.brand-text span:last-child { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Section base ---------- */
section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .h-section { margin-bottom: 16px; }
.section-head .lead { max-width: 560px; }
.section-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-center .lead { margin-left: auto; margin-right: auto; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(33, 74, 120, 0.08), transparent 60%),
    radial-gradient(700px 420px at 0% 0%, rgba(23, 153, 55, 0.07), transparent 60%),
    linear-gradient(180deg, #F7FAFB 0%, #FAFBFC 80%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(14, 48, 47, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 48, 47, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { margin-bottom: 32px; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  list-style: none;
}
.hero-proof svg { width: 14px; height: 14px; color: var(--brand-green); flex-shrink: 0; }
.hero-proof ul { display: contents; margin: 0; padding: 0; }

/* Hero visual — audit report preview */
.hero-visual {
  position: relative;
  min-height: 440px;
}
.report-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  max-width: 440px;
  margin-left: auto;
}
.report-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, rgba(23, 153, 55, 0.08), rgba(33, 74, 120, 0.08));
  z-index: -1;
  filter: blur(8px);
}
.rc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 18px;
}
.rc-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em;
}
.rc-title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-green); }
.rc-level {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-green-soft);
  color: var(--brand-green-strong);
}
.rc-verdict {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--brand-navy-softer);
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.rc-score {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--brand-navy);
  line-height: 1;
}
.rc-verdict-text .label { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.rc-verdict-text .text { font-size: 13px; color: var(--ink); font-weight: 600; margin-top: 2px; }
.rc-rows { display: flex; flex-direction: column; gap: 10px; }
.rc-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #FBFCFD;
  border: 1px solid var(--border-soft);
}
.rc-row-icon {
  width: 26px; height: 26px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rc-row-icon svg { width: 14px; height: 14px; }
.rc-row-icon.green { background: var(--brand-green-soft); color: var(--brand-green-strong); }
.rc-row-icon.amber { background: var(--amber-soft); color: var(--amber); }
.rc-row-icon.navy { background: var(--brand-navy-soft); color: var(--brand-navy); }
.rc-row-text .t1 { font-size: 13px; font-weight: 700; color: var(--ink); }
.rc-row-text .t2 { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Floating chips around report */
.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.float-chip svg { width: 14px; height: 14px; }
.float-chip.chip-1 { top: 24px; left: 0; color: var(--brand-green-strong); transform: rotate(-4deg); }
.float-chip.chip-1 svg { color: var(--brand-green); }
.float-chip.chip-2 { bottom: 32px; left: -16px; color: var(--brand-navy); transform: rotate(3deg); z-index: 3; }
.float-chip.chip-2 svg { color: var(--brand-navy); }

/* ---------- Capability grid (What ProAudit does) ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cap-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cap-cell:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green-line);
}
.cap-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-green-soft);
  color: var(--brand-green-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cap-icon svg { width: 20px; height: 20px; }
.cap-cell h3 { font-size: 17px; margin-bottom: 6px; }
.cap-cell p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Alternating icon color */
.cap-cell:nth-child(3n+2) .cap-icon { background: var(--brand-navy-soft); color: var(--brand-navy); }

/* ---------- How it works ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-image: linear-gradient(to right, var(--border) 50%, transparent 50%);
  background-size: 10px 1px;
  z-index: 0;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  z-index: 1;
}
.step-num {
  position: absolute;
  top: -16px; left: 24px;
  width: 36px; height: 36px;
  background: #fff;
  border: 2px solid var(--brand-green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--brand-green-strong);
}
.step h3 { font-size: 17px; margin: 10px 0 6px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- Who it's for (audience cards) ---------- */
.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aud-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.aud-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-navy-line);
  box-shadow: var(--shadow-md);
}
.aud-card .aud-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-navy-soft), var(--brand-green-softer));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-navy);
  margin-bottom: 18px;
}
.aud-card .aud-icon svg { width: 20px; height: 20px; }
.aud-card h3 { font-size: 16px; margin-bottom: 6px; }
.aud-card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.aud-card .link-arrow { font-size: 13px; }

/* ---------- Report levels ---------- */
.levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.level {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.level:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.level.featured {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--brand-green) inset, var(--shadow-md);
}
.level.featured::before {
  content: "Most popular";
  position: absolute;
  top: -11px; left: 24px;
  background: var(--brand-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.level-tier {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.level-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 18px;
}
.level-price .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.level-price .cur { font-size: 22px; color: var(--ink); font-weight: 600; }
.level-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; padding-top: 18px; border-top: 1px solid var(--border-soft); }
.level-meta .row .label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.level-meta .row .text {
  font-size: 13.5px; color: var(--ink); line-height: 1.45; font-weight: 500;
}
.level-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.level-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text); line-height: 1.45;
}
.level-features svg {
  width: 14px; height: 14px; color: var(--brand-green); flex-shrink: 0; margin-top: 4px;
}
.level .btn { width: 100%; }

/* ---------- Why it pays off (before/after) ---------- */
.ba-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.ba-col h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ba-col.before h3 { color: var(--muted); }
.ba-col.after h3 { color: var(--brand-green-strong); }
.ba-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ba-col li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; line-height: 1.5;
}
.ba-col.before li { color: var(--muted); }
.ba-col.after li { color: var(--ink); font-weight: 500; }
.ba-col .ic {
  width: 22px; height: 22px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.ba-col.before .ic { background: #F1F3F6; color: var(--muted); }
.ba-col.after .ic { background: var(--brand-green-soft); color: var(--brand-green-strong); }
.ba-col .ic svg { width: 12px; height: 12px; }
.ba-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(23, 153, 55, 0.28);
}
.ba-arrow svg { width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-navy-soft); color: var(--brand-navy);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-q .plus svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .plus { background: var(--brand-green); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 4px;
}
.faq-item.open .faq-a {
  max-height: 260px;
  padding: 0 4px 22px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #F5F8FC 0%, #EEF3F9 100%);
  border: 1px solid var(--brand-navy-line);
  border-radius: var(--r-2xl);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 200px at 50% 120%, rgba(23, 153, 55, 0.1), transparent 70%);
  pointer-events: none;
}
.final-cta h2 { position: relative; margin-bottom: 14px; }
.final-cta p { position: relative; max-width: 520px; margin: 0 auto 28px; }
.final-cta .ctas { position: relative; display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--muted);
}

/* =========================================================
   AUDIENCE PAGE STYLES
   ========================================================= */
.hero-aud .hero-grid { grid-template-columns: 1.2fr 1fr; }

/* Pain / Mistake / Cost — 3-col diagram */
.pmc {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.pmc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.pmc-card .pmc-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.pmc-card:nth-child(1) .pmc-label { background: var(--brand-navy-soft); color: var(--brand-navy); }
.pmc-card:nth-child(2) .pmc-label { background: var(--amber-soft); color: var(--amber); }
.pmc-card:nth-child(3) .pmc-label { background: #FDEDEE; color: #B83A3E; }
.pmc-card h3 { font-size: 18px; margin-bottom: 8px; }
.pmc-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* How ProAudit helps — feature list inside one card */
.help-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.help-block .help-copy h3 { font-size: 22px; margin-bottom: 12px; }
.help-block .help-copy p { font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }
.help-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.help-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink); font-weight: 500;
}
.help-list .ic {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--brand-green-soft); color: var(--brand-green-strong);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.help-list .ic svg { width: 13px; height: 13px; }

/* Recommended levels — 2 or 3 columns variant */
.levels.levels-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
.levels.levels-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Hero variants (audience pages) ---------- */
.hero-visual-aud {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aud-diagram {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
  position: relative;
}
.aud-diagram::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, rgba(33, 74, 120, 0.08), rgba(23, 153, 55, 0.08));
  z-index: -1;
  filter: blur(6px);
}
.aud-diagram .ad-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}
.aud-diagram .ad-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-green); }
.aud-diagram .ad-head .title { font-size: 13px; font-weight: 700; color: var(--ink); }
.aud-diagram .ad-head .tag {
  margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; background: var(--brand-navy-soft); color: var(--brand-navy);
}
.flow-step {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #FBFCFD;
  border: 1px solid var(--border-soft);
  margin-bottom: 10px;
}
.flow-step:last-child { margin-bottom: 0; }
.flow-step .fs-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--brand-green-line); color: var(--brand-green-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-serif); font-style: italic; font-size: 14px; font-weight: 500;
  flex-shrink: 0;
}
.flow-step .fs-text .t1 { font-size: 13px; font-weight: 700; color: var(--ink); }
.flow-step .fs-text .t2 { font-size: 12px; color: var(--muted); margin-top: 1px; }
.flow-arrow {
  width: 20px; margin: 0 auto -4px; color: var(--brand-green);
  display: block;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 16px var(--gutter);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block;
  padding: 10px 4px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .mm-cta { margin-top: 14px; display: block; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-aud .hero-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .levels { grid-template-columns: repeat(2, 1fr); }
  .levels.levels-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .help-block { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .ba-wrap { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
  .report-card { margin: 0 auto; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero { padding: 48px 0 72px; }
  .section-head { margin-bottom: 40px; }
  .nav-links, .nav-actions .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions { gap: 8px; }
  .cap-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .levels, .levels.levels-3, .levels.levels-2 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
  .pmc { grid-template-columns: 1fr; }
  .final-cta { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-proof { gap: 14px 22px; }
  .float-chip.chip-1 { left: 8px; }
  .float-chip.chip-2 { left: 0; }
  .help-block { padding: 28px 20px; }
  .ba-wrap { padding: 24px 20px; }
}

/* ---------- Reveal animation on scroll ----------
   Only hides content when JS has opted in. Without JS (or before JS boots),
   content is visible — essential for SEO and no-JS users. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; transition: none; }
}
