/* ============================================================
   PharmaSuite PMD — marketing site
   Static, no build step, no external requests.
   Palette matches the product apps: brand teal anchored at
   #0f766e (the app icon colour), crimson accent #b3192a/#760f17
   for warnings/emphasis. Light theme, committed — every surface
   and text colour is explicit.
   ============================================================ */

:root {
  /* Brand teal ramp (mirrors offline_app tailwind.config.js) */
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-500: #14b8a6;
  --teal-600: #0f766e;   /* icon teal — primary */
  --teal-700: #115e59;   /* pressed / active   */
  --teal-800: #134e4a;
  --teal-900: #0a3a36;

  /* Crimson accent (used sparingly: alerts, expiry, emphasis) */
  --accent-100: #fde7e9;
  --accent-600: #b3192a;
  --accent-700: #760f17;

  /* Ink + surfaces */
  --ink:        #14201e;
  --ink-soft:   #3d524e;
  --ink-subtle: #5c706c;
  --paper:      #ffffff;
  --paper-subtle: #f5faf9;
  --paper-tint: #eefaf7;
  --border:     #d8e5e2;
  --border-strong: #b9cfca;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgb(10 58 54 / 0.06), 0 8px 24px -12px rgb(10 58 54 / 0.18);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); }
a:hover { color: var(--teal-600); }
:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 4px;
}
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 5.5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 750; }
h3 { font-size: 1.17rem; font-weight: 700; }
p  { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: 0.35em; }

.container { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 52rem; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Visually hidden (screen-reader only) ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--teal-800); color: #ffffff;
  padding: 0.6rem 1rem; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #ffffff; }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.header-bar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.8rem 0;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--ink);
  font-weight: 800; font-size: 1.12rem; letter-spacing: -0.01em;
  margin-right: auto;
}
.brand img { width: 38px; height: 38px; }
.brand .brand-pmd { color: var(--teal-600); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 44px; padding: 0.55rem 1.15rem;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 650; font-size: 0.97rem; text-decoration: none;
  cursor: pointer; transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn-primary { background: var(--teal-600); color: #ffffff; }
.btn-primary:hover { background: var(--teal-700); color: #ffffff; }
.btn-quiet { background: transparent; color: var(--teal-800); border-color: var(--border-strong); }
.btn-quiet:hover { background: var(--teal-50); color: var(--teal-900); }
.btn-on-dark { background: #ffffff; color: var(--teal-800); }
.btn-on-dark:hover { background: var(--teal-100); color: var(--teal-900); }
.btn-outline-on-dark { background: transparent; color: #ffffff; border-color: rgb(255 255 255 / 0.55); }
.btn-outline-on-dark:hover { background: rgb(255 255 255 / 0.12); color: #ffffff; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1.05rem; }
.btn svg { flex: none; }

.site-nav { border-top: 1px solid var(--border); }
.site-nav ul {
  list-style: none; margin: 0; padding: 0.15rem 0;
  display: flex; flex-wrap: wrap; gap: 0 0.25rem;
}
.site-nav a {
  display: inline-flex; align-items: center;
  min-height: 42px; padding: 0.25rem 0.8rem;
  text-decoration: none; color: var(--ink-soft);
  font-weight: 600; font-size: 0.95rem;
  border-radius: 8px;
  transition: color 150ms ease, background-color 150ms ease;
}
.site-nav a:hover { color: var(--teal-800); background: var(--teal-50); }
.site-nav a[aria-current="page"] {
  color: var(--teal-700);
  box-shadow: inset 0 -3px 0 var(--teal-600);
  border-radius: 8px 8px 0 0;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-800) 45%, var(--teal-700) 100%);
  color: #f4fbfa;
  padding: 3.5rem 0 3.75rem;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem; align-items: center;
}
.hero h1 { color: #ffffff; margin-bottom: 0.5em; }
.hero .lede { font-size: 1.14rem; color: #d7ece9; max-width: 34em; }
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin: 1.5rem 0 0.9rem; }
.hero-note { font-size: 0.92rem; color: #b9dcd7; }
.hero-note strong { color: #ffffff; font-weight: 650; }
.hero-art { margin: 0; }
.hero-art svg { width: 100%; height: auto; display: block; }

/* Subpage hero (light) */
.page-hero {
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.75rem 0 2.25rem;
}
.page-hero p.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 44em; margin-bottom: 0; }
.page-hero .hero-cta { margin-top: 1.4rem; }
.kicker {
  display: inline-block; font-size: 0.82rem; font-weight: 750;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 0.65rem;
}
.hero .kicker { color: var(--teal-300); }

/* ---------- Fact strip ---------- */
.fact-strip { background: var(--teal-50); border-bottom: 1px solid var(--border); }
.fact-strip ul {
  list-style: none; margin: 0; padding: 0.85rem 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem;
}
.fact-strip li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin: 0; font-size: 0.93rem; font-weight: 600; color: var(--teal-900);
}
.fact-strip svg { color: var(--teal-600); flex: none; }

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
.section-tint { background: var(--paper-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 46em; margin-bottom: 2rem; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 0; }

/* Cards / grids */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.1rem;
  box-shadow: var(--shadow);
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card h3 { margin-bottom: 0.4em; }
.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-50); color: var(--teal-600);
  border: 1px solid var(--teal-100);
  margin-bottom: 0.85rem;
}
.icon-chip-warn { background: var(--accent-100); color: var(--accent-600); border-color: #fbcfd3; }
.card .more-link { font-weight: 650; font-size: 0.94rem; text-decoration: none; }
.card .more-link:hover { text-decoration: underline; }

/* Feature detail blocks (features.html) */
.feature-block {
  display: grid; grid-template-columns: 56px minmax(0, 1fr);
  gap: 1.25rem; padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}
.feature-block:first-of-type { border-top: 0; }
.feature-block h3 { font-size: 1.3rem; }
.feature-block .icon-chip { width: 52px; height: 52px; margin-bottom: 0; }
.feature-block p { color: var(--ink-soft); max-width: 56em; }
.feature-block ul { color: var(--ink-soft); max-width: 56em; }
.feature-block li strong { color: var(--ink); }

/* How it works steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: step; }
.steps li { margin: 0; position: relative; padding: 1.25rem 1.25rem 1.1rem; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.steps li::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--teal-600); color: #ffffff; font-weight: 750;
  margin-bottom: 0.7rem;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 0.35em; }
.steps p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* Edition cards */
.edition-card { display: flex; flex-direction: column; }
.edition-card .edition-tag {
  align-self: flex-start; font-size: 0.78rem; font-weight: 750;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50);
  border: 1px solid var(--teal-100); border-radius: 999px;
  padding: 0.2rem 0.7rem; margin-bottom: 0.8rem;
}
.edition-card ul { list-style: none; padding: 0; font-size: 0.95rem; color: var(--ink-soft); }
.edition-card li { display: flex; gap: 0.5rem; align-items: flex-start; }
.edition-card li svg { flex: none; margin-top: 0.28em; color: var(--teal-600); }

/* Comparison table (pricing) */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow); }
table.compare { border-collapse: collapse; width: 100%; min-width: 44rem; font-size: 0.95rem; }
table.compare caption { text-align: left; padding: 1rem 1.25rem 0.25rem; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
table.compare th, table.compare td { padding: 0.7rem 1rem; text-align: center; border-top: 1px solid var(--border); }
table.compare thead th { border-top: 0; background: var(--teal-50); color: var(--teal-900); font-size: 0.9rem; }
table.compare th[scope="row"] { text-align: left; font-weight: 600; color: var(--ink); }
table.compare td { color: var(--ink-soft); }
table.compare .yes { color: var(--teal-600); font-weight: 700; }
table.compare .no { color: var(--ink-subtle); }
table.compare tbody tr:nth-child(even) { background: var(--paper-subtle); }

/* FAQ */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 1rem 0.25rem;
  list-style-position: outside; color: var(--ink);
}
.faq summary:hover { color: var(--teal-700); }
.faq details p, .faq details ul { color: var(--ink-soft); padding: 0 0.25rem; }

/* Numbered / checklist lists */
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.55em; }
.check-list li svg { flex: none; margin-top: 0.25em; color: var(--teal-600); }

/* Install page platform cards */
.platform-card ol { padding-left: 1.25em; color: var(--ink-soft); margin-bottom: 0; }
.platform-card ol li { margin-bottom: 0.5em; }
.platform-card .menu-word {
  display: inline-block; background: var(--paper-subtle);
  border: 1px solid var(--border-strong); border-radius: 6px;
  padding: 0 0.4em; font-weight: 650; color: var(--ink);
  overflow-wrap: anywhere;
}

/* Contact page */
.contact-card { display: flex; gap: 1rem; align-items: flex-start; }
.contact-card .icon-chip { margin-bottom: 0; flex: none; }
.contact-card h3 { margin-bottom: 0.2em; }
.contact-card p { margin-bottom: 0.3em; color: var(--ink-soft); }
.contact-card a.big-link { font-size: 1.12rem; font-weight: 700; word-break: break-word; }

/* CTA band */
.cta-band {
  background: linear-gradient(150deg, var(--teal-800), var(--teal-600));
  color: #ffffff; padding: 3.25rem 0;
}
.cta-band h2 { color: #ffffff; }
.cta-band p { color: #d7ece9; max-width: 40em; }
.cta-band .hero-cta { margin-top: 1.4rem; }
.cta-band .hero-note { margin-top: 0.9rem; }

/* Callout */
.callout {
  border: 1px solid var(--teal-100); background: var(--teal-50);
  border-left: 4px solid var(--teal-600);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  color: var(--teal-900); font-size: 0.98rem;
}
.callout p:last-child { margin-bottom: 0; }
.callout-warn { border-color: #fbcfd3; background: #fef2f3; border-left-color: var(--accent-600); color: #5a0b12; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900); color: #c7e2de;
  padding: 3rem 0 2rem; font-size: 0.95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; color: #ffffff; font-weight: 800; font-size: 1.05rem; text-decoration: none; }
.footer-brand img { width: 34px; height: 34px; background: #ffffff; border-radius: 50%; }
.footer-tagline { margin-top: 0.8rem; color: #9cc6c0; max-width: 24em; }
.site-footer h2.footer-heading {
  font-size: 0.82rem; font-weight: 750; letter-spacing: 0.09em;
  text-transform: uppercase; color: #8fbcb6; margin-bottom: 0.8rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5em; }
.site-footer a { color: #d7ece9; text-decoration: none; }
.site-footer a:hover { color: #ffffff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.15);
  margin-top: 2.25rem; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  color: #9cc6c0; font-size: 0.88rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 30rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .section { padding: 2.5rem 0; }
  .hero { padding: 2.5rem 0 2.75rem; }
  .header-bar { flex-wrap: wrap; }
  .header-actions { width: 100%; justify-content: stretch; }
  .header-actions .btn { flex: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ============================================================
   Extended components — added when the site grew from 6 pages
   to the full structure (about, editions + 4 landing pages,
   industries, why-us, implementation, demo).
   Same light theme, same explicit colours, same teal ramp.
   ============================================================ */

/* ---------- Small utilities ---------- */
.mt-md { margin-top: 1.1rem; }
.mt-lg { margin-top: 1.75rem; }
.mb-0  { margin-bottom: 0; }
.center-block { text-align: center; }
.center-block .kicker { display: inline-block; }
.lede-center {
  font-size: 1.12rem; color: var(--ink-soft);
  max-width: 44em; margin: 0 auto;
}
.lede-soft { font-size: 1.06rem; color: var(--ink-soft); }
.muted-inline { color: var(--ink-subtle); font-weight: 600; font-size: 0.92em; white-space: nowrap; }
.card-foot { margin-top: auto; padding-top: 0.6rem; }
.check-list li span { min-width: 0; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.92rem; color: var(--ink-subtle);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--teal-700); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { padding: 0 0.35rem; }

/* Standalone edition tag (outside a card) */
.page-hero .edition-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 750;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50);
  border: 1px solid var(--teal-100); border-radius: 999px;
  padding: 0.2rem 0.75rem; margin-bottom: 0.75rem;
}

/* ---------- In-page table of contents ---------- */
.toc {
  background: var(--paper-subtle);
  border-bottom: 1px solid var(--border);
}
.toc ul {
  list-style: none; margin: 0; padding: 0.75rem 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem 0.5rem;
}
.toc li { margin: 0; }
.toc a {
  display: inline-block; padding: 0.3rem 0.75rem;
  border: 1px solid var(--border); border-radius: 999px;
  background: var(--paper); color: var(--ink-soft);
  text-decoration: none; font-size: 0.9rem; font-weight: 600;
}
.toc a:hover { color: var(--teal-800); border-color: var(--teal-300); background: var(--teal-50); }

/* ---------- Split layout (prose + side panel) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem; align-items: start;
}
.split > * { min-width: 0; }

.panel {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.section-tint .panel { background: var(--paper); }
.panel h3 { font-size: 1.05rem; margin-bottom: 0.7em; }
.panel > :last-child { margin-bottom: 0; }
.panel .check-list { color: var(--ink-soft); }
.panel .check-list li strong { color: var(--ink); }

/* ---------- Pill list ---------- */
.pill-list {
  list-style: none; padding: 0; margin: 0 0 1em;
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.pill-list li {
  margin: 0; background: var(--teal-50);
  border: 1px solid var(--teal-100); color: var(--teal-900);
  border-radius: 999px; padding: 0.28rem 0.85rem;
  font-size: 0.91rem; font-weight: 600;
}

/* ---------- Numbered process (vertical, any length) ---------- */
.process {
  list-style: none; margin: 0; padding: 0;
  counter-reset: pstep; display: grid; gap: 1.5rem;
}
.process li {
  margin: 0; position: relative; padding-left: 3.5rem;
}
.process li::before {
  counter-increment: pstep; content: counter(pstep);
  position: absolute; left: 0; top: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--teal-600); color: #ffffff;
  font-weight: 750; font-size: 1rem;
}
.process h3 { font-size: 1.12rem; margin-bottom: 0.3em; }
.process p { color: var(--ink-soft); margin: 0; max-width: 56em; }

/* ---------- Feature block extras ---------- */
.benefit-line {
  margin-top: 0.9rem; margin-bottom: 0;
  color: var(--teal-900); font-size: 0.97rem;
}
.benefit-label {
  display: inline-block; font-size: 0.74rem; font-weight: 750;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50);
  border: 1px solid var(--teal-100); border-radius: 999px;
  padding: 0.1rem 0.6rem; margin-right: 0.5rem;
  vertical-align: 0.06em;
}
.edition-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 750;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-800); background: var(--teal-50);
  border: 1px solid var(--teal-100); border-radius: 999px;
  padding: 0.15rem 0.65rem; margin-left: 0.5rem;
  vertical-align: 0.18em; white-space: nowrap;
}
.feature-block .callout { margin-top: 1rem; }

/* ---------- Industry blocks ---------- */
.industry-block {
  padding: 1.9rem 0;
  border-top: 1px solid var(--border);
}
.industry-block:first-of-type { border-top: 0; padding-top: 0.5rem; }
.industry-head { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 0.9rem; }
.industry-head .icon-chip { margin-bottom: 0; flex: none; width: 52px; height: 52px; }
.industry-head h3 { font-size: 1.3rem; margin-bottom: 0.15em; }
.industry-edition { margin: 0; font-size: 0.93rem; color: var(--ink-subtle); font-weight: 600; }
.industry-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.25rem 2rem; align-items: start; }
.industry-body p { color: var(--ink-soft); margin-bottom: 0; }
.industry-body .check-list { color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Callouts, tables, definition lists ---------- */
.callout-wide h3 { color: var(--teal-900); font-size: 1.1rem; }
.callout h3:first-child { margin-top: 0; }
.table-note { margin-top: 1rem; color: var(--ink-subtle); font-size: 0.92rem; }

.detail-list { margin: 0; }
.detail-list dt {
  font-size: 0.78rem; font-weight: 750; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--teal-700); margin-bottom: 0.15rem;
}
.detail-list dd { margin: 0 0 1.1rem; color: var(--ink-soft); }
.detail-list dd:last-child { margin-bottom: 0; }
.detail-list a { font-weight: 650; word-break: break-word; }

/* Card headings that are links */
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--teal-700); text-decoration: underline; }

/* Light hero note (used under CTAs on light page heroes) */
.hero-note-light { font-size: 0.93rem; color: var(--ink-subtle); margin: 0.9rem 0 0; }
.cta-band .hero-note a { color: #ffffff; text-decoration: underline; }
.cta-band .hero-note a:hover { color: var(--teal-100); }

/* ---------- Footer (5 columns) ---------- */
.footer-grid { grid-template-columns: 1.7fr repeat(4, minmax(0, 1fr)); }
.footer-address { margin-top: 0.9rem; color: #9cc6c0; font-size: 0.9rem; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem;
  margin: 0; padding: 0; list-style: none;
}
.footer-legal li { margin: 0; }
.footer-bottom { align-items: baseline; }

/* ---------- Responsive for the new components ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .industry-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .process li { padding-left: 3rem; }
  .process li::before { width: 2.1rem; height: 2.1rem; font-size: 0.92rem; }
  .industry-head { gap: 0.75rem; }
  .industry-head .icon-chip { width: 44px; height: 44px; }
  .header-actions .btn { flex: 1 1 auto; }
  .page-hero .hero-cta .btn { flex: 1 1 100%; }
  .edition-badge { display: block; margin-left: 0; margin-top: 0.4rem; }
}
