/* Done by Default - Process page-scoped styles (Industrial Spec Sheet).
   Reuses css/redesign/* tokens + components; only process-specific layout lives here.
   Never edits the shared variables/base/components.css. */

/* Page intro / spec-sheet header (matches services + packages page-hero) */
.page-hero {
  padding-block: var(--space-2xl) var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: var(--space-sm);
  max-width: 20ch;
}
.page-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  max-width: 62ch;
}

/* Phase spec-rows carry a duration stamp (Martian Mono, blueprint-blue) */
.phase-dur {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-top: var(--space-xs);
}

/* "What we need from you" - bordered spec-sheet cells */
.need__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--color-border);
  margin-top: var(--space-lg);
}
@media (min-width: 720px) {
  .need__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.need__cell {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}
.need__cell:last-child {
  border-bottom: none;
}
@media (min-width: 720px) {
  .need__cell {
    border-bottom: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
  }
  .need__cell:nth-child(odd) {
    border-left: none;
  }
  .need__cell:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
.need__part {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--color-secondary);
}
.need__cell h3 {
  margin-top: var(--space-xs);
  font-size: var(--text-lg);
}
.need__cell p {
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* Small spec-sheet note (timeline caveat) - Martian Mono, muted, blueprint-blue rule */
.proc-note {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-secondary);
  max-width: 70ch;
}
