/* ============================================================
   EON Risk Services — Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #1B2A4A;
  --navy-light: #243558;
  --navy-dark: #121D33;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --gold-dark: #A8893E;
  --offwhite: #F8F7F4;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --text-muted: #8A8A8A;
  --teal: #2A7F7F;
  --teal-dark: #1F6363;
  --teal-light: #E8F4F4;
  --border: #E2E0DC;
  --border-light: #EEEDEA;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1140px;
  --container-narrow: 800px;
  --nav-height: 72px;
  --section-pad: 96px;
  --section-pad-sm: 64px;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.08);
  --shadow: 0 4px 16px rgba(27,42,74,0.08);
  --shadow-lg: 0 8px 32px rgba(27,42,74,0.12);
  --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); margin-bottom: 16px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }
.lead { font-size: 1.2rem; line-height: 1.8; color: var(--text-light); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-subtitle {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* --- Layout --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy .eyebrow { color: var(--gold-light); }
.section--navy .lead, .section--navy .text-light { color: rgba(255,255,255,0.75); }
.section--offwhite { background: var(--offwhite); }
.section--white { background: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }
.section--teal h2, .section--teal h3 { color: var(--white); }
.text-center { text-align: center; }

/* Grid */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Flex */
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.flex-gap { gap: 16px; }
.flex-gap-lg { gap: 32px; }
.flex-wrap { flex-wrap: wrap; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo:hover { color: var(--white); }
.nav__logo-img {
  height: 36px;
  width: auto;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link--active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__link--cta {
  background: var(--teal);
  color: var(--white);
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--teal-dark); color: var(--white); }

/* Mobile nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
}
.nav__toggle svg { width: 24px; height: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--navy); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--offwhite); border-color: var(--offwhite); color: var(--navy); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-icon { font-size: 1.1em; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Hero --- */
.hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,165,90,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero .lead { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 600px; }
.hero__meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}
.hero__meta strong { color: var(--gold-light); font-weight: 600; }
.hero--centered { text-align: center; }
.hero--centered .lead { margin-left: auto; margin-right: auto; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow); border-color: var(--border); }
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card__icon--gold { background: rgba(197,165,90,0.1); color: var(--gold-dark); }
.card__icon--navy { background: rgba(27,42,74,0.06); color: var(--navy); }
.card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.card__text { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.card__price { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.card__price span { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }
.card--highlight { border-color: var(--teal); border-width: 2px; }

/* Product cards */
.product-card {
  text-align: center;
  padding: 40px 28px;
}
.product-card .card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}

/* --- Credibility Bar --- */
.credibility {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.credibility__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.credibility__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.credibility__logo {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.credibility__logo:hover { opacity: 1; }

/* --- Problem / Feature Section --- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.feature {
  text-align: center;
  padding: 32px 24px;
}
.feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(27,42,74,0.04);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}
.feature__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature__text { color: var(--text-light); font-size: 0.95rem; }

/* --- Timeline --- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline__item {
  position: relative;
  padding-bottom: 32px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--offwhite);
}
.timeline__date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.timeline__role {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.timeline__org { color: var(--text-light); font-size: 0.95rem; }
.timeline__detail { color: var(--text-muted); font-size: 0.875rem; margin-top: 4px; }

/* --- Process / Methodology --- */
.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.process-step:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.process-step__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* --- Comparison Table --- */
.comparison {
  width: 100%;
  border-collapse: collapse;
}
.comparison th {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 16px 20px;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
}
.comparison td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  vertical-align: top;
}
.comparison tr:last-child td { border-bottom: none; }
.comparison td:first-child { color: var(--text-muted); }
.comparison td:last-child { color: var(--text); font-weight: 500; }

/* --- Regulation Badges --- */
.reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.reg-badge {
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* --- Audience Row --- */
.audience-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.audience-row:last-child { border-bottom: none; }
.audience-row__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.audience-row__title {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.audience-row__text { color: var(--text-light); font-size: 0.95rem; }

/* --- CTA Banner --- */
.cta-banner {
  padding: 64px 0;
  background: var(--teal);
  color: var(--white);
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.1rem; }

/* --- Insight Cards --- */
.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.insight-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.insight-card__img {
  height: 180px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-card__img-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.insight-card__body { padding: 24px; }
.insight-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.insight-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.insight-card__excerpt { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.insight-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer__links { display: flex; gap: 24px; }
.footer__link {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
}

/* --- Forms --- */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,127,127,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-inline {
  display: flex;
  gap: 12px;
}
.form-inline .form-input { flex: 1; }

/* --- Assessment --- */
.assessment-progress {
  background: var(--border-light);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.assessment-progress__bar {
  height: 100%;
  background: var(--teal);
  border-radius: 100px;
  transition: width 0.4s ease;
}
.assessment-progress__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.assessment-question {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.assessment-question:last-child { border-bottom: none; }
.assessment-question__text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}
.assessment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.assessment-option:hover { background: var(--teal-light); }
.assessment-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--teal);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.assessment-option label {
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}

/* Results */
.result-score {
  text-align: center;
  padding: 48px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
  margin-bottom: 40px;
}
.result-score__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
}
.result-score__label {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  margin: 8px 0 16px;
}
.result-score__desc { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 480px; margin: 0 auto; }

.result-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.result-bar__label {
  flex: 0 0 140px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-align: right;
}
.result-bar__track {
  flex: 1;
  height: 24px;
  background: var(--border-light);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.result-bar__fill {
  height: 100%;
  border-radius: 100px;
  background: var(--teal);
  transition: width 0.6s ease;
}
.result-bar__fill--low { background: #C0392B; }
.result-bar__fill--mid { background: var(--gold); }
.result-bar__fill--high { background: var(--teal); }
.result-bar__value {
  flex: 0 0 48px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.result-gaps {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
}
.result-gaps__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.result-gaps__item:last-child { border-bottom: none; }
.result-gaps__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.result-gaps__text { font-size: 0.95rem; color: var(--text); }

/* Email capture */
.email-capture {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.email-capture h3 { margin-bottom: 8px; }
.email-capture p { color: var(--text-light); margin-bottom: 20px; }

/* --- Engagement Cards (Consulting) --- */
.engagement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.engagement-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.engagement-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
}
.engagement-card__detail {
  font-size: 0.85rem;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
}
.engagement-card__detail strong { color: var(--navy); }

/* Steps list */
.steps { counter-reset: step; }
.steps__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.steps__item:last-child { border-bottom: none; }
.steps__item::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

/* --- Accordion --- */
.accordion__item { border-bottom: 1px solid var(--border-light); }
.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--transition);
}
.accordion__trigger:hover { color: var(--teal); }
.accordion__icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.accordion__item.active .accordion__icon { transform: rotate(45deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__content-inner { padding: 0 0 24px; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* --- Checklist --- */
.checklist { list-style: none; }
.checklist li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--teal); color: var(--teal); }
.filter-tab--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: calc(var(--nav-height) + 64px) 0 64px;
  background: var(--navy);
  color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header .lead { color: rgba(255,255,255,0.7); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .evidence-stats { grid-template-columns: repeat(3, 1fr) !important; }
  .evidence-examples { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --section-pad-sm: 48px;
  }

  .nav__links { display: none; }
  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links.active .nav__link { padding: 12px 0; }
  .nav__links.active .nav__link--cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .nav__toggle { display: block; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }

  .btn-group { flex-direction: column; }
  .btn { width: 100%; }

  .hero { padding: calc(var(--nav-height) + 48px) 0 48px; }

  .credibility__logos { gap: 24px; }

  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }

  .result-bar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .result-bar__label { flex: none; text-align: left; }
  .result-bar__track { width: 100%; }

  .form-inline { flex-direction: column; }

  .audience-row { flex-direction: column; }

  .comparison { font-size: 0.875rem; }
  .comparison th, .comparison td { padding: 12px; }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
    --section-pad-sm: 32px;
  }
  .card { padding: 24px; }
  .product-card { padding: 28px 20px; }
}

/* --- Resource Cards (Toolkit Page) --- */
.resource-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.resource-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.resource-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.resource-card__content { flex: 1; }
.resource-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.resource-card__subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.resource-card__list {
  list-style: none;
  margin-bottom: 12px;
}
.resource-card__list li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
}
.resource-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
}
.resource-card__format {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(27,42,74,0.04);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Toolkit Form --- */
.toolkit-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.toolkit-form h2 { margin-bottom: 12px; }
.toolkit-form > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.toolkit-form__fields { text-align: left; }
.toolkit-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.toolkit-form__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.toolkit-form__success {
  padding: 48px 32px;
  text-align: center;
}
.toolkit-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

@media (max-width: 768px) {
  .resource-card { flex-direction: column; }
  .toolkit-form__row { grid-template-columns: 1fr; }
}
