@font-face {
  font-display: swap;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-tc-v39-chinese-traditional_cyrillic_latin_latin-ext_vietnamese-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-tc-v39-chinese-traditional_cyrillic_latin_latin-ext_vietnamese-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/noto-sans-tc-v39-chinese-traditional_cyrillic_latin_latin-ext_vietnamese-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-tc-v39-chinese-traditional_cyrillic_latin_latin-ext_vietnamese-700.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Source Han Sans HK";
  src: url("../fonts/SourceHanSansHK-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Source Han Sans HK";
  src: url("../fonts/SourceHanSansHK-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Source Han Sans HK";
  src: url("../fonts/SourceHanSansHK-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FFFFFF;
  color: #161616;
  font-family: "Source Han Sans HK", Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.nav-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 50;
  transform: translateY(-120%);
  background: #1555C9;
  color: #FFFFFF;
  padding: 12px 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  z-index: 20;
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #FFFFFF;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #161616;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav__logo {
  display: block;
  width: 100px;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .site-nav {
    width: calc(100% - 32px);
    max-width: 1440px;
    padding-inline: 32px;
  }
  .site-nav__logo {
    width: 128px;
  }
}
@media (min-width: 1200px) {
  .site-nav__logo {
    width: 144px;
  }
  .site-nav__menu > li > a,
  .site-nav__menu > li > .site-nav__label {
    font-size: 15px;
  }
}
.site-nav__panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  min-width: 0;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  flex-wrap: wrap;
  gap: 32px;
  min-width: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  list-style: none;
  font-size: 14px;
  color: #161616;
}

.site-nav__menu > li {
  position: relative;
  flex-shrink: 0;
}

.site-nav__menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav__menu > li > .site-nav__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav__menu > li > a:hover,
.site-nav__menu > li > a:focus,
.site-nav__menu > li > .site-nav__label:hover,
.site-nav__menu > li > .site-nav__label:focus {
  color: #74A5FF;
}

.site-nav__menu .fa-chevron-down {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 11px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-submenu.is-open > a .fa-chevron-down,
.has-submenu.is-open > .site-nav__label .fa-chevron-down {
  transform: rotate(180deg);
}

@media (min-width: 1200px) {
  .has-submenu:hover > a .fa-chevron-down,
  .has-submenu:hover > .site-nav__label .fa-chevron-down {
    transform: rotate(180deg);
  }
}
.site-nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10;
  min-width: 240px;
  padding: 8px;
  margin: 0;
  border: 1px solid rgba(21, 85, 201, 0.18);
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.site-nav__submenu::before {
  content: "";
  position: absolute;
  top: calc(-1 * 8px);
  left: 0;
  right: 0;
  height: 8px;
  pointer-events: auto;
}

.site-nav__submenu--wide {
  left: 0;
  right: auto;
  width: min(860px, 92vw);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  padding: 20px;
}

.site-nav__submenu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav__submenu .site-nav__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}

.site-nav__submenu .site-nav__label .fa-chevron-down {
  display: inline-block;
  flex: 0 0 auto;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus {
  color: #74A5FF;
  background: #eef2f6;
}

.site-nav__category {
  min-width: 0;
}

.site-nav__category > .site-nav__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 4px;
  color: #161616;
  font-size: 14px;
  font-weight: 400;
  white-space: normal;
  cursor: default;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav__category:hover > .site-nav__label,
.site-nav__category:focus-within > .site-nav__label {
  background: #eef2f6;
  color: #74A5FF;
}

.site-nav__submenu--list {
  position: static;
  display: grid;
  gap: 4px;
  margin: 8px 0 0 12px;
  padding: 0 0 0 12px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-nav__submenu--list::before {
  content: none;
}

.site-nav__submenu--list a {
  min-height: 34px;
  padding: 4px 12px;
  white-space: normal;
  font-size: 13px;
}

.has-submenu:hover > .site-nav__submenu,
.has-submenu:focus-within > .site-nav__submenu,
.has-submenu.is-open > .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-submenu:hover .site-nav__submenu,
.has-submenu:focus-within .site-nav__submenu,
.has-submenu.is-open .site-nav__submenu {
  pointer-events: auto;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav__toggle {
  display: none;
}

.site-nav__backdrop {
  display: none;
}

.site-nav__close {
  display: none;
}

.section {
  padding-block: 120px;
}

.section-dark {
  background: #020503;
  color: #161616;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 960px;
  font-size: clamp(24px, 2.8vw, 34px);
}

h2 {
  max-width: 720px;
  font-size: clamp(21px, 2.4vw, 28px);
}

h3 {
  font-size: clamp(16px, 1.7vw, 20px);
}

p {
  margin: 0;
}

.section-heading,
.about-feature__intro {
  text-align: left;
}

.eyebrow,
.section-heading .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: #1555C9;
  font-family: Poppins, "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.section-heading {
  text-align: left;
}
.section-heading .eyebrow {
  width: -moz-max-content;
  width: max-content;
  margin-inline: 0;
  text-align: left;
}
.section-heading h2 {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.eyebrow::before,
.section-heading .eyebrow::before {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin: 0;
  border-radius: 50%;
  background: #1555C9;
  content: "";
}

.section-heading h2,
.about-feature__intro h2,
.stats h2 {
  margin: 0;
  color: #161616;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: clamp(28px, 2.1vw, 42px);
  font-weight: 700;
  line-height: 1.25;
}

.section-heading__lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: #161616;
  font-size: 18px;
  line-height: 1.8;
}

.page-hero {
  position: relative;
  min-height: 633px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
  isolation: isolate;
}
.page-hero__media, .page-hero__overlay {
  position: absolute;
  inset: 0;
}
.page-hero__media {
  z-index: -2;
  overflow: hidden;
  background: transparent;
}
.page-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-hero__overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 5, 3, 0.78) 0%, rgba(2, 5, 3, 0.33) 58%, rgba(2, 5, 3, 0.12) 100%);
}
.page-hero__inner {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.page-hero__copy {
  max-width: 860px;
  padding-block: 92px;
}
.page-hero__eyebrow {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  color: #FFFFFF;
}
.page-hero__eyebrow::before {
  background: #FFFFFF;
}
.page-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #FFFFFF;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 0.02em;
}
.page-hero__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 760px;
  margin: 26px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  list-style: none;
}
.page-hero__points li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.55;
}
.page-hero__points li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFFFFF;
  content: "";
}
@media (max-width: 1199.98px) {
  .page-hero h1 {
    font-size: 42px;
    line-height: 58px;
  }
}
@media (max-width: 991.98px) {
  .page-hero {
    min-height: 520px;
  }
  .page-hero__copy {
    padding-block: 76px;
  }
  .page-hero h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .page-hero {
    min-height: 430px;
  }
  .page-hero__media img {
    -o-object-position: 62% center;
       object-position: 62% center;
  }
  .page-hero__overlay {
    background: linear-gradient(90deg, rgba(2, 5, 3, 0.8), rgba(2, 5, 3, 0.35));
  }
  .page-hero__copy {
    padding-block: 58px;
  }
  .page-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .page-hero h1 {
    font-size: 32px;
    line-height: 44px;
  }
  .page-hero__points {
    gap: 8px;
    max-width: 100%;
    margin-top: 16px;
  }
  .page-hero__points li {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 767.98px) {
  .section-heading h2,
  .about-feature__intro h2,
  .stats h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
}
.section-heading {
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 640px;
  margin-top: 20px;
  color: #2D2D2D;
}

.section-heading--sticky {
  align-self: start;
}

.section-heading--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
  margin-bottom: 48px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center h2 {
  margin-right: auto;
  margin-left: auto;
}

.section-heading--center p {
  margin-right: auto;
  margin-left: auto;
}

.btn-primary,
.btn-outline,
.btn-text,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary,
.btn-outline,
.btn-nav {
  padding: 8px 20px;
  border: 1px solid transparent;
}

.btn-primary {
  background: #1555C9;
  border-color: #1555C9;
  color: #FFFFFF;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #0D3F9D;
  border-color: #0D3F9D;
}

.btn-outline {
  background: transparent;
  border-color: rgba(21, 21, 21, 0.35);
  color: inherit;
}

.btn-outline:hover,
.btn-outline:focus {
  background: #1555C9;
  border-color: #1555C9;
  color: #FFFFFF;
}

.btn-text {
  min-height: 44px;
  color: #161616;
}

.btn-text:hover,
.btn-text:focus {
  color: #0D3F9D;
}

.btn-nav {
  background: #161616;
  border-color: #161616;
  color: #FFFFFF;
}

.btn-nav:hover,
.btn-nav:focus {
  background: #1555C9;
  border-color: #1555C9;
  color: #FFFFFF;
}

.btn-nav__icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 4px;
  background: transparent;
  color: #FFFFFF;
  font-size: 19px;
  transform: none !important;
}

.btn-nav:hover .btn-nav__icon,
.btn-nav:focus .btn-nav__icon {
  background: #25d366;
  color: #FFFFFF;
  transform: none !important;
}

.site-nav__actions .btn-nav {
  gap: 4px;
  border-radius: 9px;
  font-weight: 400;
}

.site-nav__actions .btn-nav:hover,
.site-nav__actions .btn-nav:focus {
  background: #25d366;
  border-color: #25d366;
}

.site-nav__actions .btn-nav__icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  font-size: 21px;
}

.site-nav__actions .btn-nav:hover .btn-nav__icon,
.site-nav__actions .btn-nav:focus .btn-nav__icon {
  background: transparent;
}

.btn-primary i,
.btn-outline i,
.btn-text i,
.btn-nav i {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover i,
.btn-text:hover i,
.btn-nav:hover i {
  transform: translateX(4px);
}

.content-list,
.faq-item__content p + p {
  margin-top: 32px;
}

.check-list,
.content-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.check-list li,
.content-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before,
.content-list li::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  transform: translateY(-50%);
  inline-size: 6px;
  block-size: 6px;
  border-radius: 50%;
  background: #74A5FF;
}

.media-panel {
  margin: 0 0 32px;
  border: 1px solid rgba(21, 85, 201, 0.18);
  border-radius: 10px;
  overflow: hidden;
  background: #F6F6F6;
}

.media-panel img {
  inline-size: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-faq {
  background: #FFFFFF;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(21, 85, 201, 0.18);
  background: transparent;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  flex-shrink: 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1;
  transition: color 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open]:not(.is-closing) .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__content {
  overflow: hidden;
  padding-bottom: 20px;
  opacity: 0;
  color: #2D2D2D;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.2s ease;
}

.faq-item__content > * {
  min-height: 0;
}

.faq-item[open] .faq-item__content {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-closing .faq-item__content {
  opacity: 0;
  transform: translateY(-4px);
}

.faq-item__content p + p,
.faq-item__content .content-list {
  margin-top: 12px;
}

.faq-item__content .content-list {
  gap: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: stretch;
}

.contact-main {
  display: grid;
  gap: 20px;
}

.contact-main .section-heading {
  margin-bottom: 0;
}

.contact-media {
  min-height: 0;
  align-self: start;
  margin: 0;
  border: 1px solid rgba(21, 85, 201, 0.18);
  border-radius: 4px;
  overflow: hidden;
  background: #F6F6F6;
  aspect-ratio: 4/3;
}

.contact-media img {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 4px;
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 85, 201, 0.18);
  border-radius: 4px;
  background: #FFFFFF;
  color: #161616;
  padding: 8px 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form textarea {
  border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1555C9;
  outline: none;
}

.contact-form input {
  min-height: 44px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__message,
.contact-form__actions {
  grid-column: 1/-1;
}

.contact-form__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.contact-form__captcha {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.contact-form__captcha > label {
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 700;
}

.contact-form__captcha-controls {
  display: flex;
  min-width: 0;
  gap: 8px;
}

.contact-form__captcha-controls input {
  flex: 0 1 180px;
  min-width: 96px;
  text-transform: uppercase;
}

.contact-form__captcha-image {
  flex: 0 0 112px;
  width: 112px;
  height: 44px;
  border: 1px solid rgba(21, 85, 201, 0.18);
  border-radius: 4px;
  background: #F6F6F6;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-form__actions > .btn-primary {
  width: auto;
  min-width: -moz-max-content;
  min-width: max-content;
}

.site-footer {
  background: #0D1929;
  color: #FFFFFF;
  padding: 120px 0 32px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
}

.site-footer__cta h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
}
.site-footer__cta p {
  max-width: 300px;
  font-size: 18px;
  margin-top: 12px;
  line-height: 1.5;
}

.site-footer__cta .btn-arrow {
  margin-top: 32px;
}

.site-footer__cta .btn-arrow span,
.site-footer__cta .btn-arrow i {
  background: #1555C9;
  color: #FFFFFF;
}

.site-footer__cta .btn-arrow:hover span,
.site-footer__cta .btn-arrow:focus-visible span,
.site-footer__cta .btn-arrow:hover i,
.site-footer__cta .btn-arrow:focus-visible i {
  background: #1555C9;
  color: #FFFFFF;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.site-footer__group h3 {
  font-size: 16px;
}

.site-footer__group ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.site-footer__group a:hover,
.site-footer__group a:focus {
  color: #8fb8e8;
}

.site-footer__bottom {
  margin-top: 72px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.site-footer__social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 16px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  border-color: #1555C9;
  background: #1555C9;
  color: #FFFFFF;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  background: transparent;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.whatsapp-float.btn-arrow span,
.whatsapp-float.btn-arrow i {
  background: #25d366;
  color: #FFFFFF;
}

.whatsapp-float.btn-arrow i {
  font-size: 24px;
  transform: none !important;
}

.whatsapp-float.btn-arrow i::before {
  transform: none !important;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #FFFFFF;
  transform: translateY(-2px);
}

.whatsapp-float.btn-arrow:hover span,
.whatsapp-float.btn-arrow:focus-visible span,
.whatsapp-float.btn-arrow:hover i,
.whatsapp-float.btn-arrow:focus-visible i {
  background: #128c7e;
  color: #FFFFFF;
  transform: none !important;
}

.whatsapp-float.btn-arrow:hover i::before,
.whatsapp-float.btn-arrow:focus-visible i::before {
  transform: none !important;
}

.whatsapp-float:focus-visible {
  outline-color: #FFFFFF;
}

.swiper-pagination {
  position: static;
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.25);
  opacity: 1;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper {
  --swiper-theme-color: #1555C9;
  --swiper-pagination-color: #1555C9;
}

.swiper-pagination-bullet-active {
  width: 24px;
  background: #1555C9;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-inview {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid #1555C9;
  outline-offset: 2px;
}

@media (max-width: 1399.98px) {
  .site-nav__menu {
    gap: 20px;
  }
}
@media (max-width: 1199.98px) {
  .site-nav__menu {
    gap: 16px;
  }
}
@media (max-width: 991.98px) {
  .site-header {
    top: 0;
  }
  .site-nav {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }
  .contact-layout,
  .site-footer__inner,
  .site-footer__links {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
  }
  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .contact-media {
    aspect-ratio: 4/3;
  }
  .site-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: calc(40 - 1);
    background: rgba(13, 25, 41, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-nav__backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
  .site-nav__panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 40;
    width: min(340px, 86vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 32px;
    padding: 48px 32px;
    overflow-y: auto;
    background: #FFFFFF;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.16);
    visibility: hidden;
    transform: translateX(102%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-nav__panel.is-open {
    visibility: visible;
    transform: translateX(0);
  }
  .site-nav__menu {
    flex: initial;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    overflow: visible;
  }
  .site-nav__menu > li > a,
  .site-nav__menu > li > .site-nav__label {
    min-height: 48px;
  }
  .site-nav__submenu,
  .site-nav__submenu--wide {
    position: static;
    display: none;
    width: 100%;
    min-width: auto;
    grid-template-columns: 1fr;
    padding: 0 0 4px 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav__submenu::before {
    content: none;
  }
  .has-submenu.is-open > .site-nav__submenu {
    display: grid;
  }
  .site-nav__submenu a {
    min-height: 44px;
    border-radius: 0;
  }
  .site-nav__category > .site-nav__label {
    cursor: pointer;
  }
  .site-nav__actions {
    flex-wrap: wrap;
  }
  .site-nav__toggle {
    display: inline-grid;
    place-items: center;
    inline-size: 44px;
    block-size: 44px;
    border: 1px solid rgba(21, 85, 201, 0.18);
    border-radius: 10px;
    background: transparent;
    color: #161616;
    cursor: pointer;
  }
  .site-nav__close {
    display: inline-grid;
    place-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    inline-size: 44px;
    block-size: 44px;
    border: 1px solid rgba(21, 85, 201, 0.18);
    border-radius: 10px;
    background: transparent;
    color: #161616;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-nav__close:hover,
  .site-nav__close:focus {
    color: #74A5FF;
    border-color: #74A5FF;
  }
}
@media (max-width: 767.98px) {
  .section,
  .site-footer {
    padding-block: 48px;
  }
  .site-footer {
    padding-bottom: 20px;
  }
  .split-layout,
  .contact-layout,
  .site-footer__inner {
    gap: 32px;
  }
  .site-footer__bottom {
    margin-top: 32px;
  }
  h1 {
    font-size: clamp(26px, 8vw, 32px);
  }
  h2 {
    font-size: clamp(20px, 6.5vw, 24px);
  }
  .contact-form {
    display: grid;
    grid-template-columns: 1fr;
  }
  .responsive-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    scroll-snap-type: x mandatory;
  }
  .responsive-swiper .swiper-slide {
    flex: 0 0 86%;
    height: auto;
    scroll-snap-align: start;
  }
  .responsive-swiper.is-scroll-fallback {
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
  }
  .swiper-pagination {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition: none;
    animation: none;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__content {
    animation: none;
  }
}
/* ============================================================
   Public sticky navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  z-index: 20;
}

.site-nav {
  width: 100%;
  max-width: none;
  min-height: 102px;
  padding-inline: 103px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.site-nav__brand {
  flex: 0 0 auto;
}

.site-nav__logo {
  width: 160px;
  max-height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-nav__panel {
  flex: 1 1 auto;
  gap: 32px;
}

.site-nav__menu {
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 20px;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: 15px;
}

.site-nav__menu > li > a,
.site-nav__menu > li > .site-nav__label {
  min-height: 48px;
  color: #151515;
  font-size: 17px;
  font-weight: 400;
}

.site-nav__menu > li > a:hover,
.site-nav__menu > li > a:focus,
.site-nav__menu > li > .site-nav__label:hover,
.site-nav__menu > li > .site-nav__label:focus {
  color: #1555C9;
}

.site-nav__submenu--level-2 {
  top: calc(100% + 8px);
  min-width: 240px;
}

.site-nav__submenu--level-2:not(.site-nav__submenu--wide) {
  display: block;
  padding: 8px;
}

.site-nav__submenu--wide {
  width: min(980px, 100vw - 48px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 32px;
}

.site-nav__submenu--level-2 > li > .site-nav__label {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 4px;
  color: #151515;
  font-size: 14px;
  font-weight: 600;
  white-space: normal;
}

.site-nav__submenu--list {
  position: static;
  display: grid;
  gap: 4px;
  min-width: 0;
  margin: 8px 0 0;
  padding: 0 0 0 12px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.site-nav__submenu--list::before {
  content: none;
}

.site-nav__submenu--list a {
  min-height: 34px;
  padding: 4px 8px;
  color: #2D2D2D;
  font-size: 13px;
  white-space: normal;
}

.site-nav__submenu--list a:hover,
.site-nav__submenu--list a:focus,
.site-nav__submenu--level-2 > li:hover > .site-nav__label {
  color: #1555C9;
  background: rgba(21, 85, 201, 0.06);
}

.site-nav__actions {
  flex: 0 0 auto;
}

@media (min-width: 1200px) {
  .site-nav__menu {
    justify-content: flex-end;
  }
  .site-nav__menu > li {
    flex: 0 1 auto;
    min-width: 0;
  }
  .site-nav__menu > li > a,
  .site-nav__menu > li > .site-nav__label {
    min-width: 0;
    justify-content: center;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .site-nav__actions {
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
@media (min-width: 1400px) {
  .site-nav__panel {
    gap: 48px;
  }
  .site-nav__menu {
    gap: 32px;
  }
  .site-nav__menu > li > a,
  .site-nav__menu > li > .site-nav__label {
    font-size: 16px;
  }
}
@media (max-width: 1399.98px) {
  .site-nav {
    padding-inline: 48px;
  }
  .site-nav__menu {
    gap: 20px;
  }
  .site-nav__menu > li > a,
  .site-nav__menu > li > .site-nav__label {
    font-size: 14px;
  }
}
@media (max-width: 1199.98px) {
  .site-nav {
    padding-inline: 32px;
  }
  .site-nav__menu,
  .site-nav__panel {
    gap: 12px;
  }
  .site-nav__menu > li > a,
  .site-nav__menu > li > .site-nav__label {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .site-nav {
    min-height: 72px;
    padding-inline: 20px;
  }
  .site-nav__logo {
    width: 180px;
  }
  .site-nav__menu {
    flex-wrap: nowrap;
    gap: 4px;
  }
  .site-nav__submenu--level-2,
  .site-nav__submenu--wide,
  .site-nav__submenu--list {
    width: 100%;
    min-width: auto;
    padding: 0 0 4px 32px;
  }
  .site-nav__submenu--list {
    margin: 8px 0 0;
  }
}
@media (max-width: 767.98px) {
  .site-nav {
    padding-inline: 20px;
  }
  .site-nav__logo {
    width: 160px;
  }
}
/* Navigation submenu hit-area fix */
@media (min-width: 1200px) {
  .site-nav__submenu,
  .site-nav__submenu--list {
    pointer-events: none;
  }
  .site-nav__submenu::before {
    pointer-events: none;
  }
  .has-submenu:hover > .site-nav__submenu,
  .has-submenu:focus-within > .site-nav__submenu,
  .has-submenu.is-open > .site-nav__submenu {
    pointer-events: auto;
  }
  .has-submenu:hover > .site-nav__submenu::before,
  .has-submenu:focus-within > .site-nav__submenu::before,
  .has-submenu.is-open > .site-nav__submenu::before {
    pointer-events: auto;
  }
  .has-submenu:hover > .site-nav__submenu .site-nav__submenu--list,
  .has-submenu:focus-within > .site-nav__submenu .site-nav__submenu--list,
  .has-submenu.is-open > .site-nav__submenu .site-nav__submenu--list {
    pointer-events: auto;
  }
}
@media (max-width: 1199.98px) {
  .site-nav {
    min-height: 72px;
    padding-inline: 20px;
  }
  .site-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: calc(40 - 1);
    background: rgba(13, 25, 41, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-nav__backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
  .site-nav__panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 40;
    width: min(340px, 86vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 32px;
    padding: 48px 32px;
    overflow-y: auto;
    background: #FFFFFF;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.16);
    visibility: hidden;
    transform: translateX(102%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-nav__panel.is-open {
    visibility: visible;
    transform: translateX(0);
  }
  .site-nav__menu {
    flex: initial;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    overflow: visible;
  }
  .site-nav__menu > li > a,
  .site-nav__menu > li > .site-nav__label {
    min-height: 48px;
  }
  .site-nav__menu .site-nav__submenu,
  .site-nav__menu .site-nav__submenu--level-2:not(.site-nav__submenu--wide),
  .site-nav__menu .site-nav__submenu--wide,
  .site-nav__menu .site-nav__submenu--list {
    position: static;
    display: none;
    width: 100%;
    min-width: auto;
    grid-template-columns: 1fr;
    padding: 0 0 4px 20px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .site-nav__menu .has-submenu.is-open > .site-nav__submenu {
    display: grid;
  }
  .site-nav__submenu::before {
    content: none;
  }
  .site-nav__submenu a {
    min-height: 44px;
    border-radius: 0;
  }
  .site-nav__category > .site-nav__label {
    cursor: pointer;
  }
  .site-nav__actions {
    flex-wrap: wrap;
  }
  .site-nav__toggle {
    display: inline-grid;
    place-items: center;
    inline-size: 44px;
    block-size: 44px;
    border: 1px solid rgba(21, 85, 201, 0.18);
    border-radius: 10px;
    background: transparent;
    color: #161616;
    cursor: pointer;
  }
  .site-nav__close {
    display: inline-grid;
    place-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    inline-size: 44px;
    block-size: 44px;
    border: 1px solid rgba(21, 85, 201, 0.18);
    border-radius: 10px;
    background: transparent;
    color: #161616;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-nav__close:hover,
  .site-nav__close:focus {
    color: #74A5FF;
    border-color: #74A5FF;
  }
}
/* Public split arrow button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: -moz-max-content;
  width: max-content;
  min-height: 50px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: gap 0.3s ease, color 0.3s ease;
}

.btn-arrow span,
.btn-arrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  background: #1555C9;
  color: #FFFFFF;
  transition: background-color 0.3s ease, border-radius 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767.98px) {
  .btn-arrow span,
  .btn-arrow i {
    min-height: 40px;
  }
}

.btn-arrow span {
  padding: 0 28px;
  border-radius: 999px;
}

.btn-arrow i {
  width: 50px;
  border-radius: 50%;
  font-size: 14px;
  transform: rotate(-45deg);
}
@media (max-width: 767.98px) {
  .btn-arrow i {
    width: 40px;
  }
}

.btn-arrow:hover,
.btn-arrow:focus-visible {
  gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
  color: #FFFFFF;
}

.btn-arrow:hover span,
.btn-arrow:focus-visible span {
  border-radius: 999px 0 0 999px;
  background: #020503;
}

.btn-arrow:hover i,
.btn-arrow:focus-visible i {
  border-radius: 0 999px 999px 0;
  background: #020503;
  transform: translateX(1px) rotate(0deg);
}

.btn-arrow:focus-visible {
  outline: 2px solid #74A5FF;
  outline-offset: 4px;
}

/* Keep the public split button's circle stable; rotate only its icon. */
.btn-arrow i {
  transform: none;
}

.btn-arrow i::before {
  display: inline-block;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.btn-arrow:hover i,
.btn-arrow:focus-visible i {
  margin-left: 0;
  transform: none;
}

.btn-arrow:hover i::before,
.btn-arrow:focus-visible i::before {
  transform: rotate(0deg);
}

.btn-arrow--compact {
  min-height: 34px;
  font-size: 16px;
}

.btn-arrow--compact span,
.btn-arrow--compact i {
  min-height: 34px;
}

.btn-arrow--compact span {
  padding: 0 16px;
}

.btn-arrow--compact i {
  width: 34px;
  font-size: 11px;
}

.index-page {
  overflow-x: clip;
  overflow-y: visible;
  color: #161616;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
}
.index-page .container {
  width: min(100% - 302px, 1619px);
  max-width: 1619px;
}
@media (max-width: 991.98px) {
  .index-page .container {
    width: min(100% - 40px, 1619px);
  }
}
.index-page .service-carousel__arrow,
.index-page .section-iso .iso-carousel__arrow,
.index-page #process .process-carousel-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #1555C9;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.index-page .service-carousel__arrow--next,
.index-page .section-iso .iso-carousel__arrow--next,
.index-page #process .process-carousel-button--next {
  background: #1555C9;
}
.index-page .service-carousel__arrow:hover,
.index-page .service-carousel__arrow:focus-visible,
.index-page .section-iso .iso-carousel__arrow:hover,
.index-page .section-iso .iso-carousel__arrow:focus-visible,
.index-page #process .process-carousel-button:hover,
.index-page #process .process-carousel-button:focus-visible {
  background: #020503;
  color: #FFFFFF;
}
.index-page .service-carousel__arrow i,
.index-page .section-iso .iso-carousel__arrow i,
.index-page #process .process-carousel-button i {
  font-size: 12px;
}
.index-page {
  /* Hero: fill the first viewport below the sticky header. */
}
.index-page .hero {
  position: relative;
  display: flex;
  height: calc(100vh - 102px);
  height: calc(100svh - 102px);
  min-height: 0;
  max-height: none;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: #020503;
}
.index-page .hero__media, .index-page .hero__media--video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  aspect-ratio: auto;
}
.index-page .hero__media::after {
  background: transparent;
}
.index-page .hero__media--video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.index-page .hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 5, 3, 0.78) 0%, rgba(2, 5, 3, 0.58) 44%, rgba(2, 5, 3, 0.22) 100%), linear-gradient(0deg, rgba(2, 5, 3, 0.52) 0%, rgba(2, 5, 3, 0.08) 48%, rgba(2, 5, 3, 0.32) 100%);
  opacity: 1;
  pointer-events: none;
}
.index-page .hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  height: 100%;
  align-content: end;
  align-items: end;
  gap: 48px;
  padding-top: 102px;
  padding-bottom: 184px;
}
.index-page .hero__content {
  max-width: 780px;
  margin: 0;
}
.index-page .hero__eyebrow {
  color: #FFFFFF;
}
.index-page .hero__eyebrow::before {
  background: #FFFFFF;
}
.index-page .hero h1 {
  max-width: 780px;
  margin: 0;
  color: #FFFFFF;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 72px;
}
.index-page .hero__title-break {
  display: block;
}
.index-page .hero h2 {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
}
.index-page .hero__lead {
  max-width: 780px;
  margin: 12px 0 0;
  color: #FFFFFF;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
}
.index-page .hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  max-width: 640px;
  margin: 26px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  list-style: none;
}
.index-page .hero__points li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.55;
}
.index-page .hero__points li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFFFFF;
  content: "";
}
.index-page .hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .index-page .hero {
    height: calc(100vh - 72px);
    height: calc(100svh - 72px);
    max-height: none;
  }
  .index-page .hero h1 {
    font-size: 42px;
    line-height: 58px;
  }
  .index-page .hero h2 {
    max-width: 640px;
    font-size: 20px;
    line-height: 1.58;
  }
  .index-page .hero__inner {
    padding-bottom: 148px;
  }
}
@media (max-width: 991.98px) {
  .index-page .hero {
    height: auto;
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    max-height: none;
  }
  .index-page .hero__inner {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    gap: 32px;
    padding-top: 72px;
    padding-bottom: 48px;
  }
  .index-page .hero h1 {
    font-size: 36px;
    line-height: 50px;
  }
  .index-page .hero h2 {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.55;
  }
  .index-page .hero__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .index-page .hero {
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
  }
  .index-page .hero__inner {
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    gap: 20px;
    padding-top: 48px;
    padding-bottom: 28px;
  }
  .index-page .hero__media--video video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .index-page .hero h1 {
    font-size: 32px;
    line-height: 44px;
  }
  .index-page .hero__title-break {
    display: none;
  }
  .index-page .hero h2 {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.58;
  }
  .index-page .hero__lead {
    font-size: 14px;
    line-height: 1.7;
  }
  .index-page .hero__points {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
    margin-top: 16px;
  }
  .index-page .hero__points li {
    font-size: 13px;
    line-height: 1.55;
  }
}
@media (max-width: 991.98px) {
  .index-page .hero__actions {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .index-page .hero__actions {
    width: 100%;
    align-items: stretch;
  }
  .index-page .hero__actions .btn-arrow {
    width: -moz-max-content;
    width: max-content;
  }
}
.index-page {
  /* About CertiSafe: two-column layout from the HOME artboard. */
}
.index-page .section-about {
  padding-block: 72px;
  background: #FFFFFF;
}
.index-page .section-about .about-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(48px, 7.8vw, 150px);
  align-items: start;
}
.index-page .section-about .about-feature__intro {
  min-width: 0;
}
.index-page .section-about .about-feature__tagline {
  max-width: 480px;
  margin: 20px 0 0;
  color: #161616;
  font-size: 20px;
  line-height: 1.8;
}
.index-page .section-about .about-feature__copy {
  min-width: 0;
  padding: 0 0 0 32px;
  border-left: 1px solid #1555C9;
}
.index-page .section-about .about-feature__copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: #161616;
  font-size: 16px;
  line-height: 1.8;
  list-style: none;
}
.index-page .section-about .about-feature__copy ul li {
  position: relative;
  padding-left: 18px;
}
.index-page .section-about .about-feature__copy ul li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #74A5FF;
  content: "";
}
.index-page .section-about .about-feature__copy p {
  margin: 0;
  color: #161616;
  font-size: 18px;
  line-height: 1.9;
}
.index-page .section-about .about-feature__copy p + p {
  margin-top: 20px;
}
.index-page .section-about .about-feature__copy > p:last-of-type {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.index-page .section-about .about-feature__button {
  margin-top: 48px;
}
@media (max-width: 991.98px) {
  .index-page .section-about .about-feature {
    width: min(100% - 40px, 1619px);
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .index-page .section-about .about-feature__copy {
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .index-page .section-about {
    padding-block: 72px;
  }
  .index-page .section-about .about-feature {
    gap: 32px;
  }
  .index-page .section-about .about-feature__copy {
    padding-left: 32px;
  }
  .index-page .section-about .about-feature__copy p {
    font-size: 16px;
    line-height: 1.8;
  }
  .index-page .section-about .about-feature__copy ul {
    font-size: 16px;
    line-height: 1.8;
  }
}
.index-page {
  /* Trust statistics: match the XD panel and three-card layout. */
}
.index-page .stats {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block: 72px;
  background: #FFFFFF !important;
}
.index-page .stats__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 302px, 1619px);
  padding: 0 !important;
  background: transparent !important;
}
.index-page .stats__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 477px;
  width: 100%;
  padding: 58px 150px 66px;
  box-sizing: border-box;
  border-radius: 23px;
  background: #202020 !important;
  background-clip: padding-box;
}
.index-page .stats__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.index-page .stats__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 14, 0.58);
}
.index-page .stats__background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.42;
}
.index-page .stats__content {
  position: relative;
  z-index: 1;
}
.index-page .stats__heading {
  margin: 0 0 34px;
  text-align: center;
}
.index-page .stats h2 {
  color: #FFFFFF !important;
}
.index-page .stats__heading h2 {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}
.index-page .stats__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.index-page .stats__item {
  min-height: 207px;
  padding: 32px 20px;
  border: 0 !important;
  border-radius: 15px;
  background: rgba(128, 137, 137, 0.34) !important;
  text-align: left !important;
}
.index-page .stats__label {
  display: block;
  margin: 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.index-page .stats__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
  color: #1555C9;
  font-family: Poppins, "Noto Sans TC", sans-serif;
  font-size: clamp(44px, 3.2vw, 64px);
  font-weight: 700;
  line-height: 1;
}
.index-page .stats__value span {
  display: inline-block;
}
.index-page .stats__unit {
  display: inline-block;
  color: #1555C9;
  font-family: "Source Han Sans HK", Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.index-page .stats__item p {
  max-width: none;
  margin: 12px 0 0;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.8;
}
@media (max-width: 991.98px) {
  .index-page .stats__inner {
    width: min(100% - 40px, 720px);
  }
  .index-page .stats__panel {
    min-height: 0;
    padding: 48px 28px 42px;
  }
  .index-page .stats__list {
    gap: 20px;
  }
  .index-page .stats__item {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .index-page .stats {
    padding-block: 48px;
  }
  .index-page .stats__panel {
    padding: 42px 20px 32px;
    border-radius: 20px;
  }
  .index-page .stats__heading {
    margin-bottom: 32px;
  }
  .index-page .stats__list {
    grid-template-columns: 1fr;
  }
  .index-page .stats__item {
    min-height: 0;
  }
}
.index-page {
  /* Final Our Services overrides. */
}
.index-page .section-services {
  overflow: hidden;
  background: #FFFFFF !important;
}
.index-page .section-services > article {
  width: min(100% - 302px, 1619px);
  max-width: 1619px;
  padding-inline: 0;
}
.index-page .section-services .service-carousel {
  width: 100%;
}
.index-page .section-services .service-carousel__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(100%, 1619px);
  margin: 0 auto 48px;
  gap: 32px;
}
.index-page .section-services .service-tabs {
  display: flex;
  flex: 1 1 auto;
  gap: 38px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.index-page .section-services .service-tabs::-webkit-scrollbar {
  display: none;
}
.index-page .section-services .service-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 12px;
  border: 0;
  background: transparent;
  color: rgba(38, 38, 38, 0.52);
  font-family: "Source Han Sans HK", Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}
.index-page .section-services .service-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #1555C9;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.index-page .section-services .service-tab:hover,
.index-page .section-services .service-tab:focus-visible,
.index-page .section-services .service-tab.is-active {
  color: #161616;
}
.index-page .section-services .service-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}
.index-page .section-services .service-carousel__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}
.index-page .section-services .service-swiper {
  width: calc(100% + max(20px, (100vw - 1619px) / 2));
  margin-left: calc(max(20px, (100vw - 1619px) / 2) * -1);
  padding-left: max(20px, (100vw - 1619px) / 2);
  overflow: visible;
}
.index-page .section-services .service-grid {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.index-page .section-services .service-card {
  flex: 0 0 auto;
  min-width: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.index-page .section-services .service-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.index-page .section-services .service-card__media {
  aspect-ratio: 1.52;
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
  background: #F6F6F6;
}
.index-page .section-services .service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-page .section-services .service-card__body {
  min-height: 0;
  padding: 12px 0 0;
}
.index-page .section-services .service-card__body h3 {
  margin: 0;
  color: #161616;
  font-family: "Source Han Sans HK", Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.index-page .section-services .service-card__body p,
.index-page .section-services .service-card__action {
  display: none;
}
@media (min-width: 992px) {
  .index-page .section-services .service-swiper .service-card {
    width: calc((100% - 36px) / 4.7);
  }
}
@media (max-width: 991.98px) {
  .index-page .section-services > article {
    width: calc(100% - 40px);
  }
  .index-page .section-services .service-carousel__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .index-page .section-services .service-carousel__controls {
    align-self: flex-end;
  }
  .index-page .section-services .service-swiper {
    width: calc(100% + 20px);
    margin-left: -20px;
    padding-left: 20px;
  }
  .index-page .section-services .service-swiper .service-card {
    width: min(72vw, 420px);
  }
}
@media (max-width: 767.98px) {
  .index-page .section-services .section-heading,
  .index-page .section-services .service-carousel__toolbar {
    margin-bottom: 32px;
  }
  .index-page .section-services .service-tabs {
    width: 100%;
    gap: 24px;
  }
  .index-page .section-services .service-tab {
    font-size: 16px;
  }
}
.index-page .section-iso {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f5f5f5;
  padding-block: clamp(82px, 7vw, 126px);
}
.index-page .section-iso__earth {
  position: absolute;
  z-index: 0;
  top: 7%;
  right: -4%;
  width: min(54vw, 900px);
  pointer-events: none;
  opacity: 0.48;
}
.index-page .section-iso__earth img {
  display: block;
  width: 100%;
  height: auto;
}
.index-page .section-iso > .container {
  position: relative;
  z-index: 1;
}
.index-page .section-iso .section-heading {
  margin-bottom: clamp(38px, 4.2vw, 64px);
  text-align: left;
}
.index-page .section-iso .iso-carousel {
  position: relative;
}
.index-page .section-iso .iso-carousel__controls {
  position: absolute;
  z-index: 3;
  top: clamp(-96px, -6vw, -62px);
  right: 0;
  display: flex;
  gap: 8px;
}
.index-page .section-iso .iso-swiper {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}
.index-page .section-iso .iso-grid {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.index-page .section-iso .iso-card {
  position: relative;
  width: 25%;
  min-width: 0;
  height: clamp(436px, 29vw, 560px);
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  background: #1555C9;
  box-shadow: none;
}
.index-page .section-iso .iso-card:last-child {
  border-right: 0;
}
.index-page .section-iso .iso-card__link {
  position: relative;
  display: block;
  height: 100%;
  color: #FFFFFF;
}
.index-page .section-iso .iso-card__media,
.index-page .section-iso .iso-card__shade {
  position: absolute;
  inset: 0;
  margin: 0;
}
.index-page .section-iso .iso-card__media {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.index-page .section-iso .iso-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-page .section-iso .iso-card__shade {
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.index-page .section-iso .iso-card.is-active .iso-card__media,
.index-page .section-iso .iso-card.swiper-slide-active .iso-card__media,
.index-page .section-iso .iso-card:hover .iso-card__media,
.index-page .section-iso .iso-card:focus-within .iso-card__media,
.index-page .section-iso .iso-card.is-active .iso-card__shade,
.index-page .section-iso .iso-card.swiper-slide-active .iso-card__shade,
.index-page .section-iso .iso-card:hover .iso-card__shade,
.index-page .section-iso .iso-card:focus-within .iso-card__shade {
  opacity: 1;
}
.index-page .section-iso .iso-card__content {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  padding: 30px 24px 28px;
}
.index-page .section-iso .iso-card__index {
  display: block;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}
.index-page .section-iso .iso-card__details {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  display: flex;
  height: clamp(204px, 14vw, 230px);
  flex-direction: column;
  align-items: flex-start;
}
.index-page .section-iso .iso-card__details h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(20px, 1.45vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}
.index-page .section-iso .iso-card__details p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}
.index-page .section-iso .iso-card__action {
  display: none;
  align-items: center;
  margin-top: auto;
}
.index-page .section-iso .iso-card.is-active .iso-card__action,
.index-page .section-iso .iso-card.swiper-slide-active .iso-card__action,
.index-page .section-iso .iso-card:hover .iso-card__action,
.index-page .section-iso .iso-card:focus-within .iso-card__action {
  display: inline-flex;
}
.index-page .section-iso .iso-card.is-active .iso-card__action,
.index-page .section-iso .iso-card.swiper-slide-active .iso-card__action,
.index-page .section-iso .iso-card:hover .iso-card__action,
.index-page .section-iso .iso-card:focus-within .iso-card__action {
  gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}
.index-page .section-iso .iso-card.is-active .iso-card__action span,
.index-page .section-iso .iso-card.swiper-slide-active .iso-card__action span,
.index-page .section-iso .iso-card:hover .iso-card__action span,
.index-page .section-iso .iso-card:focus-within .iso-card__action span {
  border-radius: 999px 0 0 999px;
  background: #020503;
}
.index-page .section-iso .iso-card.is-active .iso-card__action i,
.index-page .section-iso .iso-card.swiper-slide-active .iso-card__action i,
.index-page .section-iso .iso-card:hover .iso-card__action i,
.index-page .section-iso .iso-card:focus-within .iso-card__action i {
  border-radius: 0 999px 999px 0;
  background: #020503;
}
.index-page .section-iso .iso-card.is-active .iso-card__action i::before,
.index-page .section-iso .iso-card.swiper-slide-active .iso-card__action i::before,
.index-page .section-iso .iso-card:hover .iso-card__action i::before,
.index-page .section-iso .iso-card:focus-within .iso-card__action i::before {
  transform: rotate(0deg);
}
.index-page .section-iso .iso-card__arrow {
  position: absolute;
  bottom: 28px;
  left: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 12px;
}
.index-page .section-iso .iso-card__arrow i {
  transform: rotate(-45deg);
}
.index-page .section-iso .iso-card.is-active .iso-card__arrow,
.index-page .section-iso .iso-card.swiper-slide-active .iso-card__arrow,
.index-page .section-iso .iso-card:hover .iso-card__arrow,
.index-page .section-iso .iso-card:focus-within .iso-card__arrow {
  display: none;
}
@media (max-width: 991.98px) {
  .index-page .section-iso__earth {
    right: -18%;
    width: 68vw;
  }
  .index-page .section-iso .iso-card__content {
    padding-inline: 20px;
  }
  .index-page .section-iso .iso-card__details {
    right: 20px;
    left: 20px;
  }
}
@media (max-width: 767.98px) {
  .index-page .section-iso {
    padding-block: 72px 88px;
  }
  .index-page .section-iso__earth {
    top: 8%;
    right: -36%;
    width: 130%;
    opacity: 0.28;
  }
  .index-page .section-iso .section-heading {
    margin-bottom: 48px;
  }
  .index-page .section-iso .iso-carousel__controls {
    top: -52px;
  }
  .index-page .section-iso .iso-swiper {
    overflow: visible;
    border-radius: 12px;
  }
  .index-page .section-iso .iso-card {
    width: auto;
    min-height: 500px;
    height: 500px;
    border-right: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 12px;
  }
  .index-page .section-iso .iso-card__content {
    padding: 24px 20px 26px;
  }
  .index-page .section-iso .iso-card__details {
    bottom: 26px;
    height: 210px;
  }
  .index-page .section-iso .iso-card__arrow {
    bottom: 26px;
    left: 20px;
  }
}
.index-page #process {
  padding-block: clamp(88px, 8vw, 136px);
}
.index-page #process .section-heading {
  margin-bottom: clamp(34px, 3.8vw, 58px);
  text-align: left;
}
.index-page #process .process-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 clamp(56px, 6vw, 92px);
  padding: 0;
  border: 0;
  background: transparent;
}
.index-page #process .process-tab {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 14px 0 16px;
  border: 0;
  border-top: 1px solid #a7a7a7;
  border-radius: 0;
  background: transparent;
  color: #161616;
  text-align: left;
}
.index-page #process .process-tab:hover,
.index-page #process .process-tab:focus-visible {
  background: transparent;
  color: #1555C9;
}
.index-page #process .process-tab.is-active {
  border-top-color: #1555C9;
  background: transparent;
  color: #161616;
}
.index-page #process .process-tab__number {
  font-family: Poppins, "Noto Sans TC", sans-serif;
  display: inline-grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #d7e1f4;
  color: #161616;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
}
.index-page #process .process-tab.is-active .process-tab__number {
  background: #1555C9;
  color: #FFFFFF;
}
.index-page #process .process-tab__title {
  min-width: 0;
  overflow: hidden;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index-page #process .process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}
.index-page #process .process-copy {
  min-width: 0;
}
.index-page #process .process-panel__text {
  display: none;
  min-width: 0;
  padding: 0;
}
.index-page #process .process-panel__text.is-active {
  display: block;
}
.index-page #process .process-swiper {
  width: min(100%, clamp(360px, 31vw, 560px));
  min-width: 0;
  justify-self: center;
}
.index-page #process .process-swiper.swiper-initialized {
  overflow: visible;
}
.index-page #process .process-swiper:not(.swiper-initialized) .process-panel__media {
  display: none;
}
.index-page #process .process-swiper:not(.swiper-initialized) .process-panel__media.is-active {
  display: block;
}
.index-page #process .process-swiper.swiper-cards .process-panel__media {
  overflow: visible;
}
.index-page #process .process-swiper.swiper-initialized .process-panel__media {
  display: block;
}
.index-page #process .process-panel__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.index-page #process .process-panel__step {
  display: block;
  color: #1555C9;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}
.index-page #process .process-panel__text h3 {
  margin-top: 22px;
  color: #161616;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.index-page #process .process-panel__time {
  display: block;
  margin-top: 4px;
  padding: 0;
  border: 0;
  color: #161616;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}
.index-page #process .process-panel__text p {
  max-width: 500px;
  margin-top: 20px;
  color: #161616;
  font-size: 18px;
  line-height: 1.85;
}
.index-page #process .process-panel__controls {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}
.index-page #process .process-pagination {
  display: none;
}
.index-page #process .process-panel__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-page #process .process-panel__media-back {
  pointer-events: none;
  filter: saturate(0.2) brightness(1.12);
  opacity: 0.42;
}
.index-page #process .process-panel__media-back--one {
  z-index: 0;
  transform: translate(-4px, 3px) rotate(-0.5deg);
}
.index-page #process .process-panel__media-back--two {
  z-index: 1;
  opacity: 0.54;
  transform: translate(-2px, 1.5px) rotate(-0.25deg);
}
.index-page #process .process-panel__media-main {
  z-index: 2;
}
@media (max-width: 991.98px) {
  .index-page #process .process-tabs {
    gap: 14px;
  }
  .index-page #process .process-tab__title {
    font-size: 12px;
  }
  .index-page #process .process-layout {
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .index-page #process {
    padding-block: 72px 88px;
  }
  .index-page #process .process-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 38px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .index-page #process .process-tabs::-webkit-scrollbar {
    display: none;
  }
  .index-page #process .process-tab {
    flex: 0 0 164px;
  }
  .index-page #process .process-tab__title {
    font-size: 13px;
  }
  .index-page #process .process-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .index-page #process .process-copy {
    order: 1;
    width: 100%;
  }
  .index-page #process .process-swiper {
    order: -1;
    align-self: center;
  }
  .index-page #process .process-panel__text {
    padding: 0;
  }
  .index-page #process .process-swiper {
    width: 100%;
    max-width: 100%;
  }
  .index-page #process .process-pagination {
    display: flex;
    order: 2;
    width: 100%;
    margin-top: 18px;
  }
  .index-page #process .process-panel__media {
    height: auto;
    align-self: center;
  }
  .index-page #process .process-panel__controls {
    margin-top: 26px;
  }
}
.index-page .section-news {
  overflow: hidden;
  background: #F6F6F6;
  padding-block: clamp(82px, 7vw, 126px);
}
.index-page .section-news .news-heading {
  margin-bottom: clamp(34px, 3.8vw, 52px);
  text-align: left;
}
.index-page .section-news .news-heading__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 0;
}
.index-page .section-news .news-heading__row > .btn-arrow {
  flex: 0 0 auto;
  margin-left: auto;
}
.index-page .section-news .news-swiper {
  overflow: visible;
}
.index-page .section-news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  padding: 0;
  margin: 0;
  list-style: none;
}
.index-page .section-news .news-card {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.index-page .section-news .news-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  outline: none;
}
.index-page .section-news .news-card__link:focus-visible {
  outline: 2px solid #1555C9;
  outline-offset: 6px;
}
.index-page .section-news .news-card__media {
  position: relative;
  aspect-ratio: 1.75;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #F4F7FC;
}
.index-page .section-news .news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.index-page .section-news .news-card:hover .news-card__media img,
.index-page .section-news .news-card:focus-within .news-card__media img {
  transform: scale(1.03);
}
.index-page .section-news .news-card__body {
  padding: 16px 0 0;
}
.index-page .section-news .news-card__meta {
  margin: 0;
}
.index-page .section-news .news-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 8px 10px;
  border: 1px solid #1555C9;
  border-radius: 999px;
  color: #161616;
  font-size: 16px;
  line-height: 1;
}
.index-page .section-news .news-card__body h3 {
  margin: 14px 0 0;
  color: #161616;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.65;
}
@media (max-width: 767.98px) {
  .index-page .section-news {
    padding-block: 72px 88px;
  }
  .index-page .section-news .news-heading__row {
    align-items: center;
    flex-wrap: wrap;
  }
  .index-page .section-news .news-grid {
    display: flex;
    gap: 16px;
  }
  .index-page .section-news .news-card {
    flex: 0 0 82%;
  }
}
.index-page .section-clients {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding-block: clamp(84px, 7vw, 128px);
}
.index-page .section-clients__earth {
  position: absolute;
  z-index: 0;
  top: 24%;
  left: -5%;
  width: min(54vw, 860px);
  pointer-events: none;
  opacity: 0.55;
}
.index-page .section-clients__earth img {
  display: block;
  width: 100%;
  height: auto;
}
.index-page .section-clients .clients-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(520px, 1.08fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
}
.index-page .section-clients .clients-feature__copy {
  min-width: 0;
}
.index-page .section-clients .clients-feature__copy .section-heading {
  margin-bottom: 34px;
  text-align: left;
}
.index-page .section-clients .clients-feature__copy h3 {
  margin: 0;
  color: #161616;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
}
.index-page .section-clients .clients-feature__copy > p {
  max-width: 360px;
  margin-top: 24px;
  color: #161616;
  font-size: 18px;
  line-height: 1.85;
}
.index-page .section-clients .clients-feature__copy > p + p {
  margin-top: 22px;
}
.index-page .section-clients .clients-logo-panel {
  width: 100%;
  justify-self: end;
  min-width: 0;
  padding: 34px 34px 22px;
  border-radius: 14px;
  background: #1555C9;
}
.index-page .section-clients .clients-logo-panel .logo-swiper {
  overflow: hidden;
}
.index-page .section-clients .clients-logo-panel .logo-page {
  height: auto;
}
.index-page .section-clients .clients-logo-panel .logo-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.index-page .section-clients .clients-logo-panel .logo-page__item {
  min-width: 0;
}
.index-page .section-clients .clients-logo-panel .logo-page__item a {
  display: grid;
  min-height: 114px;
  place-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: #FFFFFF;
  box-shadow: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.index-page .section-clients .clients-logo-panel .logo-page__item a:hover,
.index-page .section-clients .clients-logo-panel .logo-page__item a:focus-visible {
  background: #f8fbff;
  transform: translateY(-2px);
}
.index-page .section-clients .clients-logo-panel .logo-page__item img {
  display: block;
  width: min(100%, 164px);
  max-height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
.index-page .section-clients .clients-logo-panel .logo-swiper .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.index-page .section-clients .clients-logo-panel .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}
.index-page .section-clients .clients-logo-panel .swiper-pagination-bullet-active {
  background: #FFFFFF;
}
@media (max-width: 991.98px) {
  .index-page .section-clients .clients-feature {
    grid-template-columns: minmax(220px, 0.75fr) minmax(420px, 1.25fr);
    gap: 36px;
  }
  .index-page .section-clients .clients-logo-panel {
    padding: 24px 20px 18px;
  }
  .index-page .section-clients .clients-logo-panel .logo-page__grid {
    gap: 12px 8px;
  }
}
@media (max-width: 767.98px) {
  .index-page .section-clients {
    padding-block: 72px 88px;
  }
  .index-page .section-clients__earth {
    top: 17%;
    left: -34%;
    width: 130%;
    opacity: 0.3;
  }
  .index-page .section-clients .clients-feature {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .index-page .section-clients .clients-feature__copy .section-heading {
    margin-bottom: 28px;
  }
  .index-page .section-clients .clients-feature__copy > p {
    max-width: 100%;
  }
  .index-page .section-clients .clients-logo-panel {
    padding: 18px 14px 16px;
    border-radius: 12px;
  }
  .index-page .section-clients .clients-logo-panel .logo-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .index-page .section-clients .clients-logo-panel .logo-page__item a {
    min-height: 72px;
  }
}
@media (max-width: 767.98px) {
  .index-page .section-clients .container {
    width: min(100% - 32px, 540px);
  }
}
.index-page .section-faq {
  overflow: hidden;
  background: #F6F6F6;
  padding-block: clamp(82px, 7vw, 126px);
}
.index-page .section-faq .faq-heading {
  margin-bottom: clamp(34px, 3.8vw, 52px);
  text-align: left;
}
.index-page .section-faq .faq-heading__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 0;
}
.index-page .section-faq .faq-heading__row > .btn-arrow {
  flex: 0 0 auto;
  margin-left: auto;
}
.index-page .section-faq .faq-list {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
}
.index-page .section-faq .faq-item {
  overflow: hidden;
  padding: 0;
  border: 1px solid #e1e5ec;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: none;
}
.index-page .section-faq .faq-item summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: #161616;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}
.index-page .section-faq .faq-item summary::-webkit-details-marker {
  display: none;
}
.index-page .section-faq .faq-item summary:focus-visible {
  outline: 2px solid #1555C9;
  outline-offset: -3px;
}
.index-page .section-faq .faq-item__icon {
  flex: 0 0 auto;
  color: #1555C9;
  font-size: 11px;
}
.index-page .section-faq .faq-item[open] summary {
  border-bottom: 1px solid #edf0f4;
}
.index-page .section-faq .faq-item__content {
  overflow: hidden;
  padding: 0 22px 20px;
  color: #2D2D2D;
  font-size: 18px;
  line-height: 1.75;
}
.index-page .section-faq .faq-item__inner {
  padding-top: 14px;
}
.index-page .section-faq .faq-item__content p + p,
.index-page .section-faq .faq-item__content .content-list {
  margin-top: 12px;
}
.index-page .section-faq .faq-item__content .content-list {
  padding-left: 18px;
}
@media (max-width: 767.98px) {
  .index-page .section-faq {
    padding-block: 72px 88px;
  }
  .index-page .section-faq .faq-heading__row {
    align-items: center;
    flex-wrap: wrap;
  }
  .index-page .section-faq .faq-list {
    gap: 12px;
  }
  .index-page .section-faq .faq-item summary {
    min-height: 60px;
    padding-inline: 16px;
    font-size: 13px;
  }
  .index-page .section-faq .faq-item__content {
    padding-inline: 16px;
    font-size: 12px;
  }
}
.index-page .section-faq {
  padding-bottom: clamp(196px, 12vw, 232px);
}
@media (max-width: 767.98px) {
  .index-page {
    padding-bottom: 158px;
  }
}
.index-page .cta-strip {
  position: relative;
  z-index: 5;
  margin-top: -130px;
  margin-bottom: -130px;
  padding: 0;
  background: transparent;
  color: #FFFFFF;
}
.index-page .cta-strip__inner {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1619px;
  padding: 64px 60px;
  border-radius: 12px;
  background-image: linear-gradient(90deg, rgba(21, 85, 201, 0.97) 0%, rgba(21, 85, 201, 0.78) 48%, rgba(21, 85, 201, 0.12) 100%), url("/themes/theme/static/images/CTA.png");
  background-position: center;
  background-size: cover;
  text-align: left;
}
.index-page .cta-strip__inner h2 {
  color: #FFFFFF;
  font-weight: 700;
}
.index-page .cta-strip__inner p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  letter-spacing: 0.36px;
  line-height: 1.7;
}
.index-page .cta-strip .btn-arrow {
  margin-top: 28px;
}
.index-page .cta-strip .btn-arrow span,
.index-page .cta-strip .btn-arrow i {
  background: #FFFFFF;
  color: #1555C9;
}
.index-page .cta-strip .btn-arrow:hover span,
.index-page .cta-strip .btn-arrow:focus-visible span,
.index-page .cta-strip .btn-arrow:hover i,
.index-page .cta-strip .btn-arrow:focus-visible i {
  background: #020503;
  color: #FFFFFF;
}
@media (max-width: 767.98px) {
  .index-page .cta-strip {
    margin-top: -92px;
    margin-bottom: -100px;
  }
  .index-page .cta-strip__inner {
    min-height: 320px;
    width: min(100% - 40px, 1619px);
    max-width: none;
    padding: 48px 24px;
    border-radius: 12px;
    background-position: 62% center;
  }
  .index-page .cta-strip__inner h2 {
    max-width: 100%;
    font-size: 28px;
  }
  .index-page .cta-strip__inner p {
    max-width: 100%;
    font-size: 12px;
  }
}
@media (max-width: 991.98px) {
  .index-page .section-services .service-carousel__controls,
  .index-page .section-iso .iso-carousel__controls,
  .index-page #process .process-panel__controls,
  .index-page .swiper-button-prev,
  .index-page .swiper-button-next {
    display: none;
  }
}
.index-page .section-heading h2,
.index-page .about-feature__intro h2,
.index-page .stats h2,
.index-page .cta-strip__inner h2 {
  font-size: 50px;
  line-height: 72px;
}
@media (max-width: 1199.98px) {
  .index-page .section-heading h2,
  .index-page .about-feature__intro h2,
  .index-page .stats h2,
  .index-page .cta-strip__inner h2 {
    font-size: 42px;
    line-height: 58px;
  }
}
@media (max-width: 991.98px) {
  .index-page .section-heading h2,
  .index-page .about-feature__intro h2,
  .index-page .stats h2,
  .index-page .cta-strip__inner h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .index-page .section-heading h2,
  .index-page .about-feature__intro h2,
  .index-page .stats h2,
  .index-page .cta-strip__inner h2 {
    font-size: 32px;
    line-height: 44px;
  }
}

body:has(.index-page) .site-footer {
  position: relative;
  z-index: 1;
  padding-top: 190px;
}

@media (max-width: 767.98px) {
  body:has(.index-page) .site-footer {
    padding-top: 48px;
  }
}
.page-breadcrumb,
.service-page__breadcrumb {
  border-bottom: 1px solid rgba(22, 22, 22, 0.12);
  background: #FFFFFF;
}
.page-breadcrumb .container,
.service-page__breadcrumb .container {
  min-height: 70px;
  display: flex;
  align-items: center;
}
.page-breadcrumb ol,
.service-page__breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #7B7B7B;
  font-size: 16px;
  line-height: 1.4;
}
.page-breadcrumb a,
.service-page__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-breadcrumb a:hover, .page-breadcrumb a:focus-visible,
.service-page__breadcrumb a:hover,
.service-page__breadcrumb a:focus-visible {
  color: #1555C9;
}
.page-breadcrumb > .container > ol > li:first-child a,
.service-page__breadcrumb > .container > ol > li:first-child a {
  display: inline-flex;
  align-items: center;
  color: #1555C9;
}
.page-breadcrumb .page-breadcrumb__separator,
.page-breadcrumb .service-page__breadcrumb-separator,
.service-page__breadcrumb .page-breadcrumb__separator,
.service-page__breadcrumb .service-page__breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  color: rgba(22, 22, 22, 0.42);
  font-size: 8px;
}

@media (max-width: 767.98px) {
  .page-breadcrumb .container,
  .service-page__breadcrumb .container {
    min-height: 76px;
    padding-block: 12px;
  }
  .page-breadcrumb ol,
  .service-page__breadcrumb ol {
    gap: 8px 6px;
  }
}
.service-page {
  overflow: clip;
  color: #161616;
  background: #FFFFFF;
}
.service-page .container {
  width: min(100% - 302px, 1619px);
  max-width: 1619px;
}
.service-page__overview {
  background: #FFFFFF;
}
.service-page__overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 150px);
}
.service-page__overview-copy {
  min-width: 0;
}
.service-page__overview-copy h2 {
  max-width: 520px;
  margin: 0 0 24px;
  color: #161616;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: clamp(28px, 2.1vw, 42px);
  font-weight: 700;
  line-height: 1.25;
}
.service-page__overview-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-page__overview-list li {
  position: relative;
  padding-left: 24px;
  color: #161616;
  font-size: 16px;
  line-height: 1.7;
}
.service-page__overview-list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: #1555C9;
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.service-page__overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.service-page__overview-actions .btn-arrow {
  min-height: 38px;
  gap: 0;
  font-size: 16px;
}
.service-page__overview-actions .btn-arrow span,
.service-page__overview-actions .btn-arrow i {
  min-height: 38px;
}
.service-page__overview-actions .btn-arrow span {
  padding-inline: 18px;
}
.service-page__overview-actions .btn-arrow i {
  width: 38px;
  font-size: 11px;
}
.service-page__overview-actions .btn-arrow:hover, .service-page__overview-actions .btn-arrow:focus-visible {
  gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}
.service-page__overview-actions .btn-arrow--outline {
  color: #161616;
}
.service-page__overview-actions .btn-arrow--outline span,
.service-page__overview-actions .btn-arrow--outline i {
  border: 1px solid rgba(22, 22, 22, 0.65);
  background: #FFFFFF;
  color: #161616;
}
.service-page__overview-actions .btn-arrow--outline:hover, .service-page__overview-actions .btn-arrow--outline:focus-visible {
  color: #FFFFFF;
}
.service-page__overview-actions .btn-arrow--outline:hover span,
.service-page__overview-actions .btn-arrow--outline:hover i, .service-page__overview-actions .btn-arrow--outline:focus-visible span,
.service-page__overview-actions .btn-arrow--outline:focus-visible i {
  border-color: #020503;
  background: #020503;
  color: #FFFFFF;
}
.service-page__overview-media {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 810/528;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}
.service-page__overview-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-page__section {
  margin-top: 94px;
}
.service-page__section .section-heading {
  max-width: none;
  margin-bottom: clamp(34px, 3.8vw, 52px);
}
.service-page__section .section-heading--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.service-page__section .section-heading--row .btn-arrow {
  flex: 0 0 auto;
  margin-bottom: 2px;
}
@media (max-width: 1199.98px) {
  .service-page__section {
    margin-top: 76px;
  }
}
@media (max-width: 991.98px) {
  .service-page__section {
    margin-top: 64px;
  }
}
@media (max-width: 767.98px) {
  .service-page__section {
    margin-top: 48px;
  }
}
.service-page__intro {
  margin-top: 0;
  background: #FFFFFF;
}
.service-page__intro .section-heading {
  margin: 0;
}
.service-page__certificate {
  background: #FFFFFF;
}
.service-page__content-banner {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 23px;
}
.service-page__content-banner::after {
  position: absolute;
  inset: 0;
  background: rgba(21, 85, 201, 0.49);
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
}
.service-page__content-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 1619/477;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-page__content-header {
  display: grid;
  grid-template-columns: 129px minmax(0, 1fr);
  gap: 22px;
  margin-top: 62px;
}
@media (max-width: 1199.98px) {
  .service-page__content-header {
    margin-top: 48px;
  }
}
@media (max-width: 991.98px) {
  .service-page__content-header {
    margin-top: 36px;
  }
}
@media (max-width: 767.98px) {
  .service-page__content-header {
    margin-top: 24px;
  }
}
.service-page__content-header .section-heading__lead {
  max-width: none;
}
.service-page__content-icon {
  display: grid;
  width: 129px;
  height: 129px;
  place-items: center;
  border-radius: 50%;
  background: #F4F7FC;
}
.service-page__content-icon img {
  display: block;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-page__content-grid {
  margin: 50px 0 0 151px;
}
.service-page__content-grid > .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-page__content-card {
  min-height: 108px;
  padding: 24px 22px;
  border-radius: 10px;
  background: #F6F6F6;
}
.service-page__advantage, .service-page__benefits, .service-page__applications, .service-page__principles {
  position: relative;
  display: flow-root;
  border-top: 0;
  background: #FFFFFF;
}
.service-page__advantage::before, .service-page__benefits::before, .service-page__applications::before, .service-page__principles::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 302px, 1619px);
  border-top: 1px solid rgba(22, 22, 22, 0.16);
  content: "";
  transform: translateX(-50%);
}
.service-page__advantage .service-page__content-header .section-heading, .service-page__benefits .service-page__content-header .section-heading, .service-page__applications .service-page__content-header .section-heading, .service-page__principles .service-page__content-header .section-heading {
  margin: 0;
}
.service-page__advantage-grid, .service-page__benefits-grid, .service-page__applications-grid, .service-page__principles-grid {
  margin: 50px 0px 0px 151px;
}
.service-page__advantage-grid > .swiper-wrapper, .service-page__benefits-grid > .swiper-wrapper, .service-page__applications-grid > .swiper-wrapper, .service-page__principles-grid > .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.service-page__advantage-card, .service-page__benefits-card, .service-page__applications-card, .service-page__principles-card {
  min-height: 181px;
  padding: 26px 20px 22px;
  border-radius: 10px;
  background: #F6F6F6;
}
.service-page__applications-card h3 span {
  display: block;
  margin-bottom: 4px;
  color: #1555C9;
  font-size: 24px;
  line-height: 1.3;
}
.service-page__image-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
}
.service-page__image-heading figure {
  height: 180px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: #FFFFFF;
}
.service-page__image-heading figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-page__section-intro {
  max-width: 900px;
  margin: 42px 0 48px;
  font-size: 16px;
  line-height: 1.875;
}
.service-page__card-grid {
  display: grid;
  gap: 24px;
}
.service-page__card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-page__card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-page__feature-card, .service-page__benefit-card, .service-page__principle-grid article {
  border: 1px solid rgba(21, 85, 201, 0.16);
  border-radius: 20px;
  background: #FFFFFF;
}
.service-page__feature-card {
  min-height: 189px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-content: start;
}
.service-page__feature-card .service-page__feature-number {
  grid-row: span 2;
}
.service-page__feature-number, .service-page__step-number {
  color: #1555C9;
  font-family: Poppins, "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.service-page__feature-card h3, .service-page__benefit-card h3, .service-page__principle-grid h3 {
  margin: 0;
  color: #161616;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.service-page__feature-card p, .service-page__benefit-card p, .service-page__principle-grid p {
  margin: 14px 0 0;
  color: #161616;
  font-size: 16px;
  line-height: 1.875;
}
.service-page__benefit-card {
  min-height: 319px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-page__principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-page__principle-grid article {
  min-height: 270px;
  padding: 32px;
}
.service-page__principle-grid .service-page__feature-number {
  display: block;
  margin-bottom: 30px;
}
.service-page__support {
  position: relative;
  display: flow-root;
  border-top: 0;
  background: #FFFFFF;
}
.service-page__support::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 302px, 1619px);
  border-top: 1px solid rgba(22, 22, 22, 0.16);
  content: "";
  transform: translateX(-50%);
}
.service-page__support .service-page__content-header .section-heading {
  margin: 0;
}
.service-page__support-panel {
  margin-left: 151px;
  padding: 35px;
  border-radius: 10px;
  background: #F6F6F6;
}
.service-page__support-intro {
  margin: 0;
  color: #2D2D2D;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}
.service-page__support-notice {
  margin: 0;
  color: #2D2D2D;
  font-size: 16px;
  line-height: 1.7;
}
.service-page__support-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}
.service-page__support-list li {
  position: relative;
  padding-left: 16px;
  color: #2D2D2D;
  font-size: 16px;
  line-height: 1.55;
}
.service-page__support-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #74A5FF;
  content: "";
}
.service-page__steps {
  position: relative;
  display: flow-root;
  border-top: 0;
  background: #FFFFFF;
}
.service-page__steps::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 302px, 1619px);
  border-top: 1px solid rgba(22, 22, 22, 0.16);
  content: "";
  transform: translateX(-50%);
}
.service-page__steps .service-page__content-header .section-heading {
  margin: 0;
}
.service-page__step-grid {
  margin-left: 151px;
}
.service-page__step-grid > .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.service-page__step-card {
  position: relative;
  min-height: 152px;
  padding: 52px 20px 22px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #F6F6F6;
}
.service-page__step-card .service-page__step-number {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 68px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 100%;
  color: #FFFFFF;
  background: #1555C9;
  font-family: Poppins, "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
.service-page__records {
  position: relative;
  display: flow-root;
  border-top: 0;
  background: #FFFFFF;
}
.service-page__records::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 302px, 1619px);
  border-top: 1px solid rgba(22, 22, 22, 0.16);
  content: "";
  transform: translateX(-50%);
}
.service-page__records .service-page__content-header .section-heading {
  margin: 0;
}
.service-page__records-grid {
  margin: 50px 0px 0px 151px;
}
.service-page__records-grid > .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.service-page__records-card {
  min-height: 158px;
  padding: 26px 20px 22px;
  border-radius: 10px;
  background: #F6F6F6;
}
.service-page__mobile-swiper > .swiper-wrapper > .swiper-slide {
  width: auto;
  height: auto;
  box-sizing: border-box;
}
.service-page__content-card h3, .service-page__advantage-card h3, .service-page__benefits-card h3, .service-page__applications-card h3, .service-page__principles-card h3, .service-page__step-card h3, .service-page__records-card h3 {
  margin: 0 0 28px;
  color: #161616;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.service-page__content-card p, .service-page__advantage-card p, .service-page__benefits-card p, .service-page__applications-card p, .service-page__principles-card p, .service-page__step-card p, .service-page__records-card p {
  margin: 0;
  color: #161616;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.service-page__faq {
  position: relative;
  display: flow-root;
  border-top: 0;
  background: #FFFFFF;
}
.service-page__faq::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 302px, 1619px);
  border-top: 1px solid rgba(22, 22, 22, 0.16);
  content: "";
  transform: translateX(-50%);
}
.service-page__faq .service-page__content-header .section-heading {
  margin: 0;
}
.service-page__faq-list {
  display: grid;
  gap: 14px;
  margin-left: 151px;
}
.service-page__faq .faq-item {
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #F6F6F6;
}
.service-page__faq .faq-item summary {
  min-height: 50px;
  padding: 30px 14px 30px 20px;
  color: #161616;
  font-size: 18px;
  line-height: 1.5;
}
.service-page__faq .faq-item .faq-item__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #1555C9;
  background: #dce9ff;
  font-size: 10px;
  opacity: 1;
}
.service-page__faq .faq-item__content {
  padding: 0 20px 18px;
  color: #161616;
  font-size: 16px;
  line-height: 1.7;
}
.service-page__faq .faq-item__inner {
  padding-top: 14px;
  border-top: 1px solid rgba(22, 22, 22, 0.12);
}
.service-page__cta {
  margin-bottom: 94px;
  position: relative;
  display: flow-root;
  border-top: 0;
  background: #FFFFFF;
}
.service-page__cta::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 302px, 1619px);
  border-top: 1px solid rgba(22, 22, 22, 0.16);
  content: "";
  transform: translateX(-50%);
}
.service-page__cta .service-page__content-header .section-heading {
  margin: 0;
}
.service-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0 151px;
}
.service-page__cta-actions .btn-arrow {
  min-height: 38px;
  gap: 0;
  font-size: 16px;
}
.service-page__cta-actions .btn-arrow span,
.service-page__cta-actions .btn-arrow i {
  min-height: 38px;
}
.service-page__cta-actions .btn-arrow span {
  padding-inline: 18px;
}
.service-page__cta-actions .btn-arrow i {
  width: 38px;
  font-size: 11px;
}
.service-page__cta-actions .btn-arrow:hover, .service-page__cta-actions .btn-arrow:focus-visible {
  gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}
.service-page__cta-actions .btn-arrow--outline {
  color: #161616;
}
.service-page__cta-actions .btn-arrow--outline span,
.service-page__cta-actions .btn-arrow--outline i {
  border: 1px solid rgba(22, 22, 22, 0.65);
  background: #FFFFFF;
  color: #161616;
}
.service-page__cta-actions .btn-arrow--outline:hover, .service-page__cta-actions .btn-arrow--outline:focus-visible {
  color: #FFFFFF;
}
.service-page__cta-actions .btn-arrow--outline:hover span,
.service-page__cta-actions .btn-arrow--outline:hover i, .service-page__cta-actions .btn-arrow--outline:focus-visible span,
.service-page__cta-actions .btn-arrow--outline:focus-visible i {
  border-color: #020503;
  background: #020503;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .service-page .container {
    width: min(100% - 40px, 1619px);
  }
}
@media (max-width: 1199.98px) {
  .service-page__advantage::before, .service-page__benefits::before, .service-page__applications::before, .service-page__principles::before, .service-page__support::before, .service-page__steps::before, .service-page__records::before, .service-page__faq::before, .service-page__cta::before {
    width: min(100% - 40px, 1619px);
  }
  .service-page__support-panel {
    padding: 48px;
  }
}
@media (max-width: 1199.98px) and (min-width: 768px) {
  .service-page .container {
    width: min(100% - 40px, 1619px);
  }
  .service-page__content-grid, .service-page__advantage-grid, .service-page__benefits-grid, .service-page__applications-grid, .service-page__principles-grid, .service-page__step-grid, .service-page__records-grid {
    margin-left: 0;
  }
  .service-page__advantage-grid > .swiper-wrapper, .service-page__benefits-grid > .swiper-wrapper, .service-page__applications-grid > .swiper-wrapper, .service-page__principles-grid > .swiper-wrapper, .service-page__step-grid > .swiper-wrapper, .service-page__records-grid > .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-page__support-panel, .service-page__faq-list {
    margin-left: 0;
  }
  .service-page__cta-actions {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .service-page__section .section-heading--row {
    display: block;
  }
  .service-page__section .section-heading--row .btn-arrow {
    margin-top: 24px;
  }
  .service-page__intro .section-heading__lead {
    font-size: 15px;
    line-height: 1.8;
  }
  .service-page__overview-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .service-page__overview-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.25;
  }
  .service-page__overview-media {
    min-height: 0;
    aspect-ratio: 810/528;
  }
  .service-page__content-header {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }
  .service-page__content-header .section-heading {
    display: contents;
  }
  .service-page__content-header .section-heading h2 {
    grid-column: 2;
    align-self: center;
    margin-top: 0;
  }
  .service-page__content-header .section-heading__lead {
    grid-column: 1/-1;
    margin: 16px 0 0;
  }
  .service-page__content-icon {
    width: 56px;
    height: 56px;
  }
  .service-page__content-icon img {
    width: 30px;
    height: 30px;
  }
  .service-page__content-grid {
    margin-left: 0;
  }
  .service-page__advantage .service-page__content-header, .service-page__benefits .service-page__content-header, .service-page__applications .service-page__content-header, .service-page__principles .service-page__content-header {
    margin-bottom: 24px;
  }
  .service-page__support .service-page__content-header {
    margin-bottom: 24px;
  }
  .service-page__support-panel {
    margin-left: 0;
    padding: 20px 18px 22px;
  }
  .service-page__steps .service-page__content-header {
    margin-bottom: 24px;
  }
  .service-page__step-grid {
    margin-left: 0;
  }
  .service-page__step-card {
    min-height: 0;
    padding: 52px 20px 22px;
  }
  .service-page__records .service-page__content-header {
    margin-bottom: 24px;
  }
  .service-page__records-grid {
    margin-left: 0;
  }
  .service-page__faq .service-page__content-header {
    margin-bottom: 24px;
  }
  .service-page__faq-list {
    margin-left: 0;
  }
  .service-page__faq .faq-item summary {
    min-height: 54px;
    padding-left: 16px;
  }
  .service-page__advantage-grid, .service-page__benefits-grid, .service-page__applications-grid, .service-page__principles-grid {
    margin-left: 0;
  }
  .service-page__content-grid > .swiper-wrapper, .service-page__advantage-grid > .swiper-wrapper, .service-page__benefits-grid > .swiper-wrapper, .service-page__applications-grid > .swiper-wrapper, .service-page__principles-grid > .swiper-wrapper, .service-page__step-grid > .swiper-wrapper, .service-page__records-grid > .swiper-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
  }
  .service-page__content-grid > .swiper-wrapper > .swiper-slide, .service-page__advantage-grid > .swiper-wrapper > .swiper-slide, .service-page__benefits-grid > .swiper-wrapper > .swiper-slide, .service-page__applications-grid > .swiper-wrapper > .swiper-slide, .service-page__principles-grid > .swiper-wrapper > .swiper-slide, .service-page__step-grid > .swiper-wrapper > .swiper-slide, .service-page__records-grid > .swiper-wrapper > .swiper-slide {
    width: auto;
    height: auto;
    box-sizing: border-box;
  }
  .service-page__content-card {
    min-height: 0;
    padding: 22px 20px;
  }
  .service-page__image-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-page__image-heading figure {
    height: 150px;
  }
  .service-page__card-grid, .service-page__card-grid--two, .service-page__card-grid--four, .service-page__principle-grid {
    grid-template-columns: 1fr;
  }
  .service-page__feature-card, .service-page__benefit-card, .service-page__principle-grid article {
    min-height: 0;
  }
  .service-page__feature-card, .service-page__benefit-card, .service-page__principle-grid article {
    padding: 26px;
  }
  .service-page__benefit-card {
    min-height: 220px;
  }
  .service-page__cta .service-page__content-header {
    margin-bottom: 24px;
  }
  .service-page__cta-actions {
    margin-left: 0;
  }
}
.service-page h2 {
  font-size: 36px;
  line-height: 52px;
}
@media (max-width: 1199.98px) {
  .service-page h2 {
    font-size: 32px;
    line-height: 46px;
  }
  .service-page__cta {
    margin-bottom: 76px;
  }
}
@media (max-width: 991.98px) {
  .service-page h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .service-page__cta {
    margin-bottom: 64px;
  }
}
@media (max-width: 767.98px) {
  .service-page h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .service-page__cta {
    margin-bottom: 48px;
  }
}
.service-page__section h2 {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .service-page__content-header .section-heading h2 {
    margin-top: 0;
  }
}
.service-page__section .section-heading__lead {
  margin-top: 14px;
  font-size: 16px;
  line-height: 30px;
}
.service-page__section .service-page__content-card, .service-page__section .service-page__advantage-card, .service-page__section .service-page__benefits-card, .service-page__section .service-page__applications-card, .service-page__section .service-page__principles-card, .service-page__section .service-page__step-card, .service-page__section .service-page__records-card {
  padding: 35px;
}

.news-page .container {
  width: min(100% - 302px, 1619px);
  max-width: 1619px;
}
.news-page__articles {
  overflow: hidden;
  background: #F6F6F6;
  padding-block: clamp(82px, 7vw, 126px);
}
.news-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  padding: 0;
  margin: 0;
  list-style: none;
}
.news-page__item {
  min-width: 0;
}
.news-page__card {
  min-width: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.news-page__card h3 {
  margin: 14px 0 0;
  color: #161616;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.65;
  transition: color 0.24s ease;
}
.news-page__card:hover .news-page__media img, .news-page__card:focus-within .news-page__media img {
  transform: scale(1.03);
}
.news-page__card:hover h3, .news-page__card:focus-within h3 {
  color: #1555C9;
}
.news-page__link {
  display: block;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
.news-page__link:focus-visible {
  outline: 2px solid rgba(21, 85, 201, 0.55);
  outline-offset: 6px;
}
.news-page__media {
  position: relative;
  display: block;
  aspect-ratio: 1.75;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #F4F7FC;
}
.news-page__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-page__body {
  padding: 16px 0 0;
}
.news-page__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}
.news-page__meta {
  min-width: 0;
  margin: 0;
}
.news-page__meta span {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-page__meta span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid #1555C9;
  border-radius: 999px;
  color: #161616;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.news-page__date {
  flex: 0 0 auto;
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.news-page__empty {
  padding: 34px 0;
  border-top: 1px solid rgba(22, 22, 22, 0.16);
}
.news-page__empty p {
  margin: 0;
  color: #2D2D2D;
  font-size: 18px;
  line-height: 1.7;
}
.news-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(44px, 4vw, 64px);
}
.news-page__pagination--mobile {
  display: none;
}
.news-page__page-link, .news-page__page-ellipsis {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.news-page__page-link {
  border: 1px solid rgba(21, 85, 201, 0.2);
  background: #FFFFFF;
  color: #161616;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}
.news-page__page-link:hover, .news-page__page-link:focus {
  border-color: #1555C9;
  color: #1555C9;
}
.news-page__page-link.is-active {
  border-color: #1555C9;
  background: #1555C9;
  color: #FFFFFF;
}
.news-page__page-link.is-disabled {
  pointer-events: none;
  opacity: 0.42;
}
.news-page__page-ellipsis {
  color: rgba(22, 22, 22, 0.46);
}
@media (max-width: 1023.98px) {
  .news-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .news-page__card h3 {
    font-size: 20px;
    line-height: 1.55;
  }
}
@media (max-width: 991.98px) {
  .news-page .container {
    width: min(100% - 40px, 1619px);
  }
}
@media (max-width: 767.98px) {
  .news-page .container {
    width: min(100% - 32px, 540px);
  }
  .news-page__articles {
    padding-block: 72px 88px;
  }
  .news-page__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .news-page__card {
    min-height: 0;
  }
  .news-page__card h3 {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    color: #161616;
    font-size: 16px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .news-page__link {
    display: grid;
    grid-template-columns: clamp(108px, 32vw, 168px) minmax(0, 1fr);
    gap: 12px;
    min-height: 112px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.12);
  }
  .news-page__item:last-child .news-page__link {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .news-page__media {
    width: 100%;
    height: clamp(92px, 24vw, 126px);
    aspect-ratio: auto;
    border-radius: 6px;
  }
  .news-page__body {
    min-width: 0;
    padding: 0;
  }
  .news-page__meta-row {
    gap: 8px;
  }
  .news-page__meta span {
    min-height: 24px;
    padding: 7px 9px;
    font-size: 12px;
  }
  .news-page__date {
    white-space: nowrap;
    font-size: 12px;
  }
  .news-page__pagination--desktop {
    display: none;
  }
  .news-page__pagination--mobile {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(22, 22, 22, 0.12);
  }
  .news-page__page-text, .news-page__page-current {
    color: #161616;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
  }
  .news-page__page-text {
    color: #1555C9;
  }
  .news-page__page-text.is-disabled {
    pointer-events: none;
    color: rgba(22, 22, 22, 0.34);
  }
  .news-page__page-current {
    color: rgba(22, 22, 22, 0.62);
  }
}

.news-detail-page {
  overflow: clip;
  background: #FFFFFF;
  color: #161616;
  padding-block: clamp(46px, 5.5vw, 76px) clamp(86px, 8vw, 140px);
}
.news-detail-page__article {
  width: min(100% - clamp(24px, 5vw, 96px), 1440px);
  margin: 0 auto;
}
.news-detail-page__footer {
  max-width: 1300px;
  margin-inline: auto;
}
.news-detail-page__header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
  padding-bottom: clamp(46px, 5.5vw, 76px);
}
.news-detail-page__header::before {
  position: absolute;
  z-index: 0;
  top: calc(-1 * clamp(46px, 5.5vw, 76px));
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #F6F6F6;
  content: "";
}
.news-detail-page__header > * {
  position: relative;
  z-index: 1;
}
.news-detail-page__header h1 {
  max-width: 660px;
  margin: 26px 0 0;
  color: #161616;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}
.news-detail-page__header time {
  margin: 0;
  color: rgba(22, 22, 22, 0.6);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.news-detail-page__header--text-only {
  grid-template-columns: minmax(0, 800px);
  justify-content: center;
}
.news-detail-page__header-copy {
  min-width: 0;
}
.news-detail-page__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 24px;
  color: #7B7B7B;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.news-detail-page__meta > * {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.news-detail-page__meta > * + *::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1555C9;
  content: "";
}
.news-detail-page__body {
  max-width: 1300px;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(360px, 440px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(44px, 6vw, 72px);
  margin-inline: auto;
  padding-top: clamp(48px, 5vw, 68px);
}
.news-detail-page__body--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.news-detail-page__breadcrumb {
  border-bottom: 0;
  background: transparent;
}
.news-detail-page__breadcrumb .container {
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 0;
}
.news-detail-page__breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #7B7B7B;
  font-size: 16px;
  line-height: 1.4;
  list-style: none;
}
.news-detail-page__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-detail-page__breadcrumb a:hover, .news-detail-page__breadcrumb a:focus-visible {
  color: #1555C9;
}
.news-detail-page__breadcrumb > .container > ol > li:first-child a {
  display: inline-flex;
  align-items: center;
  color: #1555C9;
}
.news-detail-page__breadcrumb .page-breadcrumb__separator {
  display: inline-flex;
  align-items: center;
  color: rgba(22, 22, 22, 0.42);
  font-size: 8px;
}
.news-detail-page__content {
  min-width: 0;
  padding-top: 0;
  color: #161616;
  font-size: 16px;
  line-height: 1.875;
  overflow-wrap: break-word;
}
.news-detail-page__content > *:first-child {
  margin-top: 0;
}
.news-detail-page__content p {
  margin: 22px 0 0;
}
.news-detail-page__content h2,
.news-detail-page__content h3,
.news-detail-page__content h4 {
  color: #161616;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-weight: 700;
}
.news-detail-page__content h2 {
  scroll-margin-top: 118px;
  margin: 52px 0 0;
  font-size: 32px;
  line-height: 1.45;
}
.news-detail-page__content h3 {
  margin: 38px 0 0;
  font-size: 24px;
  line-height: 1.5;
}
.news-detail-page__content h4 {
  margin: 32px 0 0;
  font-size: 20px;
  line-height: 1.5;
}
.news-detail-page__content ul,
.news-detail-page__content ol {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.news-detail-page__content li {
  position: relative;
  padding-left: 24px;
}
.news-detail-page__content ul li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #74A5FF;
  content: "";
}
.news-detail-page__content ol {
  counter-reset: news-detail-list;
}
.news-detail-page__content ol li {
  counter-increment: news-detail-list;
}
.news-detail-page__content ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #1555C9;
  font-weight: 700;
  content: counter(news-detail-list) ".";
}
.news-detail-page__content blockquote {
  margin: 36px 0 0;
  padding: 24px 28px;
  border-left: 4px solid #1555C9;
  border-radius: 0 10px 10px 0;
  background: #F6F6F6;
  color: #2D2D2D;
  font-size: 18px;
  line-height: 1.75;
}
.news-detail-page__content blockquote p {
  margin: 0;
}
.news-detail-page__content a {
  color: #1555C9;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.24s ease;
}
.news-detail-page__content a:hover, .news-detail-page__content a:focus-visible {
  color: #0D3F9D;
}
.news-detail-page__content figure {
  margin: 36px 0 0;
}
.news-detail-page__content figure img {
  margin-top: 0;
}
.news-detail-page__content figure figcaption {
  margin-top: 12px;
  color: #2D2D2D;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
.news-detail-page__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 36px auto 0;
  border-radius: 10px;
}
.news-detail-page__content iframe,
.news-detail-page__content video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 36px;
  border: 0;
  border-radius: 10px;
  background: #F6F6F6;
}
.news-detail-page__content iframe {
  aspect-ratio: 16/9;
  height: auto;
}
.news-detail-page__content table {
  width: 100%;
  margin-top: 36px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
}
.news-detail-page__content th,
.news-detail-page__content td {
  padding: 14px 16px;
  border: 1px solid rgba(22, 22, 22, 0.14);
  text-align: left;
  vertical-align: top;
}
.news-detail-page__content th {
  background: #F6F6F6;
  color: #161616;
  font-weight: 700;
}
.news-detail-page__footer {
  position: relative;
  margin-top: clamp(54px, 6vw, 78px);
  padding-top: 34px;
}
.news-detail-page__footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 780px);
  height: 1px;
  background: rgba(22, 22, 22, 0.14);
  content: "";
}
.news-detail-page__lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: #2D2D2D;
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}
.news-detail-page__feature {
  align-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #F6F6F6;
}
.news-detail-page__feature img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail-page__aside {
  position: sticky;
  top: 110px;
  min-width: 0;
  display: grid;
  gap: 20px;
}
.news-detail-page__toc, .news-detail-page__related {
  padding: 26px 24px;
  border: 1px solid rgba(21, 85, 201, 0.08);
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 18px 42px rgba(22, 22, 22, 0.06);
}
.news-detail-page__toc h2,
.news-detail-page__toc summary span, .news-detail-page__related h2,
.news-detail-page__related summary span {
  margin: 0;
  color: #161616;
  font-family: "Source Han Sans HK", "Noto Sans TC", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
.news-detail-page__toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
}
.news-detail-page__toc summary::-webkit-details-marker {
  display: none;
}
.news-detail-page__toc summary i {
  color: #1555C9;
  font-size: 13px;
  transition: transform 0.24s ease;
}
.news-detail-page__toc[open] summary i {
  transform: rotate(180deg);
}
.news-detail-page__toc ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.news-detail-page__toc a {
  display: block;
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.24s ease, padding-left 0.24s ease;
}
.news-detail-page__toc a:hover, .news-detail-page__toc a:focus-visible {
  padding-left: 6px;
  color: #1555C9;
}
.news-detail-page__share {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 34px;
}
.news-detail-page__share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.news-detail-page__share-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 85, 201, 0.2);
  border-radius: 999px;
  background: #FFFFFF;
  color: #1555C9;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}
.news-detail-page__share-links a:hover, .news-detail-page__share-links a:focus-visible {
  border-color: #1555C9;
  background: #1555C9;
  color: #FFFFFF;
}
.news-detail-page__back {
  display: inline-flex;
  align-items: center;
  color: #1555C9;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.24s ease;
}
.news-detail-page__back:hover, .news-detail-page__back:focus-visible {
  color: #0D3F9D;
}
.news-detail-page__adjacent {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.news-detail-page__adjacent-link {
  min-width: 0;
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(21, 85, 201, 0.16);
  border-radius: 10px;
  background: #F6F6F6;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}
.news-detail-page__adjacent-link span {
  display: block;
  color: #1555C9;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.news-detail-page__adjacent-link strong {
  display: -webkit-box;
  margin-top: 12px;
  overflow: hidden;
  color: #161616;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-detail-page__adjacent-link:hover, .news-detail-page__adjacent-link:focus-visible {
  background: #FFFFFF;
  border-color: #1555C9;
  transform: translateY(-3px);
}
.news-detail-page__adjacent-link--next {
  text-align: right;
}
.news-detail-page__adjacent-link--next:only-child {
  grid-column: 2;
}
.news-detail-page__related {
  margin-top: 0;
}
.news-detail-page__related ul {
  display: grid;
  gap: 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.news-detail-page__related-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  color: #161616;
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}
.news-detail-page__related-link:hover, .news-detail-page__related-link:focus-visible {
  color: #1555C9;
  transform: translateX(3px);
}
.news-detail-page__related img {
  width: 84px;
  aspect-ratio: 21/16;
  height: auto;
  margin: 0;
  border-radius: 8px;
  background: #F6F6F6;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail-page__related-copy {
  display: block;
  min-width: 0;
}
.news-detail-page__related-copy > span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-detail-page__related time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: #2D2D2D;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.news-detail-page__related time i {
  color: #1555C9;
  font-size: 12px;
}
@media (min-width: 992px) {
  .news-detail-page__toc, .news-detail-page__related {
    padding: 32px 30px;
  }
  .news-detail-page__toc h2,
  .news-detail-page__toc summary span, .news-detail-page__related h2,
  .news-detail-page__related summary span {
    font-size: 20px;
  }
  .news-detail-page__toc a {
    font-size: 16px;
    line-height: 1.7;
  }
  .news-detail-page__related-link {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }
  .news-detail-page__related img {
    width: 96px;
  }
  .news-detail-page__related-copy > span {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 991.98px) {
  .news-detail-page__article {
    width: min(100% - 32px, 940px);
  }
  .news-detail-page__header {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news-detail-page__header h1 {
    max-width: 760px;
    font-size: 32px;
    line-height: 1.32;
  }
  .news-detail-page__body {
    max-width: 900px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .news-detail-page__aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .news-detail-page__share {
    margin-bottom: 30px;
  }
  .news-detail-page__footer {
    max-width: 900px;
  }
  .news-detail-page__footer::before {
    width: 100%;
  }
  .news-detail-page__content h2 {
    font-size: 28px;
  }
  .news-detail-page__content h3 {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .news-detail-page {
    padding-block: 32px 86px;
  }
  .news-detail-page__article {
    width: min(100% - 20px, 680px);
  }
  .news-detail-page__header {
    padding-bottom: 32px;
  }
  .news-detail-page__header h1 {
    margin-top: 18px;
    font-size: 27px;
    line-height: 1.34;
  }
  .news-detail-page__header time {
    font-size: 12px;
  }
  .news-detail-page__breadcrumb {
    font-size: 12px;
  }
  .news-detail-page__content {
    font-size: 15px;
    line-height: 1.8;
  }
  .news-detail-page__content p {
    margin-top: 18px;
  }
  .news-detail-page__content h2 {
    margin-top: 42px;
    font-size: 24px;
    line-height: 1.45;
  }
  .news-detail-page__content h3 {
    margin-top: 32px;
    font-size: 20px;
  }
  .news-detail-page__content ul,
  .news-detail-page__content ol {
    gap: 12px;
    margin-top: 22px;
  }
  .news-detail-page__content blockquote {
    margin-top: 30px;
    padding: 20px;
    font-size: 16px;
  }
  .news-detail-page__content table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
  .news-detail-page__body {
    gap: 30px;
    padding-top: 34px;
  }
  .news-detail-page__aside {
    display: contents;
  }
  .news-detail-page__toc, .news-detail-page__related {
    padding: 24px;
  }
  .news-detail-page__toc {
    order: -1;
  }
  .news-detail-page__toc summary span {
    font-size: 20px;
    font-weight: 400;
  }
  .news-detail-page__toc ol {
    gap: 10px;
  }
  .news-detail-page__toc a {
    font-size: 14px;
  }
  .news-detail-page__share-links {
    gap: 8px;
  }
  .news-detail-page__share-links a {
    width: 36px;
    height: 36px;
  }
  .news-detail-page__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.75;
  }
  .news-detail-page__feature {
    margin-top: 0;
    border-radius: 8px;
  }
  .news-detail-page__footer {
    margin-top: 44px;
  }
  .news-detail-page__share {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }
  .news-detail-page__adjacent {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .news-detail-page__adjacent-link {
    min-height: 0;
    padding: 20px;
    transform: none;
  }
  .news-detail-page__adjacent-link:hover, .news-detail-page__adjacent-link:focus-visible {
    transform: none;
  }
  .news-detail-page__adjacent-link--next {
    grid-column: auto;
    text-align: left;
  }
  .news-detail-page__related {
    order: 1;
  }
  .news-detail-page__related h2 {
    font-size: 20px;
    font-weight: 400;
  }
  .news-detail-page__related-link {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 13px;
    transform: none;
  }
  .news-detail-page__related-link:hover, .news-detail-page__related-link:focus-visible {
    transform: none;
  }
  .news-detail-page__related img {
    width: 78px;
  }
}/*# sourceMappingURL=main.css.map */