.download-hero {
  background: #eaf1f5;
}

.download-hero aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
}

.download-hero aside span {
  color: var(--muted);
}

.download-hero aside a {
  color: var(--blue);
  font-weight: 700;
}

.downloads-page {
  padding-top: 70px;
  padding-bottom: 120px;
}

.download-heading,
.download-items a {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 30px;
}

.download-heading {
  padding: 0 24px 13px;
  color: #8795a2;
  font-size: 12px;
}

.download-heading span:last-child {
  text-align: right;
}

.download-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-items a {
  padding: 23px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: .2s;
}

.download-items a:hover {
  border-color: #a8bdd0;
  transform: translateX(5px);
}

.download-items>a>span {
  color: var(--blue);
  font-weight: 700;
}

.download-items h2 {
  margin: 0;
  font-size: 20px;
}

.download-items p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.download-items b {
  text-align: right;
  font-size: 20px;
}

.download-empty {
  padding: 75px 30px;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.download-empty>span {
  color: var(--blue);
  font-weight: 700;
}

.download-empty h2 {
  margin: 14px 0 5px;
  font-size: 35px;
}

.download-empty p {
  color: var(--muted);
}

.download-empty .button {
  margin-top: 20px;
}

.contact-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.contact-side {
  display: flex;
  min-height: 780px;
  flex-direction: column;
  justify-content: space-between;
  padding: 150px max(55px, calc((100vw - 1280px)/2)) 75px var(--pad);
  background: #152b3f;
  color: #fff;
}

.contact-side h1 {
  margin: 20px 0;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-side>div>p {
  max-width: 610px;
  color: #adbfca;
}

.contact-side dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 55px 0 0;
}

.contact-side dl div:last-child {
  grid-column: 1/-1;
}

.contact-side dt {
  color: #89a1b0;
  font-size: 12px;
}

.contact-side dd {
  margin: 4px 0 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 145px var(--pad) 70px max(55px, calc((100vw - 1280px)/2));
  background: #fff;
  color: var(--ink);
}

.form-head h2 {
  max-width: 580px;
  margin: 12px 0 3px;
  font-size: 34px;
  line-height: 1.35;
}

.form-head p {
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  outline: none;
  background: #f9fbfd;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 224, .1);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-submit small {
  color: #8996a3;
}

.form-message {
  padding: 12px 14px;
  border-radius: 6px;
}

.form-message.success {
  background: #edf7dd;
  color: #43620a;
}

.form-message.error {
  background: #fff0f0;
  color: #a32b2b;
}

.not-found {
  min-height: 80svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 130px var(--pad) 80px;
}

.not-found-code {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6e1ea;
  font-size: clamp(110px, 18vw, 260px);
  font-weight: 700;
  line-height: 1;
}

.not-found-code i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--lime);
}

.not-found h1 {
  margin: 15px 0;
  font-size: 46px;
}

.not-found p {
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

/* Footer */