/* /zakupki/ only */
  .zak-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 104px 40px 54px;
    background-image: url('/zakupki-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .zak-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
      90deg,
      rgba(10, 12, 15, 0.72) 0%,
      rgba(10, 12, 15, 0.48) 50%,
      rgba(10, 12, 15, 0.28) 100%
    );
  }

  .zak-hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 1200px);
    margin: 0 auto;
  }

  .zak-hero h1 {
    font-family: var(--head);
    font-size: clamp(30px, 4.2vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    max-width: 900px;
    margin-bottom: 22px;
    letter-spacing: -0.025em;
  }

  .zak-hero h1 em {
    color: var(--accent);
    font-style: normal;
  }

  .zak-hero-desc {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
    color: #b8c0c8;
    margin-bottom: 30px;
  }

  .zak-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .zak-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 26px;
    border: 1px solid var(--border2);
    background: var(--border2);
  }

  .zak-law {
    background: var(--bg2);
    padding: 30px;
  }

  .zak-law-num {
    font-family: var(--head);
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .zak-law h3 {
    font-family: var(--head);
    font-size: 18px;
    margin-bottom: 10px;
  }

  .zak-law p,
  .zak-note p,
  .zak-error p {
    color: #aeb7c0;
    font-size: 14px;
    line-height: 1.7;
  }

  .zak-check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 26px;
    background: var(--border2);
    border: 1px solid var(--border2);
  }

  .zak-check-list li {
    background: var(--bg2);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
  }

  .zak-check-list span {
    font-family: var(--mono);
    color: var(--accent);
    font-size: 12px;
    padding-top: 2px;
  }

  .zak-check-list strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
  }

  .zak-check-list p {
    color: #aeb7c0;
    font-size: 13px;
    line-height: 1.65;
  }

  /* Third content block: same banner with parallax */
  .zak-register {
    position: relative;
    max-width: none;
    padding: 54px 40px;
    overflow: hidden;
    background-image:
      linear-gradient(
        90deg,
        rgba(10, 12, 15, 0.82) 0%,
        rgba(10, 12, 15, 0.70) 50%,
        rgba(10, 12, 15, 0.84) 100%
      ),
      url('/zakupki-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
  }

  .zak-register-inner {
    max-width: 1120px;
    margin: 0 auto;
  }

  .zak-register-box {
    max-width: 820px;
    margin-top: 24px;
    padding: 28px 30px;
    background: rgba(10, 12, 15, 0.78);
    border: 1px solid rgba(0, 212, 255, 0.24);
    backdrop-filter: blur(4px);
  }

  .zak-register-box h3 {
    font-family: var(--head);
    font-size: 20px;
    margin-bottom: 12px;
  }

  .zak-register-box p {
    color: #c0c7ce;
    font-size: 14px;
    line-height: 1.75;
  }

  .zak-note {
    border: 1px solid var(--border2);
    background: var(--bg2);
    padding: 28px 30px;
    margin-top: 24px;
  }

  .zak-note strong {
    display: block;
    font-family: var(--head);
    font-size: 17px;
    margin-bottom: 8px;
  }

  .zak-errors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 26px;
    background: var(--border2);
    border: 1px solid var(--border2);
  }

  .zak-error {
    background: var(--bg2);
    padding: 24px;
    min-height: 180px;
  }

  .zak-error-num {
    font-family: var(--mono);
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }

  .zak-error strong {
    display: block;
    font-family: var(--head);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .zak-process {
    position: relative;
    background-image:
      linear-gradient(
        90deg,
        rgba(10, 12, 15, 0.82) 0%,
        rgba(10, 12, 15, 0.70) 50%,
        rgba(10, 12, 15, 0.84) 100%
      ),
      url('/zakupki-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    padding: 48px 0;
  }

  .zak-process-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .zak-process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-top: 26px;
    background: var(--border2);
    border: 1px solid var(--border2);
  }

  .zak-process-step {
    background: rgba(10, 12, 15, 0.86);
    padding: 22px;
    backdrop-filter: blur(3px);
  }

  .zak-process-step span {
    font-family: var(--mono);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .zak-process-step strong {
    display: block;
    margin-top: 10px;
    font-family: var(--head);
    font-size: 13px;
  }

  @media (max-width: 900px) {
    .zak-hero,
    .zak-register,
    .zak-process {
      background-attachment: scroll;
    }

    .zak-grid-2,
    .zak-check-list,
    .zak-errors {
      grid-template-columns: 1fr;
    }

    .zak-process-line {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 700px) {
    .zak-hero {
      min-height: 360px;
      padding: 88px 20px 42px;
      background-size: cover;
      background-position: center center;
      background-attachment: scroll;
    }

    .zak-hero::after {
      background: linear-gradient(
        180deg,
        rgba(10, 12, 15, 0.52) 0%,
        rgba(10, 12, 15, 0.72) 100%
      );
    }

    .zak-hero h1 {
      font-size: clamp(28px, 9vw, 42px);
      max-width: 100%;
    }

    .zak-hero-desc {
      font-size: 15px;
      max-width: 100%;
    }

    .zak-register {
      padding: 38px 20px;
      background-size: cover;
      background-position: center center;
      background-attachment: scroll;
    }

    .zak-register-box {
      padding: 22px;
    }

    .zak-process {
      background-size: cover;
      background-position: center center;
      background-attachment: scroll;
    }

    .zak-process-inner {
      padding: 0 20px;
    }

    .zak-process-line {
      grid-template-columns: 1fr;
    }
  }
