@charset "utf-8";

/* ==========================================
   字體設定
========================================== */
@font-face {
  font-family: "Azonix-1VB0";
  src: url("../fonts/Azonix-1VB0.otf") format("truetype");
}
@font-face {
  font-family: "MiSans-Medium";
  src: url("../fonts/MiSans-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "MiSans-Normal";
  src: url("../fonts/MiSans-Normal.ttf") format("truetype");
}
@font-face {
  font-family: "MiSans-Regular";
  src: url("../fonts/MiSans-Regular.ttf") format("truetype");
}

/* ==========================================
 BASE STYLES
========================================== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  max-width: 100vw;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
}
ul {
  list-style: none;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
.hero-main-logo,
.floating-cards,
.glass-card-svg {
  left: 50%;
}
/* 共用修改：防止 AOS 元素在動畫開始前撐開頁面寬度 */
[data-aos] {
  pointer-events: none;
}
.aos-animate {
  pointer-events: auto;
}
.container,
section {
  max-width: 100vw !important;
  box-sizing: border-box;
  scroll-margin-top: 10rem;
}
/* ==========================================
箭頭
========================================== */
.scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  position: relative;
  top: -15vh;
}
.scroll a {
  font-family: "MiSans-Medium";
  text-decoration: none;
  color: #a0a0a0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  position: relative;
}
.scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/* ==========================================
HEADER STYLES
========================================== */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
header .container {
  width: 90%;
  margin: 0 auto;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  max-width: 90%;
  margin: 0 auto;
}
.logo {
  width: 53px;
  height: 44px;
  flex-shrink: 0;
  z-index: 1001;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ==Logo SVG 變色效果 == */
#logo-svg {
  width: 100%;
  height: 100%;
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 黑色背景:Logo 藍#2206FB */
header.on-dark #logo-svg {
  filter: none;
}
/* 藍色背景:Logo 純白 #fff */
header.on-blue #logo-svg {
  filter: brightness(0) invert(1);
}

/* 灰色背景:Logo 純白 #fff */
header.on-gray #logo-svg {
  filter: none;
}

/* ==========================================
           選單填滿背景色 
           ========================================== */
.nav-menu a,
.mobile-menu a {
  position: relative;
  color: #fff;
  transition: color 0.3s ease;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
  padding: 5px 15px 5px 25px; /* 留位置給左側星星 */
  overflow: hidden; /* 隱藏下方冒出的字母 */
}

/* 字母容器 */
.char {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  will-change: transform;
}
.nav-menu a::before,
.mobile-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.3s ease;
}
/* --- 星星圖案 (::after) --- */
.nav-menu a::after,
.mobile-menu a::after {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #2206fb;
  transform: translateY(-50%) scale(0);
  transition: all 0.3s ease;
  pointer-events: none;

  /* SVG Mask */
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><path d="M20,37l-2.86-7.72c-1.1-2.97-3.44-5.31-6.41-6.41l-7.72-2.86,7.72-2.86c2.97-1.1,5.31-3.44,6.41-6.41l2.86-7.72,2.86,7.72c1.1,2.97,3.44,5.31,6.41,6.41l7.72,2.86-7.72,2.86c-2.97,1.1-5.31,3.44-6.41,6.41l-2.86,7.72Z"/></svg>')
    center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><path d="M20,37l-2.86-7.72c-1.1-2.97-3.44-5.31-6.41-6.41l-7.72-2.86,7.72-2.86c2.97-1.1,5.31-3.44,6.41-6.41l2.86-7.72,2.86,7.72c1.1,2.97,3.44,5.31,6.41,6.41l7.72,2.86-7.72,2.86c-2.97,1.1-5.31,3.44-6.41,6.41l-2.86,7.72Z"/></svg>')
    center/contain no-repeat;
}
/*星星間距 電腦和手機*/
.nav-menu a::after {
  position: absolute;
  top: 50%;
  left: 5px;
}
.mobile-menu a::after {
  position: absolute;
  top: 50%;
  left: 10px; /* 手機版星星微調 */
}
.nav-menu .w-nav a::after {
  background-color: #fff;
}
.nav-menu a.active::after,
.nav-menu a:hover::after,
.mobile-menu a.active::after,
.mobile-menu a:hover::after {
  transform: translateY(-50%) scale(1);
}
.nav-menu a:hover::before,
.mobile-menu a:hover::before {
  width: 100%;
}
.nav-menu a:hover,
.mobile-menu a:hover {
  color: #2206fb;
}
.nav-menu a:hover::before,
.mobile-menu a:hover::before {
  width: 100%;
}
.nav-menu a.active:hover::after,
.mobile-menu a.active:hover::after {
  background-color: #2206fb;
}
/* ==========================================
           桌面版選單
           ========================================== */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: end;
  font-family: "MiSans-Normal";
}
.nav-menu a {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.15px;
}
.nav-menu li {
  padding: 0 1rem;
  text-transform: uppercase;
}
/* ==========================================
            手機選單
           ========================================== */
.mobile-menu-btn {
  display: none;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background-color: #1a1a1a;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 1002;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  padding-top: 5rem;
  font-family: "MiSans-Medium";
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.mobile-menu li {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.mobile-menu a {
  font-size: 1.2rem;
  padding: 10px 20px;
  width: 100%;

  text-align: center;
}
/**漸層背景**/
.gradient-bg {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 126, 1) 1%,
    rgba(34, 6, 251, 1) 32%,
    rgba(132, 121, 223, 1) 72%,
    rgba(180, 177, 210, 1) 100%
  );
}
.gradient-bg2 {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 126, 1) 0%,
    rgba(34, 6, 251, 1) 24%
  );
  min-height: 980px;
}
/* ==========================================
 HERO-SECTION
========================================== */
/**主視覺影片區**/
.hero-section {
  position: relative;
  min-height: 98vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  margin-top: 70px;
  padding-top: 50px;
  background: linear-gradient(to bottom, #000000 0%, #000000 76%, #00007e 100%);
}
.hero-content {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
/* 上方文字區 */
.hero-text-top {
  position: relative;
  z-index: 3;
  text-align: left;
  font-size: clamp(1.5rem, 1.0226rem + 2.0645vw, 3.5rem);
  font-family: "Azonix-1VB0", sans-serif;
  line-height: 1.5;
  text-transform: capitalize;
  width: 85%;
  margin: 0 auto;
  opacity: 0.8;
}
.hero-subtitle-top {
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  font-weight: normal;
}
.hero-description {
  font-family: "MiSans-Regular", sans-serif;
  font-size: clamp(10px, 1.2vw, 14px);
  line-height: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
}
/* 背景影片 */
.hero-video-container {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1399px;
  height: 658.542px;
  height: 70%;
  z-index: 1;
  overflow: hidden;
}
.hero-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.8);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}
/* 中心大標 G-Shine */
.hero-main-logo {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  animation: scaleIn 1.2s ease-out;
  width: 100%;
}
.hero-main-logo svg {
  max-width: 100%;
  height: auto;
}

/* 右下角文字 */
.hero-tagline {
  position: relative;
  right: 0;
  z-index: 3;
  text-align: right;
  animation: fadeInRight 1s ease-out;
  width: 88%;
  margin: 0 auto;
  top: 6vh;
}
.tagline-text {
  font-family: "MiSans-Regular", sans-serif;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
  line-height: 1.4;
}
/* ==========================================
   ABOUT SECTION
========================================== */

.about-section .container {
  width: 70%;
  margin: 0 auto;
  display: grid;
  align-items: center;
  justify-items: start;
  min-height: 100vh;
}
.about-section .section-title {
  font-size: clamp(2.25rem, 0.4rem + 8vw, 10rem);
  font-weight: normal;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}
.about-grid {
  margin-top: 28px;
  position: relative;
  width: 100%;
  min-height: 600px;
}
.about-text {
  max-width: 900px;
  font-family: "MiSans-Regular";
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-text p {
  color: #fff;
}
.about-text1 {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 1px;
}
.about-text2 {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 1px;
  max-width: 420px;
  opacity: 0.6 !important;
  text-transform: uppercase;
}
/* 圖片層:作為背景裝飾 */
.floating-cards {
  position: absolute;
  top: -53%;
  left: 39%;
  width: 100%;
  max-width: 980px;
  z-index: 10;
  pointer-events: none;
  right: 0;
}
.floating-card img {
  display: block;
  width: 100%;
  mix-blend-mode: overlay;
}
/* 按鈕樣式1-黑色*/
.about-section .btn {
  font-family: "MiSans-Medium";
  position: relative;
  z-index: 20;
  margin-top: 4.8rem;
  width: 227px;
  height: 46px;
  line-height: 1;
  letter-spacing: 1.5px;
  background: #000;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .btn:hover {
  background: #fff;
  color: #2206fb;
  transform: translateY(-2px);
}
/**按鈕樣式2-特效**/
.about-section .btn2 {
  font-family: "MiSans-Medium";
  position: relative;
  z-index: 20;
  margin-top: 4.8rem;
  width: 227px;
  height: 46px;
  line-height: 46px;
  letter-spacing: 1.5px;
  background: #2206fb;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}
.about-section .btn2:hover {
  background: #2206fb;
  color: #fff;
  transform: translateY(-2px);
}
/* 樣式2動畫邊框線條 */
.about-section .btn2 .line-1 {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  background-color: white;
  left: 0;
  bottom: 0;
  animation: move2 3000ms infinite ease;
}
.about-section .btn2 .line-2 {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  background-color: white;
  left: 0;
  top: 0;
  animation: move2 3000ms infinite ease;
}
.about-section .btn2 .line-3 {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  background-color: white;
  right: 0;
  top: 0;
  animation: move3 3000ms infinite ease;
}
.about-section .btn2 .line-4 {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  background-color: white;
  right: 0;
  bottom: 0;
  animation: move4 3000ms infinite ease;
}
@keyframes move1 {
  0% {
    height: 100%;
    bottom: 0;
  }
  54% {
    height: 0;
    bottom: 100%;
  }
  55% {
    height: 0;
    bottom: 0;
  }
  100% {
    height: 100%;
    bottom: 0;
  }
}
@keyframes move2 {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes move3 {
  0% {
    height: 100%;
    top: 0;
  }
  54% {
    height: 0;
    top: 100%;
  }
  55% {
    height: 0;
    top: 0;
  }
  100% {
    height: 100%;
    top: 0;
  }
}
@keyframes move4 {
  0% {
    width: 0;
    right: 0;
  }
  55% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
/**樣式2動畫邊框線條end**/
/* ==========================================
          DUAL-TRACK SECTION
  ========================================== */
.dual-track-section {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(to bottom, #b4b1d2 0%, #c7c7ce 27%, #cbcbce 100%);
}

.section-title {
  font-family: "Azonix-1VB0", sans-serif;
  font-size: clamp(1.5rem, 0.4258rem + 4.6452vw, 6rem);
  font-weight: normal;
  letter-spacing: 1px;
  text-align: center;
  color: #2206fb;
  margin-bottom: 0.5rem;
}

.dual-track-subtitle {
  font-family: "MiSans-Medium";
  font-size: clamp(1.5rem, 1.321rem + 0.7742vw, 2.25rem);

  text-align: center;
  color: #2206fb;
  margin-bottom: 2rem;
}

.dual-track-container {
  width: 100%;
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

/* Logo 底層 */
.center-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25vw;
  max-width: 320px;
  z-index: 1;
  pointer-events: none;
}
.center-arrow img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* 佈局結構 */
.cards-wrapper {
  display: flex;
  width: 100%;
  z-index: 2;
  align-items: center;
}

.card-wrapper {
  flex: 1;
  display: flex;
  position: relative;
}

.card-wrapper.left {
  justify-content: flex-end;
  transform: translateY(100px);
  margin-right: -4%;
}

.card-wrapper.right {
  justify-content: flex-start;
  transform: translateY(-100px);
  margin-left: -4%;
}

/* 玻璃擬態主體 */
.glass-card {
  width: 100%;
  max-width: 1018px;
  aspect-ratio: 1018 / 376;
  position: relative;
}

/* 毛玻璃背景層 */
.glass-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; /* 確保寬度撐滿 */
  bottom: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.glass-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.glass-stroke svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* 遮罩路徑 */
.card-wrapper.left .glass-backdrop,
.card-wrapper.left .glass-stroke svg {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1018 377'%3E%3Cpath d='M675.097 0.5H0V376H1013C1015.76 376 1018 373.761 1018 371V124.572C1018 121.811 1015.76 119.572 1013 119.572H829.391C801.609 119.572 775.08 108.015 756.161 87.6713L675.097 0.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1018 377'%3E%3Cpath d='M675.097 0.5H0V376H1013C1015.76 376 1018 373.761 1018 371V124.572C1018 121.811 1015.76 119.572 1013 119.572H829.391C801.609 119.572 775.08 108.015 756.161 87.6713L675.097 0.5Z'/%3E%3C/svg%3E");
}

.card-wrapper.right .glass-backdrop,
.card-wrapper.right .glass-stroke svg {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1019 377'%3E%3Cpath d='M343.403 376H1018.5V0.5H5.5C2.73859 0.5 0.5 2.73859 0.5 5.5V251.928C0.5 254.689 2.73859 256.928 5.5 256.928H189.109C216.891 256.928 243.42 268.485 262.339 288.829L343.403 376Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1019 377'%3E%3Cpath d='M343.403 376H1018.5V0.5H5.5C2.73859 0.5 0.5 2.73859 0.5 5.5V251.928C0.5 254.689 2.73859 256.928 5.5 256.928H189.109C216.891 256.928 243.42 268.485 262.339 288.829L343.403 376Z'/%3E%3C/svg%3E");
}

/* 文字內容 */
.glass-card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-18%, -50%);
  width: 100%;
  z-index: 10;
}
.glass-card h3 {
  line-height: 1.2;
  font-size: clamp(1.25rem, 1.1306rem + 0.5161vw, 1.75rem);
  letter-spacing: 1px;
  color: #2a2a2a;
  margin-bottom: 5px;
}
.subtitle-en {
  line-height: 1;
  font-family: "MiSans-Medium";
  letter-spacing: 1px;
  font-size: 16px;
  font-size: 1px;
  color: #666;
  margin-bottom: 20px;
}
.glass-card p {
  line-height: 1.8;
  font-size: clamp(1rem, 0.9403rem + 0.2581vw, 1.25rem);
  letter-spacing: 1px;
  color: #444;
}
/* ==========================================
           SERVICE SECTION
           ========================================== */

.service-section .service_title {
  background-color: #cbcbce;
}
.service-section .section-title {
  font-family: "Azonix-1VB0", sans-serif;
  color: #000;
  font-size: clamp(2.5rem, 0.2703rem + 8.1081vw, 10rem);
  letter-spacing: 1px;
  font-size: clamp(2.25rem, 0.4rem + 8vw, 10rem);
  font-weight: normal;
  letter-spacing: 1px;

  background-color: #cbcbce;
}
.service-section .section-title {
  text-align: center;
}
.service-section .service_title_wrap {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
.service-subtitle {
  text-align: center;
  color: #000;
  font-family: "MiSans-Medium";
  font-size: clamp(1.375rem, 1.1661rem + 0.9032vw, 2.25rem);
  display: flex;
  align-items: center;
  position: relative;
  top: -5px;
  margin-right: 10px;
}
.service-list_wrap {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 2%,
    rgba(0, 0, 0, 1) 79%,
    rgba(0, 0, 126, 1) 100%
  );
}
.service-list {
  width: 70%;
  margin: 70px auto 0 auto;
  display: flex;
  flex-direction: column;
}
.service-card {
  border-bottom: 1px solid #333;
  padding: 6.25rem 0;
}
.service-card:last-child {
  border-bottom: none;
}
.service-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.service-icon {
  width: 142px;
  height: 142px;
}
.service-info h3 {
  font-size: clamp(1.375rem, 1.2855rem + 0.3871vw, 1.75rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.service-info .service-label {
  font-family: "MiSans-Medium";
  font-size: clamp(1.125rem, 0.9758rem + 0.6452vw, 1.75rem);
  line-height: 1;
  letter-spacing: 1px;
  opacity: 0.8;

  color: #999;
}
.service-details ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.service-details li {
  letter-spacing: 1px;
  color: #ccc;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 18px;
}
/** 前綴 li 原點漸層**/
.service-details li::before {
  content: "•";
  margin-right: 0.8rem;
  font-size: 1.5rem;
  display: none;
}
.service-card:nth-child(1) .service-details li::before {
  color: #2206fb;
}
.service-card:nth-child(2) .service-details li::before {
  color: #5543e8;
}
.service-card:nth-child(3) .service-details li::before {
  color: #7e74d9;
}
/** 前綴 li 原點漸層 end**/
.service-cta {
  text-align: center;
  margin-top: 3rem;
}
.service-section .btn {
  font-family: "MiSans-Medium";
  position: relative;
  z-index: 20;
  display: inline-block;
  width: 227px;
  height: 46px;
  line-height: 46px;
  letter-spacing: 1.5px;
  background: #000;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 4.8rem;
}
.service-section .btn:hover {
  background: #fff;
  color: #2206fb;
  transform: translateY(-2px);
}
/* ==========================================
           PROCESS SECTION
           ========================================== */
.process-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.process-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1400px;
  width: 100%;
}
.process-left {
  display: flex;
  align-items: flex-end;
  position: relative;
}
/* 「服務流程」直排 */
.process-subtitle {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 36px;
  color: #cbcbce;
  letter-spacing: 0.4rem;
  font-weight: 400;
  white-space: nowrap;
}
/* 「PROCESS」垂直顯示 */
.process-title {
  font-family: "Azonix-1VB0", sans-serif;
  color: #000000;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -0.03em;
  writing-mode: vertical-lr;
  transform: rotate(0deg);
  margin-left: 0.3rem;
  font-size: clamp(1.5rem, 0.4258rem + 4.6452vw, 6rem);
}
/* 右側流程圖區域 */
.process-right {
  flex: 1;
  max-width: 707px;
}
.process-right img {
  width: 100%;
  height: auto;
  display: block;
}
/* ==========================================
           CONTACT SECTION
           ========================================== */
.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.contact-content_wrap {
  min-height: 589px;
  display: flex;
  align-items: center;
}
.contact-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-content h2 {
  font-family: "Azonix-1VB0", sans-serif;
  font-size: clamp(1.5rem, 0.4258rem + 4.6452vw, 6rem);
  font-weight: normal;
  letter-spacing: 1px;
}
.contact-content p {
  color: #fff;
  letter-spacing: 1.5px;
}
.contact_text_wrap {
  margin: 4rem 0;
}
.contact_text1 {
  font-family: "MiSans-Medium";
  font-size: 28px;
  letter-spacing: 1.5px;
  padding-bottom: 8px;
}
.contact_text2 {
  font-family: "MiSans-Medium";
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}
.contact-content .btn {
  font-family: "MiSans-Medium";
  display: inline-block;
  width: 227px;
  margin: 0 auto;
  height: 46px;
  line-height: 1;
  letter-spacing: 1.5px;
  background: #2206fb;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-content .btn:hover {
  background: #fff;
  color: #2206fb;
  transform: translateY(-2px);
}
/* ==========================================
           FOOTER
           ========================================== */
footer {
  background-color: #000;
  padding: 80px 0 40px;
}
footer .container {
  width: 70%;
  margin: 0 auto;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 40px;
}
.footer-logo {
  flex: 0 0 auto;
}
.footer-logo img {
  max-width: 260px;
  height: auto;
}
.footer-r {
  font-family: "MiSans-Medium";
  width: 36%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  letter-spacing: 1.5px;
}
.footer-info-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-label {
  font-size: 18px;
  color: #008fff;
}
.footer-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8rem;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1.5px;
  transition: color 0.3s;
  font-weight: 400;
}
.footer-nav a:hover {
  color: #4a90e2;
}
.footer-copyright {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.8;
  color: #fff;
  text-align: center;
  font-family: "MiSans-Normal";
}
/* GO TO TOP 按鈕 */
.go-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.go-to-top.show {
  opacity: 1;
  visibility: visible;
}
.go-to-top .arrow {
  animation: floatUpDown 2s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 藍色三角形箭頭 */
.go-to-top .arrow {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid #2206fb;
}
/* TOP 文字 */
.go-to-top .text {
  font-family: "MiSans-Medium";
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 5px;
  opacity: 0.6;
}
.go-to-top .text:hover {
  opacity: 1;
}

@media screen and (max-width: 1680px) {
  /**視覺影片區**/
  .hero-video-container {
    width: 80%;
    margin: 0 auto;
  }
  .g-video {
    height: 570px;
  }
  .hero-main-logo {
    width: 96%;
    margin: 0 auto;
  }
  .hero-tagline {
    width: 100%;
  }
  /*關於*/
  .about-section {
    padding-top: 10rem;
  }
  .floating-cards {
    position: absolute;
    top: -45%;
  }
  .floating-card {
    width: 80%;
  }
  /* 雙軌-卡片內文字定位 */
  .gs-1 {
    transform: translate(-24%, -50%);
  }
  .gs-2 {
    transform: translate(-22%, -50%);
  }
}

@media screen and (max-width: 1440px) {
  /**視覺影片區**/
  .hero-video-container {
    width: 85%;
    margin: 0 auto;
  }
  /**關於**/
  .floating-card {
    top: 165px;
    left: 19%;
  }
  .floating-cards {
    position: absolute;
    top: -37%;
    left: 33%;
  }
  /* 雙軌-卡片內文字定位 */
  .gs-1 {
    transform: translate(-35%, -50%);
  }
  .gs-2 {
    transform: translate(-18%, -50%);
  }
}
@media screen and (max-width: 1336px) {
  /*雙軌*/
  .dual-track-section {
    min-height: 100vh;
  }
}
@media screen and (max-width: 1280px) {
  /**視覺影片區**/
  .hero-video-container {
    width: 82%;
    margin: 0 auto;
  }
  /*關於*/
  .floating-cards {
    position: absolute;
    top: -33%;
    left: 36%;
  }
  /*雙軌*/
  .dual-track-section {
    min-height: 130vh;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .glass-card-svg {
    /* 強制瀏覽器重新計算 SVG */
    transform: translateZ(0);
    will-change: transform;
  }

  .glass-card-svg foreignObject > div {
    /* 確保 backdrop-filter 生效 */
    isolation: isolate;
    transform: translateZ(0);
  }
}

@media screen and (max-width: 1180px) {
  /**視覺影片區**/
  .hero-video-container {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1080px) {
  /* 隱藏桌面選單 */
  .nav-menu {
    display: none;
  }
  /* 顯示手機選單按鈕 */
  .mobile-menu-btn {
    display: block;
  }
  /**關於**/
  .about-section .container {
    width: 80%;
  }
  .floating-cards {
    height: 300px;
  }
  /**雙軌**/
  .dual-track-section {
    min-height: 90vh;
  }
  .subtitle-en {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 990px) {
  /**視覺影片區**/
  .hero-subtitle-top {
  }
  .hero-description,
  .tagline-text {
    font-size: 10px;
  }
  .hero-tagline {
    top: 3.6vh;
    position: relative;
  }
  .hero-video-container {
    height: 60%;
  }
  /*關於*/
  .about-section {
    padding-top: 0;
  }
  .about-section .container {
    min-height: auto;
  }
  .about-grid {
    min-height: auto;
    position: relative;
    padding-bottom: 350px;
  }

  .about-text {
    gap: 20px;
    position: relative;
    z-index: 30;
  }

  .about-text1 {
    font-size: 18px;
    line-height: 1.8;
  }

  .about-text2 {
    font-size: 16px;
    line-height: 1.8;
  }

  .floating-cards {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 500px;
    z-index: 10;
  }
  .floating-card img {
    width: 100%;
    height: auto;
    mix-blend-mode: overlay;
    opacity: 0.6;
  }
  .gradient-bg {
    min-height: auto;
  }
  /*雙軌*/

  /**雙軌**/
  .dual-track-section {
    min-height: 60vh;
    padding-bottom: 2rem;
  }

  .dual-track-container {
    flex-direction: column-reverse;
  }
  .cards-wrapper {
    flex-direction: column-reverse;
    padding: 20px;
    display: block;
  }
  .card-wrapper {
    width: 100%;
    transform: none !important;
    margin: 0 !important;
    justify-content: center;
  }
  .center-arrow {
    display: none;
  }
  .glass-card {
    aspect-ratio: auto;
    min-height: 200px;
    margin: 10px 0;
  }
  .glass-backdrop,
  .glass-stroke {
    display: none;
  }
  .glass-card-content {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    padding: 40px;
    width: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.7);
  }

  /*服務項目*/
  .service-section .service_title_wrap {
    width: 96%;
  }
  .service-section .btn {
    margin-top: 0;
  }

  .service-info h3 {
    font-size: 22px;
  }

  /*服務流程*/
  .process-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .process-left {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .process-right img {
    width: 80%;
    margin: 20px auto;
  }
  /*文字轉正*/
  .process-subtitle {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    letter-spacing: 0.5rem;
  }
  .process-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 72px;
    margin-left: 0;
  }
  .process-right {
    flex: 1;
    width: 100%;
  }
  /*頁尾*/
  footer .container {
    width: 90%;
    margin: 0 auto;
  }
  .footer-logo {
    transform: scale(80%);
  }
  .footer-r {
    width: 60%;
  }
  .footer-nav {
    gap: 3rem;
  }
}

@media screen and (max-width: 820px) {
  /*關於*/
  .floating-cards {
    top: 37%;
    left: 36%;
  }
  /*服務項目*/
  .service-card-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    justify-items: center;
  }
  .service-icon {
    margin: 0 auto;
  }
  .service-details ul {
    padding: 0;
    align-items: center;
  }
  .service-details li {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .logo {
    width: 45px;
    height: 37px;
  }
  .mobile-menu {
    width: 100%;
    max-width: 280px;
  }
  .hero-content {
    height: calc(100vh - 60px);
  }
  #about {
    height: auto !important;
    padding-bottom: 280px;
  }
  /*關於*/
  .about-grid {
    padding-bottom: 0;
  }
  .about-text {
    grid-template-columns: 1fr;
  }

  .floating-cards {
    top: 50%;
    width: 100%;
  }
  .floating-card img {
    opacity: 0.5;
  }
  /*服務項目*/
  .service-info .service-label {
  }
  .service-info,
  .service-details {
    grid-column: span 1;
  }
  /*頁尾*/
  .footer-r {
    width: 57%;
  }
}
@media screen and (max-width: 576px) {
  .logo {
    width: 40px;
    height: 33px;
  }
  .hero-tagline {
    top: 18vh;
    text-align: right;
  }
  /*關於*/
  #about {
    height: auto !important;
    min-height: auto;
    padding-bottom: 100px;
  }

  .about-grid {
    height: auto;
    display: block;
  }

  .about-text {
    width: 100%;
    z-index: 30;
  }
  .floating-cards {
    top: 34%;
    bottom: 50px;
    left: 27%;
    transform: translateX(-50%);
    width: 100%;
  }
  .floating-card img {
    opacity: 0.4;
  }

  .glass-card-content {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    padding: 40px;
    width: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.7);
  }

  /*雙軌*/
  .glass-card-content {
    padding: 30px;
  }

  /*服務項目*/
  .service-section .service_title_wrap {
    width: 100%;
  }
  .service-subtitle {
    top: 0;
    letter-spacing: 0.3rem;
  }

  .service-info h3 {
    font-size: 20px;
  }

  /*服務流程*/
  .process-section {
    padding: 3rem 1.5rem;
  }
  .process-wrapper {
    gap: 2rem;
  }
  .process-left {
    gap: 1rem;
  }
  .process-title {
    font-size: clamp(2.5rem, 0.2703rem + 8.1081vw, 10rem);
  }
  .process-right img {
    width: 100%;
  }
  /*頁尾*/
  footer .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .footer-r {
    width: 100%;
    align-items: flex-start;
  }
  .footer-info-group {
    text-align: left;
  }
  .footer-nav {
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
    width: 100%;
  }
  .footer-logo {
    margin: 0 auto;
  }
}
