/* Required applications page */
.downloads-page {
  background: #f7f8f9;
}
.downloads-hero {
  border-bottom: 1px solid #dfe3e8;
  background-color: #fafafa;
  background-image: linear-gradient(rgba(17,24,39,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(17,24,39,.022) 1px,transparent 1px);
  background-size: 48px 48px;
}
.downloads-hero-grid {
  width: min(calc(100% - 48px),1320px);
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 430px;
  align-items: center;
  gap: clamp(60px,8vw,120px);
  padding-block: 68px;
}
.downloads-hero-copy {
  max-width: 720px;
}
.downloads-hero-copy .breadcrumb {
  margin-bottom: 36px;
}
.downloads-hero-copy h1 {
  max-width: 720px;
  margin-top: 15px;
  color: var(--ink);
  font-size: clamp(49px,5vw,72px);
  line-height: .98;
  letter-spacing: -.055em;
}
.downloads-hero-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #5e6877;
  font-size: 17px;
  line-height: 1.7;
}
.downloads-hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 29px;
}
.downloads-hero-actions .btn {
  min-height: 50px;
  border-radius: 8px;
}
.downloads-hero-actions .btn span {
  margin-left: 13px;
}
.downloads-hero-actions > a:last-child {
  color: #303a49;
  font-size: 14px;
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: #aeb5be;
  text-underline-offset: 6px;
}
.downloads-hero-actions > a:last-child:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}
.downloads-system {
  border: 1px solid #d9dee4;
  border-top: 3px solid var(--red);
  background: #fff;
  box-shadow: 0 22px 52px rgba(17,24,39,.075);
}
.downloads-system-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 23px;
  border-bottom: 1px solid #e4e7eb;
  color: #65707f;
  font-size: 12px;
}
.downloads-system-head b {
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
}
.downloads-system ol {
  margin: 0;
  padding: 8px 23px;
  list-style: none;
}
.downloads-system li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #e7e9ec;
}
.downloads-system li:last-child {
  border-bottom: 0;
}
.downloads-system li > b {
  color: var(--red);
  font-size: 11px;
}
.downloads-system li span,
.downloads-system li strong {
  display: block;
}
.downloads-system li strong {
  margin-bottom: 3px;
  color: #242e3d;
  font-size: 14px;
}
.downloads-system li span {
  color: #747d8a;
  font-size: 12px;
  line-height: 1.5;
}
.downloads-system > p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 15px 23px;
  border-top: 1px solid #e4e7eb;
  color: #687180;
  background: #f8f9fa;
  font-size: 11px;
}
.downloads-system > p i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.downloads-content {
  padding: 78px 0 100px;
  border-top: 1px solid #e2e5e9;
  background: #f7f8f9;
}
.downloads-content > .container,
.downloads-support > .container {
  width: min(calc(100% - 48px),1320px);
}
.downloads-heading {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: end;
  gap: 60px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dce1e6;
}
.downloads-heading h2 {
  margin-top: 8px;
  font-size: clamp(31px,3vw,44px);
  letter-spacing: -.04em;
}
.downloads-heading > p {
  margin: 0;
  color: #65707f;
  font-size: 14px;
  line-height: 1.65;
}
.downloads-os {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid #dde1e6;
  background: #fff;
}
.downloads-os > span {
  color: #313b49;
  font-size: 13px;
  font-weight: 750;
}
.downloads-os > div {
  display: flex;
  gap: 5px;
}
.downloads-os button {
  min-height: 35px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #687180;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.downloads-os button:hover {
  color: var(--red);
  background: #fff5f5;
}
.downloads-os button.active {
  border-color: #efc2c2;
  color: var(--red);
  background: #fff4f4;
}
.downloads-os small {
  color: #8a929e;
  font-size: 11px;
}
.downloads-list {
  border-top: 1px solid #d9dee4;
}
.download-item {
  display: grid;
  grid-template-columns: 42px 58px minmax(0,1fr) 230px;
  align-items: center;
  gap: 22px;
  min-height: 190px;
  padding: 27px 20px;
  border-bottom: 1px solid #d9dee4;
  transition: background .22s ease, padding .22s ease;
}
.download-item:hover {
  padding-right: 14px;
  padding-left: 26px;
  background: #fff;
}
.download-index {
  align-self: start;
  padding-top: 5px;
  color: #a0a7b1;
  font-size: 11px;
  font-weight: 800;
}
.download-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #dce1e6;
  border-radius: 13px;
  color: #3d4857;
  background: #fff;
}
.download-icon-red {
  border-color: #efc3c3;
  color: var(--red);
  background: #fff5f5;
}
.download-icon svg {
  width: 25px;
  height: 25px;
}
.download-title {
  display: flex;
  align-items: center;
  gap: 9px;
}
.download-title span {
  color: var(--red);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.download-title small {
  padding-left: 9px;
  border-left: 1px solid #dce1e6;
  color: #8a929d;
  font-size: 10px;
}
.download-copy h3 {
  margin-top: 7px;
  color: #172131;
  font-size: 20px;
}
.download-copy > p {
  max-width: 690px;
  margin: 7px 0 0;
  color: #65707f;
  font-size: 13px;
  line-height: 1.6;
}
.download-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin: 12px 0 0;
  padding: 0;
  color: #7d8692;
  font-size: 10px;
  list-style: none;
}
.download-copy li::before {
  content: "·";
  margin-right: 6px;
  color: var(--red);
}
.download-action {
  padding-left: 22px;
  border-left: 1px solid #e0e4e8;
}
.download-action span,
.download-action strong {
  display: block;
}
.download-action span {
  color: #8a929d;
  font-size: 11px;
}
.download-action strong {
  margin-bottom: 3px;
  color: #4a5565;
  font-size: 11px;
}
.download-action button {
  width: 100%;
  min-height: 42px;
  margin-top: 13px;
  padding: 0 12px;
  border: 1px solid #dce1e6;
  border-radius: 7px;
  color: #9299a3;
  background: #f4f5f6;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  cursor: not-allowed;
}
.downloads-support {
  padding: 90px 0;
  border-top: 1px solid #dfe3e8;
  background: #fff;
}
.downloads-support-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 410px;
  gap: clamp(70px,10vw,150px);
}
.downloads-checklist h2,
.downloads-help h2 {
  margin-top: 9px;
  font-size: clamp(29px,3vw,42px);
  letter-spacing: -.04em;
}
.downloads-checklist ul {
  margin: 31px 0 0;
  padding: 0;
  border-top: 1px solid #dce1e6;
  list-style: none;
}
.downloads-checklist li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid #dce1e6;
}
.downloads-checklist li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--red);
  background: #fff1f1;
  font-size: 11px;
  font-weight: 900;
}
.downloads-checklist p,
.downloads-checklist strong {
  display: block;
  margin: 0;
}
.downloads-checklist p {
  color: #687180;
  font-size: 12px;
  line-height: 1.55;
}
.downloads-checklist strong {
  margin-bottom: 3px;
  color: #222c3a;
  font-size: 14px;
}
.downloads-help {
  padding: 34px;
  border: 1px solid #e6b7b7;
  background: #fff8f7;
}
.downloads-help > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.downloads-help > p {
  margin: 18px 0 23px;
  color: #626c7a;
  font-size: 14px;
  line-height: 1.65;
}
.downloads-help .btn {
  width: 100%;
  min-height: 49px;
  justify-content: space-between;
}
.downloads-help > small {
  display: block;
  margin-top: 13px;
  color: #8a929d;
  font-size: 10px;
  text-align: center;
}
@media(max-width:950px) {
  .downloads-hero-grid,
  .downloads-support-grid {
    grid-template-columns: 1fr;
  }
  .downloads-system,
  .downloads-help {
    max-width: 620px;
  }
  .downloads-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .download-item {
    grid-template-columns: 34px 54px minmax(0,1fr);
  }
  .download-action {
    grid-column: 3;
    padding: 0;
    border-left: 0;
  }
  .download-action button {
    width: auto;
  }
}

/* Required applications — horizontal light cards */
.required-apps-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.required-apps-head > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.required-apps-head h2 {
  margin-top: 9px;
  color: var(--ink);
  font-size: clamp(34px,4vw,52px);
  letter-spacing: -.05em;
}
.required-apps-head p {
  margin: 13px 0 0;
  color: #687180;
  font-size: 14px;
  line-height: 1.6;
}
.required-apps-list {
  display: grid;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}
.required-app-row {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0,1fr) 170px 112px;
  align-items: center;
  gap: 24px;
  min-height: 142px;
  padding: 23px 25px;
  border: 1px solid #e0e4e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(17,24,39,.035);
  overflow: hidden;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}
.required-app-row::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--red);
  transform: scaleY(.28);
  transition: transform .24s ease;
}
.required-app-row:hover {
  border-color: #efbaba;
  box-shadow: 0 15px 38px rgba(17,24,39,.075);
  transform: translateX(5px);
}
.required-app-row:hover::before {
  transform: scaleY(1);
}
.required-app-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid #e1e5e9;
  border-radius: 15px;
  color: #293445;
  background: #f8f9fa;
}
.required-app-icon svg {
  width: 43px;
  height: 43px;
}
.required-app-icon-java {
  color: #d97706;
  background: #fffbeb;
}
.required-app-icon-card {
  color: #9a7b22;
  background: #fffbed;
}
.required-app-icon-sign {
  color: #1f2937;
}
.required-app-icon-anydesk {
  color: #ef3e42;
  background: #fff5f5;
}
.required-app-copy > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.required-app-copy h3 {
  margin-top: 5px;
  color: #172131;
  font-size: 20px;
  letter-spacing: -.02em;
}
.required-app-copy p {
  max-width: 620px;
  margin: 7px 0 0;
  color: #687180;
  font-size: 13px;
  line-height: 1.55;
}
.required-app-meta {
  padding-left: 20px;
  border-left: 1px solid #e2e5e9;
}
.required-app-meta strong,
.required-app-meta span {
  display: block;
}
.required-app-meta strong {
  color: #354052;
  font-size: 12px;
}
.required-app-meta span {
  margin-top: 5px;
  color: #8a929e;
  font-size: 10px;
  line-height: 1.4;
}
.required-app-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(211,47,47,.17);
  font: inherit;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.required-app-download:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-2px);
}
.required-app-download span {
  font-size: 15px;
}
@media(max-width:900px) {
  .required-app-row {
    grid-template-columns: 72px minmax(0,1fr) 112px;
  }
  .required-app-meta {
    display: none;
  }
}
@media(max-width:620px) {
  .required-apps-head {
    margin-bottom: 28px;
    text-align: left;
  }
  .required-app-row {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 20px;
  }
  .required-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }
  .required-app-icon svg {
    width: 34px;
    height: 34px;
  }
  .required-app-copy p {
    font-size: 12px;
  }
  .required-app-download {
    grid-column: 1 / -1;
    width: 100%;
  }
}

