/* =========================================================
   AVERTIZ — design system
   Palette:  --ink (near-black steel-navy), --paper (cool paper),
             --steel (primary brand blue), --amber (signal accent,
             drawn from safety/hazard signage — the one legitimate
             "bright" in this world), --slate (secondary text/rule)
   Type:     Times New Roman throughout (display, body and mono roles) —
             a system font, so no external font loading is required; this
             also makes the site lighter and faster to load.
   ========================================================= */

:root {
  --ink: #0c1526;
  --paper: #ffffff;
  --paper-dim: #ebe9e3;
  --steel: #14274d;
  --steel-2: #1f3c6e;
  --amber: #3e8e2f;
  --amber-deep: #2c6420;
  --amber-on-dark: #6fc257;
  --slate: #5b6675;
  --line: #d8d5cc;
  --line-dark: #2a3f61;
  --white: #f5f4f0;

  --display: 'Times New Roman', Times, Georgia, serif;
  --body: 'Times New Roman', Times, Georgia, serif;
  --mono: 'Times New Roman', Times, Georgia, serif;

  --max: 1180px;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: 0;
}
h1 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h2 { font-size: clamp(1.3rem, 2.1vw, 1.75rem); }
h3 { font-size: 1.12rem; }
h4 { font-size: 0.96rem; }

p { margin: 0 0 1.1em; color: var(--steel); max-width: 66ch; }
p.lede { font-size: 1.15rem; color: var(--ink); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 860px; }

/* ---------- eyebrow / mono labels (drawing-sheet reference marks) ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--amber-deep);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--amber-on-dark); }
.eyebrow.on-dark::before { background: var(--amber-on-dark); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}
nav.primary { display: flex; gap: 2px; align-items: center; }
nav.primary a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--steel);
  padding: 10px 12px;
  border-radius: 3px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
nav.primary a:hover { color: var(--ink); background: var(--paper-dim); }
nav.primary a.current { color: var(--ink); font-weight: 600; }
.nav-item.dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-item.dropdown > a::after { content: "▾"; font-size: 0.62em; margin-left: 5px; opacity: 0.65; position: relative; top: -1px; }
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(18, 24, 31, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 80;
}
.nav-item.dropdown:hover .dropdown-panel,
.nav-item.dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  font-size: 0.87rem;
  color: var(--steel);
  text-decoration: none;
  border-radius: 2px;
  white-space: normal;
}
.dropdown-panel a:hover { background: var(--paper-dim); color: var(--ink); }
.dropdown-panel hr { border: none; border-top: 1px solid var(--line); margin: 6px 4px; }
.dropdown-panel .panel-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 10px 12px 4px;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 18px !important;
  margin-left: 6px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--steel-2) !important; }

#nav-toggle { display: none; }
.nav-toggle-btn { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--amber); color: #000; }
.btn-primary:hover { background: var(--amber-deep); color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-dark); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline.on-dark { color: var(--paper); border-color: rgba(245,244,240,0.4); }
.btn-outline.on-dark:hover { background: var(--paper); color: var(--ink); }
.btn-arrow::after { content: "→"; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.brand-banner {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  text-align: center;
  background: var(--white);
}
.banner-img {
  max-width: 460px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.content-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line-dark);
}
.content-img-wrap { margin: 8px 0 24px; }

/* ---------- hero ---------- */
.hero {
  padding: 68px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}
.hero h1 { margin-bottom: 18px; }
.hero .sub { font-size: 1.1rem; color: var(--steel); max-width: 46ch; margin-bottom: 24px; }
.hero-panel {
  border: 1px solid var(--line-dark);
  background: var(--steel);
  color: var(--paper);
  padding: 22px;
  font-family: var(--mono);
  font-size: 0.83rem;
}
.hero-panel .hp-title { color: var(--amber-on-dark); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; margin-bottom: 14px; }
.hero-panel ol { margin: 0; padding-left: 1.1em; color: #d7dde3; }
.hero-panel li { margin-bottom: 8px; line-height: 1.45; }
.hero-panel li b { color: var(--paper); }

.page-hero {
  padding: 48px 0 38px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-dim);
}
.page-hero p.sub { font-size: 1.02rem; max-width: 62ch; }
.page-hero.dark { background: var(--ink); color: var(--paper); }
.page-hero.dark h1 { color: var(--paper); }
.page-hero.dark p.sub { color: #c7cdd4; }

/* ---------- sections ---------- */
section { padding: 52px 0; }
section.tight { padding: 38px 0; }
.section-head { max-width: 680px; margin-bottom: 28px; }
.section-head p { color: var(--steel); }

.on-dark { background: var(--ink); color: var(--paper); }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--paper); }
.on-dark p { color: #c7cdd4; }
.on-dim { background: var(--paper-dim); }

hr.rule { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ---------- grids / cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px 22px;
}
.card .num { font-family: var(--mono); font-size: 0.76rem; color: var(--amber-deep); margin-bottom: 10px; letter-spacing: 0.06em; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.93rem; margin-bottom: 0.6em; }
.card a.card-link { font-family: var(--mono); font-size: 0.8rem; text-decoration: none; color: var(--ink); display: inline-block; margin-top: 14px; border-bottom: 1px solid var(--ink); }

.tile-list { border-top: 1px solid var(--line); }
.tile {
  display: grid;
  grid-template-columns: 90px 1fr 160px;
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.tile:hover .tile-title { color: var(--amber-deep); }
.tile .num { font-family: var(--mono); font-size: 0.85rem; color: var(--slate); padding-top: 4px; }
.tile-num-col { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.tile-title { font-family: var(--display); font-weight: 700; font-size: 1.12rem; margin-bottom: 6px; transition: color 0.15s ease; }
.tile p { font-size: 0.93rem; margin: 0; }
.tile .tile-cta { font-family: var(--mono); font-size: 0.78rem; color: var(--slate); text-align: right; padding-top: 4px; }

/* ---------- spec sheet block (signature element) ---------- */
.specsheet {
  border: 1px solid var(--line-dark);
  background: var(--steel);
  color: var(--paper);
}
.specsheet-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-on-dark);
}
.specsheet-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.specsheet-field {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-dark);
}
.specsheet-field:nth-child(odd) { border-right: 1px solid var(--line-dark); }
.specsheet-field .fk {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93a3b3;
  margin-bottom: 8px;
}
.specsheet-field ul { margin: 0; padding-left: 1.1em; color: #dbe1e7; font-size: 0.92rem; }
.specsheet-field li { margin-bottom: 6px; }
.specsheet-field p { color: #dbe1e7; font-size: 0.92rem; margin: 0; }

/* ---------- process strip ---------- */
.process { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); }
.process .step { padding: 24px 18px; border-right: 1px solid var(--line); }
.process .step:last-child { border-right: none; }
.process .num { font-family: var(--mono); color: var(--amber-deep); font-size: 0.78rem; margin-bottom: 10px; }
.process h4 { margin-bottom: 8px; font-size: 0.98rem; }
.process p { font-size: 0.85rem; margin: 0; }

/* ---------- lists ---------- */
ul.plain { padding-left: 1.15em; margin: 0 0 1.1em; }
ul.plain li { margin-bottom: 8px; color: var(--steel); }
ul.check { list-style: none; padding: 0; margin: 0 0 1.1em; }
ul.check li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--steel); }
ul.check li::before { content: "—"; position: absolute; left: 0; color: var(--amber-deep); font-family: var(--mono); }

/* ---------- quote / promise block ---------- */
.promise {
  border-left: 2px solid var(--amber);
  padding-left: 24px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  max-width: 60ch;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--paper); margin-bottom: 14px; }
.cta-band p { color: #c7cdd4; margin: 0 auto 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--steel);
  color: #c7cdd4;
  padding: 56px 0 28px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: var(--paper); font-size: 0.8rem; letter-spacing: 0.02em; text-transform: uppercase; font-family: var(--display); font-weight: 700; margin-bottom: 16px; white-space: nowrap; }
.footer-grid a { display: block; color: #c7cdd4; text-decoration: none; margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--amber-on-dark); }
.footer-legal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal-links a { color: #93a3b3; text-decoration: none; font-size: 0.82rem; }
.footer-legal-links a:hover { color: var(--amber-on-dark); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: #c7cdd4;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { color: var(--amber-on-dark); border-color: var(--amber-on-dark); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: #93a3b3; font-family: var(--body); }
.foot-brand { color: var(--paper); font-family: var(--display); font-weight: 700; margin-bottom: 12px; display: block; }

/* ---------- breadcrumb ---------- */
.crumb { font-family: var(--mono); font-size: 0.78rem; color: var(--slate); margin-bottom: 18px; }
.crumb a { text-decoration: none; color: var(--slate); }
.crumb a:hover { color: var(--ink); }

/* ---------- table-ish two col ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

/* ---------- form ---------- */
form.rfp { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); margin-bottom: 7px; }
input, select, textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
}
textarea { resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
.field-file {
  border: 1px dashed var(--line-dark);
  padding: 20px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--slate);
}
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 6px; }
.check-opt { display: flex; align-items: center; gap: 8px; font-family: var(--body); font-size: 0.9rem; color: var(--steel); text-transform: none; letter-spacing: 0; }
.check-opt input { width: auto; }

.contact-info-block { border: 1px solid var(--line); padding: 26px; margin-bottom: 20px; }
.contact-info-block .fk { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber-deep); margin-bottom: 6px; }

/* ---------- verify note ---------- */
.verify-note {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--slate);
  border: 1px dashed var(--line);
  padding: 12px 16px;
  margin: 20px 0;
}

/* ---------- misc ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.stat-strip .stat { padding: 26px 24px; border-right: 1px solid var(--line-dark); }
.stat-strip .stat:last-child { border-right: none; }
.stat-strip .stat h4 { color: var(--paper); margin-bottom: 6px; }
.stat-strip .stat p { color: #b9c1c9; font-size: 0.88rem; margin: 0; }

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tag { font-family: var(--mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 10px; border: 1px solid var(--line-dark); color: var(--steel); }

/* ---------- course spec table ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  margin: 18px 0 8px;
  background: var(--white);
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table th {
  width: 30%;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  background: var(--paper-dim);
}
.spec-table td { color: var(--steel); }

/* ---------- regulatory landscape block ---------- */
.reg-block {
  border: 1px solid var(--line);
  background: var(--white);
}
.reg-block-head {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-deep);
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}
.reg-block-body { padding: 6px 22px; }
.reg-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.reg-item:last-child { border-bottom: none; }
.reg-law { font-family: var(--display); font-weight: 700; font-size: 0.96rem; margin-bottom: 6px; }
.reg-item p { font-size: 0.9rem; margin: 0; }
.reg-block-foot {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--slate);
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper-dim);
  line-height: 1.55;
}

/* ---------- quick-facts summary strip (scan-friendly) ---------- */
.quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
  background: var(--steel);
  margin: 26px 0;
}
.quickfacts .qf {
  padding: 18px 20px;
  border-right: 1px solid var(--line-dark);
}
.quickfacts .qf:last-child { border-right: none; }
.quickfacts .qf .qk {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-on-dark);
  margin-bottom: 6px;
}
.quickfacts .qf .qv { color: var(--paper); font-size: 0.88rem; font-weight: 600; line-height: 1.3; }

@media (max-width: 760px) {
  .quickfacts { grid-template-columns: 1fr 1fr; }
  .spec-table th { width: 40%; }
}

/* ---------- image placeholder (clearly marked, for easy client editing) ---------- */
.img-placeholder {
  border: 2px dashed var(--line-dark);
  background: var(--paper-dim);
  padding: 32px 20px;
  text-align: center;
  color: var(--slate);
  margin: 8px 0 24px;
}
.img-placeholder .ip-icon {
  width: 44px; height: 44px;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--amber-deep);
}
.img-placeholder .ip-icon svg { width: 22px; height: 22px; }
.img-placeholder .ip-label {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.img-placeholder .ip-note {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--slate);
}
.img-placeholder.wide { aspect-ratio: 16/7; display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* ---------- hero training illustration (custom SVG, not a photo) ---------- */
.hero-visual {
  border: 1px solid var(--line-dark);
  background: var(--white);
  padding: 26px 22px 22px;
  margin-bottom: 18px;
  text-align: center;
}
.hero-visual .hv-badge {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--steel);
  color: var(--amber-on-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 1px solid var(--line-dark);
}
.hero-visual .hv-badge svg { width: 46px; height: 46px; }
.hero-visual .hv-caption {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-visual .hv-sub {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 18px;
}
.hero-visual .hv-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.hero-visual .hv-chip { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-visual .hv-chip .chip-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  color: var(--amber-deep);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .hv-chip .chip-icon svg { width: 18px; height: 18px; }
.hero-visual .hv-chip span { font-size: 0.68rem; color: var(--slate); line-height: 1.2; }

@media (max-width: 980px) {
  .hero-visual { margin-bottom: 16px; }
}

/* ---------- accessibility: skip link + focus states ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 200;
  font-size: 0.9rem;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}
a:focus-visible, button:focus-visible, .btn:focus-visible, .card:focus-within {
  outline: 2px solid var(--amber-deep);
  outline-offset: 2px;
}

/* ---------- icon tiles (illustrative SVG icons used across cards) ---------- */
.icon-tile {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  background: var(--steel);
  color: var(--amber-on-dark);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.icon-tile svg { width: 24px; height: 24px; }
.icon-tile.light {
  background: var(--paper-dim);
  border-color: var(--line);
  color: var(--amber-deep);
}
.card-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.card-icon-row .icon-tile { margin-bottom: 0; }
.tile-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  color: var(--amber-deep);
  flex-shrink: 0;
}
.tile-icon svg { width: 20px; height: 20px; }

/* ---------- FAQ accordion (native <details>, no JS) ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 4px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.3rem;
  color: var(--amber-deep);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 4px 18px; margin: 0; font-size: 0.94rem; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  text-decoration: none;
}
.whatsapp-float svg { width: 28px; height: 28px; }
@media (max-width: 760px) {
  .whatsapp-float { right: 14px; bottom: 14px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ---------- callback micro-form ---------- */
.callback-card {
  border: 1px solid var(--line-dark);
  background: var(--steel);
  color: var(--paper);
  padding: 24px;
}
.callback-card h3 { color: var(--paper); margin-bottom: 6px; }
.callback-card p { color: #c7cdd4; font-size: 0.9rem; margin-bottom: 16px; }
.callback-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.callback-row.full { grid-template-columns: 1fr; margin-top: 10px; }
.callback-row input, .callback-row textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  color: var(--paper);
  font-family: var(--body);
  padding: 12px 14px;
  border-radius: 2px;
}
.callback-row textarea { min-height: 70px; resize: vertical; }
.callback-row input::placeholder, .callback-row textarea::placeholder { color: #93a3b3; }
.callback-submit-row { margin-top: 12px; }
@media (max-width: 620px) {
  .callback-row { grid-template-columns: 1fr; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process .step:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .specsheet-body { grid-template-columns: 1fr; }
  .specsheet-field:nth-child(odd) { border-right: none; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip .stat { border-right: none; border-bottom: 1px solid var(--line-dark); }
}

@media (max-width: 760px) {
  nav.primary { display: none; }
  .nav-toggle-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--line-dark); background: none; cursor: pointer;
  }
  #nav-toggle:checked ~ nav.primary.mobile {
    display: flex;
  }
  nav.primary.mobile {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 8px 20px 20px; gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  nav.primary.mobile > a { padding: 13px 4px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-item.dropdown { display: block; width: 100%; }
  .nav-item.dropdown > a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .dropdown-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; box-shadow: none; padding: 4px 0 4px 14px;
  }
  .dropdown-panel a { padding: 10px 4px; border-bottom: 1px dashed var(--line); font-size: 0.85rem; }
  .dropdown-panel hr { margin: 4px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .tile { grid-template-columns: 50px 1fr; }
  .tile .tile-cta { display: none; }
  .form-row, .checks { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 48px; }
  section { padding: 52px 0; }
}
