html, body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Microsoft JhengHei", "PingFang TC", Arial, sans-serif;
  color: #26384a;
  line-height: 1.6;
  background: linear-gradient(180deg, #4f81a8 0%, #cfe0ef 34%, #d9e6f1 100%);
}

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

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

.wide-shell {
  width: min(1680px, calc(100% - 48px));
  margin: 0 auto;
}

.card-surface {
  background: rgba(242, 242, 242, 0.96);
  border: 1px solid #c6c6c6;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.block-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1d3550;
}

.block-title::before {
  content: "▪";
  color: #d90000;
  font-size: 18px;
}

.site-header {
  width: 100%;
  padding: 14px 0 0;
}

.site-header__inner {
  min-height: 112px;
  padding: 18px 28px;
  border: 1px solid #7a9abc;
  border-radius: 6px;
  background: linear-gradient(180deg, #173d67 0%, #0d2641 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.site-nav--desktop {
  display: block;
}

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.site-nav.site-nav--inline {
  margin: 0;
}

.site-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.site-nav__list li {
  flex: 0 0 auto;
  min-width: 0;
}

.site-nav__list a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 8px 14px;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.28);
  background: transparent;
  border-right: 0;
  border-radius: 4px;
  transition: background 0.18s ease, opacity 0.18s ease;
}

.site-nav__list a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__list li.is-active a {
  background: rgba(255, 255, 255, 0.12);
}

.site-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.header-icon--whatsapp {
  background: #20b15a;
}

.header-icon--contact {
  background: #6d7f92;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(180deg, #d94343 0%, #a30f0f 100%);
}

.header-cta--secondary {
  background: linear-gradient(180deg, #1a5f9b 0%, #173d67 100%);
}

.site-phone {
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

.site-nav {
  margin-top: 0;
}

/* 整條menu（清走button底） */
.site-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  align-items: center;
  gap: 36px;

  border: 0;
  background: none;
}

/* 每個menu item */
.site-nav__list li {
  flex: 0 0 auto;
}

/* 純文字menu */
.site-nav__list a {
  display: inline-block;

  color: #ffffff;
  font-weight: 900;
  font-size: 20px;   /* ← 放大字體 */
  letter-spacing: 0.4px;

  padding: 8px 0;

  position: relative;
  background: none;
}

/* 🔹 預設：無線 */
.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff9a00;
  transition: width 0.25s ease;
}

/* 🔹 hover先出現 */
.site-nav__list a:hover::after {
  width: 100%;
}

/* 🔹 只有active（例如首頁）固定有線 */
.site-nav__list li.is-active a::after {
  width: 100%;
}

/* 🔹 hover時字體稍微亮（更現代） */
.site-nav__list a:hover {
  color: #ffffff;
  opacity: 0.95;
}

.hero-section {
  padding: 18px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-menu {
  padding: 18px 0 14px;
  background: #f3f4f6;
  border: 1px solid #c9d0d6;
  border-radius: 8px;
  box-shadow: none;
}

.service-menu--mobile {
  display: none;
}

.service-menu-mobile-toggle {
  display: none;
}


.service-menu .block-title {
  display: flex;
  align-items: center;
  margin: 0 18px 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d8e0e8;
  font-size: 20px;
  font-weight: 700;
  color: #173a62;
  letter-spacing: 0.2px;
}

.block-title::before {
  content: "▪";
  color: #d90000;
  font-size: 14px;
  margin-right: 8px;
}

.service-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  margin: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-menu__item + .service-menu__item {
  margin-top: 8px;
}

.service-menu__item:hover {
  background: #eaf2f9;
  transform: translateX(4px);
}

.service-menu__item.is-active {
  background: #dfeaf5;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(13, 77, 133, 0.08);
}

.service-menu__item.is-active::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: #0d4d85;
  border-radius: 4px;
}

.service-menu__item--highlight {
  background: #eef4fb;
}

.service-menu__label {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #173a62;
  white-space: normal;
}

.service-menu__arrow {
  margin-left: 12px;
  font-size: 18px;
  color: #7b8794;
  flex-shrink: 0;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  height: 46vw;       /* 👈 關鍵 */
  max-height: 560px;  /* 👈 防止太高 */
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 620px;
}

.hero-banner {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-banner--ai img {
  object-position: 28% center;
}

.hero-banner.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slider-nav {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 20;

  display: flex;
  gap: 6px;

  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}



.hero-slider-nav__dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  border: none;
}

.hero-slider-nav__dot.is-active {
  width: 16px;
  border-radius: 6px;
  background: #2B84FE;
}




.hero-slider {
  position: relative;
  min-height: 620px;
}

.hero-banner {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-banner.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-banner img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.hero-banner__overlay {
  background: linear-gradient(
    to right,
    rgba(10, 25, 45, 0.15) 0%,
    rgba(10, 25, 45, 0.25) 40%,
    rgba(10, 25, 45, 0.65) 70%,
    rgba(10, 25, 45, 0.85) 100%
  );
}

.hero-banner__content {
  position: absolute;
  right: 7.5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 560px);
  color: #fff;
  z-index: 2;
}



.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 14px;

  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);

  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.hero-banner__title {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(30px, 2.15vw, 46px);
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.55);
}

.hero-banner__subtitle {
  margin: 16px 0 0;
  font-size: clamp(16px, 1.1vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.55);
}

.highlight {
  color: #ff9a00;
}

.hero-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #d94343 0%, #a30f0f 100%);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(180deg, #4da3ff 0%, #2B84FE 60%, #1f63c9 100%);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    0 8px 20px rgba(43,132,254,0.45),
    inset 0 1px 0 rgba(255,255,255,0.3);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  transition: all .25s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 26px rgba(43,132,254,0.55),
    inset 0 1px 0 rgba(255,255,255,0.35);
}


.company-statement-center {
  margin: 28px 0 18px;
  background: transparent;
}

.company-statement-center__inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 12px 0;
}

/* 小標（我們的優勢） */
.company-statement-center__label {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #ff7a00;
  letter-spacing: 0.08em;
}

/* 🔥 核心句（最重要） */
.company-statement-center__headline {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 800;
  color: #173a62;
}

/* 補充說明 */
.company-statement-center__desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #6f8fb3;
}

.company-statement-center__headline strong {
  color: #ff7a00;
}

.services-modern {
  margin-top: 36px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  color: #173a62;
}

.section-head p {
  margin: 0;
  max-width: 680px;
  color: #52687c;
  line-height: 1.6;
}

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

.service-statement {
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-statement__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: end;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 58, 98, 0.12);
}

/* 左邊：推廣服務 */
.service-statement__label {
  font-size: 28px;
  font-weight: 700;
  color: #c46a00;
}

/* 右邊內容 */
.service-statement__content {
  text-align: right; /* 🔥 關鍵 */
}

/* 主標題 */
.service-statement__content h2 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.2;
  color: #173a62;
}

/* 副標 */
.service-statement__content p {
  margin: 0;
  font-size: 18px;
  color: #5b7286;
  line-height: 1.6;
}

.service-statement__label {
  position: relative;
  padding-left: 10px;
}

.service-statement__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 14px;
  background: #d90000;
  border-radius: 2px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #d8e0e8;
  box-shadow: 0 8px 20px rgba(8, 28, 48, 0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(8, 28, 48, 0.12);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 18px;
}

.service-card__body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #173a62;
}

.service-card__body p {
  margin: 0 0 14px;
  color: #52687c;
  line-height: 1.65;
}

.service-card__body span {
  color: #2B84FE;
  font-weight: 700;
}

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

.feature-box {
  padding: 24px;
}

.feature-box h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.25;
  color: #183956;
}

.feature-box p {
  margin: 0;
  font-size: 15px;
  color: #4c6478;
}

.feature-box--accent {
  background: linear-gradient(180deg, #173d67 0%, #0d2641 100%);
  color: #fff;
}

.feature-box--accent h2,
.feature-box--accent p {
  color: #fff;
}

.feature-box--accent a {
  display: inline-flex;
  margin-top: 16px;
  color: #fff;
  font-weight: 700;
}

/* ===== Bottom Modern Sections ===== */

/* Trust Strip */
.trust-strip-section {
  margin-top: 26px;
}

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

.trust-strip__item {
  padding: 24px 26px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #d8e0e8;
  box-shadow: 0 8px 20px rgba(8, 28, 48, 0.05);
}

.trust-strip__item--accent {
  background: linear-gradient(180deg, #173d67 0%, #0f2d4a 100%);
  border-color: rgba(255,255,255,0.06);
  color: #fff;
}

.trust-strip__eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #9a5a00;
  letter-spacing: 0.04em;
}

.trust-strip__item--accent .trust-strip__eyebrow {
  color: rgba(255,255,255,0.75);
}

.trust-strip__item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  color: #173a62;
}

.trust-strip__item--accent h3 {
  color: #fff;
}

.trust-strip__item p {
  margin: 0;
  color: #52687c;
  line-height: 1.7;
}

.trust-strip__item--accent p {
  color: rgba(255,255,255,0.88);
}

.trust-strip__link {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.trust-strip__link:hover {
  text-decoration: underline;
}

/* Contact Panel */
.contact-panel-section {
  margin-top: 22px;
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
  border: 1px solid #d8e0e8;
  box-shadow: 0 10px 24px rgba(8, 28, 48, 0.06);
}

.contact-panel__info {
  max-width: 760px;
}

.contact-panel__eyebrow {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #9a5a00;
  letter-spacing: 0.04em;
}

.contact-panel__info h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.3;
  color: #173a62;
}

.contact-panel__text {
  margin: 0 0 6px;
  font-size: 17px;
  color: #52687c;
  line-height: 1.7;
}

.contact-panel__meta {
  margin: 0;
  font-size: 16px;
  color: #173a62;
  font-weight: 600;
}

.contact-panel__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.contact-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* 單個 icon */
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d8e0e8;
  box-shadow: 0 6px 14px rgba(8, 28, 48, 0.08);

  transition: all 0.25s ease;
}

/* icon 圖片 */
.contact-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* hover */
.contact-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(8, 28, 48, 0.14);
}

/* Footer Modern */
.site-footer-modern {
  margin-top: 22px;
  padding: 0 0 18px;
}

.site-footer-modern .wide-shell {
  background: linear-gradient(180deg, #173d67 0%, #0f2d4a 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 28, 48, 0.08);
}

.site-footer-modern__top {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px 20px;
}

.site-footer-modern__brand {
  max-width: 560px;
}

.site-footer-modern__logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.site-footer-modern__desc {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  white-space: nowrap; /* 防止文字换行 */
  
}

.site-footer-modern__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-content: flex-start;
  justify-content: flex-end;
}

.site-footer-modern__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.92;
}

.site-footer-modern__nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-footer-modern__bottom {
  padding: 16px 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.site-footer-modern__bottom p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-panel__actions {
    width: 100%;
  }

  .site-footer-modern__top {
    flex-direction: column;
  }

  .site-footer-modern__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .trust-strip-section {
    margin-top: 18px;
  }

  .trust-strip {
    gap: 12px;
  }

  .trust-strip__item {
    padding: 18px 18px;
  }

  .trust-strip__item h3 {
    font-size: 20px;
  }

  .contact-panel-section {
    margin-top: 16px;
  }

  .contact-panel {
    padding: 20px 18px;
    gap: 16px;
  }

  .contact-panel__info h2 {
    font-size: 24px;
  }

  .contact-panel__text {
    font-size: 15px;
  }

  .contact-panel__meta {
    font-size: 15px;
  }

  .contact-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

   .site-footer-modern {
    margin-top: 14px;
    padding-bottom: 10px;
  }

  .site-footer-modern__top {
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px 12px;
  }

  .site-footer-modern__brand {
    max-width: 100%;
  }

  .site-footer-modern__logo {
    height: 34px;
    margin-bottom: 8px;
  }

  .site-footer-modern__desc {
    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
  }

  .site-footer-modern__nav {
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
  }

  .site-footer-modern__nav a {
    font-size: 14px;
  }

  .site-footer-modern__bottom {
    padding: 10px 16px;
  }

  .site-footer-modern__bottom p {
    font-size: 12px;
    line-height: 1.5;
  }


@media (max-width: 1280px) {
  .service-menu__label {
    font-size: 19px;
  }

  .hero-slider {
    min-height: 560px;
  }

  .hero-banner img {
    height: 560px;
  }
}

@media (max-width: 1024px) {
  .wide-shell {
    width: min(100%, calc(100% - 24px));
  }

  .hero-grid {
    grid-template-columns: 290px 1fr;
  }

  .service-menu__label {
    font-size: 18px;
  }

  .solutions-grid,
  .feature-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-banner__content {
    width: min(48vw, 480px);
  }
}

@media (max-width: 1024px) {
  .wide-shell {
    width: min(100%, calc(100% - 24px));
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .site-nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-nav__list a {
    font-size: 16px;
    padding: 10px 12px;
  }

  .site-header__right {
    align-items: flex-start;
  }

  .site-header__actions {
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: 290px 1fr;
  }

  .service-menu__label {
    font-size: 18px;
  }

  .solutions-grid,
  .feature-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-banner__content {
    width: min(48vw, 480px);
  }
}

@media (max-width: 768px) {
  .wide-shell {
    width: min(100%, calc(100% - 16px));
  }

  .site-header {
    position: relative;
    z-index: 30;
  }

  .site-header__inner {
    padding: 14px 16px;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .site-nav--desktop {
    display: none;
  }

  .site-logo img {
    height: 52px;
    width: auto;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
  }

  .site-header.is-open .site-header__inner {
    border-radius: 12px 12px 0 0;
  }
  
  .mobile-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% - 6px);
    left: 16px;
    right: 16px;
    z-index: 40;

    flex-direction: column;
    gap: 0;
    padding: 8px 18px 14px;

    background: linear-gradient(180deg, #173d67 0%, #123150 100%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  }

  .mobile-nav-panel.is-open {
    display: flex;
  }

  .mobile-nav-panel a {
    padding: 14px 0;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-nav-panel a:last-child {
    border-bottom: 0;
  }

  .site-nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }

   .site-nav {
      display: none;
  }

  .site-nav__list a {
    font-size: 15px;
    padding: 8px 10px;
  }

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

  .service-menu--desktop {
    display: none;
  }

  .service-menu-mobile-toggle {
    display: flex;
    position: relative;
    z-index: 5;
    align-items: center;
    justify-content: space-between;
    transform: translateY(16px);
    margin-bottom: 0;
    padding: 10px 4px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: none;
    border-radius: 12px 12px 0 0;
    color: #173a62;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }

  .service-menu-mobile-icon {
    font-size: 20px;
    line-height: 1;
    color: #7b8794;
  }

  .service-menu--mobile {
    display: block;
    padding: 10px 0;
  }

  .service-menu--mobile .block-title {
    display: none;
  }

  .service-menu--mobile.is-collapsed {
    display: none;
  }

  .service-menu__item {
    min-height: 42px;
    padding: 0 14px;
    margin: 0 10px;
    border-radius: 6px;
  }

  .service-menu__item + .service-menu__item {
    margin-top: 4px;
  }

  .service-menu__label {
    font-size: 14px;
    font-weight: 600;
  }

  .service-menu__arrow {
    font-size: 14px;
  }

  .service-menu__item.is-active {
    background: #e8f0f8;
    box-shadow: inset 0 0 0 1px rgba(13, 77, 133, 0.08);
  }

  .service-menu__item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 9px;
    width: 3px;
    background: #0d4d85;
    border-radius: 3px;
  }

  


  .hero-stage {
    min-height: 0;
    height: 280px;
    max-height: none;
    border-radius: 0 0 12px 12px;  /* 👈 同 toggle 接駁 */
  }

  .hero-slider {
    min-height: 280px;
    height: 280px;
  }

  .hero-banner img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .hero-banner__content {
    left: 16px;
    right: 16px;
    bottom: 34px;
    top: auto;
    transform: none;
    width: auto;
    max-width: none;
    text-align: left;
  }

  .hero-banner__title {
    font-size: 20px;
    line-height: 1.25;
    white-space: normal;
  }

  .hero-banner__subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-slider-nav {
    bottom: 10px;
    background: none !important;
    padding: 0 !important;
  }

  .solutions-grid,
  .feature-strip__grid {
    grid-template-columns: 1fr;
  }

  .contact-panel__content,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-statement {
    margin-top: 14px;
    margin-bottom: 10px;
  }

  .service-statement__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 6px;
    padding-bottom: 8px;
  }

  .service-statement__label {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .service-statement__content {
    text-align: left; /* 🔥 手機唔用右對齊 */
  }

  .service-statement__content h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 2px;
  }

  .service-statement__content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .services-modern__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: stretch;
    min-height: 120px;
  }

  .service-card img {
    width: 96px;
    height: 100%;
    min-height: 116px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .service-card__body {
    padding: 14px 14px 12px;
  }

  .service-card__body h3 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.3;
  }

  .service-card__body p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.55;
  }

  .service-card__body span {
    font-size: 15px;
  }
   .company-statement-center {
    margin: 18px 0 12px;
  }

  .company-statement-center__headline {
    font-size: 22px;
    line-height: 1.5;
  }

  .company-statement-center__desc {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 6px;
  }
  .contact-icon {
    width: 52px;
    height: 52px;
  }

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

  /* ===== Internal Pages ===== */
.page-main {
  padding: 18px 0 24px;
}

.page-hero {
  margin-bottom: 18px;
}

.page-hero__card {
  min-height: 250px;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23,61,103,0.92) 0%, rgba(18,49,80,0.88) 42%, rgba(18,49,80,0.60) 68%, rgba(18,49,80,0.18) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 100%);
  color: #fff;
  overflow: hidden;
}

.page-hero__eyebrow {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-hero__title {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
}

.page-hero__lead {
  margin: 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.page-hero__meta {
  justify-self: end;
  width: 100%;
  max-width: 420px;
  padding: 24px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.page-hero__meta h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff;
}

.page-hero__meta p,
.page-hero__meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}
}
}