/* Section */

.support-page {
  background: #fff;
  color: #111;
}

/* Section */

.support-container {
  width: min(1180px, calc(100% - 4rem));
  margin: 0 auto;
}

/* Section */

.support-hero {
  background: #fff;
  padding: clamp(5rem, 8vw, 7rem) 0 4rem;
}

.support-eyebrow {
  margin: 0 0 1.3rem;
  font-size: 0.55rem;
  line-height: 1;
  letter-spacing: 0.28em;
  color: #999;
  text-transform: uppercase;
}

.support-title {
  margin: 0;
  font-family: "Encode Sans Expanded", var(--font-body), sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-transform: uppercase;
  color: #050505;
}

/* Section */

.support-search {
  width: min(345px, 100%);
  height: 37px;
  margin: 2rem auto 2.1rem;
  display: flex;
  align-items: center;
  border: 1px solid #d6d6d6;
  background: #fff;
  box-sizing: border-box;
}

.support-search svg {
  width: 14px;
  height: 14px;
  margin-left: 13px;
  flex: 0 0 auto;
  fill: none;
  stroke: #999;
  stroke-width: 1.4;
  stroke-linecap: round;
}

.support-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0 12px;
  background: transparent;
  color: #111;
  font: inherit;
}

/* Section */

.support-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.support-category {
  height: 24px;
  padding: 0 13px;
  border: 1px solid #d5d5d5;
  background: #fff;
  color: #777;
  font-size: 0.52rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.support-category:hover,
.support-category.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* Section */

.support-faq {
  width: min(440px, 100%);
  border-top: 1px solid #dedede;
}

.support-faq-item {
  border-bottom: 1px solid #dedede;
}

.support-faq-question {
  width: 100%;
  min-height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.support-faq-plus {
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.support-faq-item.open .support-faq-plus {
  transform: rotate(45deg);
  color: #111;
}

.support-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.support-faq-answer p {
  overflow: hidden;
  margin: 0;
  color: #777;
  font-size: 0.72rem;
  line-height: 1.55;
}

.support-faq-item.open .support-faq-answer {
  grid-template-rows: 1fr;
}

.support-faq-item.open .support-faq-answer p {
  padding: 0 2rem 1rem 0;
}

/* Section */

.support-contact {
  background: #eee;
  padding: 1.2rem 0 2.3rem;
  border-radius: 4px 4px 0 0;
}

.support-contact-title {
  margin: 0 0 1.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.support-contact-intro {
  margin: 0 0 1.6rem;
  color: #555;
  font-size: 0.76rem;
  line-height: 1.4;
}

.support-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.support-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  width: fit-content;
  color: #111;
  text-decoration: none;
}

.support-contact-icon {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  display: inline-flex;
  color: #d51b08;
  flex: 0 0 14px;
}

.support-contact-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-contact-content {
  display: flex;
  flex-direction: column;
}

.support-contact-content strong {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
}

.support-contact-content small {
  color: #777;
  font-size: 0.7rem;
  line-height: 1.4;
}

/* Section */

@media (min-width: 1100px) {
  .support-container {
    width: min(1180px, calc(100% - 6rem));
  }

  .support-hero {
    min-height: 620px;
    box-sizing: border-box;
  }

  .support-contact-list {
    gap: 1.3rem;
  }
}

/* Section */

@media (max-width: 900px) {
  .support-container {
    width: min(720px, calc(100% - 2.5rem));
  }

  .support-hero {
    padding-top: 5rem;
  }

  .support-title {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .support-search {
    margin-left: 0;
    width: min(400px, 100%);
  }

  .support-faq {
    width: min(600px, 100%);
  }
}

/* Section */

@media (max-width: 560px) {
  .support-container {
    width: calc(100% - 2rem);
  }

  .support-hero {
    padding: 4rem 0 3rem;
  }

  .support-eyebrow {
    margin-bottom: 1rem;
  }

  .support-title {
    font-size: clamp(3rem, 14vw, 4.3rem);
    line-height: 0.88;
  }

  .support-search {
    width: 100%;
    margin: 2rem 0 1.5rem;
  }

  .support-categories {
    gap: 6px;
    margin-bottom: 1.5rem;
  }

  .support-category {
    height: 27px;
    padding: 0 10px;
    font-size: 0.48rem;
  }

  .support-faq {
    width: 100%;
  }

  .support-faq-question {
    min-height: 50px;
    font-size: 0.72rem;
  }

  .support-contact {
    padding: 1.5rem 0 2.5rem;
  }
}
