/* ==========================================================================
   Attesta — styles.css
   Single component library for all pages. Pure CSS, no build step.
   Palette: navy #1F3864 · trust blue #2E75B6 · eucalyptus #4C8C6A · off-white
   ========================================================================== */

/* ---- Self-hosted fonts (drop WOFF2 files into /assets/fonts — see README).
   Source Sans 3 (SIL Open Font Licence). System fallbacks keep the site
   fully usable if the files are absent. ---- */
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- Design tokens ---- */
:root {
  --navy: #1F3864;
  --navy-dark: #16294A;
  --blue: #2E75B6;
  --blue-link: #275F96;      /* darkened for 4.5:1 on off-white */
  --green: #4C8C6A;
  --green-dark: #3D7257;     /* text-safe green */
  --bg: #FAF9F6;
  --bg-alt: #F1EFE9;
  --card: #FFFFFF;
  --ink: #26313D;
  --ink-soft: #4A5866;
  --line: #DDD9CF;
  --amber: #9A6A0B;
  --red: #A63D3D;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(31, 56, 100, 0.08), 0 8px 24px rgba(31, 56, 100, 0.07);
  --font: "Source Sans 3", "Segoe UI", -apple-system, BlinkMacSystemFont,
          "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.18; margin: 0 0 0.6em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1em; }
a { color: var(--blue-link); text-underline-offset: 2px; }
a:hover { color: var(--navy); }
strong { color: var(--navy); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
table { border-collapse: collapse; width: 100%; }
caption { text-align: left; font-weight: 600; color: var(--navy); padding-bottom: 0.6rem; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.2rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---- Layout ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: #E8EDF5; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy a { color: #BFD4EA; }
.section-tight { padding: 3rem 0; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 1.25rem; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}

.eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}
.section-navy .eyebrow { color: #9CC7AE; }
.lead { font-size: 1.2rem; color: var(--ink-soft); }
.section-navy .lead { color: #C6D2E4; }
.small { font-size: 0.9rem; color: var(--ink-soft); }

/* ---- Header / nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand .logo { height: 30px; width: auto; display: block; }

.nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-label span { top: 21px; }
.nav-toggle-label span::before { left: 0; top: -7px; }
.nav-toggle-label span::after { left: 0; top: 7px; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover,
.site-nav a:not(.btn)[aria-current="page"] {
  border-bottom-color: var(--green);
}

@media (max-width: 980px) {
  .nav-toggle-label { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .nav-toggle:checked ~ .nav-toggle-label span { transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(-90deg) translateX(-7px); }
  .nav-toggle:checked ~ .nav-toggle-label span::after { opacity: 0; }
  .nav-toggle:focus-visible ~ .nav-toggle-label { outline: 3px solid var(--blue); }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 1.25rem 1.4rem;
  }
  .site-nav li { border-top: 1px solid var(--line); }
  .site-nav li:first-child { border-top: 0; }
  .site-nav a:not(.btn) { display: block; padding: 0.85rem 0; border-bottom: 0; }
  .site-nav .btn { display: block; text-align: center; margin: 0.6rem 0 0; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); color: #fff; }
.btn-green { background: var(--green-dark); color: #fff; }
.btn-green:hover { background: #315C46; color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--bg-alt); color: var(--navy); }
.btn-sm { padding: 0.5rem 1.05rem; font-size: 0.92rem; }
.btn-lg { padding: 1rem 2.1rem; font-size: 1.1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.6rem 0 0.5rem; }
.btn-row.center-row { justify-content: center; }

/* ---- Hero ---- */
.hero { padding: 5rem 0 4.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .hero { padding: 3.2rem 0; }
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 { margin-bottom: 0.5em; }
.hero .lead { font-size: 1.25rem; }

/* ---- Cards ---- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0.2rem; }
.card-plain { box-shadow: none; }
.card .card-cta { font-weight: 700; text-decoration: none; }
.card .card-cta::after { content: " →"; }
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #EAF2ED;
  margin-bottom: 0.9rem;
}
.icon-chip svg { width: 24px; height: 24px; }

/* ---- Trust strip ---- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 2.2rem;
  padding: 1.1rem 0;
  margin: 0;
  list-style: none;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.trust-strip .tick { width: 18px; height: 18px; flex: none; }

/* ---- Steps ---- */
.steps { counter-reset: step; list-style: none; padding: 0; display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.steps li {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.steps h3 { margin-bottom: 0.4rem; }
.steps p { margin-bottom: 0; }

/* ---- Readiness bar component ---- */
.readiness-bars { display: grid; gap: 1rem; margin: 1.5rem 0; }
.rbar { display: grid; grid-template-columns: 200px 1fr 62px; gap: 0.9rem; align-items: center; }
@media (max-width: 620px) { .rbar { grid-template-columns: 1fr; gap: 0.25rem; } }
.rbar-label { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.rbar-track {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 99px;
  height: 16px;
  overflow: hidden;
}
.rbar-fill { display: block; height: 100%; border-radius: 99px; background: var(--green); }
.rbar-fill.low { background: #C4956A; }
.rbar-fill.mid { background: #D9B24C; }
.rbar-value { font-weight: 700; color: var(--navy); font-size: 0.95rem; text-align: right; }
/* Width utilities (avoid inline style attributes so the CSP needs no unsafe-inline) */
.w-5{width:5%}.w-10{width:10%}.w-15{width:15%}.w-20{width:20%}.w-25{width:25%}
.w-30{width:30%}.w-35{width:35%}.w-40{width:40%}.w-45{width:45%}.w-50{width:50%}
.w-55{width:55%}.w-60{width:60%}.w-65{width:65%}.w-70{width:70%}.w-75{width:75%}
.w-80{width:80%}.w-85{width:85%}.w-90{width:90%}.w-95{width:95%}.w-100{width:100%}

/* ---- Readiness level bands ---- */
.bands { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); margin: 1.5rem 0; }
@media (max-width: 900px) { .bands { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bands { grid-template-columns: 1fr; } }
.band { border-radius: var(--radius-lg); padding: 1.4rem; border: 1px solid var(--line); background: var(--card); }
.band h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.band p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }
.band-chip {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 99px;
  margin-bottom: 0.7rem;
}
.band-1 .band-chip { background: #F3E0DC; color: #7C3A2D; }
.band-2 .band-chip { background: #F3EAD2; color: #75590E; }
.band-3 .band-chip { background: #E1EAF5; color: #23507E; }
.band-4 .band-chip { background: #E2EFE7; color: #2F5C45; }

/* ---- Finding card (mock) ---- */
.finding-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
  max-width: 720px;
}
.finding-card.severity-major { border-left-color: var(--red); }
.finding-card.severity-minor { border-left-color: var(--amber); }
.finding-card.severity-improvement { border-left-color: var(--blue); }
.finding-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.18rem 0.65rem;
  border-radius: 99px;
  border: 1px solid transparent;
}
.tag-severity-major { background: #F6E4E4; color: #7E2B2B; }
.tag-severity-minor { background: #F3EAD2; color: #75590E; }
.tag-severity-improvement { background: #E1EAF5; color: #23507E; }
.tag-confidence-high { background: #E2EFE7; color: #2F5C45; }
.tag-confidence-medium { background: #F3EAD2; color: #75590E; }
.tag-confidence-low { background: #F0EBE1; color: #6B5E45; }
.tag-citation { background: #EDF1F7; color: var(--navy); }
.finding-card h3 { font-size: 1.12rem; }
.finding-evidence {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  margin: 0.9rem 0;
}
.finding-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.finding-actions .btn { font-size: 0.9rem; padding: 0.5rem 1.2rem; }
.fictional-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 0.9rem;
  margin-bottom: 0;
}

/* ---- Pricing ---- */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0 0 2.4rem;
  font-weight: 600;
  color: var(--navy);
}
.toggle-btn {
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 99px;
  border: 2px solid var(--navy);
  background: var(--card);
  cursor: pointer;
  padding: 0;
}
.toggle-btn::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  transition: transform 0.18s ease;
}
.toggle-btn[aria-pressed="true"]::after { transform: translateX(25px); }
.toggle-save {
  font-size: 0.8rem;
  background: #E2EFE7;
  color: #2F5C45;
  border-radius: 99px;
  padding: 0.15rem 0.65rem;
  font-weight: 700;
}
.price-monthly { display: none; }
.pricing-monthly .price-monthly { display: inline; }
.pricing-monthly .price-annual { display: none; }
.pricing-monthly .billing-note-annual { display: none; }
.billing-note-monthly { display: none; }
.pricing-monthly .billing-note-monthly { display: block; }

.plans { display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
@media (max-width: 1020px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.plan-featured { border: 2px solid var(--green); position: relative; }
.plan-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.15rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.plan h3 { margin-bottom: 0.2rem; }
.plan .price { font-size: 2rem; font-weight: 700; color: var(--navy); margin: 0.5rem 0 0.1rem; }
.plan .price .per { font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); }
.plan .billing-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.4rem; flex: 1; }
.plan li { padding: 0.42rem 0 0.42rem 1.7rem; position: relative; font-size: 0.96rem; border-top: 1px solid var(--bg-alt); }
.plan li:first-child { border-top: 0; }
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233D7257' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5.2 5.2L20 6.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.plan .btn { width: 100%; }

.compare-callout {
  margin-top: 2.2rem;
  background: var(--navy);
  color: #E8EDF5;
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.compare-callout strong { color: #fff; }
.compare-callout p { margin: 0; }

/* ---- Comparison table ---- */
.table-wrap { overflow-x: auto; }
.compare-table th, .compare-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.97rem;
}
.compare-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  position: sticky;
  top: 0;
}
.compare-table tbody th { font-weight: 600; color: var(--navy); background: var(--bg-alt); width: 34%; }
.compare-table .yes { color: var(--green-dark); font-weight: 700; }
.compare-table .no { color: var(--ink-soft); }

/* ---- FAQ (native details) ---- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  padding: 0;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-dark);
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 1.3rem 1.2rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---- Forms ---- */
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  max-width: 640px;
}
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.field .hint { font-size: 0.85rem; color: var(--ink-soft); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #B9B2A3;
  border-radius: var(--radius);
  background: #fff;
  width: 100%;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}
.checkbox-field { display: flex; gap: 0.7rem; align-items: flex-start; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 3px; flex: none; }
.checkbox-field label { font-size: 0.92rem; font-weight: 400; }

/* Privacy notice above every submit button */
.privacy-notice {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: #EDF1F7;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--navy);
  margin: 0.4rem 0 1.1rem;
}
.privacy-notice svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.privacy-notice p { margin: 0; }

/* Honeypot — visually removed, still in DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status { margin-top: 1rem; font-weight: 600; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: var(--red); }

/* ---- Self-check ---- */
.sc-progress {
  height: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 99px;
  overflow: hidden;
  margin: 1.2rem 0 2rem;
}
.sc-progress-fill { display: block; height: 100%; background: var(--green); width: 0; transition: width 0.25s ease; }
.sc-question h2 { font-size: 1.35rem; }
.sc-standard { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.5rem; display: block; }
.sc-options { display: grid; gap: 0.7rem; list-style: none; padding: 0; margin: 1.4rem 0; }
.sc-option {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.sc-option:hover { border-color: var(--blue); background: #F4F8FC; }
.sc-back {
  background: none;
  border: 0;
  color: var(--blue-link);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0;
  text-decoration: underline;
}
.sc-result-level {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.2rem 0 0.4rem;
}
.hidden { display: none !important; }

/* ---- Badges / definition strips ---- */
.def-list { display: grid; gap: 1rem; }
.def-list .card { padding: 1.3rem 1.6rem; }
.def-list h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.def-list p { margin: 0; font-size: 0.97rem; }

/* ---- Doc checklist (upload guide) ---- */
.doc-list { list-style: none; padding: 0; margin: 0.6rem 0 0; }
.doc-list li { padding: 0.4rem 0 0.4rem 1.8rem; position: relative; }
.doc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E75B6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---- Callout / alert ---- */
.callout {
  border-left: 5px solid var(--green);
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.6rem 0;
  box-shadow: var(--shadow);
}
.callout-blue { border-left-color: var(--blue); }
.callout-navy { border-left-color: var(--navy); }
.callout p:last-child { margin-bottom: 0; }

/* ---- Stat row ---- */
.stat-row { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); text-align: center; }
@media (max-width: 720px) { .stat-row { grid-template-columns: 1fr; } }
.stat-num { font-size: 2.4rem; font-weight: 700; color: var(--navy); display: block; line-height: 1.1; }
.stat-label { color: var(--ink-soft); font-size: 0.97rem; }
.section-navy .stat-num { color: #fff; }
.section-navy .stat-label { color: #C6D2E4; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: #C6D2E4;
  padding: 3.5rem 0 2rem;
  margin-top: 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: #C6D2E4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand .logo { height: 28px; margin-bottom: 0.9rem; }
.footer-brand .tagline { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-legal { padding-top: 1.8rem; font-size: 0.84rem; color: #9FB0C9; }
.footer-legal p { margin-bottom: 0.8rem; }
.footer-legal a { color: #BFD4EA; }
.footer-disclaimer {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 0.95rem 1.2rem;
  color: #C6D2E4;
}

/* ---- Calendly embed shell ---- */
.calendly-shell {
  min-height: 700px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}

/* ---- Utility ---- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
