.hero {
  padding: 100px 0 80px;
  background: url('../img/index/bg.webp') no-repeat center top / cover;
  overflow: hidden;
}
.hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 67px;
}
.hero .hero-left {
  flex: 0 0 540px;
  max-width: 540px;
}
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 36px;
  border: 1px solid #FFC3CB;
  background: rgba(255, 255, 255, 0.41);
  font-size: 18px;
  color: #FF3D4E;
  line-height: 1;
}
.hero .hero-badge img {
  width: 16px;
  height: 16px;
}
.hero h1 {
  margin-top: 36px;
  color: #000;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
}
.hero .hero-desc {
  margin-top: 26px;
  color: #676767;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
.hero .hero-platform {
  margin-top: 37px;
}
.hero .hero-platform-tabs {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(250, 157, 136, 0.18);
  margin-top: 26px;
}
.hero .hero-platform-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hero .hero-platform-tabs.is-mac .hero-platform-indicator {
  transform: translateX(100%);
}
.hero .hero-platform-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 74px;
  padding: 5px 15px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #2D2D2D;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.hero .hero-platform-tab img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hero .hero-platform-tab.active {
  color: #1B1B1B;
}
.hero .hero-platform-panel {
  display: none;
}
.hero .hero-platform-panel.active {
  display: block;
}
.hero .hero-btns {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 24px;
}
.hero .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 44px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.hero .hero-btn-trial {
  background: #E70216;
  color: #fff;
  position: relative;
}
.hero .hero-btn-trial::after {
  background-image: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.3), transparent);
  content: "";
  height: 100%;
  left: -200%;
  position: absolute;
  top: 0;
  transform: skew(-20deg);
  width: 200%;
}
.hero .hero-btn-trial .icon-arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.hero .hero-btn-trial:hover .icon-arrow {
  transform: translateX(8px);
}
.hero .hero-btn-trial:hover::after {
  animation: shine 1.6s ease;
}
@keyframes shine {
  to {
    left: 200%;
  }
}
.hero .hero-btn-buy {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #2D2D2D;
}
.hero .hero-btn-buy:hover {
  border-color: #ccc;
  background: #f8f8f8;
}
.hero .hero-right {
  flex: 1;
  min-width: 0;
}
.hero .hero-visual {
  position: relative;
  width: 100%;
}
.hero .hero-img-main {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
}
@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes hero-float-left {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(20px, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes hero-float-right {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-20px, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
.hero .hero-img-left,
.hero .hero-img-right,
.hero .hero-img-logo {
  position: absolute;
  z-index: 2;
  width: auto;
  max-width: 45%;
  animation: hero-float 2s ease-in-out infinite;
}
.hero .hero-img-left {
  left: -100px;
  bottom: -120px;
  animation-delay: 0s;
}
.hero .hero-img-right {
  right: -212px;
  bottom: 26px;
}
.hero .hero-img-logo {
  left: 31px;
  top: 85px;
  animation-delay: 1.2s;
}
@media (max-width: 1200px) {
  .hero .hero-left {
    flex: 0 0 460px;
    max-width: 460px;
  }
  .hero h1 {
    font-size: 40px;
  }
}
@media (max-width: 996px) {
  .hero {
    padding: 40px 0 0;
  }
  .hero .hero-content {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-left {
    flex: none;
    max-width: 100%;
  }
  .hero .hero-btns {
    justify-content: center;
  }
  .hero .hero-platform-tab {
    flex: 1;
    min-width: 0;
  }
  .hero .hero-right {
    width: 100%;
  }
  .hero .hero-visual {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    overflow: visible;
  }
  .hero .hero-img-main {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .hero .hero-img-left {
    left: -6%;
    bottom: 6%;
    max-width: 30%;
    animation-delay: 0s;
  }
  .hero .hero-img-right {
    right: -4%;
    bottom: 14%;
    max-width: 34%;
    animation-delay: 0.6s;
  }
  .hero .hero-img-logo {
    left: 4%;
    top: 10%;
    max-width: 20%;
    animation-delay: 1.2s;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 50px;
    overflow: hidden;
    background-position: top left;
    background-repeat: no-repeat;
  }
  .hero h1 {
    font-size: 46px;
    margin-top: 25px;
  }
  .hero .hero-content {
    gap: 0;
  }
  .hero .hero-desc {
    font-size: 18px;
  }
  .hero .hero-btns {
    gap: 18px;
    margin-top: 24px;
  }
  .hero .hero-btn {
    flex: 1;
    padding: 17px 16px;
    font-size: 16px;
  }
  .hero .hero-btn img {
    width: 13px;
  }
  .hero .hero-visual {
    margin-top: 38px;
  }
  .hero .hero-img-left {
    left: -7%;
    bottom: -24%;
    max-width: 22%;
  }
  .hero .hero-img-right {
    right: 20%;
    bottom: -5%;
    max-width: 36%;
  }
  .hero .hero-img-logo {
    left: 1%;
    top: 13%;
    max-width: 20%;
  }
}
.wrap1 {
  scroll-margin-top: 90px;
  padding: 180px 0;
}
.wrap1 .wrap1-tit {
  color: #10151A;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.wrap1 .wrap1-desc {
  max-width: 900px;
  margin: 26px auto 0;
  color: #676767;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.wrap1 .wrap1-tabs-wrap {
  border-radius: 41px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 29px 54.4px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 0 0;
  margin-top: 50px;
}
.wrap1 .wrap1-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 35px;
}
.wrap1 .wrap1-tab {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  border-radius: 20px;
  background: #F6F7F9;
  color: #404653;
  font-family: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wrap1 .wrap1-tab:hover {
  color: #0a0f1a;
}
.wrap1 .wrap1-tab.active {
  background: #E70216;
  color: #fff;
}
.wrap1 .wrap1-swiper {
  overflow: hidden;
}
.wrap1 .wrap1-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding: 32px 48px;
  border-radius: 24px;
  background: #fff;
  min-height: 500px;
}
.wrap1 .wrap1-slide-left {
  flex: 0 0 650px;
  max-width: 650px;
}
.wrap1 .wrap1-slide-tit {
  color: #10151A;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 536px;
}
.wrap1 .wrap1-slide-desc {
  margin-top: 23px;
  color: #35383D;
  font-size: 16px;
  line-height: 1.7;
}
.wrap1 .wrap1-slide-list {
  margin-top: 15px;
  padding: 0;
  list-style: none;
}
.wrap1 .wrap1-slide-list li {
  position: relative;
  padding-left: 24px;
  color: #35383D;
  font-size: 16px;
  line-height: 1.6;
}
.wrap1 .wrap1-slide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(231, 2, 22, 0.12);
}
.wrap1 .wrap1-slide-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e70216;
}
.wrap1 .wrap1-slide-list li + li {
  margin-top: 18px;
}
.wrap1 .wrap1-slide-btns {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}
.wrap1 .wrap1-slide-btns .win-box.is-active,
.wrap1 .wrap1-slide-btns .mac-box.is-active {
  display: inline-flex;
}
.wrap1 .wrap1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.wrap1 .wrap1-btn .icon-arrow {
  width: 14px;
  margin-left: 6px;
  transition: transform 0.2s ease;
}
.wrap1 .wrap1-btn:hover {
  transform: translateY(-8px);
}
.wrap1 .wrap1-btn-primary {
  background: #0a0f1a;
  color: #fff;
}
.wrap1 .wrap1-btn-primary:hover .icon-arrow {
  transform: translateX(8px);
}
.wrap1 .wrap1-btn-outline {
  border: 2px solid #0a0f1a;
  background: #fff;
  color: #2d2d2d;
}
.wrap1 .wrap1-slide-right {
  flex: 1;
  min-width: 0;
}
.wrap1 .wrap1-slide-right .wrap1-video,
.wrap1 .wrap1-slide-right .wrap1-poster {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.wrap1 .wrap1-slide-right .wrap1-poster {
  display: none;
}
@media (max-width: 1200px) {
  .wrap1 .wrap1-slide {
    padding: 40px;
    gap: 32px;
  }
  .wrap1 .wrap1-slide-left {
    flex: 0 0 360px;
    max-width: 360px;
  }
}
@media (max-width: 996px) {
  .wrap1 {
    padding: 60px 0 80px;
  }
  .wrap1 .wrap1-tit {
    font-size: 36px;
  }
  .wrap1 .wrap1-desc {
    font-size: 16px;
  }
  .wrap1 .wrap1-tabs {
    gap: 10px;
    margin-top: 28px;
  }
  .wrap1 .wrap1-tab {
    padding: 10px 18px;
    font-size: 14px;
  }
  .wrap1 .wrap1-slide {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }
  .wrap1 .wrap1-slide-left {
    flex: none;
    max-width: 100%;
    order: 2;
    text-align: center;
  }
  .wrap1 .wrap1-slide-right {
    order: 1;
  }
  .wrap1 .wrap1-slide-btns {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .wrap1 {
    padding: 100px 0;
  }
  .wrap1 .wrap1-desc {
    margin-top: 16px;
  }
  .wrap1 .wrap1-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
    text-align: center;
    border-bottom: unset;
    padding-bottom: 0;
  }
  .wrap1 .wrap1-tabs-wrap {
    border: none;
    box-shadow: unset;
    padding: 0;
    margin: 0;
    margin-top: 30px;
  }
  .wrap1 .wrap1-tab {
    width: 100%;
    padding: 10px 10px;
    font-size: 15px;
  }
  .wrap1 .wrap1-swiper {
    margin-top: 46px;
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    box-shadow: 0 29px 54.4px 0 rgba(0, 0, 0, 0.08);
  }
  .wrap1 .wrap1-slide {
    padding: 24px 24px 40px;
    border-radius: 16px;
    gap: 24px;
  }
  .wrap1 .wrap1-slide-right .wrap1-video {
    display: none;
  }
  .wrap1 .wrap1-slide-right .wrap1-poster {
    display: block;
  }
  .wrap1 .wrap1-slide-tit {
    font-size: 26px;
    text-align: left;
  }
  .wrap1 .wrap1-slide-desc {
    margin-top: 14px;
  }
  .wrap1 .wrap1-slide-desc,
  .wrap1 .wrap1-slide-list li {
    font-size: 16px;
    text-align: left;
  }
  .wrap1 .wrap1-slide-list {
    text-align: left;
  }
  .wrap1 .wrap1-slide-list li + li {
    margin-top: 14px;
  }
  .wrap1 .wrap1-slide-btns {
    flex-direction: column;
    gap: 17px;
    margin-top: 30px;
    justify-content: start;
    align-items: start;
    margin: 30px 10px 0;
  }
  .wrap1 .wrap1-btn {
    width: 238px;
    font-size: 18px;
  }
}
.wrap2 {
  padding-bottom: 60px;
}
.wrap2 .wrap2-tit {
  color: #10151A;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.wrap2 .wrap2-desc {
  margin: 26px auto 0;
  color: #676767;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
}
.wrap2 .wrap2-list {
  display: flex;
  gap: 56px;
  width: 100%;
  margin-top: 60px;
}
.wrap2 .wrap2-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 32px;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  transition: all 0.3s ease;
}
.wrap2 .wrap2-item:hover {
  box-shadow: 0 18px 44px rgba(20, 24, 32, 0.08);
  transform: translateY(-8px);
}
.wrap2 .wrap2-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
.wrap2 .wrap2-icon {
  flex-shrink: 0;
}
.wrap2 .wrap2-text .wrap2-item-tit {
  color: #10151A;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
.wrap2 .wrap2-text p {
  margin-top: 8px;
  color: #5F6368;
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
}
.wrap2 .wrap2-btn {
  flex-shrink: 0;
  padding: 20px 38px;
  border-radius: 31px;
  border: 1px solid #E8E8E8;
  background: #F5F5F5;
  color: #3B3B3B;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.wrap2 .wrap2-btn:hover {
  background: #E70216;
  color: #fff;
  border-color: #E70216;
  box-shadow: 0 18px 34px rgba(242, 1, 66, 0.2);
}
@media screen and (max-width: 1400px) {
  .wrap2 .wrap2-item {
    gap: 10px;
  }
}
@media (max-width: 996px) {
  .wrap2 .wrap2-tit {
    font-size: 36px;
  }
  .wrap2 .wrap2-desc {
    font-size: 16px;
  }
  .wrap2 .wrap2-list {
    flex-direction: column;
    margin-top: 36px;
    gap: 18px;
  }
  .wrap2 .wrap2-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
  }
  .wrap2 .wrap2-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .wrap2 {
    padding-bottom: 0;
  }
  .wrap2 .wrap2-desc {
    margin-top: 16px;
  }
  .wrap2 .wrap2-list {
    margin-top: 28px;
  }
  .wrap2 .wrap2-icon {
    width: 62px;
    height: 62px;
  }
  .wrap2 .wrap2-item-tit {
    font-size: 16px;
  }
  .wrap2 .wrap2-text p {
    font-size: 14px;
  }
}
.wrap3 {
  padding: 140px 0 140px;
  background: #fff;
  overflow: hidden;
}
.wrap3 .wrap3-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.wrap3 .wrap3-head-left {
  flex: 1;
  max-width: 1100px;
}
.wrap3 .wrap3-tit {
  color: #10151A;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.wrap3 .wrap3-desc {
  margin-top: 20px;
  color: #676767;
  font-size: 20px;
  line-height: 1.6;
}
.wrap3 .wrap3-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.wrap3 .wrap3-prev,
.wrap3 .wrap3-next {
  position: relative;
  width: 73px;
  height: 73px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wrap3 .wrap3-prev::after,
.wrap3 .wrap3-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.wrap3 .wrap3-prev:hover,
.wrap3 .wrap3-next:hover {
  border-color: #E70216;
  background: #E70216;
}
.wrap3 .wrap3-prev:hover::after,
.wrap3 .wrap3-next:hover::after {
  border-color: #fff;
}
.wrap3 .wrap3-prev.swiper-button-disabled,
.wrap3 .wrap3-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.wrap3 .wrap3-prev::after {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.wrap3 .wrap3-next::after {
  transform: translate(-65%, -50%) rotate(45deg);
}
.wrap3 .wrap3-swiper {
  margin-top: 70px;
  overflow: visible;
}
.wrap3 .wrap3-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.wrap3 .wrap3-card:hover img {
  transform: scale(1.1);
}
.wrap3 .wrap3-card img {
  display: block;
  width: 100%;
  transition: all 0.2s ease;
  height: auto;
}
.wrap3 .wrap3-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 54px 47px;
}
.wrap3 .wrap3-card-tit {
  color: #FAFAF9;
  font-size: 28px;
  line-height: 1.2;
}
.wrap3 .wrap3-card-desc {
  margin-top: 20px;
  color: #DADADA;
  font-size: 16px;
  line-height: 1.6;
}
.wrap3 .wrap3-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}
.wrap3 .wrap3-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 !important;
  border-radius: 999px;
  background: #d9d9d9;
  opacity: 1;
  transition: all 0.2s ease;
}
.wrap3 .wrap3-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #e70216;
}
@media (max-width: 1200px) {
  .wrap3 .wrap3-swiper {
    overflow: hidden;
    width: 100%;
  }
}
@media (max-width: 996px) {
  .wrap3 {
    padding: 80px 0 100px;
  }
  .wrap3 .wrap3-tit {
    font-size: 36px;
  }
  .wrap3 .wrap3-desc {
    font-size: 16px;
  }
  .wrap3 .wrap3-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .wrap3 .wrap3-swiper {
    margin-top: 32px;
    overflow: hidden;
  }
  .wrap3 .wrap3-card-tit {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .wrap3 {
    padding: 100px 0 80px;
    text-align: center;
  }
  .wrap3 .wrap3-desc {
    margin-top: 16px;
  }
  .wrap3 .wrap3-swiper {
    margin-top: 28px;
    text-align: left;
    overflow: hidden;
  }
  .wrap3 .swiper-slide {
    border-radius: 11.953px;
    height: 367px;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }
  .wrap3 .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 60.33%, rgba(0, 0, 0, 0) 87.07%);
  }
  .wrap3 .wrap3-card {
    height: 100%;
    border-radius: 0;
  }
  .wrap3 .wrap3-card-info {
    padding: 24px 20px 20px;
  }
  .wrap3 .wrap3-card-tit {
    font-size: 18px;
  }
  .wrap3 .wrap3-card-desc {
    font-size: 14px;
    margin-top: 15px;
  }
  .wrap3 .wrap3-pagination {
    margin-top: 24px;
  }
}
.wrap4 {
  padding: 60px 0 140px;
  background: #fff;
}
.wrap4 .wrap4-box {
  position: relative;
  padding: 67px 44px 82px;
  border-radius: 30px;
  background: #161616;
  overflow: hidden;
}
.wrap4 .wrap4-box::before {
  content: '';
  position: absolute;
  right: -28%;
  top: -66%;
  width: 543px;
  height: 543px;
  border-radius: 569px;
  border: 88px solid #222;
  background: #141414;
  box-shadow: 0 4px 4px 88px #1A1A1A;
  pointer-events: none;
}
.wrap4 .wrap4-head {
  position: relative;
  z-index: 1;
  max-width: 870px;
}
.wrap4 .wrap4-tit {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.wrap4 .wrap4-desc {
  margin-top: 24px;
  color: #C7C7C7;
  font-size: 20px;
  line-height: 1.6;
}
.wrap4 .wrap4-swiper {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  overflow: visible;
}
.wrap4 .swiper-slide {
  height: auto;
}
.wrap4 .wrap4-card {
  padding: 26px 8px 26px 28px;
  border-radius: 24px;
  border: 1px solid #3A3A3A;
  background: rgba(41, 41, 41, 0.65);
  height: 100%;
  transition: all 0.2s ease;
}
.wrap4 .wrap4-card:hover {
  transform: translateY(-10px);
  background: rgba(41, 41, 41, 0.85);
}
.wrap4 .wrap4-card-icon {
  display: block;
  width: 53px;
  height: 53px;
}
.wrap4 .wrap4-card-tit {
  margin-top: 15px;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  width: 70%;
}
.wrap4 .wrap4-card-desc {
  margin-top: 14px;
  color: #C4C7CC;
  font-size: 13px;
  line-height: 1.6;
}
.wrap4 .wrap4-pagination {
  position: static;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.wrap4 .wrap4-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  transition: all 0.2s ease;
}
.wrap4 .wrap4-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #e70216;
}
@media (max-width: 996px) {
  .wrap4 {
    padding: 0 0 100px;
  }
  .wrap4 .wrap4-box {
    padding: 40px 32px 36px;
    border-radius: 24px;
  }
  .wrap4 .wrap4-tit {
    font-size: 36px;
  }
  .wrap4 .wrap4-desc {
    font-size: 16px;
  }
  .wrap4 .wrap4-swiper {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .wrap4 {
    padding: 0 0 100px;
  }
  .wrap4 .wrap4-box {
    padding: 60px 32px;
    border-radius: 20px;
  }
  .wrap4 .wrap4-box::before,
  .wrap4 .wrap4-box::after {
    display: none;
  }
  .wrap4 .wrap4-desc {
    margin-top: 16px;
    font-size: 14px;
  }
  .wrap4 .wrap4-swiper {
    margin-top: 28px;
    overflow: hidden;
  }
  .wrap4 .wrap4-card {
    padding: 24px 20px 28px;
    border-radius: 16px;
    height: auto;
  }
  .wrap4 .wrap4-card:hover {
    transform: translateY(0);
  }
  .wrap4 .wrap4-card-icon {
    width: 53px;
    height: 53px;
  }
  .wrap4 .wrap4-card-tit {
    margin-top: 20px;
    font-size: 20px;
    width: 70%;
  }
  .wrap4 .wrap4-card-desc {
    margin-top: 10px;
  }
  .wrap4 .wrap4-pagination {
    margin-top: 24px;
  }
}
.wrap5 {
  padding: 100px 0 140px;
  background: #fff;
}
.wrap5 .wrap5-head {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.wrap5 .wrap5-tit {
  color: #10151A;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.wrap5 .wrap5-desc {
  margin-top: 26px;
  color: #676767;
  font-size: 20px;
  line-height: 1.6;
}
.wrap5 .wrap5-swiper {
  margin-top: 60px;
  overflow: visible;
}
.wrap5 .wrap5-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 280px;
  padding: 36px 35px;
  border-radius: 27.977px;
  border: 1.166px solid #E5E7EB;
  background: #FFF;
  transition: all 0.2s ease;
}
.wrap5 .wrap5-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 44px rgba(20, 24, 32, 0.08);
}
.wrap5 .wrap5-card-quote {
  color: #34373C;
  font-size: 19px;
  line-height: 1.6;
}
.wrap5 .wrap5-card-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.wrap5 .wrap5-card-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.wrap5 .wrap5-card-name {
  color: #141414;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.wrap5 .wrap5-card-role {
  margin-top: 4px;
  color: #5F6368;
  font-size: 15px;
  line-height: 1.3;
}
.wrap5 .wrap5-pagination {
  position: static;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.wrap5 .wrap5-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 !important;
  border-radius: 999px;
  background: #d9d9d9;
  opacity: 1;
  transition: all 0.2s ease;
}
.wrap5 .wrap5-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #e70216;
}
@media (max-width: 996px) {
  .wrap5 {
    padding: 0 0 100px;
  }
  .wrap5 .wrap5-tit {
    font-size: 36px;
  }
  .wrap5 .wrap5-desc {
    font-size: 16px;
  }
  .wrap5 .wrap5-swiper {
    margin-top: 40px;
    overflow: hidden;
  }
  .wrap5 .wrap5-pagination {
    display: flex;
  }
}
@media (max-width: 768px) {
  .wrap5 {
    padding: 0 0 80px;
  }
  .wrap5 .wrap5-desc {
    margin-top: 16px;
  }
  .wrap5 .wrap5-swiper {
    margin-top: 32px;
    overflow: hidden;
  }
  .wrap5 .wrap5-card {
    min-height: auto;
    border-radius: 16px;
  }
  .wrap5 .wrap5-card:hover {
    transform: translateY(0);
    box-shadow: unset;
  }
  .wrap5 .wrap5-card-quote {
    font-size: 19px;
  }
  .wrap5 .wrap5-card-user {
    margin-top: 24px;
  }
  .wrap5 .wrap5-pagination {
    margin-top: 24px;
  }
}
.wrap6 {
  background: #E70216;
  overflow: hidden;
  margin-top: 100px;
  padding: 80px 0;
}
.wrap6 .wrap6-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.wrap6 .wrap6-box::before {
  content: '';
  position: absolute;
  right: -12%;
  width: 569px;
  height: 569px;
  top: -66%;
  border-radius: 569px;
  border: 100px solid rgba(255, 255, 255, 0.19);
  background: #E70216;
  box-shadow: 0 4px 0 100px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.wrap6 .wrap6-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 740px;
}
.wrap6 .wrap6-tit {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.wrap6 .wrap6-desc {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.6;
}
.wrap6 .wrap6-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
  margin-top: 45px;
}
.wrap6 .wrap6-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 36px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.16);
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  color: #fff;
}
.wrap6 .wrap6-btn img {
  width: 20px;
  height: 20px;
}
.wrap6 .wrap6-btn:hover {
  transform: translateY(-8px);
}
.wrap6 .wrap6-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-bottom: -120px;
}
.wrap6 .wrap6-visual img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 996px) {
  .wrap6 {
    padding: 0 0 100px;
  }
  .wrap6 .wrap6-box {
    padding: 48px 40px;
  }
  .wrap6 .wrap6-tit {
    font-size: 36px;
  }
  .wrap6 .wrap6-desc {
    font-size: 16px;
  }
  .wrap6 .wrap6-visual {
    width: 38%;
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .wrap6 {
    padding: 80px 0 100px;
    margin-top: 0;
  }
  .wrap6 .wrap6-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-radius: 20px;
    padding: 0;
  }
  .wrap6 .wrap6-box::before,
  .wrap6 .wrap6-box::after {
    display: none;
  }
  .wrap6 .wrap6-content {
    max-width: none;
  }
  .wrap6 .wrap6-desc {
    margin-top: 16px;
  }
  .wrap6 .wrap6-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    margin-top: 28px;
  }
  .wrap6 .wrap6-btn {
    justify-content: center;
    width: max-content;
  }
}
