.page8-section {
  margin-top: 120px;
  background: linear-gradient(188deg, #F7F5FF 4.22%, #FFF 92.18%);
  padding: 100px 0 0px;
  position: relative;
}

.page8-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page8-section .container .page8-hero {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 78px;
}

.page8-section .container .page8-hero .page8-hero-title {
  color: #111;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 28px;
}

.page8-section .container .page8-hero .page8-hero-desc {
  text-align: center;
  color: #656565;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.page8-section .container .page8-system {
  width: 1280px;
  height: 701px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.05);
  box-shadow: 0 0 0 0 #FFF inset, 0 0 0 1px rgba(17, 24, 39, 0.1) inset;
  padding: 20px;
}

.page8-section .container .page8-system img {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .page8-section .container .page8-system img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page8-section {
    padding: 60px 0 80px;
  }
  .page8-section .container {
    padding: 0 20px;
  }
  .page8-section .container .page8-system img {
    width: 100%;
    height: auto;
  }
}

.page9-section {
  padding: 100px 0 120px;
}

.page9-section .container .page9-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page9-section .container .page9-subtitle {
  display: inline-block;
  color: #656565;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 76px;
}

.page9-section .container .page9-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.page9-section .container .page9-grid .page9-card {
  height: 255px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ECE6FF;
  background: #FAFAFB;
  cursor: pointer;
  transition: all 0.3s;
}

.page9-section .container .page9-grid .page9-card:hover {
  transform: translateY(-6px);
  border: 1px solid #ECE6FF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(180deg, #F6F3FF 0%, #F0F6FF 100%);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.page9-section .container .page9-grid .page9-card:hover .page9-card-icon {
  background: #BFA8FF;
}

.page9-section .container .page9-grid .page9-card:hover .page9-card-icon svg {
  stroke: #fff;
  fill: #fff;
}

.page9-section .container .page9-grid .page9-card .page9-card-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.page9-section .container .page9-grid .page9-card .page9-card-icon svg {
  stroke: #A3ACB1;
  fill: #A3ACB1;
}

.page9-section .container .page9-grid .page9-card .page9-card-text {
  color: #111;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1024px) {
  .page9-section .container .page9-title {
    font-size: 26px;
  }
  .page9-section .container .page9-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page9-section {
    padding: 60px 20px 80px;
  }
  .page9-section .container {
    padding: 32px 24px 48px;
  }
  .page9-section .container .page9-title {
    font-size: 24px;
  }
  .page9-section .container .page9-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .page9-section .container .page9-grid .page9-card {
    padding: 24px 16px;
  }
}

.page10-section {
  padding: 100px 0 120px;
}

.page10-section .container .page10-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 83px;
}

.page10-section .container .page10-header .page10-header-left .page10-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page10-section .container .page10-header .page10-header-left .page10-subtitle {
  color: #656565;
  font-size: 18px;
  font-weight: 400;
}

.page10-section .container .page10-header .page10-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  cursor: pointer;
}

.page10-section .container .page10-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.page10-section .container .page10-cards .page10-card {
  height: auto;
}

.page10-section .container .page10-cards .page10-card .page10-app {
  border-radius: 18px;
  height: 460px;
  overflow: hidden;
  margin-bottom: 25px;
}

.page10-section .container .page10-cards .page10-card .page10-app img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page10-section .container .page10-cards .page10-card .page10-card-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.page10-section .container .page10-cards .page10-card .page10-card-content .page10-card-title {
  color: #333;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  /* 169.231% */
}

.page10-section .container .page10-cards .page10-card .page10-card-link {
  color: #818498;
  font-size: 16px;
  text-decoration: none;
}

.page10-section .container .page10-cards .page10-card .page10-card-link svg {
  margin-left: 20px;
  width: 12px;
  height: auto;
}

.page10-section .container .page10-cards .page10-card .page10-card-link:hover {
  color: #1976D2;
}

@media (max-width: 1024px) {
  .page10-section .container .page10-header {
    flex-direction: column;
    gap: 24px;
  }
  .page10-section .container .page10-header .page10-header-left .page10-title {
    font-size: 32px;
  }
  .page10-section .container .page10-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page10-section {
    padding: 60px 0 80px;
  }
  .page10-section .container {
    padding: 0 20px;
  }
  .page10-section .container .page10-header .page10-header-left .page10-title {
    font-size: 28px;
  }
}

.page6-section {
  background-color: #FFFFFF;
  padding: 80px 0 100px;
}

.page6-section .page6-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 72px;
}

.page6-section .page6-header .page6-header-left .page6-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.page6-section .page6-header .page6-header-left .page6-subtitle {
  color: #656565;
  font-size: 18px;
  font-weight: 400;
}

.page6-section .page6-header .page6-nav {
  display: flex;
  gap: 20px;
}

.page6-section .page6-header .page6-nav .page6-arrow {
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
}

.page6-section .page6-header .page6-nav .page6-arrow img {
  width: 100%;
  height: 100%;
}

.page6-section .page6-carousel-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 20px 0;
  padding-left: calc((1920px - 1600px) / 2);
}

.page6-section .page6-carousel-wrap .page6-carousel {
  display: flex;
  gap: 27px;
  transition: transform 0.3s ease;
}

.page6-section .page6-carousel-wrap .page6-carousel .page6-card {
  flex: 0 0 380px;
  border-radius: 10px;
  background: #FFF;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
  padding-top: 44px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.page6-section .page6-carousel-wrap .page6-carousel .page6-card .page6-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  color: #50BB8C;
}

.page6-section .page6-carousel-wrap .page6-carousel .page6-card .page6-card-icon svg {
  width: 100%;
  height: 100%;
}

.page6-section .page6-carousel-wrap .page6-carousel .page6-card .page6-card-title {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.page6-section .page6-carousel-wrap .page6-carousel .page6-card .page6-card-desc {
  text-align: center;
  color: #656565;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.page6-section .page6-carousel-wrap .page6-carousel .page6-card .page6-card-num {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  font-weight: 700;
  color: #E9E9E9;
  line-height: 1;
}

@media (max-width: 1024px) {
  .page6-section .page6-carousel-wrap .page6-carousel .page6-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .page6-section {
    padding: 60px 0 80px;
  }
  .page6-section .container {
    padding: 0 20px;
  }
  .page6-section .page6-header {
    flex-direction: column;
    gap: 24px;
  }
  .page6-section .page6-header .page6-header-left .page6-title {
    font-size: 28px;
  }
  .page6-section .page6-carousel-wrap .page6-carousel .page6-card {
    flex: 0 0 260px;
  }
}

.cta-banner-section {
  background-color: #fff;
}

.cta-banner-section .container {
  width: 100%;
  height: 478px;
  background: url(../img/solutions/poss_item8.webp) no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 39px;
  background-color: #FFFFFF;
  padding: 48px 178px;
}

.cta-banner-section .container .cta-banner-text {
  flex: 1;
  width: 1027px;
  position: relative;
}

.cta-banner-section .container .cta-banner-text .cta-heading {
  text-align: center;
  position: relative;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7;
  z-index: 1;
}

.cta-banner-section .container .cta-banner-text .cta-heading .highlight-text {
  position: relative;
  display: inline;
}

.cta-banner-section .container .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
  border: none;
  padding: 10px 23px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  cursor: pointer;
  flex-shrink: 0;
}

.cta-banner-section .container .cta-button .cta-arrow {
  font-size: 18px;
}

@media (max-width: 768px) {
  .cta-banner-section {
    padding: 40px 20px;
  }
  .cta-banner-section .container {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }
  .cta-banner-section .container .cta-banner-text .cta-heading {
    font-size: 22px;
  }
  .cta-banner-section .container .cta-banner-text .cta-subheading {
    font-size: 16px;
  }
}

.page7-section {
  background-color: #FFFFFF;
  padding: 100px 0 120px;
}

.page7-section .container .page7-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.page7-section .container .page7-header .page7-header-left .page7-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.page7-section .container .page7-header .page7-header-left .page7-subtitle {
  color: #656565;
  font-size: 18 px;
  font-weight: 400;
}

.page7-section .container .page7-header .page7-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  cursor: pointer;
}

.page7-section .container .page7-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page7-section .container .page7-cards .page7-card {
  border-radius: 10px;
  background: #FAFAFB;
  padding: 48px 45px;
  overflow: hidden;
}

.page7-section .container .page7-cards .page7-card .page7-card-image {
  width: 100%;
  aspect-ratio: 700 / 420;
  overflow: hidden;
}

.page7-section .container .page7-cards .page7-card .page7-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page7-section .container .page7-cards .page7-card .page7-card-body {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.page7-section .container .page7-cards .page7-card .page7-card-body .page7-card-logo {
  width: 180px;
  height: 60px;
}

.page7-section .container .page7-cards .page7-card .page7-card-body .page7-card-logo img {
  width: 100%;
  height: 100%;
}

.page7-section .container .page7-cards .page7-card .page7-card-body .page7-card-content {
  width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.page7-section .container .page7-cards .page7-card .page7-card-body .page7-card-content .page7-card-company {
  color: #333333;
  font-size: 30px;
  font-weight: 400;
}

.page7-section .container .page7-cards .page7-card .page7-card-body .page7-card-content .page7-card-desc {
  color: #656565;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .page7-section .container .page7-header .page7-header-left .page7-title {
    font-size: 32px;
  }
  .page7-section .container .page7-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page7-section {
    padding: 60px 0 80px;
  }
  .page7-section .container {
    padding: 0 20px;
  }
}

.viewpoint-insights-section {
  padding: 70px 0 140px;
}

.viewpoint-insights-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.viewpoint-insights-section .page7-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.viewpoint-insights-section .page7-subtitle {
  color: #656565;
  font-size: 18 px;
  font-weight: 400;
}

.viewpoint-insights-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.viewpoint-insights-section .btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.3s ease;
}

.viewpoint-insights-section .insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.viewpoint-insights-section .insight-card {
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.viewpoint-insights-section .insight-card:hover .card-image {
  transform: scale(1.05);
}

.viewpoint-insights-section .insight-card:hover .card-title {
  text-decoration: underline;
}

.viewpoint-insights-section .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 326px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.viewpoint-insights-section .card-image-wrapper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.viewpoint-insights-section .card-tag {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 8px 10px;
  background-color: #2BA275;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.viewpoint-insights-section .card-tag::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #2BA275 transparent transparent;
}

.viewpoint-insights-section .card-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 34px 0 12px 0;
  line-height: 1.5;
}

.viewpoint-insights-section .card-description {
  font-size: 14px;
  color: #656565;
  margin: 0;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .viewpoint-insights-section {
    padding: 60px 0;
  }
  .viewpoint-insights-section .section-header {
    margin-bottom: 40px;
  }
  .viewpoint-insights-section .section-title {
    font-size: 28px;
  }
  .viewpoint-insights-section .insights-grid {
    gap: 20px;
  }
  .viewpoint-insights-section .card-image-wrapper {
    height: 200px;
  }
  .viewpoint-insights-section .card-title {
    font-size: 17px;
    padding: 16px 16px 10px;
  }
  .viewpoint-insights-section .card-description {
    font-size: 13px;
    padding: 0 16px 16px;
  }
}

@media (max-width: 767px) {
  .viewpoint-insights-section {
    padding: 40px 0;
  }
  .viewpoint-insights-section .container {
    padding: 0 16px;
  }
  .viewpoint-insights-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .viewpoint-insights-section .section-title {
    font-size: 24px;
  }
  .viewpoint-insights-section .btn-detail {
    align-self: flex-end;
  }
  .viewpoint-insights-section .insights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .viewpoint-insights-section .card-image-wrapper {
    height: 220px;
  }
  .viewpoint-insights-section .card-title {
    font-size: 17px;
    padding: 16px 16px 10px;
  }
  .viewpoint-insights-section .card-description {
    font-size: 13px;
    padding: 0 16px 16px;
  }
}

@media (max-width: 480px) {
  .viewpoint-insights-section .section-title {
    font-size: 20px;
  }
  .viewpoint-insights-section .card-image-wrapper {
    height: 200px;
  }
  .viewpoint-insights-section .card-title {
    font-size: 16px;
  }
}

.faq-section {
  padding: 130px 0;
  background-color: #FAFAFB;
}

.faq-section .faq-layout {
  display: grid;
  grid-template-columns: 370px 1120px;
  gap: 110px;
  align-items: start;
}

.faq-section .main-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.faq-section .sub-title {
  font-size: 18px;
  font-weight: 600;
  color: #656565;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.faq-section .category-label {
  font-size: 18px;
  color: #656565;
  margin: 0 0 77px 0;
}

.faq-section .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.3s ease;
}

.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-section .faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-section .faq-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.faq-section .faq-question {
  display: flex;
  align-items: center;
  padding: 40px 0 27px;
  font-size: 22px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-section .faq-question::-webkit-details-marker {
  display: none;
}

.faq-section .q-prefix {
  flex-shrink: 0;
  margin-right: 8px;
  color: #111;
}

.faq-section .q-text {
  flex-grow: 1;
}

.faq-section .faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-section .faq-icon::before {
  content: "";
  width: 24px;
  height: 4px;
  background: #A3ACB1;
  border-radius: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-section .faq-icon::after {
  transition: all 0.3s ease;
  content: "";
  width: 24px;
  height: 4px;
  background: #A3ACB1;
  border-radius: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-section .faq-item[open] .faq-icon::after {
  background: #111;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-section .faq-item[open] .faq-question {
  text-decoration: underline;
}

.faq-section .faq-answer {
  padding: 0 0 40px 0;
}

.faq-section .faq-answer p {
  font-size: 16px;
  color: #656565;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .faq-layout {
    gap: 60px;
  }
  .faq-section .main-title {
    font-size: 28px;
  }
  .faq-section .sub-title {
    font-size: 18px;
  }
  .faq-section .faq-question {
    padding: 18px 0;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .container {
    padding: 0 16px;
  }
  .faq-section .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section .main-title {
    font-size: 24px;
  }
  .faq-section .sub-title {
    font-size: 17px;
  }
  .faq-section .category-label {
    margin-bottom: 20px;
  }
  .faq-section .faq-question {
    padding: 16px 0;
    font-size: 15px;
  }
  .faq-section .faq-answer p {
    font-size: 13px;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .faq-section .main-title {
    font-size: 20px;
  }
  .faq-section .sub-title {
    font-size: 16px;
  }
}
