/* Services + Contact pages */

.page-hero {
  border-bottom: 1px solid var(--line);
  padding: 80px 0 64px;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }

.page-hero p {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 460px;
  padding-bottom: 12px;
}

/* services list */

.svc-section {
  border-bottom: 1px solid var(--line);
}

.svc-block {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr;
  gap: 32px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.svc-block:last-child { border-bottom: 0; }

.svc-block__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  padding-top: 8px;
}

.svc-block__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}
.svc-block__price {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--accent);
}

.svc-block__lede {
  font-size: 17px;
  color: var(--ink-dim);
  margin-bottom: 28px;
  max-width: 520px;
}

.svc-block__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.svc-block__detail h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 16px 0 8px;
}

.svc-block__detail ul {
  list-style: none;
  padding: 0 16px 16px 0;
  border-right: 1px solid var(--line);
}
.svc-block__detail ul:last-child { border-right: 0; padding-right: 0; padding-left: 16px; }

.svc-block__detail li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.svc-block__detail li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--f-mono);
  position: absolute;
  left: 0;
  top: 12px;
}
.svc-block__detail li strong {
  display: inline;
  margin-right: 6px;
}

/* tiers */

.tier-section {
  border-bottom: 1px solid var(--line);
  padding: 56px 0 96px;
}

.tier-intro {
  max-width: 640px;
  margin-bottom: 48px;
}
.tier-intro__copy {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink-dim);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 32px 40px;
  border-right: 1px solid var(--line);
  background: var(--bg);
}
.tier:last-child { border-right: 0; }

.tier--featured {
  background: var(--bg-2);
}
.tier--featured::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: var(--accent);
}
.tier--flagship::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: var(--ink);
}

.tier__ribbon {
  position: absolute;
  top: -13px;
  left: 32px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--accent);
  color: #0a0a0a;
  padding: 6px 12px;
}
.tier__ribbon--alt {
  background: var(--ink);
  color: #0a0a0a;
}

.tier__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.tier__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

.tier__badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  padding: 4px 10px;
}

.tier__name {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}

.tier__tagline {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.tier--featured .tier__tagline { color: var(--accent); }

.tier__best {
  margin-bottom: 28px;
}
.tier__best h3,
.tier__included h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.tier__best p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.45;
}

.tier__included {
  margin-bottom: 32px;
  flex: 1;
}
.tier__included ul {
  list-style: none;
  column-count: 2;
  column-gap: 28px;
  column-rule: 1px solid var(--line-2);
}
.tier__included li {
  font-size: 14px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  align-items: baseline;
  gap: 12px;
  break-inside: avoid;
}
.tier__included li.is-prev,
.tier__included li.is-feature {
  column-span: all;
}

@media (max-width: 700px) {
  .tier__included ul {
    column-count: 1;
    column-rule: 0;
  }
}
.tier__included li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 13px;
  flex-shrink: 0;
}
.tier__included li.is-prev {
  color: var(--ink-dim);
  font-style: italic;
}
.tier__included li.is-prev::before {
  content: "+";
  color: var(--ink-mute);
}
.tier__included li.is-feature {
  color: var(--accent);
  font-weight: 600;
}
.tier__included li.is-feature::before {
  content: "★";
}

.tier__cta {
  align-self: stretch;
  justify-content: space-between;
  margin-top: auto;
}

/* ---------- optional add-on banner ---------- */

.tier-addon {
  margin-top: 32px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.tier-addon__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  white-space: nowrap;
}

.tier-addon__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.tier-addon__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.tier-addon__copy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 640px;
}

.tier-addon__cta {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .tier-addon {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .tier-addon__cta {
    justify-self: start;
  }
}

/* process */

.process {
  border-bottom: 1px solid var(--line);
}

.process__head {
  padding: 80px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.process__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-bottom: 80px;
}
.process__step {
  border-right: 1px solid var(--line);
  padding: 32px 24px 48px;
  position: relative;
}
.process__step:last-child { border-right: 0; }
.process__step .num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 24px;
  line-height: 1;
}
.process__step h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.process__step p { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }
.process__step .when {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 16px;
}

/* contact page */

.contact-hero {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.contact-cell {
  padding: 56px 32px 56px 0;
  border-right: 1px solid var(--line);
}
.contact-cell:last-child { border-right: 0; padding: 56px 0 56px 32px; }

.contact-cell__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.contact-cell h2 {
  font-family: var(--f-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  overflow-wrap: break-word;
}

.contact-method {
  display: block;
  border: 1px solid var(--line);
  padding: 28px 24px;
  margin-bottom: 16px;
  transition: all 0.2s;
}
.contact-method:hover { border-color: var(--accent); background: var(--bg-2); }
.contact-method:hover .arrow { color: var(--accent); transform: translate(4px,-4px); }

.contact-method__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.contact-method__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-method__value {
  font-family: var(--f-display);
  font-size: clamp(20px, 4.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}
.contact-method .arrow {
  font-family: var(--f-mono);
  font-size: 20px;
  color: var(--ink-dim);
  transition: all 0.2s;
}
.contact-method__note {
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}

.expect {
  list-style: none;
}
.expect li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.expect li:first-child { border-top: 1px solid var(--line); }
.expect li .step {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.expect li strong { display: block; margin-bottom: 4px; font-weight: 500; }
.expect li span.copy { color: var(--ink-dim); font-size: 14px; }

/* hours / location */

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.meta-cell {
  padding: 48px 24px;
  border-right: 1px solid var(--line);
}
.meta-cell:last-child { border-right: 0; }
.meta-cell h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.meta-cell .big {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.meta-cell .small {
  color: var(--ink-dim);
  font-size: 14px;
  margin-top: 8px;
}

/* contact form */

.contact-form-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 80px;
}

.form-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}
.form-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}
.form-head p {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 460px;
  padding-bottom: 12px;
}

.contact-form {
  display: grid;
  gap: 24px;
  max-width: 880px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label.full { grid-column: 1 / -1; }

.form__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 0;
  /* Reserve box height so font-swap/load can't shift form layout below */
  min-height: 50px;
  line-height: 1.4;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--f-body);
  line-height: 1.5;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%),
    linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%);
  background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
  cursor: pointer;
}
.contact-form select option {
  background: var(--bg-2);
  color: var(--ink);
}

.form__submit {
  justify-self: start;
  cursor: pointer;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .page-hero { padding: 56px 0 40px; }
  .page-hero__inner, .process__head, .contact-grid, .process__steps, .meta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-hero p { max-width: 100%; }

  .svc-block { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .svc-block__detail { grid-template-columns: 1fr; }
  .svc-block__detail ul { border-right: 0; padding: 0 0 16px; }
  .svc-block__detail ul:last-child { padding-left: 0; }

  .contact-cell, .contact-cell:last-child { padding: 40px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-cell:last-child { border-bottom: 0; }

  /* process steps: switch border-right to border-bottom after stacking */
  .process__step { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 0 32px; }
  .process__step:last-child { border-bottom: 0; }
  .process__step .num { font-size: 44px; margin-bottom: 16px; }

  /* meta grid: same border swap */
  .meta-cell { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .meta-cell:last-child { border-bottom: 0; }
  .meta-cell .big { font-size: 22px; }

  .tier-grid { grid-template-columns: 1fr; }
  .tier { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 24px 32px; }
  .tier:last-child { border-bottom: 0; }
  .tier__ribbon { left: 24px; }

  .form-head { grid-template-columns: 1fr; gap: 24px; }
  .form-head p { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-section { padding: 56px 0; }
  /* iOS prevents zoom on focus only when inputs are >=16px */
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; padding: 12px 14px; }
}

@media (max-width: 480px) {
  .page-hero { padding: 40px 0 32px; }
  .contact-cell h2 { font-size: 22px; }
  .contact-method { padding: 22px 18px; }
  .contact-method__value { font-size: 18px; }
  .tier { padding: 28px 20px 28px; }
  .tier__ribbon { left: 20px; }
  .tier-addon { padding: 20px; }
}

/* ============================================================
   Phase 0 additions — industry + location page primitives
   ============================================================
   Components: .page-hero--industry, .faq, .crosslink-grid,
   .hub-grid, .commit-band. All additive — no existing rule
   re-defined. Tokens drawn from styles.css :root.
*/

/* ---------- .page-hero--industry — modifier for industry/location heroes ---------- */
/* Industry pages need eyebrow + sub-headline + CTA row + trust strip
   below the H1, in a tighter vertical rhythm than Services/Contact. */

.page-hero--industry .page-hero__inner {
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 48px;
}
.page-hero--industry .industry-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--accent);
}
.page-hero--industry h1 {
  font-size: clamp(34px, 7vw, 96px);
  margin-bottom: 24px;
}
.page-hero--industry .industry-sub {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink-dim);
  margin-bottom: 24px;
  max-width: 560px;
}
.page-hero--industry .industry-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.page-hero--industry .industry-trust {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.page-hero--industry .industry-trust span::before {
  content: "● ";
  color: var(--accent);
}

/* ---------- .commit-band — service commitments (commit / disclaim) ---------- */

.commit-band {
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
.commit-band__head {
  margin-bottom: 40px;
  max-width: 720px;
}
.commit-band__head .mono {
  display: block;
  margin-bottom: 16px;
  color: var(--ink-mute);
}
.commit-band__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}
.commit-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.commit-band__col {
  padding: 32px;
  border-right: 1px solid var(--line);
}
.commit-band__col:last-child { border-right: 0; background: var(--bg-2); }
.commit-band__col h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.commit-band__col--commit h3 { color: var(--accent); }
.commit-band__col ul { list-style: none; }
.commit-band__col li {
  font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  gap: 12px;
  line-height: 1.45;
}
.commit-band__col li:last-child { border-bottom: 0; }
.commit-band__col--commit li::before {
  content: "✓";
  color: var(--accent);
  font-family: var(--f-mono);
  flex-shrink: 0;
}
.commit-band__col--disclaim li::before {
  content: "—";
  color: var(--ink-mute);
  font-family: var(--f-mono);
  flex-shrink: 0;
}

/* ---------- .crosslink-grid — industry + city cross-sell tiles ---------- */

.crosslink-section {
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
.crosslink-section__head {
  margin-bottom: 40px;
  max-width: 720px;
}
.crosslink-section__head .mono {
  display: block;
  margin-bottom: 16px;
  color: var(--ink-mute);
}
.crosslink-section__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}
.crosslink-block { margin-bottom: 32px; }
.crosslink-block:last-child { margin-bottom: 0; }
.crosslink-block h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}
.crosslink-grid a {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s, color 0.15s;
  min-height: 72px;
  overflow-wrap: anywhere;
}
.crosslink-grid a::after {
  content: "→";
  font-family: var(--f-mono);
  color: var(--ink-mute);
  font-size: 14px;
  transition: transform 0.15s, color 0.15s;
  flex-shrink: 0;
}
.crosslink-grid a:hover {
  background: var(--bg-2);
  color: var(--accent);
}
.crosslink-grid a:hover::after {
  color: var(--accent);
  transform: translateX(4px);
}

/* ---------- .hub-grid — larger cards for Phase 3 hubs (Industries/Locations) ---------- */

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}
.hub-grid a {
  padding: 32px 28px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  transition: background 0.15s;
  min-height: 160px;
}
.hub-grid a:hover { background: var(--bg-2); }
.hub-grid a .hub-grid__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.hub-grid a .hub-grid__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  overflow-wrap: break-word;
}
.hub-grid a .hub-grid__desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin-top: auto;
}
.hub-grid a .hub-grid__cta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- .faq — native details/summary accordion ---------- */

.faq-section {
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
.faq-section__head {
  margin-bottom: 40px;
  max-width: 720px;
}
.faq-section__head .mono {
  display: block;
  margin-bottom: 16px;
  color: var(--ink-mute);
}
.faq-section__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.15s;
}
.faq details[open] {
  background: var(--bg-2);
  border-left: 2px solid var(--accent);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 24px;
  position: relative;
  font-family: var(--f-display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
  overflow-wrap: break-word;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q.";
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 24px;
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.15s;
}
.faq details[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}
.faq summary:hover { color: var(--accent); }
.faq summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.faq .faq__a {
  padding: 0 24px 28px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 820px;
}
.faq .faq__a::before {
  content: "A.";
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* ---------- responsive — phase 0 additions ---------- */

@media (max-width: 900px) {
  .page-hero--industry .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .commit-band { padding: 56px 0; }
  .commit-band__grid { grid-template-columns: 1fr; }
  .commit-band__col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px;
  }
  .commit-band__col:last-child { border-bottom: 0; }
  .crosslink-section, .faq-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .page-hero--industry .industry-eyebrow { font-size: 10px; padding: 5px 8px; }
  .page-hero--industry .industry-ctas { flex-direction: column; align-items: stretch; }
  .page-hero--industry .industry-ctas .btn { justify-content: space-between; }
  .commit-band__col { padding: 20px; }
  .crosslink-grid a { padding: 20px 16px; min-height: 64px; font-size: 15px; }
  .hub-grid a { padding: 24px 20px 28px; }
  .faq summary { padding: 20px 48px 20px 20px; }
  .faq summary::after { right: 20px; top: 20px; font-size: 24px; }
  .faq .faq__a { padding: 0 20px 24px 20px; }
}

/* ============================================================
   Report page — editorial / data-journalism layout
   ============================================================
   Components: .report-hero, .report-pullquote, .report-section,
   .report-table, .report-chart, .report-callout, .report-footnotes.
   All additive — no existing rule re-defined. Tokens drawn from
   styles.css :root.
*/

/* ---------- .report-hero — opening section with eyebrow / deck / byline ---------- */

.report-hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--line);
}
.report-hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--accent);
}
.report-hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 1100px;
  margin-bottom: 36px;
  overflow-wrap: break-word;
}
.report-hero__deck {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink-dim);
  max-width: 880px;
  margin-bottom: 36px;
}
.report-hero__deck strong {
  color: var(--ink);
  font-weight: 600;
}
.report-hero__byline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 880px;
}
.report-hero__byline span::before {
  content: "● ";
  color: var(--accent);
}

/* ---------- .report-pullquote — accent-bordered hook callout ---------- */

.report-pullquote {
  margin: 0;
  padding: 40px 32px 40px 36px;
  border-left: 4px solid var(--accent);
  background: var(--bg-2);
  max-width: 880px;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
}
.report-pullquote em { font-style: italic; color: var(--accent); }

/* ---------- .report-section — long-form prose column ---------- */

.report-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.report-section__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  display: block;
}
.report-section h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 880px;
  margin-bottom: 32px;
  overflow-wrap: break-word;
}
.report-section h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 780px;
  margin: 40px 0 16px;
  overflow-wrap: break-word;
}
.report-section__prose {
  max-width: 760px;
}
.report-section__prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.report-section__prose p strong { color: var(--ink); font-weight: 600; }
.report-section__prose p em { color: var(--accent); font-style: italic; }
.report-section__prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.report-section__prose a:hover {
  color: var(--ink);
  text-decoration-color: var(--accent);
}
.report-section__prose ul,
.report-section__prose ol {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
}
.report-section__prose ul li,
.report-section__prose ol li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-dim);
  padding: 8px 0 8px 24px;
  position: relative;
}
.report-section__prose ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 14px;
}
.report-section__prose ol {
  counter-reset: ol;
}
.report-section__prose ol li {
  counter-increment: ol;
}
.report-section__prose ol li::before {
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.report-section__note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-top: 16px;
  max-width: 760px;
  line-height: 1.5;
}

/* ---------- .report-table — wide data table ---------- */

.report-table-wrap {
  overflow-x: auto;
  margin: 16px 0 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.report-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  font-family: var(--f-body);
}
.report-table thead th {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  white-space: nowrap;
  vertical-align: bottom;
}
.report-table tbody td {
  padding: 14px 14px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  line-height: 1.4;
  vertical-align: top;
}
.report-table tbody tr:last-child td { border-bottom: 0; }
.report-table tbody tr:hover { background: var(--bg); }
.report-table td.num,
.report-table th.num {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.report-table td a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-mute);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.report-table td a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.report-table strong { color: var(--accent); font-weight: 600; }
.report-table .pack-open { color: var(--accent); }
.report-table .pack-defended { color: var(--ink); }
.report-table .pack-contested { color: var(--ink-dim); }
.report-table .pack-fragmented { color: var(--ink-dim); }
.report-table .pack-crowded { color: var(--warn); }
.report-table__caption {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.report-table__footnote {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  margin: 14px 0 4px;
  max-width: 760px;
  line-height: 1.5;
}

/* ---------- .report-table--key — small "pack character" legend ---------- */

.report-table-key {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  margin: 24px 0 12px;
}
.report-table-key__item {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.report-table-key__item strong {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

/* ---------- .report-chart — inline SVG wrapper ---------- */

.report-chart {
  margin: 32px 0 8px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 32px 24px 24px;
}
.report-chart__title {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.report-chart__subtitle {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.3;
  max-width: 780px;
}
.report-chart svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.report-chart__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.report-chart__legend-swatch {
  display: inline-block;
  width: 14px;
  height: 10px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ---------- .report-callout — accent-bordered citation block ---------- */

.report-callout {
  border: 1px solid var(--accent);
  background: var(--bg-2);
  padding: 36px 36px;
  margin: 16px 0 8px;
  max-width: 880px;
  position: relative;
}
.report-callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}
.report-callout__label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.report-callout__lead {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 16px;
}
.report-callout__lead strong { color: var(--accent); }
.report-callout p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.report-callout p:last-child { margin-bottom: 0; }
.report-callout blockquote {
  margin: 16px 0;
  padding: 16px 20px;
  border-left: 2px solid var(--ink-mute);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.55;
  background: var(--bg);
}
.report-callout__contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.report-callout__contact a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.report-callout__sla {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 12px;
  display: block;
}

/* ---------- .report-footnotes — compact numbered sources list ---------- */

.report-footnotes {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  max-width: 880px;
  counter-reset: fn;
  border-top: 1px solid var(--line);
}
.report-footnotes li {
  counter-increment: fn;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--ink-dim);
  padding: 12px 0 12px 44px;
  border-bottom: 1px solid var(--line-2);
  position: relative;
  overflow-wrap: anywhere;
}
.report-footnotes li::before {
  content: counter(fn, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}
.report-footnotes li .fn-city {
  color: var(--ink);
  font-weight: 500;
  margin-right: 10px;
}
.report-footnotes li .fn-key {
  color: var(--ink-mute);
}

/* ---------- responsive — report additions ---------- */

@media (max-width: 900px) {
  .report-hero { padding: 56px 0 40px; }
  .report-hero h1 { font-size: clamp(34px, 9vw, 56px); }
  .report-section { padding: 48px 0; }
  .report-section h2 { font-size: clamp(26px, 6vw, 36px); }
  .report-pullquote { padding: 28px 24px 28px 24px; font-size: 18px; }
  .report-callout { padding: 28px 24px; }
  .report-chart { padding: 24px 16px 20px; }
}

@media (max-width: 600px) {
  /* The data table goes horizontal-scroll on narrow viewports.
     Already wrapped in .report-table-wrap with overflow-x: auto. */
  .report-table { font-size: 13px; }
  .report-table thead th,
  .report-table tbody td { padding: 12px 10px; }
  .report-footnotes li { font-size: 11px; padding-left: 36px; }
}

@media (max-width: 480px) {
  .report-hero { padding: 40px 0 32px; }
  .report-hero h1 { font-size: clamp(30px, 10vw, 40px); }
  .report-hero__deck { font-size: 17px; }
  .report-pullquote { padding: 22px 18px; font-size: 17px; }
  .report-section { padding: 40px 0; }
  .report-section h2 { font-size: clamp(24px, 7vw, 32px); }
  .report-section h3 { font-size: 19px; }
  .report-section__prose p,
  .report-section__prose ul li,
  .report-section__prose ol li { font-size: 16px; }
  .report-callout { padding: 22px 18px; }
  .report-callout__lead { font-size: 18px; }
  .report-chart { padding: 20px 12px 16px; }
}

/* ============================================================
   Report page — Reader's guide (plain-English TLDR section)
   ============================================================
   Inserted between the lead pullquote and §01 Methodology.
   Translates the data-journalism terminology for service-business
   owners. All additive — no existing rule re-defined.
*/

.report-tldr {
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.report-tldr__inner {
  max-width: 1080px;
}
.report-tldr__head {
  max-width: 820px;
  margin-bottom: 40px;
}
.report-tldr__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--accent);
}
.report-tldr__head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
  overflow-wrap: break-word;
}
.report-tldr__sub {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink-dim);
  max-width: 720px;
}

.report-tldr__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.report-tldr__card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.report-tldr__card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  overflow-wrap: break-word;
}
.report-tldr__card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.report-tldr__card p:last-child { margin-bottom: 0; }
.report-tldr__card p strong { color: var(--ink); font-weight: 600; }

.report-tldr__card ul,
.report-tldr__card ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.report-tldr__card ul li,
.report-tldr__card ol li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--line-2);
}
.report-tldr__card ul li:last-child,
.report-tldr__card ol li:last-child { border-bottom: 0; }
.report-tldr__card ul li strong,
.report-tldr__card ol li strong { color: var(--ink); font-weight: 600; }
.report-tldr__card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 13px;
}
.report-tldr__card ol {
  counter-reset: tldr-ol;
}
.report-tldr__card ol li {
  counter-increment: tldr-ol;
}
.report-tldr__card ol li::before {
  content: counter(tldr-ol) ".";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Accent card — the "what this means" action-oriented one */
.report-tldr__card--accent {
  border: 1px solid var(--accent);
  border-left-width: 4px;
  background: var(--bg-2);
  position: relative;
}
.report-tldr__card--accent::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.report-tldr__card--accent h3 {
  color: var(--ink);
}

/* Glossary <dl> styling */
.report-glossary {
  margin: 0;
  padding: 0;
}
.report-glossary dt {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 14px 0 6px;
  line-height: 1.3;
}
.report-glossary dt:first-child { margin-top: 0; }
.report-glossary dd {
  margin: 0 0 14px 0;
  padding: 0 0 14px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line-2);
}
.report-glossary dd:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }

/* ---------- responsive — Reader's guide ---------- */

@media (max-width: 900px) {
  .report-tldr { padding: 48px 0 56px; }
  .report-tldr__head { margin-bottom: 32px; }
  .report-tldr__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .report-tldr__card { padding: 24px 22px 22px; }
}

@media (max-width: 600px) {
  .report-tldr { padding: 40px 0 48px; }
  .report-tldr__head h2 { font-size: clamp(24px, 7vw, 32px); }
  .report-tldr__sub { font-size: 16px; }
  .report-tldr__card { padding: 22px 20px 20px; }
  .report-tldr__card h3 { font-size: 19px; }
}

@media (max-width: 480px) {
  .report-tldr { padding: 32px 0 40px; }
  .report-tldr__eyebrow { font-size: 10px; padding: 5px 10px; }
  .report-tldr__card { padding: 20px 18px 18px; }
  .report-tldr__card p,
  .report-tldr__card ul li,
  .report-tldr__card ol li { font-size: 16px; }
  .report-glossary dd { font-size: 15px; }
}

/* ============================================================
   Mobile polish layer — Services + Contact + Industry + Location +
   Report pages. Tightens vertical padding to reclaim screen on
   phones and tablets, collapses tier bullets to one column at the
   same breakpoint the cards stack, and stretches industry CTAs.
   ============================================================ */

/* Tier bullets share their card's collapse point.
   The tier-grid stacks at 900px (inner.css:716), but
   tier__included ul keeps column-count: 2 until 700px.
   Result: a 2-col bullet list crammed into a single-card width.
   Fix: collapse columns at the same 900 breakpoint. */
@media (max-width: 900px) {
  .tier__included ul { column-count: 1; column-rule: 0; }
  .tier-section { padding: 40px 0 56px; }
  .tier-intro { margin-bottom: 32px; }
  .faq-section { padding: 56px 0; }
  .commit-band { padding: 48px 0; }
  .crosslink-section { padding: 48px 0; }
}

/* Tablet portrait band (~768): same as 900 rules but tighten further
   so iPad portrait doesn't feel like a stretched phone. */
@media (max-width: 768px) {
  .page-hero { padding: 48px 0 32px; }
  .svc-block { padding: 32px 0; gap: 12px; }
  .tier { padding: 28px 22px; }
  .contact-form-section { padding: 40px 0; }
  .report-hero { padding: 48px 0 32px; }
  .report-section { padding: 40px 0; }
  .report-tldr { padding: 40px 0 48px; }
}

/* Phone refinement: drop padding further, full-width CTAs, smaller
   gaps on trust strips and bylines. */
@media (max-width: 480px) {
  .page-hero { padding: 32px 0 24px; }
  .svc-block { padding: 28px 0; }
  .tier-section { padding: 28px 0 40px; }
  .tier { padding: 24px 18px; }
  .tier__name { font-size: clamp(28px, 9vw, 40px); }
  .faq-section { padding: 40px 0; }
  .commit-band { padding: 32px 0; }
  .crosslink-section { padding: 32px 0; }
  .contact-form-section { padding: 32px 0; }
  .report-hero { padding: 32px 0 24px; }
  .report-section { padding: 28px 0; }
  .report-tldr { padding: 28px 0 32px; }

  /* Trust strip and byline can wrap awkwardly with desktop-sized gaps. */
  .page-hero--industry .industry-trust { gap: 8px 14px; font-size: 10px; }
  .report-hero__byline { gap: 6px 14px; font-size: 10px; }

  /* Stretch primary CTAs in single-column hero rows. */
  .page-hero--industry .industry-ctas .btn { width: 100%; justify-content: space-between; }

  /* Long contact values (emails, formatted phone) need anywhere-wrap. */
  .contact-method__value,
  .contact-cell { word-break: break-word; overflow-wrap: anywhere; min-width: 0; }
}
