.banner {
  padding: 148px 0 100px;
  background: url('../img/support/banner.png') no-repeat center top / cover;
}
.banner .banner-tit {
  color: #10151A;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.banner .banner-desc {
  max-width: 860px;
  margin: 28px auto 0;
  color: #676767;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
}
.wrap1 {
  padding: 0 0 150px;
}
.wrap1 .wrap1-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 52px;
}
.wrap1 .wrap1-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  padding: 62px 35px 46px;
  border-radius: 24px;
  border: 1px solid #e3e3e380;
  background: #FFF;
  box-shadow: 0 19px 36.8px 0 rgba(0, 0, 0, 0.06);
}
.wrap1 .wrap1-card-icon {
  display: block;
  width: 60px;
  height: 60px;
}
.wrap1 .wrap1-card-tit {
  margin-top: 28px;
  color: #212123;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.wrap1 .wrap1-card-desc {
  margin-top: 20px;
  color: rgba(33, 33, 35, 0.8);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.wrap1 .wrap1-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: #E70216;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.wrap1 .wrap1-card-link:hover {
  opacity: 0.8;
}
.wrap1 .wrap1-card-arrow {
  display: block;
  width: 18px;
  height: auto;
  transition: transform 0.2s ease;
}
.wrap1 .wrap1-card-link:hover .wrap1-card-arrow {
  transform: translateX(4px);
}
.wrap1 .wrap1-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  padding: 14px 28px;
  border-radius: 11px;
  background: #E70216;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease;
}
.wrap1 .wrap1-card-btn .icon-arrow {
  width: 14px;
  height: auto;
  transition: transform 0.2s ease;
}
.wrap1 .wrap1-card-btn:hover {
  box-shadow: 0 18px 34px rgba(242, 1, 66, 0.3);
}
.wrap1 .wrap1-card-btn:hover .icon-arrow {
  transform: translateX(8px);
}
.wrap2 {
  position: relative;
  padding: 80px 0 100px;
  background: #F6F6F6;
  overflow: hidden;
  scroll-margin-top: 90px;
}
.wrap2::after {
  content: '';
  position: absolute;
  border-radius: 652.302px;
  border: 88px solid #222;
  opacity: 0.05;
  top: -18%;
  right: -6%;
  width: 350px;
  height: 350px;
  box-shadow: 0 4px 4px 88px rgba(26, 26, 26, 0.48);
}
.wrap2 .container {
  position: relative;
  z-index: 1;
}
.wrap2 .wrap2-tit {
  color: #10151A;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.wrap2 .wrap2-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 36px auto 0;
  padding: 6px;
  border-radius: 33554400px;
  background: rgba(0, 0, 0, 0.06);
  width: fit-content;
}
.wrap2 .wrap2-tab {
  min-width: 175px;
  padding: 15px 32px;
  text-align: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #000;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wrap2 .wrap2-tab.active {
  background: #fff;
  color: #10151A;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.wrap2 .faq-list {
  margin-top: 36px;
}
.wrap2 .faq-panel {
  display: none;
}
.wrap2 .faq-panel.active {
  display: block;
}
.wrap2 .faq-item {
  border: 1px solid #DBDBDB;
  background: #FFF;
}
.wrap2 .faq-item + .faq-item {
  margin-top: 24px;
}
.wrap2 .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px;
  border: none;
  background: transparent;
  color: #10151A;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}
.wrap2 .faq-arrow {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  transition: transform 0.2s ease;
}
.wrap2 .faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
}
.wrap2 .faq-answer {
  max-height: 0;
  padding: 0 18px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}
.wrap2 .faq-answer p {
  color: #464646;
  font-size: 20px;
  line-height: 1.7;
}
.wrap2 .faq-answer p strong {
  color: #0E0E0D;
}
.wrap2 .faq-answer p + p {
  margin-top: 8px;
}
.wrap2 .faq-answer p a {
  color: #E70216;
}
.wrap2 .faq-answer p + ul {
  margin: 6px 0;
}
.wrap2 .faq-answer .faq-note {
  margin-top: 8px;
  color: #969696;
  font-size: 20px;
  line-height: 1.7;
}
.wrap2 .faq-bullets {
  padding-left: 35px;
}
.wrap2 .faq-bullets li {
  font-size: 20px;
  line-height: 1.7;
  color: #464646;
}
.wrap2 .faq-bullets li + li {
  margin-top: 8px;
}
.wrap2 .faq-bullet-strong {
  color: #10151A;
}
.wrap2 .faq-bullet-muted {
  color: #464646;
}
.wrap2 .faq-steps {
  padding-left: 22px;
}
.wrap2 .faq-steps li {
  color: #464646;
  font-size: 20px;
  line-height: 1.7;
}
.wrap2 .faq-steps li + li {
  margin-top: 4px;
}
.wrap2 .faq-item.is-open .faq-answer {
  max-height: 900px;
  padding: 0 18px 32px;
  opacity: 1;
}
.wrap2 .wrap2-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 270px;
  width: max-content;
  margin: 40px auto 0;
  padding: 20px 28px;
  border: 1px solid #FA2A42;
  border-radius: 999px;
  background: #FFF;
  color: #FA2A42;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease;
}
.wrap2 .wrap2-more:hover {
  background: rgba(250, 42, 66, 0.05);
}
.wrap2 .wrap2-more-arrow {
  width: 15px;
  height: auto;
  transition: transform 0.2s ease;
}
.wrap2 .wrap2-more:hover .wrap2-more-arrow {
  transform: translateX(4px);
}
.wrap2 .faq-inline-link {
  color: #FA2A42;
  text-decoration: none;
}
@media (max-width: 996px) {
  .banner {
    padding: 60px 0 80px;
  }
  .banner .banner-tit {
    font-size: 36px;
  }
  .banner .banner-desc {
    font-size: 16px;
  }
  .wrap1 {
    padding-bottom: 100px;
  }
  .wrap1 .wrap1-list {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .wrap1 .wrap1-card {
    min-height: auto;
  }
  .wrap2 {
    padding: 60px 0 80px;
  }
  .wrap2 .wrap2-tit {
    font-size: 36px;
  }
  .wrap2 .faq-question {
    font-size: 18px;
  }
  .wrap2 .faq-answer p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .banner {
    padding: 48px 0 64px;
    background-position: top left;
  }
  .banner .banner-tit {
    font-size: 32px;
  }
  .banner .banner-desc {
    margin-top: 16px;
    font-size: 14px;
  }
  .wrap1 {
    margin-top: -24px;
    padding-bottom: 80px;
  }
  .wrap1 .wrap1-card {
    padding: 28px 24px;
    border-radius: 16px;
  }
  .wrap2 {
    padding: 48px 0 64px;
  }
  .wrap2 .wrap2-tit {
    font-size: 32px;
  }
  .wrap2 .wrap2-tabs {
    width: 100%;
    max-width: 360px;
  }
  .wrap2 .wrap2-tab {
    min-width: 0;
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
  }
  .wrap2 .faq-list {
    margin-top: 24px;
  }
  .wrap2 .faq-item + .faq-item {
    margin-top: 16px;
  }
  .wrap2 .faq-question {
    padding: 18px;
    font-size: 16px;
    gap: 12px;
  }
  .wrap2 .faq-arrow {
    width: 20px;
    height: 20px;
  }
  .wrap2 .faq-answer p,
  .wrap2 .faq-answer .faq-note {
    font-size: 14px;
  }
  .wrap2 .faq-bullets li,
  .wrap2 .faq-steps li {
    font-size: 14px;
  }
  .wrap2 .faq-item.is-open .faq-answer {
    padding: 0 18px 24px;
  }
  .wrap2 .wrap2-more {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    padding: 16px 24px;
  }
  .wrap2 .wrap2-more-arrow {
    width: 12px;
  }
}
