body.requisites-page {
  --rq-blue: #103f73;
  --rq-blue-deep: #092f5b;
  --rq-orange: #f16b00;
  --rq-muted: #68798a;
  --rq-line: rgba(16, 63, 115, 0.13);
  --rq-shadow: 0 26px 70px rgba(49, 67, 95, 0.14);
}

body.requisites-page .header__nav-link.is-current,
body.requisites-page .header-mobile-menu__link.is-current {
  color: var(--rq-orange);
}

.rq-main {
  overflow: hidden;
  padding-bottom: 80px;
}

.rq-hero {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1580px;
  min-height: 620px;
  margin: 16px auto 0;
  padding: 146px 64px 48px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: #f8f5ef;
  box-shadow: var(--rq-shadow);
}

.rq-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.rq-hero__veil {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 68%;
  background: linear-gradient(
    90deg,
    rgba(255, 250, 244, 0.99) 0%,
    rgba(255, 250, 244, 0.97) 44%,
    rgba(255, 250, 244, 0.76) 68%,
    rgba(255, 250, 244, 0) 100%
  );
  pointer-events: none;
}

.rq-hero__copy {
  width: min(710px, 56%);
}

.rq-heading-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rq-heading-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  filter: drop-shadow(0 9px 13px rgba(174, 76, 0, 0.14));
}

.rq-hero .sv-breadcrumb {
  margin-bottom: 45px;
}

.rq-hero h1 {
  margin-top: 15px;
  color: var(--rq-blue);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(68px, 7.2vw, 112px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.rq-hero__lead {
  max-width: 650px;
  margin-top: 30px;
  color: #42576a;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.62;
}

.rq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.rq-copy-button,
.rq-link-button {
  display: inline-flex;
  min-height: 60px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font: 600 17px 'Poppins', sans-serif;
  cursor: pointer;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.rq-copy-button {
  border: 1px solid var(--rq-orange);
  color: #fff;
  background: var(--rq-orange);
  box-shadow: 0 14px 30px rgba(241, 107, 0, 0.2);
}

.rq-copy-button:hover,
.rq-copy-button:focus-visible,
.rq-link-button:hover,
.rq-link-button:focus-visible {
  transform: translateY(-2px);
}

.rq-copy-button:hover,
.rq-copy-button:focus-visible {
  border-color: #df6000;
  background: #df6000;
}

.rq-copy-button.is-copied {
  border-color: #17765a;
  background: #17765a;
}

.rq-link-button {
  border: 1px solid rgba(16, 63, 115, 0.18);
  color: var(--rq-blue);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.rq-link-button:hover,
.rq-link-button:focus-visible {
  border-color: rgba(16, 63, 115, 0.32);
  background: rgba(255, 255, 255, 0.9);
}

.rq-keyfacts,
.rq-section {
  width: calc(100% - 128px);
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.rq-keyfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.rq-keyfacts article {
  position: relative;
  min-height: 176px;
  padding: 30px 28px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 100%, rgba(210, 228, 244, 0.7), transparent 46%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(34, 62, 90, 0.08);
}

.rq-keyfacts article:nth-child(2) {
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 215, 179, 0.65), transparent 46%),
    rgba(255, 255, 255, 0.72);
}

.rq-keyfacts dl {
  display: grid;
  gap: 20px;
}

body.requisites-page .rq-keyfacts dt {
  color: var(--rq-orange);
  font: 600 clamp(17px, 1.2vw, 20px)/1.35 'Poppins', sans-serif !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.requisites-page .rq-keyfacts dd {
  max-width: calc(100% - 38px);
  color: var(--rq-blue);
  font: 600 clamp(34px, 2.7vw, 44px)/1.08 'Tinos', serif !important;
  overflow-wrap: anywhere;
}

.rq-section {
  margin-top: 118px;
}

.rq-section__head {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.rq-section__head h2 {
  margin-top: 13px;
  color: var(--rq-blue);
  font-family: 'Tinos', serif;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.rq-section__head h2 span {
  color: var(--rq-orange);
}

.rq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.rq-card {
  position: relative;
  display: flex;
  min-height: 360px;
  min-width: 0;
  padding: clamp(22px, 2vw, 30px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 100%, rgba(207, 226, 243, 0.64), transparent 42%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(34, 62, 90, 0.08);
}

.rq-card:nth-child(2),
.rq-card:nth-child(4) {
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 211, 172, 0.54), transparent 42%),
    rgba(255, 255, 255, 0.72);
}

.rq-card__number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: rgba(16, 63, 115, 0.19);
  font: 600 14px 'Poppins', sans-serif;
}

.rq-card__label {
  color: var(--rq-orange);
  font: 600 13px 'Poppins', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rq-card h3 {
  max-width: calc(100% - 30px);
  margin-top: 10px;
  color: var(--rq-blue);
  font-family: 'Tinos', serif;
  font-size: clamp(25px, 1.85vw, 30px);
  line-height: 1.04;
}

.rq-card dl {
  display: grid;
  margin-top: 18px;
}

.rq-card dl > div {
  display: grid;
  padding: 9px 0;
  grid-template-columns: minmax(74px, 0.38fr) minmax(0, 1fr);
  gap: 8px;
  border-top: 1px solid var(--rq-line);
}

body.requisites-page .rq-card dt {
  color: #7b8794;
  font: 500 15px/1.4 'Poppins', sans-serif !important;
}

body.requisites-page .rq-card dd {
  color: #263f58;
  font: 500 17px/1.45 'Poppins', sans-serif !important;
  overflow-wrap: anywhere;
}

.rq-card dd a {
  color: var(--rq-blue);
}

.rq-card__link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 10px;
  gap: 9px;
  align-items: center;
  color: var(--rq-orange);
  font: 600 15px 'Poppins', sans-serif;
}

body.requisites-page .sv-footer {
  background: rgba(255, 252, 247, 0.82);
}

@media (max-width: 1280px) {
  .rq-hero {
    width: calc(100% - 48px);
    padding-right: 42px;
    padding-left: 42px;
  }

  .rq-keyfacts,
  .rq-section {
    width: calc(100% - 80px);
  }

}

@media (max-width: 992px) {
  .rq-hero {
    min-height: 760px;
    padding: 132px 36px 300px;
  }

  .rq-hero__image {
    object-position: 70% 68%;
  }

  .rq-hero__veil {
    inset: 0;
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 250, 244, 0.99) 0%,
      rgba(255, 250, 244, 0.97) 54%,
      rgba(255, 250, 244, 0.52) 70%,
      rgba(255, 250, 244, 0) 88%
    );
  }

  .rq-hero__copy {
    width: 100%;
  }

  .rq-keyfacts {
    grid-template-columns: 1fr;
  }

  .rq-keyfacts article {
    min-height: 168px;
  }

}

@media (max-width: 700px) {
  .rq-main {
    padding-bottom: 52px;
  }

  .rq-hero {
    width: calc(100% - 32px);
    min-height: 720px;
    margin-top: 16px;
    padding: 28px 20px 290px;
    border-radius: 20px;
  }

  .rq-hero .sv-breadcrumb {
    margin-bottom: 30px;
  }

  .rq-heading-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .rq-hero h1 {
    margin-top: 14px;
    font-size: 52px;
  }

  .rq-hero__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .rq-hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .rq-copy-button,
  .rq-link-button {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .rq-keyfacts,
  .rq-section {
    width: calc(100% - 32px);
  }

  .rq-keyfacts {
    gap: 10px;
    margin-top: 16px;
  }

  .rq-keyfacts article {
    min-height: 150px;
    padding: 24px 22px;
    border-radius: 22px;
  }

  .rq-section {
    margin-top: 78px;
  }

  .rq-section__head {
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rq-section__head h2 {
    font-size: 38px;
  }

  .rq-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .rq-card {
    min-height: 330px;
    padding: 25px 23px;
    border-radius: 22px;
  }

  .rq-card h3 {
    font-size: 26px;
  }

}

@media (max-width: 390px) {
  .rq-heading-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .rq-hero {
    min-height: 690px;
    padding-bottom: 270px;
  }

  .rq-card {
    padding: 21px 19px;
  }

  .rq-card h3 {
    font-size: 23px;
  }

  .rq-card dl {
    margin-top: 13px;
  }

  .rq-card dl > div {
    padding: 8px 0;
    grid-template-columns: minmax(68px, 0.36fr) minmax(0, 1fr);
  }

  .rq-card__link {
    font-size: 14px;
  }
}
