.support-page {
  min-height: 100vh;
  color: #000;
  background: #f8f9fc;
  font-family: "Poppins", Arial, sans-serif;
}

.support-page main {
  background: #f8f9fc;
  overflow: hidden;
}

.support-page button,
.support-page input {
  font: inherit;
}

.support-page button {
  color: inherit;
}

.support-page [hidden] {
  display: none !important;
}

.downloads-canvas {
  background: #f8f9fc;
}

.downloads-shell {
  width: min(1680px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 120px 0 110px;
}

.downloads-top {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.downloads-top h1 {
  margin: 0;
  color: #000;
  font-size: clamp(52px, 3.75vw, 72px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.downloads-search {
  width: 340px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;
}

.downloads-search span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #000;
}

.downloads-search span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.downloads-search span::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.downloads-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #000;
  font-size: 18px;
  line-height: 1.2;
}

.downloads-search input::placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
  text-transform: capitalize;
}

.downloads-layout {
  display: grid;
  grid-template-columns: 404px minmax(0, 1fr);
  gap: 31px;
  margin-top: 60px;
  align-items: start;
}

.downloads-sidebar {
  min-height: 986px;
  padding: 40px 28px;
  border-radius: 10px;
  background: #fff;
}

.downloads-sidebar-heading {
  margin: 0 0 21px 16px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.downloads-sidebar-heading-energy {
  margin-top: 40px;
}

.downloads-menu-group + .downloads-menu-group {
  margin-top: 16px;
}

.support-page .downloads-menu-head {
  width: 100%;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px 0 25px;
  border: 0;
  border-radius: 6px;
  background: #f8f8f8;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.support-page .downloads-menu-head span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background-color: #000;
  mask: url("assets/support/menu-chevron-right.svg") center / 22px 22px no-repeat;
  -webkit-mask: url("assets/support/menu-chevron-right.svg") center / 22px 22px no-repeat;
  transition: background-color 180ms ease;
}

.support-page .downloads-menu-group.is-open .downloads-menu-head span {
  background-color: #008c38;
  mask: url("assets/support/menu-chevron-down.svg") center / 22px 22px no-repeat;
  -webkit-mask: url("assets/support/menu-chevron-down.svg") center / 22px 22px no-repeat;
}

.downloads-submenu {
  min-height: 322px;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 20px 25px 26px;
  border-radius: 0 0 6px 6px;
  background: #f8f8f8;
}

.downloads-menu-group:not(.is-open) .downloads-submenu {
  display: none;
}

.downloads-submenu button {
  width: 100%;
  height: 43px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.downloads-submenu button.is-active {
  color: #008c38;
}

.downloads-content {
  min-width: 0;
}

.downloads-breadcrumb {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.support-page .downloads-crumb,
.downloads-crumb-separator {
  color: rgba(0, 0, 0, 0.6);
}

.support-page .downloads-crumb {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.support-page .downloads-crumb:hover,
.support-page .downloads-crumb:focus-visible {
  color: #000;
}

.support-page .downloads-crumb.is-current {
  color: #000;
  font-weight: 400;
  cursor: default;
}

.support-page .downloads-crumb:focus-visible {
  outline: 2px solid rgba(0, 140, 56, 0.35);
  outline-offset: 4px;
  border-radius: 2px;
}

.downloads-crumb-product {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.downloads-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 296px));
  gap: 20px;
  margin-top: 24px;
}

.download-product-card {
  width: 100%;
  height: 296px;
  display: grid;
  grid-template-rows: 240px 1fr;
  justify-items: center;
  align-items: start;
  padding: 0 28px 18px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.download-product-card:hover,
.download-product-card:focus-visible {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.download-product-media {
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.download-product-media img {
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 55%;
  object-fit: contain;
}

.download-product-card strong {
  width: 200px;
  margin-top: 10px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.downloads-detail-hero strong {
  width: 200px;
  margin-top: 10px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.downloads-empty {
  margin: 76px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1.5;
}

.downloads-detail {
  margin-top: 24px;
}

.downloads-detail.is-entering .downloads-detail-hero,
.downloads-detail.is-entering .downloads-resource-panel {
  animation: downloads-detail-enter 640ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.downloads-detail.is-entering .downloads-resource-panel:nth-of-type(1) {
  animation-delay: 90ms;
}

.downloads-detail.is-entering .downloads-resource-panel:nth-of-type(2) {
  animation-delay: 150ms;
}

.downloads-detail.is-entering .downloads-resource-panel:nth-of-type(3) {
  animation-delay: 210ms;
}

.downloads-detail-hero,
.downloads-resource-panel {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background: #fff;
}

.downloads-detail-hero {
  height: 296px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding-top: 0;
}

.downloads-close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.downloads-close img {
  width: 100%;
  height: 100%;
}

.downloads-detail-media {
  margin-top: 0;
}

.downloads-resource-panel {
  min-height: 246px;
  margin-top: 24px;
  padding: 40px;
}

.downloads-resource-panel h2 {
  margin: 0;
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.downloads-file-grid,
.downloads-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 368px));
  gap: 30px;
  margin-top: 31px;
}

.downloads-file-grid button {
  height: 92px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  padding: 0 30px;
  border: 0;
  border-radius: 10px;
  background: #f8f8f8;
  color: #000;
  text-align: left;
  cursor: pointer;
}

.downloads-file-grid img {
  width: 38px;
  height: 38px;
}

.downloads-file-grid span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
}

.downloads-video-panel {
  min-height: 361px;
}

.downloads-video-grid button {
  position: relative;
  height: 207px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #e8e8e8;
  cursor: pointer;
}

.downloads-video-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.downloads-video-grid span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  background: url("assets/support/play-icon.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

@keyframes downloads-detail-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 28px, 0) scale(0.99);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .downloads-detail.is-entering .downloads-detail-hero,
  .downloads-detail.is-entering .downloads-resource-panel {
    animation-duration: 1ms;
    animation-delay: 0ms;
  }
}

.support-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 18px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.contact-us-page main {
  background: #fff;
}

.contact-hero {
  min-height: 1000px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 99px;
  background: #d8d8d8 url("assets/support/contact-bg.jpg") center / cover no-repeat;
}

.contact-card {
  width: min(642px, calc(100vw - 48px));
  min-height: 801px;
  padding: 60px 78px 42px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.contact-card h1 {
  margin: 0;
  color: #000;
  font-size: clamp(40px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: capitalize;
}

.contact-card > p {
  width: 100%;
  margin: 16px auto 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.contact-field {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.contact-field span {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-field input {
  width: 100%;
  height: 63px;
  padding: 0 24px;
  border: 2px solid #e9e9e9;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input::placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.contact-field input:focus {
  border-color: #008c38;
  box-shadow: 0 0 0 4px rgba(0, 140, 56, 0.1);
}

.contact-field input.is-invalid {
  border-color: #d43c2f;
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.contact-form button {
  width: 280px;
  height: 60px;
  justify-self: center;
  margin-top: 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #008c38;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #007a31;
  transform: translateY(-1px);
}

.contact-status {
  min-height: 22px;
  margin: 0;
  color: #008c38;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1440px) {
  .downloads-shell {
    width: min(1260px, calc(100vw - 48px));
  }

  .downloads-layout {
    grid-template-columns: 304px minmax(0, 1fr);
    gap: 24px;
  }

  .downloads-sidebar {
    padding: 30px 22px;
  }

  .downloads-sidebar-heading {
    margin: 0 0 21px 10px;
  }

  .support-page .downloads-menu-head {
    height: 48px;
    padding: 0 15px 0 18px;
  }

  .downloads-submenu {
    min-height: 268px;
    padding: 14px 18px 20px;
  }

  .downloads-submenu button {
    height: 32px;
  }

  .downloads-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .download-product-card {
    height: 222px;
    grid-template-rows: 166px 1fr;
    padding: 0 18px 12px;
  }

  .download-product-media {
    width: 166px;
    height: 166px;
  }

  .downloads-detail-hero {
    height: 222px;
  }

  .downloads-detail-media {
    width: 240px;
    height: 140px;
    margin-top: 31px;
  }

  .downloads-detail-media img {
    max-width: 60%;
    max-height: 60%;
  }

  .downloads-close {
    top: 30px;
    right: 30px;
    width: 32px;
    height: 32px;
  }

  .downloads-resource-panel {
    min-height: 187px;
    margin-top: 16px;
    padding: 30px;
  }

  .downloads-resource-panel h2 {
    font-size: 28px;
  }

  .downloads-file-grid,
  .downloads-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
    margin-top: 25px;
  }

  .downloads-file-grid button {
    height: 70px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 16px;
    padding: 0 24px;
  }

  .downloads-file-grid img {
    width: 30px;
    height: 30px;
  }

  .downloads-file-grid span {
    font-size: 16px;
    line-height: 1.25;
  }

  .downloads-video-panel {
    min-height: 270px;
  }

  .downloads-video-grid button {
    height: 154px;
  }

  .downloads-video-grid span {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 1020px) {
  .downloads-shell {
    padding: 84px 0 80px;
  }

  .downloads-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .downloads-search {
    width: min(420px, 100%);
  }

  .downloads-layout {
    grid-template-columns: 1fr;
  }

  .downloads-sidebar {
    min-height: auto;
  }

  .downloads-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .downloads-file-grid,
  .downloads-video-grid {
    grid-template-columns: 1fr;
  }

  .downloads-file-grid button,
  .downloads-video-grid button {
    width: 100%;
  }

  .contact-hero {
    min-height: 900px;
    padding: 64px 24px;
  }
}

@media (max-width: 760px) {
  .downloads-shell {
    width: calc(100vw - 40px);
    padding: 60px 0 64px;
  }

  .downloads-top h1 {
    font-size: 42px;
  }

  .downloads-search {
    height: 58px;
    border-radius: 8px;
  }

  .downloads-search input {
    font-size: 16px;
  }

  .downloads-sidebar {
    padding: 28px 20px;
  }

  .downloads-sidebar-heading {
    margin-left: 0;
    font-size: 17px;
  }

  .support-page .downloads-menu-head {
    height: 56px;
    padding: 0 14px 0 16px;
    font-size: 17px;
  }

  .downloads-submenu {
    min-height: auto;
    padding: 14px 16px 18px;
  }

  .downloads-submenu button {
    height: 36px;
    font-size: 15px;
  }

  .downloads-breadcrumb {
    flex-wrap: wrap;
    font-size: 16px;
  }

  .downloads-product-grid {
    grid-template-columns: 1fr;
  }

  .download-product-card {
    height: 260px;
    grid-template-rows: 205px 1fr;
  }

  .download-product-media {
    width: 205px;
    height: 205px;
  }

  .downloads-detail-hero {
    height: 260px;
  }

  .downloads-close {
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
  }

  .downloads-resource-panel {
    min-height: 0;
    padding: 26px 18px;
  }

  .downloads-resource-panel h2 {
    font-size: 26px;
  }

  .downloads-file-grid span {
    font-size: 16px;
  }

  .downloads-video-grid button {
    height: 190px;
  }

  .contact-hero {
    min-height: 820px;
    padding: 32px 20px 56px;
  }

  .contact-card {
    padding: 40px 24px 30px;
  }

  .contact-card > p {
    font-size: 16px;
  }

  .contact-form {
    gap: 18px;
    margin-top: 32px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .contact-field span {
    font-size: 17px;
  }

  .contact-field input {
    height: 56px;
    font-size: 16px;
  }

  .contact-form button {
    width: 100%;
    height: 56px;
    font-size: 18px;
  }
}
