/* Service hub — page-specific */
  .lead-2col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
  }
  @media (max-width: 1100px) {
    .lead-2col { grid-template-columns: 1fr; }
  }

  .key-facts {
    background: var(--ink-elev);
    border: 1px solid var(--ink-line);
    border-radius: 18px;
    padding: 28px 30px;
    position: sticky;
    top: 100px;
  }
  .key-facts-title {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--fg-400);
    margin: 0 0 18px;
    display: flex; align-items: center; gap: 8px;
  }
  .key-facts-title::before {
    content: ""; width: 14px; height: 1px;
    background: var(--accent);
  }
  .key-facts dl {
    margin: 0;
    display: flex; flex-direction: column;
    gap: 14px;
  }
  .key-facts > dl > div {
    display: flex; justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ink-line);
  }
  .key-facts > dl > div:last-child { border-bottom: none; padding-bottom: 0; }
  .key-facts dt {
    font-family: var(--sans);
    font-size: 12.5px;
    color: var(--fg-400);
    line-height: 1.4;
    flex: 1;
  }
  .key-facts dd {
    margin: 0;
    font-family: var(--display);
    font-weight: 500;
    font-size: 15px;
    color: var(--fg-100);
    letter-spacing: -0.01em;
    text-align: right;
    flex-shrink: 0;
  }
  .key-facts dd.warm { color: var(--warm); }
  .key-facts dd.accent { color: var(--accent-soft); }

  .key-docs {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .key-docs li {
    font-size: 13px;
    color: var(--fg-200);
    line-height: 1.45;
    padding-left: 16px;
    position: relative;
  }
  .key-docs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-soft);
  }
  .key-docs-hint {
    font-size: 11.5px;
    color: var(--fg-400);
    line-height: 1.45;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid var(--ink-line);
  }

  .usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  @media (max-width: 1000px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .usp-grid { grid-template-columns: 1fr; }
  }
  .usp-item {
    background: var(--ink-elev);
    border: 1px solid var(--ink-line);
    border-radius: 14px;
    padding: 24px;
  }
  .usp-num {
    font-family: var(--display);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--accent-soft);
    margin: 0 0 12px;
    line-height: 1;
  }
  .usp-title {
    font-family: var(--display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--fg-100);
    margin: 0 0 8px;
  }
  .usp-desc {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--fg-400);
    line-height: 1.5;
    margin: 0;
  }
