:root {
  --navy: #052d46;
  --navy-deep: #031f31;
  --blue: #0789c8;
  --blue-bright: #11a8ec;
  --blue-soft: #eaf7fd;
  --green: #45b69c;
  --ink: #152b39;
  --text: #50626d;
  --line: #dbe6ec;
  --light: #f5f9fb;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(4, 42, 65, .12);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.75;
  overflow-x: hidden;
}

body.navOpen {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.sectionEn,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.sectionEn::before,
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.sectionHead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}

.sectionHead.centered {
  display: block;
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.sectionHead.centered .sectionEn {
  justify-content: center;
}

.sectionHead h2,
.trustIntro h2,
.aboutContent h2,
.ctaContent h2,
.contactInfo h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.35;
  letter-spacing: -.04em;
}

.sectionHead p,
.trustIntro p,
.aboutContent p,
.contactInfo > p {
  color: var(--text);
}

.sectionHead > p {
  /*width: min(500px, 45%);*/
  margin: 0;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: .3s ease;
}

.btn svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.btnPrimary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 12px 30px rgba(7, 137, 200, .28);
}

.btnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(7, 137, 200, .35);
}

.btnGhost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  backdrop-filter: blur(10px);
}

.btnGhost:hover {
  background: rgba(255, 255, 255, .12);
}

.btnDark {
  color: #fff;
  background: var(--navy);
}

.btnLight {
  color: var(--navy);
  background: #fff;
}

.sectionAction {
  margin-top: 48px;
  text-align: center;
}

/* header */
.siteHeader {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  transition: .35s ease;
}

.siteHeader.scrolled {
  height: 74px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 40px rgba(3, 31, 49, .09);
  backdrop-filter: blur(14px);
}

.headerInner {
  width: min(calc(100% - 48px), 1380px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 68px;
  height: 48px;
  object-fit: contain;
}

.brandText {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brandText strong {
  font-size: 21px;
  letter-spacing: .08em;
}

.brandText small {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: .16em;
  color: #60727d;
}

.siteHeader:not(.scrolled) .brandText,
.siteHeader:not(.scrolled) .mainNav > ul > li > a,
.siteHeader:not(.scrolled) .submenuToggle {
  color: #fff;
}

.siteHeader:not(.scrolled) .brandText small {
  color: rgba(255, 255, 255, .72);
}

.mainNav > ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mainNav > ul > li {
  position: relative;
}

.mainNav > ul > li > a,
.submenuToggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 74px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: none;
  font-size: 16px;
  font-weight: 600;
  transition: .25s;
}

.mainNav > ul > li > a::after,
.submenuToggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 0;
  height: 2px;
  background: var(--blue-bright);
  transform: translateX(-50%);
  transition: .25s;
}

.mainNav > ul > li > a:hover::after,
.mainNav > ul > li > a.current::after,
.hasSubmenu:hover .submenuToggle::after,
.hasSubmenu .submenuToggle.current::after {
  width: 100%;
}

.submenuToggle svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .25s;
}

.hasSubmenu:hover .submenuToggle svg {
  transform: rotate(180deg);
}

.navCta a {
  min-width: 112px;
  height: 42px !important;
  padding: 0 18px !important;
  border-radius: 7px;
  color: #fff !important;
  background: var(--blue);
}

.navCta a::after {
  display: none;
}

.submenu {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  width: 265px;
  margin: 0;
  padding: 12px;
  list-style: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 50px rgba(3, 31, 49, .16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: .25s ease;
}

.hasSubmenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  padding: 10px 13px;
  border-radius: 7px;
  color: #334b59;
  font-size: 13px;
}

.submenu a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.menuBtn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: none;
}

.menuBtn span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: .25s;
}

/* hero */
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}


/*
.heroMedia,
.youtubeBg,
.heroFallback,
.heroOverlay {
  position: absolute;
  inset: 0;
}

.youtubeBg {
  overflow: hidden;
  background: var(--navy-deep);
}

.youtubeBg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77777778vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.heroFallback {
  z-index: -1;
  background: url("../images/banner.jpg") center / cover no-repeat;
}

.heroOverlay {
  background:
    linear-gradient(90deg, rgba(2, 26, 41, .88) 0%, rgba(2, 26, 41, .58) 50%, rgba(2, 26, 41, .2) 100%),
    linear-gradient(180deg, rgba(2, 26, 41, .28), rgba(2, 26, 41, .38));
}
*/


.heroMedia{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.heroFallback{
    position:absolute;
    inset:0;
    background:url("../images/banner.jpg") center center/cover no-repeat;
}

.vimeoBg{

    position:absolute;
    inset:0;

    opacity:0;

    transition:opacity .8s ease;

}

.vimeoBg.show{

    opacity:1;

}

.vimeoBg iframe{

    position:absolute;

    top:50%;
    left:50%;

    width:177.7778vh;
    min-width:100%;

    height:56.25vw;
    min-height:100%;

    transform:translate(-50%,-50%);

    border:0;

    pointer-events:none;

}

.heroOverlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(90deg,rgba(2,26,41,.88) 0%,rgba(2,26,41,.58) 50%,rgba(2,26,41,.2) 100%),
    linear-gradient(180deg,rgba(2,26,41,.28),rgba(2,26,41,.38));

}


@media (max-width:768px){

    .vimeoBg iframe{

        left:75%;
        transform:translate(-80%,-50%);

    }

}



.heroContent {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero .eyebrow {
  color: #7edaff;
}

.hero h1 {
  max-width: 850px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.18;
  letter-spacing: -.055em;
}

.heroLead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.95;
}

.heroActions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.heroBadges {
  display: flex;
  gap: 0;
  margin-top: 76px;
}

.heroBadges div {
  min-width: 210px;
  padding: 0 34px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.heroBadges div:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.heroBadges strong {
  font-size: 18px;
}

.heroBadges span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
}

.scrollHint {
  position: absolute;
  right: 42px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.scrollHint i {
  position: relative;
  width: 1px;
  height: 55px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}

.scrollHint i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: #fff;
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  to { transform: translateY(200%); }
}

/* compare */
.compareSection {
  background:
    radial-gradient(circle at 50% 95%, rgba(17, 168, 236, .08), transparent 33%),
    #fff;
}

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

.compareCard {
  padding: 12px 12px 22px;
  border: 1px solid #e5edf1;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(3, 31, 49, .06);
}

.compareCard h3 {
  margin: 18px 12px 4px;
  font-size: 18px;
}

.compareCard p {
  margin: 0 12px;
  color: var(--text);
  font-size: 13px;
}

.compareBox {
  --position: 50%;
  position: relative;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #d9e3e8;
}

.compareImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afterWrap {
  position: absolute;
  inset: 0;
  width: var(--position);
  overflow: hidden;
}

.afterWrap .after {
  width: calc(100% / (var(--position) / 100%));
  max-width: none;
}

.compareRange {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compareLine {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.compareLine span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 6px 20px rgba(3, 31, 49, .25);
  transform: translate(-50%, -50%);
}

.compareLine span::before,
.compareLine span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.compareLine span::before {
  left: 8px;
  transform: translateY(-50%) rotate(-45deg);
}

.compareLine span::after {
  right: 8px;
  transform: translateY(-50%) rotate(135deg);
}

.compareLabel {
  position: absolute;
  z-index: 3;
  top: 12px;
  padding: 5px 9px;
  border-radius: 5px;
  color: #fff;
  background: rgba(3, 31, 49, .7);
  font-size: 11px;
}

.labelBefore { left: 12px; }
.labelAfter { right: 12px; }

/* 施工前／中／後三階段切換 */
.stageGallery {
  overflow: hidden;
  border-radius: 12px;
  background: #edf3f6;
}

.stageViewport {
  position: relative;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: #d9e3e8;
}

.stageImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .38s ease, transform .5s ease;
}

.stageImage.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.stageBadge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 31, 49, .78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  pointer-events: none;
}

.stageControls {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 6px;
  background: #edf3f6;
}

.stageControls button {
  min-height: 40px;
  padding: 8px 6px;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.stageControls button:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, .75);
}

.stageControls button.active,
.stageControls button[aria-pressed="true"] {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 5px 14px rgba(7, 137, 200, .25);
}

.stageControls button:focus-visible {
  outline: 3px solid rgba(17, 168, 236, .28);
  outline-offset: 1px;
}

/* trust */
.trustSection {
  background: var(--light);
}

.trustLayout {
  display: grid;
  grid-template-columns: .88fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.trustIntro p {
  margin: 24px 0;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 700;
}

.trustCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trustCards article {
  position: relative;
  min-height: 260px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid #e1ebef;
  border-radius: 16px;
  background: #fff;
  transition: .3s;
}

.trustCards article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.trustNo {
  position: absolute;
  right: 18px;
  top: 10px;
  color: #edf4f7;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.trustIcon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: var(--blue-soft);
}

.trustIcon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trustCards h3 {
  margin: 22px 0 10px;
  font-size: 18px;
}

.trustCards p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

/* about */
.aboutSection {
  background: #fff;
}

.aboutLayout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}

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

.aboutMain {
  width: 78%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.aboutSub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 300px;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 16px;
}

.experienceTag {
  position: absolute;
  left: 6%;
  bottom: 45px;
  width: 155px;
  height: 155px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 45px rgba(7, 137, 200, .28);
}

.experienceTag strong {
  font-size: 24px;
}

.experienceTag span {
  font-size: 12px;
}

.aboutContent p {
  margin: 20px 0 0;
}

.aboutFeature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 34px;
}

.aboutFeature > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border-radius: 12px;
  background: var(--light);
}

.aboutFeature svg {
  flex: 0 0 auto;
  width: 34px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aboutFeature span,
.aboutFeature strong {
  display: block;
  font-size: 12px;
}

.aboutFeature strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
}

/* services */
.servicesSection {
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(17, 168, 236, .15), transparent 28%),
    var(--navy);
}

.sectionHead.light .sectionEn {
  color: #67d1ff;
}

.sectionHead.light > p {
  color: rgba(255, 255, 255, .64);
}

.serviceTabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.serviceTabs button {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
}

.serviceTabs button.active,
.serviceTabs button:hover {
  color: #fff;
  border-color: var(--blue-bright);
  background: var(--blue);
}

.servicePanels {
  margin-top: 28px;
}

.servicePanel {
  display: none;
  grid-template-columns: 1.03fr .97fr;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
}

.servicePanel.active {
  display: grid;
  animation: panelIn .4s ease;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
}


.serviceImage {
  height: 510px;
}

.serviceImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serviceInfo {
  padding: 62px;
}

.serviceInfo > span {
  color: #69d2ff;
  font-size: 11px;
  letter-spacing: .18em;
}

.serviceInfo h3 {
  margin: 14px 0 18px;
  font-size: 34px;
}

.serviceInfo p {
  color: rgba(255, 255, 255, .7);
}

.serviceInfo ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.serviceInfo li {
  position: relative;
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
}

.serviceInfo li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: #67d1ff;
}

.serviceInfo a {
  display: inline-flex;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

/* process */
.processSection {
  background: #eef7fd;
}

.processHead {
  margin-bottom: 42px;
}

.processGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.processGrid article {
  position: relative;
  padding: 10px 10px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 12px 35px rgba(3, 31, 49, .05);
}

.processImg {
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.processImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.processGrid article:hover img {
  transform: scale(1.06);
}

.processGrid article > span {
  position: absolute;
  right: 18px;
  top: calc(100% - 115px);
  color: rgba(7, 137, 200, .34);
  font-family: Georgia, serif;
  font-size: 48px;
  font-style: italic;
}

.processGrid h3 {
  margin: 20px 15px 6px;
  font-size: 17px;
}

.processGrid p {
  margin: 0 15px;
  padding-right: 35px;
  color: var(--text);
  font-size: 12px;
}

/* detail tags */
.serviceDetailSection {
  background: #fff;
}

.detailTags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.detailTags span {
  padding: 12px 17px;
  border: 1px solid #dce8ee;
  border-radius: 999px;
  color: #3e5663;
  background: #fff;
  font-size: 13px;
  transition: .25s;
}

.detailTags span:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-soft);
}



/* CTA */
.ctaSection {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.ctaBg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(3, 31, 49, .9), rgba(3, 31, 49, .92)),
    url("../images/cta.jpg") center / cover no-repeat;
}

.ctaContent {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.ctaContent > span {
  color: #67d1ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.ctaContent p {
  margin: 18px 0 25px;
  color: rgba(255, 255, 255, .72);
}

.ctaPhones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-bottom: 28px;
}

.ctaPhones a {
  display: flex;
  flex-direction: column;
}

.ctaPhones small {
  color: rgba(255, 255, 255, .58);
}

.ctaPhones strong {
  font-size: 27px;
  letter-spacing: .04em;
}

.ctaPhones i {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .25);
}

/* contact */
.contactSection {
  padding: 110px 0;
  background: var(--navy-deep);
  color: #fff;
}

.contactLayout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: start;
}

.contactInfo > p {
  color: rgba(255, 255, 255, .65);
}

.contactList {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.contactList > a,
.contactList > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contactList svg {
  width: 30px;
  fill: none;
  stroke: #65d1ff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contactList span {
  display: flex;
  flex-direction: column;
}

.contactList small {
  color: rgba(255, 255, 255, .5);
}

.contactList strong {
  font-size: 17px;
}

.contactForm {
  padding: 42px;
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
}

.formHead span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}

.formHead h3 {
  margin: 6px 0 26px;
  font-size: 25px;
}

.formGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.formGrid label {
  display: grid;
  gap: 7px;
}

.formGrid label > span {
  color: #4c606c;
  font-size: 12px;
  font-weight: 700;
}

.formGrid .full {
  grid-column: 1 / -1;
}

.formGrid input,
.formGrid select,
.formGrid textarea {
  width: 100%;
  border: 1px solid #dce6eb;
  border-radius: 6px;
  outline: none;
  color: var(--ink);
  background: #f9fbfc;
  transition: .2s;
}

.formGrid input,
.formGrid select {
  height: 47px;
  padding: 0 13px;
}

.formGrid textarea {
  padding: 12px 13px;
  resize: vertical;
}

.formGrid input:focus,
.formGrid select:focus,
.formGrid textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(7, 137, 200, .08);
}

.formSubmit {
  width: 100%;
  height: 50px;
  margin-top: 22px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  font-weight: 700;
}

.formNote {
  margin: 12px 0 0;
  color: #8a9aa3;
  font-size: 11px;
  text-align: center;
}

/* footer */
.siteFooter {
  background: #f7f9fa;
}

.footerTop {
  display: grid;
  grid-template-columns: 1.35fr .8fr .95fr 1.1fr;
  gap: 45px;
  padding-top: 62px;
  padding-bottom: 58px;
}

.footerBrand p {
  max-width: 280px;
  color: var(--text);
  font-size: 12px;
}

.footerTop h3 {
  margin: 5px 0 18px;
  font-size: 17px;
}

.footerLinks > div,
.footerServices > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
}

.footerTop a,
.footerTop p {
  color: #60727d;
  font-size: 15px;
}

.footerTop a:hover {
  color: var(--blue);
}

.footerContact p {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  margin: 0 0 8px;
}

.footerContact span {
  color: #95a2a9;
}

.footerBottom {
  border-top: 1px solid #e2e8eb;
}

.footerBottom .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7a8b94;
  font-size: 11px;
}

.mobileQuick {
  display: none;
}

/* responsive */
@media (max-width: 1180px) {
  .mainNav > ul {
    gap: 18px;
  }

  .mainNav > ul > li > a,
  .submenuToggle {
    font-size: 13px;
  }

  .trustLayout,
  .aboutLayout,
  .contactLayout {
    gap: 50px;
  }

  .serviceInfo {
    padding: 45px;
  }
}

@media (max-width: 1024px) {
  .siteHeader,
  .siteHeader.scrolled {
    height: 70px;
    color: var(--ink);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 30px rgba(3, 31, 49, .08);
  }

  .siteHeader:not(.scrolled) .brandText,
  .siteHeader:not(.scrolled) .mainNav > ul > li > a,
  .siteHeader:not(.scrolled) .submenuToggle {
    color: var(--ink);
  }

  .siteHeader:not(.scrolled) .brandText small {
    color: #60727d;
  }

  .brand img {
    width: 58px;
    height: 40px;
  }

  .menuBtn {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .menuBtn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menuBtn.active span:nth-child(2) {
    opacity: 0;
  }

  .menuBtn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /*.mainNav {
    position: fixed;
    inset: 70px 0 0;
    z-index: 1001;
    padding: 20px 24px 100px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s;
  }*/

  .mainNav{
    position:fixed;
    top:70px;
    left:0;
    width:100%;
    height:calc(100vh - 70px);

    overflow-y:auto;

    background:#fff;

    z-index:1001;

    padding:20px 24px 100px;

    opacity:0;
    visibility:hidden;
    transform:translateY(-12px);
    transition:.25s;
}

  .mainNav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mainNav > ul {
    display: block;
  }

  .mainNav > ul > li {
    border-bottom: 1px solid #e7edf0;
  }

  .mainNav > ul > li > a,
  .submenuToggle {
    width: 100%;
    height: 56px;
    justify-content: space-between;
    color: var(--ink) !important;
    font-size: 15px;
  }

  .mainNav > ul > li > a::after,
  .submenuToggle::after {
    display: none;
  }

  .navCta {
    margin-top: 18px;
    border: 0 !important;
  }

  .navCta a {
    justify-content: center !important;
  }

  .submenu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .3s ease, padding .3s ease;
  }

  .hasSubmenu.open .submenu {
    max-height: 500px;
    padding: 0 10px 14px;
  transform: translate(0, 0);
  }

  .hasSubmenu.open .submenuToggle svg {
    transform: rotate(180deg);
  }


  .hero {
    min-height: 760px;
  }

  .heroBadges div {
    min-width: 0;
    flex: 1;
  }

  .compareGrid,
  .processGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trustLayout,
  .aboutLayout,
  .contactLayout {
    grid-template-columns: 1fr;
  }

  .trustIntro {
    max-width: 760px;
  }

  .aboutMedia {
    max-width: 760px;
  }

  .aboutContent {
    max-width: 760px;
  }

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

  .serviceImage {
    height: 420px;
  }

  .footerTop {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .sectionHead,
  .processHead {
    display: block;
    margin-bottom: 35px;
  }

  .sectionHead > p,
  .processHead > p {
    width: 100%;
    margin-top: 14px;
  }

  .sectionHead h2,
  .trustIntro h2,
  .aboutContent h2,
  .ctaContent h2,
  .contactInfo h2 {
    font-size: 30px;
  }

  .headerInner {
    width: calc(100% - 28px);
  }

  .brandText strong {
    font-size: 18px;
  }

  .brandText small {
    font-size: 8px;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .heroContent {
    padding-top: 120px;
    padding-bottom: 85px;
  }

  .hero h1 {
    margin-top: 13px;
    font-size: 40px;
  }

  .heroLead {
    font-size: 15px;
  }

  .heroActions {
    display: grid;
  }

  .heroBadges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 38px;
  }

  .heroBadges div,
  .heroBadges div:first-child {
    padding: 0 0 0 16px;
    border-left: 2px solid rgba(103, 209, 255, .8);
  }

  .heroBadges strong {
    font-size: 15px;
  }

  .scrollHint {
    display: none;
  }

  .compareGrid,
  .trustCards,
  .processGrid {
    grid-template-columns: 1fr;
  }

  .compareGrid {
    gap: 18px;
  }

  .trustLayout {
    gap: 40px;
  }

  .trustCards article {
    min-height: 0;
  }

  .aboutMedia {
    min-height: 430px;
  }

  .aboutMain {
    width: 88%;
    height: 360px;
  }

  .aboutSub {
    width: 48%;
    height: 190px;
    border-width: 6px;
  }

  .experienceTag {
    width: 115px;
    height: 115px;
    bottom: 20px;
  }

  .experienceTag strong {
    font-size: 19px;
  }

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

  .serviceTabs {
    margin-right: -16px;
  }

  .serviceImage {
    height: 270px;
  }

  .serviceInfo {
    padding: 30px 22px 35px;
  }

  .serviceInfo h3 {
    font-size: 28px;
  }

  .processGrid article > span {
    top: calc(100% - 110px);
  }

  .ctaPhones {
    display: grid;
    gap: 10px;
  }

  .ctaPhones i {
    width: 50px;
    height: 1px;
    margin: auto;
  }

  .ctaPhones strong {
    font-size: 24px;
  }

  .contactLayout {
    gap: 40px;
  }

  .contactForm {
    padding: 28px 20px;
  }

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

  .formGrid .full {
    grid-column: auto;
  }

  .footerTop {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .footerBottom .container {
    display: grid;
    justify-content: center;
    padding: 15px 0 78px;
    text-align: center;
  }

  .mobileQuick {
    position: fixed;
    inset: auto 0 0;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 58px;
    color: #fff;
    box-shadow: 0 -8px 25px rgba(3, 31, 49, .16);
  }

  .mobileQuick a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--navy);
    font-size: 14px;
    font-weight: 700;
  }

  .mobileQuick a:last-child {
    background: var(--blue);
  }

  .mobileQuick svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .contactSection {
  padding: 60px 0;
  }

}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 35px;
  }

  .aboutMedia {
    min-height: 390px;
  }

  .aboutMain {
    height: 325px;
  }

  .aboutSub {
    height: 165px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}








/* 顧客五星評論 */
.reviewArea {
  position: relative;
  /*margin-top: 100px;
  padding: 90px 0 20px;*/
  overflow:hidden;
}

.reviewArea::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  min-height: 620px;
  z-index: 0;
  transform: translateX(-50%);
  /*background:
    radial-gradient(
      circle at 50% 5%,
      rgba(7, 137, 200, 0.09),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      rgba(235, 247, 252, 0.75) 0%,
      rgba(255, 255, 255, 0) 78%
    );*/
  pointer-events: none;
}

.reviewArea::after {
  content: "";
  position: absolute;
  top: 110px;
  left: 50%;
  width: 100%;
  height: 280px;
  z-index: 0;
  opacity: 0.5;
  transform: translateX(-50%);
  background-image:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0,
      transparent 10px,
      rgba(7, 137, 200, 0.09) 11px,
      transparent 12px
    );
  background-size: 1900px 520px;
  background-position: center top;
  pointer-events: none;
}

.reviewHead,
.reviewSlider,
.reviewDots {
  position: relative;
  z-index: 2;
}

.reviewHead {
  margin-bottom: 46px;
}

.reviewSlider {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 20px;
}

.reviewViewport {
  overflow: hidden;
  touch-action: pan-y;
}

.reviewTrack {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.reviewCard {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  min-height: 390px;
  padding: 30px 27px;
  border: 1px solid #e0e8ec;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(3, 31, 49, 0.07);
}

.reviewAvatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.avatarPink {
  background: #e94d9e;
}

.avatarBlue {
  background: #318fd0;
}

.avatarPurple {
  background: #5a3fe0;
}

.avatarOrange {
  background: #df7a2c;
}

.avatarGreen {
  background: #37a67e;
}

.avatarNavy {
  background: #244b68;
}

.reviewCard h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.reviewLocation {
  display: block;
  margin-top: 3px;
  color: #7b8c95;
  font-size: 12px;
}

.reviewStars {
  margin: 14px 0 13px;
  color: #ffc400;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1;
}

.reviewCard p {
  margin: 0;
  color: #4f616c;
  font-size: 14px;
  line-height: 1.95;
}

.reviewArrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #d9e4e9;
  border-radius: 50%;
  color: #71838d;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 25px rgba(3, 31, 49, 0.08);
  transition: 0.25s ease;
}

.reviewArrow:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-2px);
}

.reviewArrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.reviewArrow svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviewDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.reviewDot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c7dce6;
  transition: 0.3s ease;
}

.reviewDot.active {
  width: 30px;
  background: var(--blue);
}

@media (max-width: 1180px) {
  .reviewCard {
    flex-basis: calc((100% - 40px) / 3);
  }
}

@media (max-width: 900px) {
  .reviewArea {
    /*margin-top: 75px;
    padding-top: 70px;*/
  }

  .reviewCard {
    flex-basis: calc((100% - 20px) / 2);
  }

  .reviewSlider {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 12px;
  }

  .reviewArrow {
    width: 40px;
    height: 40px;
  }
  .detailTags {
    display: none;
  }
}

@media (max-width: 600px) {
  .reviewArea {
    /*margin-top: 60px;
    padding-top: 60px;*/
  }

  .reviewHead {
    margin-bottom: 30px;
  }

  .reviewSlider {
    display: block;
  }

  .reviewViewport {
    margin-right: -16px;
    overflow: visible;
  }

  .reviewTrack {
    gap: 14px;
  }

  .reviewCard {
    flex-basis: calc(100vw - 64px);
    min-height: 0;
    padding: 25px 22px;
  }

  .reviewArrow {
    display: none;
  }

  .reviewDots {
    margin-top: 23px;
  }
}







/* ==========================
   Header CTA
========================== */

header .menu .navCta{
    margin-left:18px;
}

header nav ul li.navCta > a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:48px;
    padding:0 28px;
    background:#0789c8 !important;
    color:#fff !important;
    border-radius:999px;
}

header nav ul li.navCta > a:hover{
    background:#056d9f;
    color:#fff;
    transform:translateY(-2px);
}





.inBreadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  font-size: 12px;
}
.inBreadcrumb a {
  color: rgba(255, 255, 255, .68);
}
.inBreadcrumb span {
  color: rgba(255, 255, 255, .36);
}
.inBreadcrumb strong {
  color: #fff;
}





.inBanner {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff
}
.inBannerBg, .inBannerShade {
  position: absolute;
  inset: 0
}
.inBannerBg {
  background: url("../images/inbanner.jpg") center/cover no-repeat;
  transform: scale(1.02)
}
.inBannerShade {
  background: linear-gradient(90deg, rgba(3, 31, 49, .9) 0%, rgba(3, 31, 49, .62) 48%, rgba(3, 31, 49, .28) 100%), linear-gradient(180deg, rgba(3, 31, 49, .08), rgba(3, 31, 49, .25))
}
.inBannerInner{
    position:relative;
    z-index:2;
    width:min(calc(100% - 48px), var(--container));
    margin:0 auto;
    padding-top:72px;
}
.inBannerEn {
  color: #77d8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em
}
.inBanner h1 {
  margin: 12px 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.2;
  letter-spacing: -.05em
}
.inBannerInner>p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px
}





@media(max-width:767px) {
  .inBannerInner {
    width: min(calc(100% - 32px);
  }
  .inBanner {
    min-height: 390px;
  }
  .inBannerInner {
    padding-top: 70px;
  }
  .inBanner h1 {
    font-size: 40px;
  }
  .inBannerInner>p {
    font-size: 14px;
  }
}




@media(max-width:420px) {
  .inBanner h1 {
    font-size: 35px;
  }
}

/* 全站右側快速聯絡與社群懸浮按鈕 */
.floatingSocial {
  position: fixed !important;
  inset: auto 18px 32px auto !important;
  left: auto !important;
  top: auto !important;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 52px;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.floatingSocial a {
  position: relative;
  display: block;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 4px 12px rgba(3, 31, 49, .2);
  line-height: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.floatingSocial a:hover,
.floatingSocial a:focus-visible {
  box-shadow: 0 7px 18px rgba(3, 31, 49, .28);
  outline: none;
  transform: translateX(-4px) scale(1.06);
}

.floatingSocial img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}

@media(max-width:767px) {
  .floatingSocial {
    inset: auto 6px 72px auto !important;
    left: auto !important;
    top: auto !important;
    gap: 5px;
    width: 42px;
    transform: none !important;
  }

  .floatingSocial a {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 9px rgba(3, 31, 49, .2);
  }

  .floatingSocial a:hover,
  .floatingSocial a:focus-visible {
    transform: translateX(-2px) scale(1.04);
  }

  .floatingSocial img {
    width: 40px;
    height: 40px;
  }

}

@media(max-height:700px) and (min-width:768px) {
  .floatingSocial {
    gap: 5px;
    width: 44px;
  }

  .floatingSocial a {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .floatingSocial img {
    width: 42px;
    height: 42px;
  }
}

@media(max-height:520px) {
  .floatingSocial {
    gap: 3px;
    width: 36px;
  }

  .floatingSocial a {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .floatingSocial img {
    width: 34px;
    height: 34px;
  }
}
