:root {
  --primary-navy: rgb(0, 58, 112);
  --deep-navy: rgb(0, 38, 77);
  --royal-blue: rgb(0, 92, 185);
  --light-blue: rgb(238, 247, 255);
  --accent-orange: rgb(245, 130, 32);
  --text-dark: rgb(31, 41, 55);
  --text-muted: rgb(107, 114, 128);
  --primary: rgb(0, 58, 112);
  --deep: rgb(0, 38, 77);
  --royal: rgb(0, 92, 185);
  --light: rgb(238, 247, 255);
  --accent: rgb(245, 130, 32);
  --gold: rgb(184, 137, 67);
  --text: rgb(31, 41, 55);
  --muted: rgb(107, 114, 128);
  --line: rgb(219, 230, 241);
  --white: rgb(255, 255, 255);
  --shadow: 0 18px 45px rgba(0, 38, 77, 0.12);
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 98px;
  --header-stack-height: var(--header-height);
}

* {
  box-sizing: border-box;
}

::selection {
  background: rgba(0, 38, 77, 0.86);
  color: var(--white);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-stack-height) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

html[data-script="traditional"] body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

main,
.site-footer {
  transition: opacity 180ms ease, transform 180ms ease;
}

body.language-transitioning main,
body.language-transitioning .site-footer {
  opacity: 0.88;
  transform: translateY(2px);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px max(28px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 58, 112, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 340px;
}

.brand-logos {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(0, 58, 112, 0.16);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 9px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 3px;
  background: var(--royal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--royal);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.language-shell {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(0, 92, 185, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 58, 112, 0.1);
}

.language-intro {
  padding-left: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.language-toggle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 38px);
  padding: 3px;
  border-radius: 999px;
  background: rgb(232, 242, 253);
}

.language-thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--royal));
  box-shadow: 0 9px 18px rgba(0, 58, 112, 0.24);
  transition: transform 220ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.language-toggle[data-active-language="zh-Hant"] .language-thumb {
  transform: translateX(38px);
}

.language-option {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease;
}

.language-option.active {
  color: var(--white);
}

.language-option:focus-visible {
  outline: 3px solid rgba(245, 130, 32, 0.35);
  outline-offset: 3px;
}



.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--primary);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-stack-height));
  height: calc(100vh - var(--header-stack-height));
  overflow: hidden;
  background: var(--deep);
}

@supports (height: 100dvh) {
  .hero {
    min-height: calc(100dvh - var(--header-stack-height));
    height: calc(100dvh - var(--header-stack-height));
  }
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 780ms ease, transform 1600ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 38, 77, 0.82) 0%, rgba(0, 58, 112, 0.52) 45%, rgba(0, 38, 77, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 38, 77, 0.42), rgba(0, 38, 77, 0.06));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: 34px 0 138px;
  color: var(--white);
}

.hero-copy {
  max-width: 900px;
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--royal);
  font-size: 14px;
  font-weight: 800;
}

.hero .eyebrow {
  color: rgb(169, 209, 255);
  text-shadow: 0 2px 10px rgba(0, 20, 43, 0.65);
  animation: heroFadeUp 640ms ease both;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 1.12;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 20, 43, 0.78);
  animation: heroFadeUp 720ms ease 90ms both;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 20, 43, 0.72);
  animation: heroFadeUp 720ms ease 180ms both;
}

.hero-subtitle span:not(:last-child)::after {
  content: "｜";
  margin: 0 8px;
}

.hero-subtitle span {
  display: inline-block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  animation: heroFadeUp 720ms ease 270ms both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 24px rgba(245, 130, 32, 0.24);
}

.button-primary:hover {
  background: rgb(232, 113, 15);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 24px rgba(0, 38, 77, 0.18);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 1);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.trust-points li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 38, 77, 0.46);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  animation: heroFadeUp 680ms ease both;
}

.trust-points li:nth-child(1) {
  animation-delay: 360ms;
}

.trust-points li:nth-child(2) {
  animation-delay: 420ms;
}

.trust-points li:nth-child(3) {
  animation-delay: 480ms;
}

.trust-points li:nth-child(4) {
  animation-delay: 540ms;
}

.hero-bottom-ui {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.94);
  transform: translateX(-50%);
  animation: heroFadeUp 700ms ease 640ms both;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 20, 43, 0.72);
}

.scroll-arrow {
  display: grid;
  place-items: center;
  color: currentColor;
  animation: scrollCueBounce 1.9s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(0, 38, 77, 0.32);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
  background: rgba(245, 130, 32, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero-arrow-prev {
  left: max(24px, calc((100vw - 1320px) / 2));
}

.hero-arrow-next {
  right: max(24px, calc((100vw - 1320px) / 2));
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--white);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.contact-info.reveal {
  transform: translateX(-34px);
}

.contact-form.reveal {
  transform: translateX(34px);
}

.contact-row.reveal {
  transform: translateY(18px);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 100px 0;
}

:where(.section:nth-of-type(odd):not(.hero)) {
  background: linear-gradient(180deg, var(--white), rgb(247, 251, 255));
}

.section-heading {
  width: min(800px, calc(100vw - 40px));
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading h2,
.content-panel h2,
.customer-layout h2,
.contact-info h2 {
  margin: 0;
  color: rgb(17, 24, 39);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  font-weight: 900;
}

.section-heading p:last-child,
.content-panel p,
.customer-layout p,
.notice-card p,
.affiliate-card p {
  color: var(--muted);
}

.service-grid,
.advantage-grid,
.experience-grid,
.affiliate-grid,
.case-grid,
.split-layout,
.customer-layout,
.contact-layout {
  width: var(--container);
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 254px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(0, 58, 112, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 92, 185, 0.35);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--light);
  color: var(--royal);
}

.card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.service-card h3,
.advantage-grid h3,
.affiliate-card h3 {
  margin: 0 0 10px;
  color: rgb(17, 24, 39);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
}

.service-card p,
.advantage-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.import-agency-section {
  background:
    linear-gradient(112deg, rgba(0, 92, 185, 0.08), transparent 46%),
    linear-gradient(180deg, rgb(246, 251, 255), var(--white)),
    var(--light);
  color: var(--text);
}

.agency-layout {
  width: min(1040px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.agency-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  max-width: none;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(0, 92, 185, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 52px rgba(0, 58, 112, 0.1);
}

.agency-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), rgba(245, 130, 32, 0.52));
}

.agency-copy .eyebrow {
  color: var(--royal);
}

.agency-copy h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.2;
  font-weight: 900;
}

.agency-copy p {
  max-width: 920px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.agency-note {
  display: grid;
  gap: 12px;
  width: min(100%, 760px);
  margin-top: 38px;
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 38, 77, 0.08);
}

.agency-note strong {
  color: var(--primary);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
}

.agency-note span {
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.7;
}

.about-section {
  background: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.image-panel {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.content-panel {
  padding: 12px 0;
}

.company-name {
  margin: 20px 0 12px;
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.metrics div {
  min-height: 112px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--light);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}

.metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.advantage-section {
  background: linear-gradient(180deg, rgb(247, 251, 255), var(--white));
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.advantage-grid article {
  min-height: 226px;
  padding: 24px 20px;
  border: 1px solid rgba(0, 92, 185, 0.12);
  border-radius: 8px;
  background: var(--white);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.advantage-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 92, 185, 0.28);
  box-shadow: var(--shadow);
}

.advantage-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
}

.section.customer-section:not(.hero) {
  background:
    radial-gradient(circle at 12% 12%, rgba(93, 173, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgb(246, 250, 255) 0%, rgb(237, 246, 255) 100%);
  color: var(--text);
}

.customer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: stretch;
}

.customer-layout > div,
.notice-card {
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(0, 92, 185, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 58, 112, 0.1);
}

.customer-layout .eyebrow {
  color: var(--royal);
}

.customer-layout h2 {
  color: var(--text);
}

.customer-layout p {
  color: var(--muted);
  font-size: 17px;
}

.notice-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notice-card strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.notice-card p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.notice-card span {
  color: var(--muted);
}

.experience-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(74, 144, 226, 0.28), transparent 32%),
    linear-gradient(135deg, rgb(0, 38, 77), rgb(0, 75, 134));
}

.experience-section .eyebrow,
.experience-section .section-heading h2 {
  color: var(--white);
}

.experience-section .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.9fr);
  grid-auto-rows: 230px;
  gap: 22px;
}

.experience-grid figure,
.case-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 10px 28px rgba(0, 38, 77, 0.1);
}

.experience-grid figure:first-child {
  grid-row: span 2;
}

.experience-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.experience-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 38, 77, 0.72);
}

.experience-grid figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 38, 77, 0.78));
  pointer-events: none;
}

.experience-grid figcaption {
  z-index: 1;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.affiliate-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 38, 77, 0.08);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.affiliate-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 92, 185, 0.26);
  box-shadow: var(--shadow);
}

.affiliate-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
}

.affiliate-card:hover img {
  transform: scale(1.03);
}

.industry-card {
  display: flex;
  flex-direction: column;
}

.industry-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(245, 249, 255), rgb(255, 255, 255));
}

.industry-carousel-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.industry-carousel-image.is-logo-image {
  padding: 22px;
  background: var(--white);
  object-fit: contain;
}

.industry-card:hover .industry-carousel-image {
  transform: none;
}

.industry-carousel-button {
  position: absolute;
  top: 0;
  bottom: 38px;
  z-index: 2;
  width: 86px;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.industry-carousel-prev {
  left: 0;
}

.industry-carousel-next {
  right: 0;
}

.industry-carousel-button::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 24px rgba(0, 38, 77, 0.18);
  opacity: 0.9;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.industry-carousel-button:hover::before,
.industry-carousel-button:focus-visible::before {
  background: rgba(255, 255, 255, 0.96);
  opacity: 1;
  transform: scale(1.04);
}

.industry-carousel-button svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.industry-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  gap: 8px;
  padding: 10px 12px 0;
}

.industry-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 92, 185, 0.24);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.industry-carousel-dots button.active {
  width: 24px;
  background: var(--royal);
}

.industry-carousel-dots button:hover {
  background: rgba(0, 92, 185, 0.62);
  transform: translateY(-1px);
}

.industry-content {
  display: grid;
  align-content: start;
  gap: 10px;
  flex: 1;
}

.industry-content h3 {
  margin-bottom: 0;
  line-height: 1.28;
}

.affiliate-card > div {
  padding: 24px;
}

.affiliate-card p {
  margin: 0 0 12px;
  font-size: 15px;
}

.affiliate-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.affiliate-card li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.cases-section {
  background: rgb(248, 251, 254);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
}

.case-item {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(0, 38, 77, 0.12);
  color: var(--white);
  cursor: pointer;
}

.case-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.case-item:nth-child(2) {
  grid-column: span 2;
}

.case-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.case-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 38, 77, 0.88));
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.case-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 68px 0 0;
  background:
    radial-gradient(circle at 50% -8%, rgba(93, 173, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgb(239, 247, 255) 0%, rgb(248, 252, 255) 54%, var(--white) 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 230px;
  background:
    linear-gradient(174deg, transparent 50%, rgba(197, 225, 249, 0.55) 51%, transparent 72%),
    linear-gradient(186deg, transparent 42%, rgba(224, 240, 255, 0.9) 43%, transparent 68%),
    radial-gradient(circle at 9% 74%, rgba(0, 92, 185, 0.1), transparent 18%),
    radial-gradient(circle at 86% 70%, rgba(0, 92, 185, 0.09), transparent 20%);
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 58px;
  height: 126px;
  opacity: 0.32;
  background:
    linear-gradient(rgba(18, 82, 160, 0.28), rgba(18, 82, 160, 0.28)) 4% 72% / 170px 2px no-repeat,
    linear-gradient(135deg, transparent 22px, rgba(18, 82, 160, 0.28) 23px, rgba(18, 82, 160, 0.28) 25px, transparent 26px) 3% 55% / 160px 68px no-repeat,
    linear-gradient(rgba(18, 82, 160, 0.18), rgba(18, 82, 160, 0.18)) 91% 69% / 150px 2px no-repeat,
    linear-gradient(90deg, transparent 0 10px, rgba(18, 82, 160, 0.22) 10px 12px, transparent 12px 24px) 83% 38% / 140px 88px no-repeat;
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.contact-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 10px;
  color: var(--royal);
  font-size: 18px;
  font-weight: 900;
}

.contact-kicker span {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 92, 185, 0.62));
}

.contact-kicker span:last-child {
  background: linear-gradient(90deg, rgba(0, 92, 185, 0.62), transparent);
}

.contact-heading h2 {
  margin: 0;
  color: rgb(16, 34, 64);
  font-size: clamp(38px, 4.3vw, 56px);
  line-height: 1.15;
  font-weight: 900;
}

.contact-heading p:last-child {
  margin: 12px 0 0;
  color: rgb(92, 108, 130);
  font-size: 18px;
  font-weight: 700;
}

.contact-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(440px, 0.98fr) minmax(0, 1.02fr);
  gap: 24px;
  align-items: stretch;
  padding-bottom: 48px;
}

.contact-card {
  height: 100%;
  border: 1px solid rgb(218, 230, 244);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(0, 58, 112, 0.13);
}

.contact-info {
  padding: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgb(218, 230, 244);
  border-radius: 16px;
  background: rgb(248, 252, 255);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(236, 246, 255), rgb(224, 240, 255));
  color: rgb(18, 82, 160);
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.contact-icon svg.icon-fill,
.footer-icon.icon-fill {
  fill: currentColor;
  stroke: none;
}

.contact-icon svg.wechat-mark {
  width: 32px;
  height: 32px;
}

.contact-label {
  display: block;
  margin-bottom: 5px;
  color: rgb(92, 108, 130);
  font-size: 14px;
  font-weight: 800;
}

.contact-info a,
.contact-info strong,
.contact-info em {
  color: rgb(0, 58, 112);
  font-style: normal;
  font-weight: 900;
}

.contact-info strong {
  display: block;
  font-size: 19px;
  line-height: 1.45;
}

.wechat-row {
  align-items: start;
  grid-template-columns: 58px minmax(0, 1fr) clamp(148px, 14vw, 172px);
  grid-template-areas:
    "wechat-icon wechat-title wechat-qr"
    "wechat-badges wechat-badges wechat-qr";
  column-gap: clamp(12px, 1.4vw, 18px);
  row-gap: 14px;
}

.wechat-head,
.wechat-body {
  display: contents;
}

.wechat-head .contact-icon {
  grid-area: wechat-icon;
}

.wechat-title {
  grid-area: wechat-title;
  align-self: center;
  min-width: 0;
}

.wechat-body .qr-card {
  grid-area: wechat-qr;
  align-self: center;
}

.wechat-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 172px;
  gap: 22px;
  align-items: center;
}

.wechat-title strong {
  font-size: 19px;
  overflow-wrap: anywhere;
}

.wechat-trust {
  grid-area: wechat-badges;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(100%, 292px);
  max-width: 292px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-items: stretch;
  align-items: stretch;
  min-width: 0;
}

.wechat-trust li {
  min-width: 0;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border: 1px solid rgba(18, 82, 160, 0.12);
  border-radius: 14px;
  background: var(--white);
  text-align: center;
}

.wechat-trust .trust-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 10px;
  background: rgb(231, 243, 255);
  color: var(--royal);
}

.wechat-trust .trust-icon svg {
  display: block;
  width: 19px;
  height: 19px;
  margin: 0 auto;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.wechat-trust b,
.wechat-trust em {
  display: block;
  width: 100%;
  margin: 0;
  color: rgb(0, 58, 112);
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.wechat-trust em {
  color: rgb(92, 108, 130);
  font-weight: 800;
}

.qr-card {
  width: clamp(148px, 14vw, 172px);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(0, 92, 185, 0.28);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 92, 185, 0.16);
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.qr-card figcaption {
  min-height: 30px;
  display: grid;
  place-items: center;
  margin-top: 8px;
  border-radius: 999px;
  background: rgb(18, 82, 160);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 18px;
  padding: 38px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgb(16, 34, 64);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgb(218, 230, 244);
  border-radius: 12px;
  background: rgb(250, 252, 255);
  color: rgb(16, 34, 64);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgb(142, 154, 174);
}

.contact-form input {
  height: 56px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 164px;
  padding: 14px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--royal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 92, 185, 0.14);
}

.form-wide,
.form-status {
  grid-column: 1 / -1;
}

.contact-form .button-primary {
  width: 100%;
  min-height: 58px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgb(245, 119, 18), rgb(255, 151, 31));
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 16px 28px rgba(245, 130, 32, 0.24);
}

.contact-form .button-primary:hover {
  background: linear-gradient(90deg, rgb(231, 104, 10), rgb(245, 132, 33));
  transform: translateY(-3px);
}

.privacy-note {
  margin: 0;
  color: rgb(92, 108, 130);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.form-status.error {
  color: rgb(185, 28, 28);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto minmax(340px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 44px max(28px, calc((100vw - 1180px) / 2)) 22px;
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 92, 185, 0.26), transparent 34%),
    linear-gradient(135deg, var(--deep), var(--primary));
  color: var(--white);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand div,
.footer-contact,
.site-footer nav {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  font-size: 19px;
  line-height: 1.18;
}

.footer-brand span,
.footer-contact span,
.site-footer nav a,
.copyright {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer nav {
  grid-template-columns: repeat(2, max-content);
  column-gap: 28px;
}

.site-footer nav a:hover {
  color: var(--white);
}

.footer-contact {
  justify-self: end;
  max-width: 430px;
  text-align: left;
}

.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.65;
}

.footer-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-icon.wechat-mark {
  width: 19px;
  height: 19px;
  margin-top: 4px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 72px 24px 34px;
  background: rgba(0, 20, 43, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 76vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox p {
  margin: 16px 0 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .main-nav a {
    padding: 0 10px;
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 36px rgba(0, 38, 77, 0.14);
    transform: translateY(calc(-100% - var(--header-height)));
    transition: transform 200ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 48px;
    border-bottom: 1px solid rgba(219, 230, 241, 0.75);
  }

  .main-nav a::after {
    left: 0;
    right: auto;
    width: 4px;
    height: 26px;
    bottom: 11px;
  }

  .advantage-grid,
  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: auto;
    height: auto;
  }

  .wechat-row {
    grid-template-columns: 58px minmax(0, 1fr) 172px;
    column-gap: 16px;
  }

  .wechat-trust {
    gap: 8px;
  }

  .wechat-trust li {
    min-height: 86px;
    padding: 9px 6px;
  }

  .wechat-trust .trust-icon {
    width: 30px;
    height: 30px;
  }

  .wechat-trust .trust-icon svg {
    width: 18px;
    height: 18px;
  }

  .qr-card {
    width: 172px;
    padding: 10px;
  }

  .qr-card figcaption {
    min-height: 30px;
    font-size: 14px;
  }

  .case-item:first-child,
  .case-item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .affiliate-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-card {
    display: grid;
    grid-template-columns: 300px 1fr;
  }

  .affiliate-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .industry-media,
  .industry-carousel-image {
    height: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 10px 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 36px rgba(0, 38, 77, 0.14);
    transform: translateY(calc(-100% - var(--header-height)));
    transition: transform 200ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 48px;
    border-bottom: 1px solid rgba(219, 230, 241, 0.75);
  }

  .main-nav a::after {
    left: 0;
    right: auto;
    width: 4px;
    height: 26px;
    bottom: 11px;
  }

  .hero {
    min-height: 600px;
    height: 80vh;
  }

  .hero-content {
    padding: 38px 0 112px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-arrow {
    display: none;
  }

  .service-grid,
  .agency-layout,
  .split-layout,
  .customer-layout,
  .experience-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .agency-copy {
    max-width: none;
  }

  .image-panel,
  .image-panel img {
    min-height: 420px;
  }

  .metrics,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    min-height: auto;
    height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100vw - 28px));
    --header-height: 72px;
  }

  .site-header {
    padding: 9px 14px;
  }

  .brand {
    gap: 10px;
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
  }

  .brand-logos {
    gap: 6px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 13px;
    line-height: 1.22;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-shell {
    min-height: 42px;
    width: auto;
    padding: 3px;
  }

  .language-intro {
    display: none;
  }

  .language-toggle {
    grid-template-columns: repeat(2, 34px);
  }

  .language-thumb {
    width: 34px;
  }

  .language-toggle[data-active-language="zh-Hant"] .language-thumb {
    transform: translateX(34px);
  }

  .language-option {
    width: 34px;
    height: 30px;
    font-size: 14px;
  }

  .menu-toggle {
    position: static;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--light);
    border-color: rgba(0, 92, 185, 0.22);
    box-shadow: 0 8px 18px rgba(0, 58, 112, 0.12);
  }

  .menu-toggle span {
    margin: 0;
  }
  .hero {
    min-height: calc(100vh - var(--header-stack-height));
    height: calc(100vh - var(--header-stack-height));
    max-height: none;
  }

  @supports (height: 100dvh) {
    .hero {
      min-height: calc(100dvh - var(--header-stack-height));
      height: calc(100dvh - var(--header-stack-height));
    }
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 28, 57, 0.94) 0%, rgba(0, 44, 88, 0.78) 46%, rgba(0, 38, 77, 0.34) 100%),
      linear-gradient(0deg, rgba(0, 38, 77, 0.62), rgba(0, 38, 77, 0.08));
  }

  .hero-slide img {
    object-position: 66% center;
  }

  .hero-slide:nth-child(1) img,
  .hero-slide:nth-child(5) img {
    object-position: 82% center;
  }

  .hero-slide:nth-child(2) img,
  .hero-slide:nth-child(3) img {
    object-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    justify-content: center;
    padding: 22px 0 128px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 34px;
    max-width: 100%;
    line-height: 1.2;
    word-break: break-all;
  }

  .hero h1 span {
    display: block;
  }

  .hero-subtitle {
    margin-top: 18px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-subtitle span {
    display: block;
  }

  .hero-subtitle span:not(:last-child)::after {
    content: "";
    margin: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 360px);
    gap: 12px;
    margin-top: 26px;
  }

  .hero-actions .button {
    min-width: 0;
    padding: 0 10px;
  }

  .hero-bottom-ui {
    left: 0;
    right: 0;
    bottom: 24px;
    width: 100%;
    gap: 6px;
    justify-items: center;
    text-align: center;
    transform: none;
  }

  .slider-dots {
    justify-content: center;
  }

  .trust-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    margin-top: 24px;
  }

  .trust-points li {
    min-height: 32px;
    justify-content: center;
    padding: 0 10px;
    font-size: 12px;
  }

  .section,
  .contact-section {
    padding: 62px 0;
  }

  .contact-section {
    padding-bottom: 0;
  }

  .contact-section::after {
    display: none;
  }

  .contact-heading {
    margin-bottom: 24px;
    padding: 8px 6px 0;
    text-align: left;
  }

  .contact-kicker {
    display: block;
    margin-bottom: 6px;
    color: rgb(11, 45, 102);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
  }

  .contact-kicker span {
    display: none;
  }

  .contact-heading h2 {
    color: rgb(92, 108, 130);
    font-size: 20px;
    line-height: 1.35;
  }

  .contact-heading p:last-child {
    margin-top: 14px;
    color: rgb(15, 74, 163);
    font-size: 15px;
    text-align: left;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .content-panel h2,
  .customer-layout h2,
  .contact-info h2 {
    font-size: 28px;
  }

  .service-grid,
  .metrics,
  .advantage-grid,
  .experience-grid,
  .case-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-auto-rows: auto;
  }

  .experience-grid figure:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .experience-grid img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 138px;
    gap: 12px;
  }

  .case-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .case-item:nth-child(2) {
    grid-column: auto;
  }

  .case-item img {
    height: 100%;
    aspect-ratio: auto;
  }

  .case-item span {
    min-height: 44px;
    padding: 8px;
    font-size: 13px;
  }

  .service-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .split-layout {
    gap: 32px;
  }

  .agency-copy {
    padding: 30px 22px;
  }

  .agency-copy h2 {
    font-size: 36px;
  }

  .agency-copy p {
    font-size: 17px;
  }

  .agency-note {
    margin-top: 28px;
    padding: 24px;
  }

  .image-panel,
  .image-panel img {
    min-height: 330px;
  }

  .customer-layout {
    gap: 28px;
  }

  .customer-layout > div,
  .notice-card {
    padding: 24px;
  }

  .affiliate-card {
    display: block;
  }

  .affiliate-card img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .industry-card {
    display: block;
  }

  .industry-media,
  .industry-carousel-image {
    height: auto;
  }

  .industry-carousel-image {
    aspect-ratio: 16 / 10;
  }

  .industry-carousel-image.is-logo-image {
    padding: 18px;
  }

  .industry-carousel-button {
    bottom: 34px;
    width: 76px;
    min-height: 80px;
  }

  .industry-carousel-button::before {
    width: 38px;
    height: 38px;
  }

  .industry-carousel-dots {
    min-height: 34px;
    padding-top: 8px;
  }

  .contact-info {
    padding: 14px;
  }

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

  .contact-row {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-info strong {
    font-size: 16px;
  }

  .wechat-row {
    order: 1;
    grid-column: 1 / -1;
    display: block;
    padding: 22px 18px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
  }

  .wechat-head,
  .wechat-body {
    display: grid;
  }

  .wechat-head {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
  }

  .wechat-head .contact-icon {
    grid-area: auto;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(39, 111, 218), rgb(8, 79, 182));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(0, 92, 185, 0.2);
  }

  .wechat-head .wechat-mark {
    width: 42px;
    height: 42px;
  }

  .wechat-title .contact-label {
    margin: 0 0 4px;
    color: rgb(11, 45, 102);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
  }

  .wechat-title {
    grid-area: auto;
  }

  .wechat-title strong {
    color: rgb(15, 74, 163);
    font-size: 20px;
    line-height: 1.3;
  }

  .wechat-body {
    grid-template-columns: minmax(128px, 0.78fr) minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
  }

  .wechat-body .qr-card {
    grid-area: auto;
    width: 100%;
    margin: 0;
    justify-self: stretch;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
    border-radius: 18px;
  }

  .qr-card figcaption {
    min-height: 34px;
    border-radius: 999px;
    font-size: 13px;
  }

  .wechat-trust {
    grid-area: auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0;
  }

  .wechat-trust li {
    min-height: 76px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: center;
    justify-items: start;
    column-gap: 12px;
    row-gap: 1px;
    padding: 12px 10px;
    border-radius: 16px;
    text-align: left;
  }

  .wechat-trust .trust-icon {
    grid-row: 1 / 3;
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 50%;
  }

  .wechat-trust .trust-icon svg {
    width: 24px;
    height: 24px;
  }

  .wechat-trust b,
  .wechat-trust em {
    text-align: left;
    white-space: normal;
    font-size: 15px;
    line-height: 1.28;
  }

  .phone-row,
  .person-row {
    order: 2;
    grid-column: auto;
    min-height: 138px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
  }

  .phone-row .contact-icon,
  .person-row .contact-icon,
  .address-row .contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
  }

  .phone-row .contact-label,
  .person-row .contact-label {
    margin-bottom: 4px;
    color: rgb(11, 45, 102);
    font-size: 15px;
  }

  .phone-row strong {
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .person-row strong {
    font-size: 18px;
  }

  .address-row {
    order: 3;
    grid-column: 1 / -1;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 18px;
  }

  .address-row strong {
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 20px 20px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .header-actions {
    gap: 6px;
  }

  .brand-logos .brand-logo:nth-child(2) {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .language-toggle {
    grid-template-columns: repeat(2, 32px);
  }

  .language-thumb {
    width: 32px;
  }

  .language-toggle[data-active-language="zh-Hant"] .language-thumb {
    transform: translateX(32px);
  }

  .language-option {
    width: 32px;
    height: 30px;
  }

  .wechat-row {
    padding: 20px 14px 22px;
  }

  .wechat-head {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
  }

  .wechat-head .contact-icon {
    width: 62px;
    height: 62px;
  }

  .wechat-head .wechat-mark {
    width: 38px;
    height: 38px;
  }

  .wechat-title .contact-label {
    font-size: 22px;
  }

  .wechat-title strong {
    font-size: 18px;
  }

  .wechat-body {
    grid-template-columns: minmax(118px, 0.72fr) minmax(0, 1fr);
    gap: 9px;
  }

  .wechat-body .qr-card {
    padding: 7px;
  }

  .qr-card figcaption {
    min-height: 32px;
    font-size: 12px;
  }

  .wechat-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wechat-trust li {
    min-height: 70px;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 8px;
    padding: 9px;
  }

  .wechat-trust .trust-icon {
    width: 40px;
    height: 40px;
  }

  .wechat-trust .trust-icon svg {
    width: 21px;
    height: 21px;
  }

  .wechat-trust b,
  .wechat-trust em {
    font-size: 14px;
  }

  .phone-row,
  .person-row {
    min-height: 128px;
    padding: 14px;
  }

  .phone-row strong {
    font-size: 12px;
  }
}
