* { margin: 0; padding: 0; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
body { font-family: "Noto Sans TC",sans-serif; background-color: #ffffff; color: #1a1a1a; line-height: 1.8; letter-spacing: 0.05em; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes letstalk {
  0%,100% { background-position-x: 0 }
  50% { background-position-x: 10% }
}
@keyframes swingRotate {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}
@keyframes bounceUltraSmooth {
  0% { transform: translateY(0); }
  25% { transform: translateY(-18px); }
  45% { transform: translateY(0); }
  60% { transform: translateY(-60px); }
  75% { transform: translateY(0); }
  85% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
@keyframes flySmooth {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
.animate-up { opacity: 0; animation: fadeInUp 1.5s cubic-bezier(0.16,1,0.3,1) forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
/* Char Span Animation for section-title */
.char-span { display: inline-block; opacity: 0; transform: translateY(15px); transition: opacity 4s cubic-bezier(0.16,1,0.3,1) 1s,transform 4s cubic-bezier(0.16,1,0.3,1) 1s; }
.is-revealed .char-span { opacity: 1; transform: translateY(0); }
/* Top Fixed Header */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; display: flex; justify-content: space-between; align-items: flex-start; pointer-events: none; transition: all 0.3s ease; }
.site-header.scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.02); pointer-events: auto; }
.header-left { pointer-events: auto; }
.header-logo { display: flex; align-items: center; text-decoration: none; height: 80px; position: relative; z-index: 10; transition: all 0.3s; }
.logooimg { width: 80px; height: 80px; background-color: #217ec8; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; }
.logooimg img { max-height: 40px; max-width: 40px; width: auto; display: block; }
.logo-text-wrap { display: flex; align-items: center; overflow: hidden; max-width: 0; opacity: 0; position: relative; z-index: 1; transition: max-width 0.6s cubic-bezier(0.16,1,0.3,1),opacity 0.6s ease; }
.logo-text { max-height: 20px; transform: translateX(-100%); transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); margin-left: 15px; display: block; width: auto; }
.site-header.scrolled .logo-text-wrap { max-width: 300px; opacity: 1; }
.site-header.scrolled .logo-text { transform: translateX(0); }
.header-right { display: flex; align-items: center; gap: 30px; padding: 15px 5%; pointer-events: auto; }
.desktop-nav { display: none; gap: 30px; align-items: center; background: rgba(255,255,255,0.9); padding: 10px 40px; border-radius: 30px; backdrop-filter: blur(5px); }
.nav-link { font-size: 14px; font-family: 'Montserrat',sans-serif; font-weight: 500; color: #1a1a1a; letter-spacing: 0.05em; transition: color 0.3s; text-decoration: none; }
.nav-link:hover { color: #217ec8; }
.menu-trigger { width: 45px; height: 45px; border-radius: 50%; background-color: #1a1a1a; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 110; transition: background-color 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.menu-trigger:hover { background-color: #217ec8; }
.menu-icon { position: relative; width: 20px; height: 20px; display: flex; flex-direction: column; justify-content: space-between; align-items: center; transition: all 0.3s; }
.dot { width: 4px; height: 4px; background-color: #ffffff; border-radius: 50%; transition: all 0.3s; }
.menu-trigger.active .menu-icon { justify-content: center; }
.menu-trigger.active .dot { position: absolute; width: 20px; height: 2px; border-radius: 1px; top: 9px; }
.menu-trigger.active .dot:nth-child(1) { transform: rotate(45deg); }
.menu-trigger.active .dot:nth-child(2) { opacity: 0; }
.menu-trigger.active .dot:nth-child(3) { transform: rotate(-45deg); }
/* Full Screen Menu */
.full-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255,255,255,0.98); z-index: 90; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px; opacity: 0; pointer-events: none; transition: opacity 0.4s; backdrop-filter: blur(10px); }
.full-menu.active { opacity: 1; pointer-events: auto; }
.m-link { font-size: 24px; font-weight: 500; letter-spacing: 0.2em; color: #1a1a1a; transform: translateY(20px); opacity: 0; transition: all 0.4s; text-decoration: none; font-family: 'Montserrat',sans-serif; }
.full-menu.active .m-link { transform: translateY(0); opacity: 1; }
.full-menu.active .m-link:nth-child(1) { transition-delay: 0.1s; }
.full-menu.active .m-link:nth-child(2) { transition-delay: 0.15s; }
.full-menu.active .m-link:nth-child(3) { transition-delay: 0.2s; }
.full-menu.active .m-link:nth-child(4) { transition-delay: 0.25s; }
.full-menu.active .m-link:nth-child(5) { transition-delay: 0.3s; }
.full-menu.active .m-link:nth-child(6) { transition-delay: 0.35s; }
.m-link:hover { color: #217ec8; }
/*  (BuySell Style) */
.btn-more { display: inline-flex; align-items: center; justify-content: space-between; background-color: #217ec8; color: #ffffff; padding: 0; border-radius: 6px; font-family: 'Montserrat',"Noto Sans TC",sans-serif; font-size: 16px; font-weight: 500; letter-spacing: 0.1em; transition: all 0.4s ease; height: 65px; min-width: 250px; text-decoration: none; cursor: pointer; border: none; box-shadow: 0 4px 15px rgba(33,126,200,0.15); }
.btn-more:hover { background-color: #1a65a0; color: #ffffff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(33,126,200,0.3); }
.btn-more .btn-text { flex: 1; text-align: center; padding-left: 20px; transition: color 0.4s; }
.btn-more .btn-icon-wrap { width: 65px; height: 100%; display: flex; align-items: center; justify-content: center; border-left: 1px solid rgba(255,255,255,0.25); margin-left: 0; background-color: transparent; color: #ffffff; border-radius: 0; transition: transform 0.4s ease; }
.btn-more:hover .btn-icon-wrap { transform: translateX(5px); background-color: transparent; color: #ffffff; }
.btn-more i { font-size: 16px; }
.btn-more-full { width: 100%; }
/*  (Clean Layout) */
.bs-container { margin: 0 auto; padding: 0 0%; width: min(100%,1440px); position: relative; z-index: 10; }
.bs-section { padding: 100px 0; position: relative; overflow: hidden; background-color: #ffffff; }
.coolJJ_box { position: absolute; right: -7vw; width: 16vw; height: 16vw; margin-top: 0vw; background-color: rgb(33 126 200/23%); border-radius: 99999px; filter: blur(40px); animation: bounceUltraSmooth 2.6s ease-in-out infinite; opacity: 0.5; z-index: 6; }
.coolJJ_box.ballcolor_02 { left: 8vw; margin-top: 0; z-index: 1; background-color: rgb(235 235 235); }
.bs-section.gray-bg { background-color: #fbfbfb; }
.section-header { margin-bottom: 50px; display: flex; flex-direction: column; align-items: flex-start; position: relative; z-index: 10; }
.section-label { font-size: 14px; font-weight: 700; color: #217ec8; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; font-family: 'Montserrat',sans-serif; }
.section-title { font-size: 2.75rem; font-weight: 700; color: #111; letter-spacing: 0.05em; position: relative; padding-bottom: 20px; line-height: 1.2; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background-color: #217ec8; }
.centerJJ.section-header { display: flex; flex-direction: column; align-items: center; }
.centerJJ .section-title { display: flex; align-items: center; justify-content: center; }
.centerJJ .section-title::after { left: auto; }
.centerJJ h1 { font-size: 1.25rem; padding: 30px 0 0; font-weight: 400; text-align: center; }
/* 2. Banner */
.bs-hero { height: 100vh; min-height: 710px; width: 100%; position: relative; display: flex; background-color: #fafafa; align-items: center; }
.bs-hero-img-box { position: absolute; right: 0; top: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
.bs-hero-img-box::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(#0000,#ffffff1a 14%,#ffffffbd 63%,#ffffffe6 85%,#fff); }
.bs-hero-video { width: 100%; height: 100%; object-fit: cover; }
.bs-hero-content { position: relative; z-index: 2; width: min(1460px,90%); margin: 0 auto; padding: 0 2%; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; margin-top: 20px; }
.bs-hero-card { background: rgb(255 255 255/75%); padding: 50px 40px; width: min(100%,600px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-left: 4px solid #217ec8; position: relative; text-align: left; border-radius: 10px 50px 10px 10px; }
.bs-hero-en { font-family: 'Montserrat',sans-serif; font-size: 14px; font-weight: 700; color: #217ec8; letter-spacing: 0.2em; margin-bottom: 20px; display: block; }
.bs-hero-title { font-size: 42px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin-bottom: 30px; letter-spacing: 0.1em; }
.bs-hero-desc { font-size: 16px; color: #666; line-height: 2; margin-bottom: 40px; letter-spacing: 0.05em; }
.po_shape { position: absolute; margin-top: -250px; z-index: 1; }
.po_shape:before { content: ""; position: absolute; background-repeat: no-repeat; background-image: url("/web/images/imgGB/movehead.png"); aspect-ratio: 11/9; width: 4.5vw; background-size: cover; left: 38vw; top: 40px; transform-origin: left bottom; animation: swingRotate 3s ease-in-out infinite; }
/* 3. 為何你需要 Google 商家 */
#why-need:before { content: ""; position: absolute; width: 5vw; aspect-ratio: 1/1; background-size: cover; background-image: url(/web/images/imgGB/starimg-1.png); z-index: 3; right: 10vw; top: 6vw; animation: flySmooth 4s ease-in-out infinite; }
.bs-why-wrap { display: flex; align-items: center; justify-content: space-between; gap: 80px; padding: 15px 0; }
.bs-why-left { width: 50%; position: relative; }
.bs-why-img-mask { width: 100%; height: 100%; overflow: hidden; border-radius: 2px; position: relative; z-index: 2; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.bs-why-img { width: 100%; height: 600px; object-fit: cover; }
.bs-why-bg-deco { position: absolute; bottom: 15%; left: -3vw; width: 70%; height: 70%; z-index: 1; border-radius: 10px 10px 10px 10px; background-image: linear-gradient(28deg,#217ec8,#186db0); z-index: -1; }
.bs-why-right { width: 50%; display: flex; flex-direction: column; }
.bs-why-list { display: flex; flex-direction: column; background-color: #ffffff; padding: 0 35px; border-radius: 40px; box-shadow: -20px 0px 19px 0px rgb(210 210 210/10%); }
.bs-why-item { border-bottom: 1px solid rgb(229 229 229/29%); padding: 40px 0; display: flex; flex-direction: column; }
.bs-why-item:first-child { border-top: 1px solid rgb(229 229 229/29%); }
.bs-why-item-head { display: flex; align-items: center; gap: 20px; margin-bottom: 15px; }
.bs-why-item-num { font-family: 'Montserrat',sans-serif; font-size: 23px; font-weight: 300; color: #ffffff; line-height: 1; padding: 13px; background: #217ec8; border-radius: 666px; aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bs-why-item-title { font-size: 26px; font-weight: 700; color: #111; letter-spacing: 0.05em; }
.bs-why-item-desc { font-size: 18px; color: #555; line-height: 1.8; letter-spacing: 0.05em; padding-left: 52px; }
.google_service { position: absolute; z-index: 5; width: 100%; display: flex; justify-content: flex-end; }
.google_service .gif_box { position: relative; width: 13vw; aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; right: 29vw; animation: flySmooth 7s linear infinite; }
.google_service .gif_box:before { content: ""; position: absolute; width: 76%; aspect-ratio: 1/1; border: 2px dashed #e5e5e5; border-radius: 50%; animation: spin 17s linear infinite; z-index: -1; }
/* 4. 重點賣點 */
.bs-points-section { padding: 60px 0 100px; background-color: #ffffff; position: relative; z-index: 20; }
.bs-points-grid { display: grid; grid-template-columns: repeat(3,1fr); background: #ffffff; box-shadow: 0 15px 50px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; border-radius: 12px; overflow: hidden; }
.bs-point-item { padding: 50px 40px; border-right: 1px solid #f0f0f0; display: flex; flex-direction: column; align-items: flex-start; transition: background 0.4s; }
.bs-point-item:last-child { border-right: none; }
.bs-point-item:hover { background: #fafafa; }
.bs-point-icon { width: 60px; height: 60px; border-radius: 50%; background: #f5f5f5; color: #111; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 25px; transition: all 0.4s; }
.bs-point-item:hover .bs-point-icon { background: #217ec8; color: #fff; }
.bs-point-text { font-size: 20px; font-weight: 700; color: #111; letter-spacing: 0.1em; }
/* 5. 服務優勢區 */
#advantages { padding: 180px 0 170px; background-image: url(/web/images/imgGB/om_bg.jpg); background-position: 50%; background-size: contain; }
#advantages:before { content: ""; position: absolute; width: 100%; aspect-ratio: 640/53; background-size: contain; background-image: url(/web/images/imgGB/tages_top.png); background-repeat: no-repeat; z-index: 3; right: 0; top: 0; }
#advantages:after { content: ""; position: absolute; width: 20vw; aspect-ratio: 1/1; background-size: contain; background-image: url(/web/images/imgGB/googlebu_img); background-repeat: no-repeat; z-index: 3; right: 0; top: 0; }
.bs-adv-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #d0d0d0; border-left: 1px solid #d0d0d0; margin-top: 20px; }
.bs-adv-card { padding: 60px 23px; background: rgb(246 246 246/70%); border-right: 1px solid #d0d0d0; border-bottom: 1px solid #d0d0d0; display: flex; flex-direction: column; transition: background 0.4s; position: relative; overflow: hidden; }
.bs-adv-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: #217ec8; transition: width 0.4s; }
.bs-adv-card:hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); z-index: 2; }
.bs-adv-card:hover::before { width: 100%; }
.bs-adv-icon { font-size: 32px; color: #666666; margin-bottom: 15px; transition: color 0.4s; }
.bs-adv-card:hover .bs-adv-icon { color: #217ec8; }
.bs-adv-title { font-size: 26px; font-weight: 700; color: #111; margin-bottom: 15px; letter-spacing: 0.1em; }
.bs-adv-desc { font-size: 17px; color: #666; line-height: 1.8; letter-spacing: 0.05em; }
/* 6. 服務方案與價格 */
#pricing { background-color: #fbfbfb; width: 100%; }
#pricing:before { content: ""; position: absolute; width: 100%; height: 78%; aspect-ratio: 1/1; top: 0; border-radius: 50% 50% 150px 150px; background: #ffffff; z-index: 2; background-image: linear-gradient(to bottom,#ffffff,#fbfbfb); }
#pricing .section-header { display: flex; flex-direction: column; align-items: center; }
#pricing .section-title::after { left: auto; margin: 0 auto; text-align: center; }
#pricing .section-title { display: flex; align-items: center; justify-content: center; }
.leaf_box { position: absolute; background-repeat: no-repeat; aspect-ratio: 11/9; width: 5vw; left: 48vw; margin-top: -10px; transform-origin: left bottom; animation: swingRotate 3s ease-in-out infinite; z-index: 9; }
.bs-plan-one { margin-bottom: 0px; padding: 50px 5%; }
.bs-plan-two { padding-top: 0; padding: 0px 5%; }
.bs-plan-title {font-size: 28px;font-weight: 700;margin-bottom: 15px;color: #217ec8;letter-spacing: 0.1em;border-left: 4px solid #217ec8;padding-left: 15px;}
.bs-plan-desc { font-size: 17px; color: #666; margin-bottom: 40px; line-height: 1.8; letter-spacing: 0.05em; }
/* 方案一：新表格與右側 CTA 佈局 */
.bs-table-wrap { display: flex; width: 100%; border: 3px solid #217ec8; margin-bottom: 30px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-radius: 20px; overflow: hidden; }
.bs-table-left { flex: 1; display: flex; flex-direction: column; }
.bs-table-right { width: 340px; background: #fafafa; border-left: 1px solid #f0f0f0; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px 30px; text-align: center; }
.bs-table-header { display: grid; grid-template-columns: 1.4fr 2fr; padding: 15px 30px; border-bottom: 1px solid #f0f0f0; font-weight: 700; color: #ffffff; letter-spacing: 0.1em; font-size: 16px; background: #217ec8; }
.bs-table-row { display: grid; grid-template-columns: 1.4fr 2fr; padding: 35px 30px; border-bottom: 1px solid #f0f0f0; transition: background 0.3s; background: #fff; }
.bs-table-row:last-child { border-bottom: none; }
.bs-table-col { padding-right: 20px; font-size: 15px; color: #444; line-height: 1.8; font-weight: 400; }
.bs-table-col.font-bold { font-weight: 700; color: #111; font-size: 18px; }
.bs-table-right-title { font-size: 16px; font-weight: 700; color: #555; margin-bottom: 15px; letter-spacing: 0.1em; }
.bs-table-right-price { font-family: 'Montserrat',sans-serif; font-size: 26px; font-weight: 700; color: #217ec8; margin-bottom: 25px; }
/* 預期效益 */
.bs-table-benefit { background: rgb(255 255 255); padding: 40px; border-left: 4px solid #606060; margin: 50px 0; border-radius: 0 8px 8px 0; box-shadow: 0 10px 30px rgb(177 177 177/8%); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.bs-table-benefit::after { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 25px; bottom: auto; font-size: 105px; color: rgba(33,126,200,0.08); pointer-events: none; }
.staJ_box { display: flex; align-items: center; margin-bottom: 15px; gap: 20px; }
.staJ_box img { height: 20px; }
.bs-benefit-label { font-size: 14px; font-weight: 700; color: #747474; background: #e7edf3; display: block; letter-spacing: 0.2em; text-transform: uppercase; position: relative; z-index: 2; width: 150px; display: flex; flex-direction: column; align-items: center; padding: 5px 10px; }
.bs-benefit-text { font-size: 1.25rem; font-weight: 700; color: #191b1c; line-height: 1.8; letter-spacing: 0.05em; position: relative; z-index: 2; }
/* 方案二：三卡片佈局 */
.bs-review-cards {display: grid;grid-template-columns: repeat(3,1fr);gap: 30px;padding-top: 10px;}
.bs-review-card { position: relative; background: #fff; padding: 50px 30px; border: 1px solid #e0e0e0; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.4s; }
.bs-review-card:hover { border-color: #111; box-shadow: 0 20px 50px rgba(0,0,0,0.08); transform: translateY(-5px); z-index: 2; }
.bs-review-card.accent { border: 2px solid #217ec8; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.bs-review-card.accent:before { content: ""; position: absolute; width: 80px; aspect-ratio: 197/282; top: -50px; right: -10px; background: url(/web/images/imgGB/hot_img.png); background-size: cover; }
.bs-review-stars { color: #217ec8; font-size: 16px; margin-bottom: 10px; letter-spacing: 5px; }
.bs-review-title { font-size: 19px; font-weight: 700; color: #111; margin-bottom: 5px; letter-spacing: 0.1em; }
.bs-review-price { font-family: 'Montserrat',sans-serif; font-size: 45px; font-weight: 700; color: #111; margin-bottom: 40px; border-bottom: 1px solid #f0f0f0; padding-bottom: 5px; width: 100%; display: flex; align-items: baseline; justify-content: center; gap: 5px; }
.bs-review-price span { font-size: 14px; font-family: 'Noto Sans TC',sans-serif; font-weight: 500; color: #888; }
.bs-review-card.accent .bs-review-price { color: #217ec8; border-bottom-color: #e5e5e5; }
/* 7. 客戶好評滿版輪播區塊 (Slick) */
.bs-reviews-section { padding: 200px 0 100px; background-color: #fafafa; overflow: hidden; border-top: 1px solid #f0f0f0; position: relative; }
.bs-reviews-section:before { position: absolute; padding: 2em 0; top: 0; width: 100%; height: 26px; border-top: 1px rgb(229 229 229/74%) solid; border-bottom: 1px rgb(229 229 229/74%) solid; background: url(/web/images/imgGB/footer_bg.svg) repeat-x 0/auto 20px; animation: letstalk 10s ease-in-out infinite; content: ""; }
.reviews-slider . { margin-top: 40px; }
.reviews-slider .slick-track { padding: 20px 0; }
.slick-slide { outline: none; }
.rev-card { background: #fff; border-radius: 8px; padding: 30px; margin: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; display: flex; flex-direction: column; min-height: 483px!important; }
.rev-summary { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.rev-bars { flex: 1; padding-right: 20px; }
.rev-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 12px; color: #555; font-family: 'Montserrat',sans-serif; font-weight: 700; }
.rev-bar-bg { flex: 1; height: 8px; background: #e0e0e0; border-radius: 4px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: #fbbc04; border-radius: 4px; }
.rev-score { text-align: center; display: flex; flex-direction: column; align-items: center; }
.rev-score-num { font-size: 48px; font-family: 'Montserrat',sans-serif; font-weight: 400; color: #555; line-height: 1; margin-bottom: 5px; }
.rev-score-stars { color: #fbbc04; font-size: 14px; margin-bottom: 8px; letter-spacing: 2px; }
.rev-score-count { font-size: 13px; color: #777; }
.rev-item { display: flex; gap: 15px; margin-bottom: 25px; }
.rev-item:last-child { margin-bottom: 0; }
.rev-avatar-wrap { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.rev-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.rev-avatar.icon-male { background-color: #eaf3fa; color: #217ec8; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.rev-avatar.icon-female { background-color: #fceef3; color: #e83e8c; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.rev-badge { position: absolute; bottom: -2px; right: -2px; background: #f95e29; color: #fff; width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 7px; border: 1.5px solid #fff; z-index: 5; }
.rev-content { flex: 1; }
.rev-text { font-size: 14px; color: #333; line-height: 1.6; margin-bottom: 5px; }
.rev-text strong { font-weight: 700; color: #111; }
.rev-item-stars { color: #fbbc04; font-size: 12px; letter-spacing: 1px; }
/* Slick Dots 樣式 */
.slick-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; list-style: none; padding: 0; }
.slick-dots li { margin: 0; }
.slick-dots li button { font-size: 0; width: 12px; height: 12px; border-radius: 50%; background: #d0d0d0; border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.slick-dots li.slick-active button { background: #217ec8; width: 30px; border-radius: 6px; }
/* 8. 成效與信任區塊 */
#performance:before { content: ""; position: absolute; width: 4vw; aspect-ratio: 1/1; background-size: cover; background-image: url(/web/images/imgGB/starimg-2.png); z-index: 3; right: 34vw; top: 8vw; animation: flySmooth 3s ease-in-out infinite; }
.bs-section#performance { padding: 60px 0 100px; }
.bs-perf-wrap { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.bs-perf-left { width: 43%; display: flex; justify-content: center; align-items: center; position: relative; min-height: 550px; }
.bs-perf-right { width: 48%; display: flex; flex-direction: column; }
.bs-perf-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px 30px; margin-bottom: 40px; }
.perf-stat-item { border-left: 3px solid #217ec8; padding-left: 25px; display: flex; flex-direction: column; }
.perf-stat-num { font-family: 'Montserrat',sans-serif; font-size: 56px; font-weight: 700; color: #111; line-height: 1; margin-bottom: 5px; }
.perf-stat-num span { font-size: 20px; color: #217ec8; margin-left: 5px; }
.perf-stat-text { font-size: 16px; font-weight: 700; color: #666; letter-spacing: 0.1em; }
.bs-perf-desc { font-size: 15px; color: #555; line-height: 1.8; letter-spacing: 0.05em; padding-top: 30px; border-top: 1px solid #e0e0e0; }
/* Back To Top Stamp */
.kv-stamp { position: fixed; bottom: 20px; right: 20px; width: 80px; height: 80px; z-index: 9999; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease; }
.kv-stamp:hover { transform: scale(1.1); }
.kv-stamp.booom { bottom: 52px; }
.kv-stamp svg { width: 100%; height: 100%; animation: spin 15s linear infinite; }
.kv-stamp-center { position: absolute; font-size: 14px; font-weight: 700; color: #217ec8; font-family: 'Montserrat',sans-serif; pointer-events: none; }
/* ================= Footer ================= */
footer { position: relative; background: #fff; display: flex; flex-wrap: wrap; align-items: stretch; z-index: 3; }
footer:before { padding: 2em 0; width: 100%; height: 26px; border-top: 1px rgb(229 229 229/74%) solid; border-bottom: 1px rgb(229 229 229/74%) solid; background: url(/web/images/imgGB/footer_bg.svg) repeat-x 0/auto 20px; animation: letstalk 10s ease-in-out infinite; content: ""; }
footer #contact_box { padding: 3vmax 5vw; width: 1%; background: url(/assets/images/img_contact_bg.webp) no-repeat 50%/cover; flex: 1 1 auto; }
footer #contact_box .title { margin-bottom: 1em; line-height: 1; font-weight: 500; font-size: 4.5em; }
footer #contact_box form { display: grid; grid-template-columns: repeat(2,1fr); grid-gap: 2em; }
footer #contact_box form .item { border-bottom: 1px #aeadad solid; display: flex; align-items: center; }
footer #contact_box form .item * { color: #0f0f0f; }
footer #contact_box form .item input { width: 1%; flex: 1 1 auto; background: none; border: 0; }
footer #contact_box form .item.large { grid-column: 1/3; }
footer #contact_box form .item.recaptcha,footer #contact_box form .item.send { border-bottom: 0; }
footer #contact_box form .item.send { justify-content: flex-end; }
footer #contact_box form .item.send button { padding: .7em 1.5em; border: 4px #434343 solid; border-radius: 2em; background: none; font-weight: bold; font-size: 1.1em; cursor: pointer; }
footer #contact_box form .item.send button svg { margin-left: .5em; width: 18px; height: 18px; fill: #434343; }
footer #footer_box { padding-top: 3vmax; width: 100%; display: flex; flex-direction: column; justify-content: space-between; background: #fafafa; }
footer #footer_box .item { padding: 0 12vw 3em; }
footer #footer_box .top_item { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; border-bottom: #efefef 1px solid; margin-bottom: 3em; }
footer #footer_box .top_item .other_links { flex: 1 1 auto; display: flex; justify-content: flex-end; align-items: center; }
footer #footer_box .top_item .other_links a { margin-left: 1em; padding: .3em 1em; border: 1px #3d3d3d solid; color: #3d3d3d; }
footer #footer_box .aboutus_item { display: grid; grid-template-columns: 240px 1fr 185px 350px; grid-gap: 3em; }
footer #footer_box .aboutus_item .row .h3 { margin-bottom: 1em; font-size: 1.5em; transform: translateX(-0.7em); }
footer #footer_box .aboutus_item .row ul li { margin-bottom: .5em; display: flex; flex-wrap: wrap; align-items: baseline; font-size: 14px; }
footer #footer_box .aboutus_item .row { margin-right: 0px; margin-left: 0px; display: flex; flex-direction: column; }
footer #footer_box .aboutus_item .row.call_links { display: flex; justify-content: flex-end; margin-bottom: 2.25rem; gap: 1rem; }
footer #footer_box .aboutus_item .row.partners { display: grid; grid-template-columns: repeat(2,1fr); align-items: end; margin-bottom: 1rem; }
footer #footer_box .aboutus_item .row.partners img { max-width: unset!important; max-height: unset!important; width: min(150px,100%); aspect-ratio: 1/1; }
footer #footer_box .call_links { display: flex; flex-direction: column; }
footer #footer_box .call_links a { margin-bottom: 0em; padding: .5em 1.5em; min-width: 12em; background: #2e58ba; border-radius: 2em; display: inline-flex; align-items: center; justify-content: space-around; }
footer #footer_box .call_links a.line { background: #39cd00; }
footer #footer_box .call_links a svg { width: 21px; height: 21px; fill: #fff; }
footer #footer_box .call_links a font { margin-left: .5em; color: #fff; font-size: 14px; }
footer #footer_box .partners { display: flex; justify-content: flex-end; align-items: center; }
footer #footer_box .partners a { display: flex; flex-direction: column; align-items: center; }
footer #footer_box .copy_item { padding: .5em 3vw; background: #1a1a1a; display: flex; justify-content: center; align-items: center; }
footer #footer_box .copy_item * { font-size: 10px; color: #bbb; font-weight: 300; }
footer #footer_box .copy_item div { display: flex; }
@media (min-width:769px) {
  .header-logo { height: 100px; }
  .logooimg { width: 100px; height: 100px; }
  .logooimg img { max-height: 50px; max-width: 50px; }
  .logo-text { max-height: 50px; margin-left: 20px; }
  .header-right { padding: 25px 5%; }
  .menu-trigger { width: 50px; height: 50px; }
  .desktop-nav { display: flex; }
  .m-link { font-size: 42px; }
}
@media (min-width:1025px) {
  .kv-stamp { bottom: 5px; right: 5px; width: 120px; height: 120px; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; }
  .nav-link { font-size: 16px; }
  .bs-hero-title { font-size: 52px; }
}
@media (max-width:1470px) {
  .menu-trigger { width: 40px; height: 40px; }
  .desktop-nav { padding: 8px 25px; }
  .m-link { font-size: 26px; }
  .full-menu { gap: 15px; }
  .nav-link { font-size: 16px; }
  .kv-stamp { width: 100px; height: 100px; }
  .btn-more { font-size: 14px; height: 55px; min-width: 250px; }
  .bs-hero-card { width: min(100%,555px); padding: 40px 30px; border-radius: 10px 60px 10px 10px; }
  .bs-hero-title { font-size: 38px; margin-bottom: 15px; }
  .bs-hero-en { font-size: 12px; margin-bottom: 10px; }
  .bs-hero-desc { font-size: 14px; margin-bottom: 25px; }
  .bs-hero-content { margin-top: 0px; margin-bottom: 25px; }
  .po_shape:before { width: 5vw; }
  .bs-container { width: min(100%,1200px); }
  .bs-section { padding: 40px 0; }
  .section-title { font-size: 38px; }
  .section-header { margin-bottom: 40px; }
  .bs-why-item { padding: 20px 0; }
  .bs-why-img { height: 480px; }
  #why-need:before { width: 6vw; right: 20vw; }
  .bs-why-wrap { gap: 30px; }
  .bs-why-img-mask { box-shadow: 0px 10px 13px rgba(0,0,0,0.1); }
  .bs-adv-card { padding: 50px 40px; }
  #advantages { padding: 120px 0 100px; background-position: 0% 50%; background-size: 100%; background-repeat: no-repeat; }
  #pricing { padding: 110px 0 120px; }
  #pricing:before { height: 42%; top: 30px; border-radius: 50% 50% 70px 70px; }
  .bs-plan-one { margin-bottom: 0; padding-top: 30px; }
  .bs-reviews-section { padding: 110px 0 50px; }
  .rev-item:last-child { display: none; }
  .rev-card { min-height: 450px !important; }
  .bs-reviews-section:before,footer:before { padding: 1.25em 0; }
  .perf-stat-num { font-size: 45px; }
  .bs-table-col.font-bold { font-size: 16px; }
  footer #footer_box .aboutus_item { grid-template-columns: 220px 1fr 185px 218px; grid-gap: 2em; }
  footer #footer_box .call_links a { padding: .5em 1em; min-width: 11em; display: flex; justify-content: space-around; }
  footer #footer_box .call_links a svg { width: 20px; height: 20px; }
  footer #footer_box .item { padding: 0 7vw 3em; }
  footer #footer_box .aboutus_item .row.call_links { margin-bottom: 1.25rem; }
}
@media (max-width:1280px) {
  footer #footer_box .aboutus_item { grid-template-columns: repeat(2,1fr); grid-gap: 1em; }
  footer #footer_box .call_links a { width: min(300px,100%); }
}
@media screen and (max-width:1160px) {
  footer #footer_box .aboutus_item { grid-template-columns: 220px 1fr; }
  footer #footer_box .item { padding: 0 5vw 3em; gap: 25px; }
  .bs-hero-img-box { opacity: 0.4; }
  .bs-hero-card { max-width: 100%; border-radius: 10px 40px 10px 10px; }
}
@media screen and (max-width:1024px) {
  .po_shape { margin-top: -150px; }
  .po_shape:before { top: 26px; }
  .bs-plan-one { margin-bottom: 0px; padding: 50px 2%; }
  .bs-plan-two { padding: 00px 2%; }
  .bs-container { width: min(90%,900px); }
  .bs-why-right { width: 60%; }
  .bs-why-left { width: 40%; }
  .bs-why-item-title,.bs-adv-title { font-size: 24px; }
  .bs-why-item-desc { font-size: 16px; }
  .google_service .gif_box { width: 17vw; right: 20vw; }
  #pricing { padding: 80px 0 80px; }
  #pricing:before { width: 120vw; left: -10vw; }
  #advantages { padding: 100px 0 100px; }
  .leaf_box { width: 7vw; }
  .bs-review-cards { grid-template-columns: repeat(2,1fr); }
}
@media screen and (max-width:980px) {
  .bs-points-grid { grid-template-columns: 1fr; }
  .bs-point-item { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .bs-why-wrap { flex-direction: column; gap: 50px; }
  .bs-why-left,.bs-why-right { width: 100%; }
  .bs-why-img-mask { height: 400px; }
  .bs-adv-grid { grid-template-columns: repeat(2,1fr); }
  .bs-perf-wrap { flex-direction: column; gap: 40px; }
  .bs-perf-left,.bs-perf-right { width: 100%; }
  .bs-perf-left { min-height: 450px; }
  .bs-table-wrap { flex-direction: column; }
  .bs-table-right { width: 100%; border-left: none; border-top: 1px solid #f0f0f0; padding: 40px 20px; }
  .bs-hero-content { align-items: center; }
  #pricing:before { height: 800px; width: 150vw; left: -25vw; }
}
@media screen and (max-width:768px) {
  .logo-text { max-height: 40px; }
  .kv-stamp { width: 80px; height: 80px; bottom: 10px; right: 10px; }
  .kv-stamp-center { font-size: 12px; }
  footer #contact_box form .item.recaptcha,footer #contact_box form .item.send { grid-column: 1/3; justify-content: center; }
  footer #footer_box .aboutus_item .row .h3 { transform: translateX(0em); }
  footer #footer_box .call_links a { padding: 1em 0.5em; margin: 0; width: 50%; min-width: unset; }
  footer #footer_box .aboutus_item .row.call_links { gap: 1rem; display: flex; flex-direction: row; }
  .bs-adv-grid { grid-template-columns: repeat(2,1fr); }
  .bs-hero-title { font-size: 32px; }
  .bs-section { padding: 100px 0; }
  .bs-points-section { padding: 40px 0 80px; }
  .bs-table-header { display: none; }
  .bs-table-row { grid-template-columns: 1fr; gap: 10px; padding: 25px 20px; }
  .bs-review-cards { grid-template-columns: 1fr; }
  .perf-stat-num { font-size: 38px; }
  .bs-perf-stats { grid-template-columns: repeat(2,1fr); gap: 15px; }
  .bs-reviews-section { padding: 120px 0 60px; }
}
@media screen and (max-width:640px) {
  .section-title { font-size: 29px; line-height: 1.5; }
  .bs-section { padding: 50px 0; }
  footer #footer_box .aboutus_item { display: flex; flex-direction: column; gap: 1em; }
  footer #footer_box .partners { justify-content: flex-start; }
  footer #footer_box .item img { width: min(230px,100%); }
  footer #footer_box { padding-top: 5vmax; }
  .logo-text { max-height: 40px; }
  .po_shape { width: 100%; margin-top: -150px; overflow: hidden; padding-top: 60px; }
  .po_shape img { width: 156vw; max-width: 200vw; }
  .po_shape:before { width: 10vw; top: 40px; left: 60vw; }
  .staJ_box img { height: 10px; }
}
@media screen and (max-width:550px) {
  .m-link { font-size: 22px; }
  footer #contact_box form { grid-template-columns: 1fr; }
  footer #footer_box .copy_item { flex-direction: column; gap: 5px; }
  .bs-review-card { padding: 40px 20px; }
  .bs-review-price { font-size: 32px; }
  .bs-hero { min-height: 660px; height: 660px; }
  .bs-hero-video { object-position: 32% 50%; }
  #pricing:before { width: 200vw; left: -50vw; }
  .leaf_box { width: 12vw; }
  .bs-adv-card { padding: 30px 20px; }
  .bs-adv-title { font-size: 20px; }
  .bs-adv-icon { font-size: 24px; }
  .bs-plan-title { font-size: 20px; }
  .bs-plan-desc,.bs-table-col,.bs-adv-desc,.bs-why-item-desc,.bs-perf-desc { font-size: 14px; }
  #why-need:before { width: 10vw; right: 28vw; top: 28px; }
  .bs-why-item-title { font-size: 18px; }
  .bs-why-item-head { gap: 10px; }
  .bs-why-item-num { font-size: 22px; }
  .bs-why-item-desc { padding-left: 0px; }
  .bs-benefit-text { font-size: 16px; }
  .bs-table-benefit { padding: 30px 10px; margin: 20px 0; }
  .bs-plan-one,.bs-plan-two { padding: 10px 0%; }
  .centerJJ h1 { padding: 9px 10% 0; font-size: 16px; }
  .slick-dots { margin-top: 10px; }
  .bs-section#performance { padding: 20px 0 40px; }
  .google_service .gif_box {display: none;}
  #performance:before { right: 0vw; width: 10vw; }
  .perf-stat-num { font-size: 28px; }
  .perf-stat-text { font-size: 14px; }
  .perf-stat-item { padding-left: 10px; border-left: 2px solid #217ec8; }
  #pricing { padding: 80px 0 45px; }
  .bs-table-benefit::after { opacity: 0 }
  #advantages:before { display: none; }
  #advantages { padding: 50px 0 80px; }
  .bs-review-card.accent:before { width: 70px; top: -43px; right: -8px; }
}
