/* ==========================================================================
   ADX8 corporate site — shared stylesheet
   ========================================================================== */

:root {
  --ink: #101828;
  --ink-soft: #475467;
  --ink-faint: #98a2b3;
  --paper: #ffffff;
  --paper-soft: #f8faf9;
  --paper-tint: #eef6f2;
  --line: #e4e9e6;

  --brand: #0f6b52;      /* deep emerald — carried over from the old ADX green, modernized */
  --brand-dark: #0a4a39;
  --brand-light: #12876a;
  --accent: #e8622c;     /* warm coral — CTA accent, echoes the old orange button */
  --accent-dark: #c94f1f;

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

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 24px 48px rgba(16, 24, 40, 0.12);

  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand);
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section {
  padding: 96px 0;
}
.section--tint {
  background: var(--paper-tint);
}
.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-top: 12px;
  letter-spacing: 0.01em;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 98, 44, 0.28);
}
.btn--accent:hover { background: var(--accent-dark); }

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: #000; }

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }

.btn--ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); }

.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.logo img {
  height: 30px;
  width: auto;
  display: block;
}
.logo small {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}
.footer-brand .logo img { height: 26px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-desktop a:not(.btn) {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a:not(.btn):hover { color: var(--brand); }
.nav-desktop a.active { color: var(--brand); }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav-mobile a:not(.btn) {
  padding: 14px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.nav-mobile .btn { margin-top: 14px; justify-content: center; }

body.nav-open .nav-mobile { display: flex; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-actions .btn--accent.header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b3b2e 0%, #0f6b52 55%, #12876a 100%);
  color: #fff;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
  min-height: 560px;
}
.hero-copy .eyebrow { color: #bff2df; }
.hero-copy .eyebrow::before { background: var(--accent); }
.hero-copy h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.35;
  margin-top: 18px;
  letter-spacing: 0.01em;
}
.hero-copy .tagline {
  margin-top: 18px;
  font-size: 16px;
  color: #cfeee2;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-copy .lede {
  margin-top: 8px;
  color: #d8f0e6;
  max-width: 46ch;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(0,0,0,0.55), rgba(0,0,0,0) 75%);
  border-radius: 50%;
  filter: blur(4px);
}
.hero-visual svg { width: 100%; height: auto; }
.hero-visual img {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  user-select: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(500px 500px at 15% 90%, rgba(0,0,0,0.15), transparent 60%);
  pointer-events: none;
}

.page-hero {
  background: linear-gradient(180deg, #0b3b2e 0%, #0f6b52 100%);
  color: #fff;
  padding: 72px 0 64px;
}
.page-hero .eyebrow { color: #bff2df; }
.page-hero .eyebrow::before { background: var(--accent); }
.page-hero h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  margin-top: 14px;
}
.page-hero .sub {
  margin-top: 10px;
  color: #d8f0e6;
  font-size: 15px;
}
.page-hero .btn { margin-top: 28px; }
.breadcrumb {
  font-size: 13px;
  color: #a9dcc9;
}
.breadcrumb a:hover { color: #fff; }

/* ---------- framework strip (8 steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
}
.step .num {
  width: 26px; height: 26px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}
.step .label { font-size: 12px; font-weight: 600; color: #e4f5ee; }
.step.is-active {
  background: var(--accent);
  border-color: var(--accent);
}
.step.is-active .num { background: rgba(255,255,255,0.28); }
.step.is-active .label { color: #fff; }

@media (max-width: 760px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.framework-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0a2e24;
  padding: 56px 48px;
  color: #fff;
}
.framework-panel .framework-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  max-width: 900px;
  opacity: 0.32;
  filter: saturate(1.15);
  pointer-events: none;
  user-select: none;
}
.framework-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,46,36,0.35) 0%, rgba(10,46,36,0.88) 100%);
}
.framework-panel .framework-content {
  position: relative;
  z-index: 2;
}
.framework-panel .eyebrow { color: #bff2df; }
.framework-panel .eyebrow::before { background: var(--accent); }
.framework-panel h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  margin-top: 12px;
}
.framework-panel p.desc {
  margin-top: 12px;
  color: #d8f0e6;
  font-size: 14.5px;
  max-width: 60ch;
}
.framework-panel .sub-note {
  margin-top: 16px;
  font-size: 13px;
  color: #bff2df;
}
@media (max-width: 700px) {
  .framework-panel { padding: 40px 24px; }
}

/* ---------- small related-link rows ---------- */
.related-links {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.related-links h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.related-links ul {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.related-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
}
.related-links a:hover { color: var(--brand); border-color: var(--brand); }

/* ---------- news ---------- */
.news-list { border-top: 1px solid var(--line); }
.news-item {
  display: grid;
  grid-template-columns: 110px 130px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.news-item time { color: var(--ink-faint); font-size: 13.5px; }
.news-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: var(--paper-tint);
  border-radius: 999px;
  padding: 4px 12px;
  text-align: center;
  width: fit-content;
}
.news-item .title { font-size: 14.5px; color: var(--ink); }
.news-item .title:hover { color: var(--brand); }

@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- cards / grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--paper-tint);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.card h3 { font-size: 19px; font-weight: 700; }
.card p { margin-top: 10px; color: var(--ink-soft); font-size: 14.5px; }

.card--media { padding: 0; overflow: hidden; }
.card--media .card-body { padding: 28px 32px 32px; }
.card--media .thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: var(--paper-tint);
  border-bottom: 1px solid var(--line);
}
.card .link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
}
.card .link:hover { gap: 10px; }

/* ---------- testimonials ---------- */
.quote-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
}
.quote-card .quote-mark {
  font-size: 40px;
  color: var(--brand);
  font-weight: 800;
  line-height: 1;
  opacity: 0.5;
}
.quote-card p.body { margin-top: 8px; color: var(--ink-soft); font-size: 14px; }
.quote-card .who {
  margin-top: 20px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ---------- cta banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-size: 24px; font-weight: 800; }
.cta-banner p { margin-top: 8px; color: #d8f0e6; }

/* ---------- footer ---------- */
.site-footer {
  background: #0b1f19;
  color: #b9d6cb;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 0.95fr 0.95fr 1.1fr;
  gap: 32px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 13.5px; color: #8fb3a5; max-width: 32ch; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: #b9d6cb; }
.footer-col a:hover { color: #fff; }
.footer-info { font-size: 13px; line-height: 2; color: #9cc0b2; }
.footer-info strong { color: #dff2ea; font-weight: 600; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #7ea495;
}
.footer-bottom .isms {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom .isms img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- generic content blocks ---------- */
.lead { font-size: 17px; color: var(--ink-soft); max-width: 68ch; }
.divider { height: 1px; background: var(--line); margin: 64px 0; }

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pain-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14.5px;
}
.pain-item .x {
  color: var(--accent);
  font-weight: 800;
  flex: none;
}
@media (max-width: 700px) { .pain-list { grid-template-columns: 1fr; } }

.stat-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--brand);
}
.stat-block .num { font-size: 56px; font-weight: 800; line-height: 1; }
.stat-block .unit { font-size: 15px; font-weight: 700; color: var(--ink-soft); }

.step-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-flow .card .step-no {
  font-size: 12px; font-weight: 800; color: var(--accent); letter-spacing: 0.08em;
}
@media (max-width: 860px) { .step-flow { grid-template-columns: 1fr; } }

.checklist { display: grid; gap: 14px; }
.check-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.check-item .box {
  flex: none; width: 20px; height: 20px; border-radius: 5px;
  border: 2px solid var(--brand); margin-top: 2px;
}
.check-item strong { font-size: 14.5px; }
.check-item span { display: block; margin-top: 4px; font-size: 13.5px; color: var(--ink-soft); }

.service-cat {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  background: #fff;
}
.service-cat h4 {
  font-size: 12px; font-weight: 800; letter-spacing: 0.05em; color: var(--brand);
  text-transform: uppercase;
}
.service-cat h3 { margin-top: 8px; font-size: 18px; font-weight: 800; }
.service-cat ul { margin-top: 16px; display: grid; gap: 8px; }
.service-cat ul li {
  font-size: 14px; color: var(--ink-soft); padding-left: 18px; position: relative;
}
.service-cat ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

table.info-table, table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
table.info-table tr { border-bottom: 1px solid var(--line); }
table.info-table th {
  text-align: left; padding: 18px 20px 18px 0; width: 220px;
  color: var(--ink-soft); font-weight: 700; vertical-align: top;
}
table.info-table td { padding: 18px 0; vertical-align: top; }

table.data-table { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
table.data-table th, table.data-table td {
  border: 1px solid var(--line); padding: 14px 16px; text-align: left; vertical-align: top;
}
table.data-table th { background: var(--paper-tint); font-weight: 700; font-size: 13.5px; }
table.data-table td { font-size: 13.5px; color: var(--ink-soft); }
.table-scroll { overflow-x: auto; }

.feature-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.feature-row .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--paper-tint); color: var(--brand);
  display: grid; place-items: center;
}
.feature-row .photo {
  width: 120px; height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper-tint);
}
.feature-row h4 { font-size: 15.5px; font-weight: 700; }
.feature-row p { margin-top: 6px; font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 560px) {
  .feature-row { grid-template-columns: 80px 1fr; gap: 14px; }
  .feature-row .photo { width: 80px; height: 64px; }
}

/* ---------- contact form ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px;
}
.field .req {
  color: var(--accent); font-size: 11px; font-weight: 800; margin-left: 6px;
  border: 1px solid var(--accent); border-radius: 4px; padding: 1px 6px;
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper-soft);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
}
.field-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--ink-soft);
}
.field-check input { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.field-check a { color: var(--brand); font-weight: 700; }
.form-submit { text-align: center; margin-top: 8px; }
.form-note {
  margin-top: 16px; font-size: 12.5px; color: var(--ink-faint); text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .check-circle {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--paper-tint); color: var(--brand);
  display: grid; place-items: center;
}
.form-success h3 { font-size: 20px; font-weight: 800; }
.form-success p { margin-top: 10px; color: var(--ink-soft); }
body.form-sent .form-card form { display: none; }
body.form-sent .form-success { display: block; }

.contact-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 700px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px;
}
.contact-info-card h4 { font-size: 13px; color: var(--brand); font-weight: 800; }
.contact-info-card p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- resource download pages ---------- */
.resource-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .resource-layout { grid-template-columns: 1fr; }
}
.resource-toc {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.resource-toc li {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
}
.resource-toc li:last-child { border-bottom: none; }
.resource-toc li .n {
  flex: none;
  font-weight: 800;
  color: var(--brand);
}
.pending-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff3e9;
  color: var(--accent-dark);
  font-size: 12.5px;
  font-weight: 700;
}
.purpose-options { margin-top: 8px; display: grid; gap: 10px; }
.purpose-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
}
.purpose-options input { width: 16px; height: 16px; flex: none; }

/* ---------- pricing cards ---------- */
.pricing-card { position: relative; }
.pricing-card.is-recommended {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand) inset, var(--shadow-md);
}
.pricing-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card .price {
  margin-top: 14px;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
}
.pricing-card .price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.pricing-rows {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.pricing-rows .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}
.pricing-rows .row .val { font-weight: 700; color: var(--ink); text-align: right; }
.pricing-rows .row .val.no { color: var(--ink-faint); }

/* ---------- industry stat bars ---------- */
.stat-bars { display: grid; gap: 12px; }
.stat-bar-row { display: grid; grid-template-columns: 140px 1fr 56px; gap: 14px; align-items: center; font-size: 13.5px; }
.stat-bar-row .label { color: var(--ink-soft); }
.stat-bar-track { height: 10px; border-radius: 999px; background: var(--paper-tint); overflow: hidden; }
.stat-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand-light), var(--brand)); }
.stat-bar-row .pct { font-weight: 700; color: var(--ink); text-align: right; }
@media (max-width: 560px) {
  .stat-bar-row { grid-template-columns: 96px 1fr 44px; gap: 8px; font-size: 12.5px; }
}

/* ---------- comparison (car metaphor) cards ---------- */
.compare-card { text-align: center; }
.compare-card .before { font-size: 14px; color: var(--ink-soft); }
.compare-card .arrow { margin: 10px auto; color: var(--ink-faint); font-size: 18px; }
.compare-card .after { font-size: 17px; font-weight: 800; }
.compare-card.is-solution .after { color: var(--brand); }
.compare-card.is-solution { border-color: var(--brand); }
