:root{
  --bg:#0b1220;
  --panel:#111a2d;
  --panel-2:#17233b;
  --text:#e8eefc;
  --muted:#a9b7d0;
  --line:#243453;
  --brand:#4fd1ff;
  --brand-2:#7c3aed;
  --accent:#1fd1a5;
  --danger:#ff6b6b;
  --shadow:0 14px 40px rgba(0,0,0,.28);
  --radius:20px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Noto Sans TC","Microsoft JhengHei",Arial,sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(79,209,255,.14), transparent 0 26%),
    radial-gradient(circle at 88% 18%, rgba(124,58,237,.16), transparent 0 24%),
    radial-gradient(circle at 50% 78%, rgba(31,209,165,.08), transparent 0 22%),
    linear-gradient(180deg,#060b14 0%,#0a1220 28%,#0c1526 58%,#09111f 100%);
  color:var(--text);
  line-height:1.7;
  position:relative;
  overflow-x:hidden;
}

.logo{
  height:80px;
  width:auto;
  object-fit:contain;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:40px 40px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.08));
  opacity:.28;
}

body::after{
  content:"";
  position:fixed;
  width:480px;
  height:480px;
  right:-140px;
  top:100px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(79,209,255,.12), transparent 68%);
  filter:blur(18px);
  pointer-events:none;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

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

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(8,13,23,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:800;
  letter-spacing:.02em;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 10px 25px rgba(79,209,255,.22);
}

.brand small{
  display:block;
  font-size:12px;
  color:var(--muted);
  font-weight:500;
}

.nav-links{
  display:flex;
  flex-wrap:nowrap;
  gap:13px;
}

.nav-links a{
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
  font-size:15px;
}

.nav-links a:hover,
.nav-links a.active{
  color:#fff;
  background:rgba(255,255,255,.06);
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--radius);
  box-shadow:0 18px 45px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
}

.section{
  position:relative;
  padding:40px 0;
}

.section::before{
  content:"";
  position:absolute;
  inset:10px 0;
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.025);
  pointer-events:none;
}

.section-tight{padding-top:20px}

.surface-a{
  background:linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.01));
}

.surface-b{
  background:linear-gradient(180deg, rgba(79,209,255,.045), rgba(124,58,237,.035));
}

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

.section-head h2{
  font-size:32px;
  margin:0;
  letter-spacing:.01em;
}

.section-head p{
  margin:0;
  color:var(--muted);
  max-width:700px;
}

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

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

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s transform,.2s background;
}

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

.btn-primary{
  background:linear-gradient(135deg,var(--brand),#2799ff);
  color:#08111d;
}

.btn-secondary{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.1);
  color:#fff;
}

.eyebrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border:1px solid rgba(79,209,255,.24);
  background:rgba(79,209,255,.08);
  border-radius:999px;
  color:#d8f7ff;
  font-size:14px;
}

.kicker{
  color:var(--brand);
  font-weight:700;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.12em;
}

.ribbon{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(31,209,165,.12);
  border:1px solid rgba(31,209,165,.25);
  color:#b8fff0;
  font-size:13px;
}

.list{
  padding-left:18px;
  margin:12px 0 0;
}

.list li{
  margin:8px 0;
  color:var(--muted);
}

/* 首頁主視覺輪播 */
.home-hero-slider{
  position:relative;
  min-height:calc(100vh - 78px);
  height:760px;
  overflow:hidden;
  isolation:isolate;
  background:#050912;
}

.home-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.08);
  transition:opacity 1.15s ease, transform 6.5s ease;
  z-index:0;
}

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

.home-slide picture,
.home-slide img{
  width:100%;
  height:100%;
  display:block;
}

.home-slide img{
  object-fit:cover;
  object-position:center;
  filter:saturate(1.08) contrast(1.08) brightness(.82);
}

.home-hero-shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(3,7,14,.9) 0%, rgba(3,7,14,.72) 34%, rgba(3,7,14,.36) 66%, rgba(3,7,14,.28) 100%),
    linear-gradient(180deg, rgba(3,7,14,.5) 0%, rgba(3,7,14,.18) 44%, rgba(3,7,14,.78) 100%);
}

.home-hero-glow{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 24%, rgba(79,209,255,.26), transparent 0 26%),
    radial-gradient(circle at 78% 18%, rgba(124,58,237,.2), transparent 0 22%),
    linear-gradient(90deg, rgba(79,209,255,.12), transparent 38%);
  mix-blend-mode:screen;
}

.home-hero-content{
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-top:42px;
  padding-bottom:76px;
  animation:heroContentIn .95s ease both;
}

.hero-eyebrow{
  width:max-content;
  max-width:100%;
  backdrop-filter:blur(12px);
}

.home-hero-content h1{
  margin:20px 0 18px;
  max-width:850px;
  font-size:clamp(38px,6vw,76px);
  line-height:1.08;
  letter-spacing:-.03em;
  text-shadow:0 16px 42px rgba(0,0,0,.55);
}

.home-hero-content p{
  max-width:700px;
  margin:0 0 28px;
  color:rgba(232,238,252,.88);
  font-size:clamp(17px,2vw,23px);
  text-shadow:0 8px 28px rgba(0,0,0,.5);
}

.hero-copy{max-width:680px}

.hero-title{
  font-size:clamp(34px,5vw,58px);
  margin:0 0 14px;
  letter-spacing:2px;
}

.hero-sub{
  font-size:clamp(18px,2vw,24px);
  margin-bottom:28px;
  color:rgba(255,255,255,.9);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.home-hero-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  width:min(820px,100%);
  margin-top:28px;
}

.home-hero-stats div{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(8,13,23,.58);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
  box-shadow:0 16px 34px rgba(0,0,0,.22);
}

.home-hero-stats strong{
  display:block;
  font-size:17px;
  color:#fff;
  margin-bottom:4px;
}

.home-hero-stats span{
  display:block;
  color:var(--muted);
  font-size:14px;
}

.home-slider-dots{
  position:absolute;
  left:50%;
  bottom:28px;
  z-index:4;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
}

.home-slider-dots button{
  width:38px;
  height:5px;
  border:0;
  padding:0;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  cursor:pointer;
  transition:.25s ease;
}

.home-slider-dots button.active{
  width:58px;
  background:linear-gradient(135deg,var(--brand),#2799ff);
  box-shadow:0 0 18px rgba(79,209,255,.42);
}

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

/* 熱門故障 */
.service-card,
.feature-card,
.process-card,
.review-card,
.faq-item,
.contact-card,
.case-card{
  padding:22px;
}

.service-card h3,
.feature-card h3,
.process-card h3,
.review-card h3,
.case-card h3{
  margin:0 0 10px;
  font-size:22px;
}

.service-card p,
.feature-card p,
.process-card p,
.review-card p,
.case-card p,
.faq-item p,
.contact-card p{
  color:var(--muted);
}

.premium-card{
  position:relative;
  overflow:hidden;
}

.premium-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width:120px;
  height:120px;
  background:radial-gradient(circle,rgba(79,209,255,.16),transparent 70%);
}

/* 核心服務分類 icon 發光版 */
.entry-grid{gap:16px}

.entry-card{
  display:block;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  transition:.2s transform,.2s border-color,.2s background,.2s box-shadow;
}

.entry-card:hover{
  transform:translateY(-3px);
  border-color:rgba(79,209,255,.3);
  background:rgba(79,209,255,.08);
}

.entry-card strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}

.entry-card span{
  color:var(--muted);
  font-size:14px;
}

.icon-card{
  display:flex !important;
  align-items:center;
  gap:28px;
  min-height:140px;
  padding:26px 28px;
}

.icon-card svg{
  width:78px;
  height:78px;
  color:#8fd3ff;
  stroke-width:1.8;
  flex-shrink:0;
  filter:
    drop-shadow(0 0 6px rgba(143,211,255,.95))
    drop-shadow(0 0 16px rgba(64,180,255,.75))
    drop-shadow(0 0 30px rgba(64,180,255,.45));
}

.icon-card strong{
  display:block;
  font-size:24px;
  margin-bottom:8px;
  color:#fff;
}

.icon-card span{
  display:block;
  font-size:16px;
  color:#d4e5f2;
}

.icon-card:hover{
  transform:translateY(-4px);
  border-color:rgba(143,211,255,.42);
  box-shadow:
    0 0 22px rgba(79,209,255,.18),
    0 18px 45px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* 中段展示 */
.panel-deep{
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(79,209,255,.04));
}

.gradient-panel{
  background:linear-gradient(135deg,rgba(79,209,255,.16),rgba(124,58,237,.16));
}

.showcase-grid{align-items:stretch}

.stack-col{
  display:grid;
  gap:18px;
}

.cta-panel{
  padding:26px;
  border-radius:22px;
  background:linear-gradient(135deg,rgba(79,209,255,.16),rgba(124,58,237,.16));
  border:1px solid rgba(255,255,255,.1);
}

.branch-panel{padding:24px}

.table-like{
  display:grid;
  gap:10px;
}

.table-row{
  display:grid;
  grid-template-columns:.8fr 1.2fr 1.2fr auto;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

/* 首頁中段：專業維修視覺輪播 */
.feature-visual-slider{
  position:relative;
  margin-top:18px;
  width:100%;
  height:360px;
  overflow:hidden;
  border-radius:22px;
  background:#0b1220;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.32);
}

.feature-visual-slider::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,0) 45%,rgba(0,0,0,.38));
}

.feature-visual-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.06);
  transition:opacity .9s ease, transform 4.5s ease;
}

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

.feature-visual-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.feature-visual-dots{
  position:absolute;
  left:50%;
  bottom:16px;
  z-index:2;
  display:flex;
  gap:8px;
  transform:translateX(-50%);
}

.feature-visual-dots span{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.42);
  transition:width .3s ease, background .3s ease;
}

.feature-visual-dots span.active{
  width:24px;
  background:#fff;
}

/* 案例 */
.case-media,
.media-cover{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}

.case-media img,
.media-cover img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.case-media img,
.media-cover img,
.hero-media img{
  filter:saturate(1.02) contrast(1.03);
}

.case-card{
  padding:0;
  overflow:hidden;
}

.case-body{padding:22px}

.center-actions{
  margin-top:22px;
  text-align:center;
}

/* 理由卡 */
.reason-card{
  min-height:140px;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}

.reason-card strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}

.reason-card span{
  color:var(--muted);
  font-size:14px;
}

/* 頁尾 */
.footer{
  padding:36px 0 60px;
  color:var(--muted);
  background:linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.06);
  margin-top:18px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:20px;
}

.footer-inline{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}

.footer-inline h3{
  margin:0;
  color:#fff;
}

/* 地圖與聯絡 */
.contact-actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.nav-btn{
  background:#00d084;
  color:#042017;
}

.nav-btn:hover{background:#00b374}

.map-btn{
  display:inline-block;
  margin-left:8px;
  padding:6px 12px;
  border-radius:999px;
  background:#00d084;
  color:#042017;
  font-size:13px;
  text-decoration:none;
  font-weight:700;
  transition:.2s;
}

.map-btn:hover{
  background:#00b374;
  transform:translateY(-1px);
}

/* 浮動電話 */
.phone-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:30;
}

.phone-main{
  width:64px;
  height:64px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  background:linear-gradient(135deg,var(--brand),#2799ff);
  color:#07111e;
  box-shadow:0 18px 35px rgba(39,153,255,.36);
  font-size:28px;
  font-weight:800;
}

.phone-panel{
  position:absolute;
  right:0;
  bottom:78px;
  min-width:250px;
  padding:16px;
  display:none;
}

.phone-panel.open{display:block}

.branch-btn{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  margin-top:10px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}

.branch-btn span{
  color:var(--muted);
  font-size:13px;
}

.note{
  font-size:14px;
  color:var(--muted);
}

/* 其他頁面共用 */
.hero{
  padding:58px 0 38px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:30px;
  align-items:center;
}

.hero h1{
  font-size:clamp(32px,5vw,56px);
  line-height:1.15;
  margin:18px 0 16px;
}

.hero p{
  font-size:18px;
  color:var(--muted);
  margin:0 0 24px;
}

.hero-media{overflow:hidden}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4/3;
}

.badge-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:20px;
}

.badge{
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}

.badge strong{
  display:block;
  font-size:20px;
}

.notice{
  padding:20px;
  border-left:4px solid var(--brand);
  background:rgba(79,209,255,.08);
  border-radius:14px;
}

.faq-item summary{
  cursor:pointer;
  font-weight:700;
}

.faq-item[open]{
  background:rgba(255,255,255,.05);
}

.page-hero{
  padding:44px 0 24px;
}

.page-hero h1{
  margin:0 0 10px;
  font-size:42px;
}

.page-hero-brand{
  padding:56px 0 24px;
  background:radial-gradient(circle at top left,rgba(124,58,237,.14),transparent 30%);
}

.about-hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:center;
}

.lead{
  font-size:18px;
  color:var(--muted);
}

.stats-panel{padding:22px}

.stat-item{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.stat-item:last-child{border-bottom:none}

.stat-item strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}

.stat-item span{color:var(--muted)}

.big-list li{margin:12px 0}

.timeline-wrap{position:relative}

.timeline-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.timeline-card{
  padding:20px;
  min-height:148px;
}

.timeline-card strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
}

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

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:22px;
}

.trust-strip div{
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}

.trust-strip strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}

.trust-strip span{
  color:var(--muted);
  font-size:14px;
}

.hero-premium{
  position:relative;
  padding:78px 0 52px;
  background:
    radial-gradient(circle at 82% 18%, rgba(79,209,255,.18), transparent 0 24%),
    radial-gradient(circle at 8% 16%, rgba(124,58,237,.18), transparent 0 22%),
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.01));
}

.hero-premium::before{
  content:"";
  position:absolute;
  inset:18px 0 auto;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(79,209,255,.3), transparent);
}

.hero-premium::after{
  content:"";
  position:absolute;
  inset:auto auto -30px 8%;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(124,58,237,.12), transparent 68%);
  filter:blur(20px);
}

.hero-frame{
  position:relative;
  padding:10px;
  background:linear-gradient(135deg, rgba(79,209,255,.14), rgba(124,58,237,.12));
  box-shadow:0 25px 60px rgba(0,0,0,.38);
}

.hero-frame img{
  border-radius:18px;
  aspect-ratio:4/4.5;
}

.hero-overlay-card{
  position:absolute;
  left:-20px;
  bottom:18px;
  padding:18px;
  max-width:250px;
  background:rgba(10,16,29,.88);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.4);
  border:1px solid rgba(79,209,255,.16);
}

.mini-label{
  display:inline-block;
  margin-bottom:8px;
  color:var(--brand);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
}

.mini-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

/* 平板手機 */
@media (max-width:960px){
  .hero-grid,
  .grid-3,
  .grid-2,
  .grid-4,
  .footer-grid,
  .table-row,
  .timeline-grid,
  .about-hero-grid,
  .trust-strip{
    grid-template-columns:1fr;
  }

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

  .nav-links{
    width:100%;
  }

  .badge-row{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:34px;
  }

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .home-hero-slider{
    height:auto;
    min-height:720px;
  }

  .home-hero-content{
    padding-top:58px;
    padding-bottom:92px;
  }

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

  .home-slider-dots{
    bottom:22px;
  }

  .hero-overlay-card{
    position:static;
    margin-top:14px;
    max-width:none;
  }
}

@media (max-width:768px){
  .hero-title{
    font-size:34px;
  }

  .hero-sub{
    font-size:17px;
  }

  .feature-visual-slider{
    height:260px;
    border-radius:18px;
  }

  .icon-card{
    gap:18px;
    min-height:110px;
    padding:20px;
  }

  .icon-card svg{
    width:52px;
    height:52px;
  }

  .icon-card strong{
    font-size:20px;
  }

  .icon-card span{
    font-size:14px;
  }
}

@media (max-width:560px){
  .home-hero-slider{
    min-height:680px;
  }

  .home-hero-content h1{
    font-size:clamp(34px,12vw,52px);
  }

  .home-hero-content p{
    font-size:17px;
  }

  .home-slider-dots button{
    width:26px;
  }

  .home-slider-dots button.active{
    width:42px;
  }

  .logo{
    height:64px;
  }
}

/* ===== Google 顧客評價滑動區 ===== */
.reviews-section {
  padding: 80px 0 100px;
  position: relative;
}

.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 30px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.reviews-slider .google-review-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
}

.google-review-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  border: 1px solid rgba(79, 209, 255, .22);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  transition: .35s ease;
}

.google-review-card::before {
  content: "Google";
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255,255,255,.11);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.google-review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(79,209,255,.18), transparent 36%);
}

.google-review-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79,209,255,.46);
  box-shadow:
    0 0 38px rgba(79,209,255,.22),
    0 18px 45px rgba(0,0,0,.34);
}

.stars {
  color: #ffd45a;
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 14px;
  text-shadow:
    0 0 10px rgba(255, 212, 90, .6),
    0 0 20px rgba(255, 212, 90, .3);
}

.google-review-card h3 {
  margin-bottom: 12px;
  color: #fff;
}

.google-review-card p {
  color: #dbe7f0;
  line-height: 1.8;
}

.google-review-card span {
  display: block;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 700;
}

.review-more {
  text-align: center;
  margin-top: 50px;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #6fffea);
  color: #001018;
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    0 0 25px rgba(79, 209, 255, .35),
    0 0 50px rgba(79, 209, 255, .15);
  transition: .3s ease;
}

.google-review-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 40px rgba(79, 209, 255, .6),
    0 0 80px rgba(79, 209, 255, .25);
}

@media (max-width: 900px) {
  .reviews-slider .google-review-card {
    flex: 0 0 82%;
  }
}

@media (max-width: 560px) {
  .reviews-section {
    padding: 56px 0 76px;
  }

  .reviews-slider .google-review-card {
    flex: 0 0 88%;
  }
}

.reviews-slider {
  cursor: grab;
}

.reviews-slider.dragging {
  cursor: grabbing;
  user-select: none;
}

.reviews-slider .google-review-card {
  flex: 0 0 420px;
}


/* ===== 全站分頁發光 ICON 統一樣式 ===== */
.card > i[data-lucide],
.faq-item > i[data-lucide],
.case-card .case-body > i[data-lucide],
.card > svg.lucide,
.case-card .case-body > svg.lucide{
  width:52px;
  height:52px;
  color:#8fd3ff;
  stroke-width:1.8;
  margin-bottom:16px;
  filter:
    drop-shadow(0 0 6px rgba(143,211,255,.95))
    drop-shadow(0 0 16px rgba(64,180,255,.75))
    drop-shadow(0 0 30px rgba(64,180,255,.45));
}
.card > svg.lucide,
.case-card .case-body > svg.lucide{
  display:block;
}
.service-card:hover > svg.lucide,
.feature-card:hover > svg.lucide,
.process-card:hover > svg.lucide,
.contact-card:hover > svg.lucide,
.review-card:hover > svg.lucide,
.reason-card:hover > svg.lucide,
.faq-item:hover > svg.lucide,
.case-card:hover .case-body > svg.lucide{
  filter:
    drop-shadow(0 0 8px rgba(143,211,255,1))
    drop-shadow(0 0 22px rgba(64,180,255,.95))
    drop-shadow(0 0 42px rgba(64,180,255,.65));
}
.page-icon-grid{
  margin-top:-26px;
  position:relative;
  z-index:2;
}
.page-icon-grid .entry-grid{
  margin-top:0;
}
.faq-item > svg.lucide{
  margin-bottom:14px;
}



.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 主標 */
.brand-text strong {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  line-height: 1.1;

  /* 科技發光 */
  text-shadow:
    0 0 10px rgba(79, 209, 255, 0.7),
    0 0 22px rgba(79, 209, 255, 0.5);
}

/* 副標 */
.brand-text small {
  font-size: 13px !important;
  color: #a9b7d0;
  margin-top: 6px;
  letter-spacing: 2px;
}

/* LOGO 與文字整體 */
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* 如果你想整塊更像LOGO（推薦開） */
.brand:hover strong {
  text-shadow:
    0 0 14px rgba(79, 209, 255, 1),
    0 0 32px rgba(79, 209, 255, 0.7);
}

.footer-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* 門市資訊 */
.store-info {
  font-size: 14px;
  color: #ccc;
}

.store-title {
  color: #fff;
  font-weight: 600;
}

/* ===== 支付 icon（重點🔥） */
.payment-pro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 18px;
}

.payment-pro img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: 0.25s ease;
}

.payment-pro img:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .brand {
    justify-content: center;
    text-align: center;
  }

  .brand img,
  .logo {
    max-width: 70px;
    height: auto;
  }

  .brand > div {
    font-size: 32px;
    line-height: 1.2;
  }

  .brand small {
    display: block;
    font-size: 15px;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 8px 12px 14px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
    writing-mode: horizontal-tb;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
  }
}


/* ===== 手機版最終修正版：正常滿版、不裁切、不硬塞選單 ===== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

/* 平板以下：避免舊設定把選單變很怪 */
@media (max-width: 960px) {
  .nav {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav-links {
    width: 100% !important;
  }
}

/* 手機版：像正式官網一樣改成正常響應式排版 */
@media (max-width: 768px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
  }

  .nav {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 10px 0 !important;
  }

  .brand {
    justify-content: center !important;
    text-align: center !important;
    gap: 10px !important;
    max-width: 100% !important;
  }

  .brand img,
  .logo {
    height: 58px !important;
    width: auto !important;
    max-width: 72px !important;
  }

  .brand-text,
  .brand > div {
    min-width: 0 !important;
  }

  .brand-text strong {
    font-size: 28px !important;
    line-height: 1.08 !important;
    letter-spacing: 2px !important;
  }

  .brand-text small,
  .brand small {
    display: block !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    letter-spacing: 1px !important;
    white-space: normal !important;
  }

  /* 手機導覽：不要橫向撐爆，也不要變直排字 */
  .nav-links {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    overflow: visible !important;
    padding: 4px 0 8px !important;
  }

  .nav-links a {
    flex: 0 1 auto !important;
    min-width: auto !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    text-align: center !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.08) !important;
  }

  /* 首頁主視覺：手機正常完整顯示 */
  .home-hero-slider {
    height: auto !important;
    min-height: auto !important;
  }

  .home-slide,
  .home-slide picture,
  .home-slide img {
    height: 100% !important;
  }

  .home-hero-content {
    min-height: 600px !important;
    height: auto !important;
    padding-top: 68px !important;
    padding-bottom: 76px !important;
    justify-content: center !important;
  }

  .home-hero-content h1 {
    max-width: 100% !important;
    font-size: clamp(34px, 9vw, 46px) !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
  }

  .home-hero-content p {
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero-actions .btn,
  .btn {
    width: 100% !important;
  }

  .home-hero-stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .hero-grid,
  .about-hero-grid,
  .footer-grid,
  .timeline-grid,
  .trust-strip,
  .badge-row,
  .table-row {
    grid-template-columns: 1fr !important;
  }

  .hero {
    padding: 44px 0 34px !important;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(30px, 8vw, 40px) !important;
    line-height: 1.15 !important;
  }

  .hero p,
  .lead,
  .section-head p {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .section {
    padding: 34px 0 !important;
  }

  .section-head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .section-head h2 {
    font-size: 28px !important;
  }

  .icon-card {
    min-height: auto !important;
    padding: 18px !important;
    gap: 16px !important;
  }

  .icon-card svg {
    width: 48px !important;
    height: 48px !important;
  }

  .feature-visual-slider {
    height: 240px !important;
  }

  .case-media img,
  .media-cover img {
    height: 220px !important;
  }

  .reviews-slider .google-review-card {
    flex: 0 0 88% !important;
  }

  .footer-pro {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .payment-pro {
    margin-left: 0 !important;
    flex-wrap: wrap !important;
  }

  .payment-pro img {
    height: 40px !important;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 25px !important;
  }

  .nav-links a {
    font-size: 12px !important;
    padding: 7px 9px !important;
  }

  .home-hero-content {
    min-height: 560px !important;
  }

  .home-hero-content h1 {
    font-size: 32px !important;
  }
}

/* =========================================================
   FOOTER RESPONSIVE FINAL｜手機/平板/電腦自動判斷
   付款 icon 全裝置維持同一行，依螢幕自動縮放
========================================================= */

.footer {
  margin-top: 56px !important;
  padding: 56px 0 64px !important;
  color: #e8eefc !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(31,209,165,.13), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(79,209,255,.11), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.028)) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}

.footer-wrap {
  width: min(var(--max), calc(100% - 32px)) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.footer-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.footer-head h3,
.footer h3 {
  margin: 0 0 22px !important;
  color: #fff !important;
  font-size: clamp(30px, 4vw, 40px) !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
  text-shadow:
    0 0 10px rgba(79,209,255,.42),
    0 0 22px rgba(79,209,255,.18) !important;
}

/* 新版門市卡片 */
.footer-store-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.footer-store-card {
  min-height: 148px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 24px 26px !important;
  border-radius: 26px !important;
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.028)) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow:
    0 22px 55px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.store-tag {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 12px !important;
  padding: 5px 13px !important;
  border-radius: 999px !important;
  background: rgba(31,209,165,.12) !important;
  border: 1px solid rgba(31,209,165,.32) !important;
  color: #b8fff0 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.footer-store-card h4 {
  margin: 0 0 6px !important;
  color: #fff !important;
  font-size: clamp(22px, 3vw, 26px) !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

.footer-store-card p {
  margin: 0 !important;
  color: rgba(232,238,252,.82) !important;
  font-size: clamp(16px, 2.2vw, 18px) !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

.footer-map-btn,
.map-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 116px !important;
  margin: 0 !important;
  padding: 13px 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #00ffa3, #00d1ff) !important;
  color: #001a12 !important;
  font-size: clamp(17px, 2vw, 20px) !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow:
    0 0 24px rgba(0,255,163,.34),
    0 14px 28px rgba(0,0,0,.25) !important;
}

/* 舊版 footer HTML 保險 */
.footer-grid {
  width: min(var(--max), calc(100% - 32px)) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.footer-grid > div:first-child {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

/* 付款 icon：核心修正
   - 不換行
   - 手機、平板、電腦依寬度自動縮放
   - 保持同一行
*/
.payment-methods,
.payment-pro {
  width: 100% !important;
  max-width: 920px !important;
  margin: 32px auto 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(8px, 2.2vw, 28px) !important;
  align-items: center !important;
  justify-items: center !important;
  background: transparent !important;
  border: 0 !important;
  overflow: visible !important;
}

.payment-methods img,
.payment-pro img {
  display: block !important;
  width: auto !important;
  height: clamp(30px, 7vw, 58px) !important;
  max-width: 100% !important;
  object-fit: contain !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter:
    brightness(1.08)
    drop-shadow(0 0 6px rgba(255,255,255,.16))
    drop-shadow(0 0 12px rgba(79,209,255,.12)) !important;
  transition: transform .25s ease, filter .25s ease !important;
}

.payment-methods img:hover,
.payment-pro img:hover {
  transform: translateY(-3px) scale(1.06) !important;
  filter:
    brightness(1.22)
    drop-shadow(0 0 10px rgba(0,255,163,.5))
    drop-shadow(0 0 18px rgba(0,255,163,.28)) !important;
}

/* 平板：門市維持兩欄，icon 同一行 */
@media (min-width: 769px) and (max-width: 1024px) {
  .payment-methods,
  .payment-pro {
    max-width: 780px !important;
    gap: 18px !important;
  }

  .payment-methods img,
  .payment-pro img {
    height: 48px !important;
  }
}

/* 手機：門市一欄，付款仍同一行自動縮小 */
@media (max-width: 768px) {
  .footer {
    margin-top: 38px !important;
    padding: 42px 0 58px !important;
  }

  .footer-wrap,
  .footer-grid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .footer-head {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .footer-store-grid,
  .footer-grid > div:first-child {
    grid-template-columns: 1fr !important;
  }

  .footer-store-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .footer-map-btn,
  .map-btn {
    width: 100% !important;
    min-width: 0 !important;
    padding: 15px 20px !important;
  }

  .payment-methods,
  .payment-pro {
    max-width: 100% !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: clamp(6px, 2vw, 12px) !important;
    margin-top: 28px !important;
  }

  .payment-methods img,
  .payment-pro img {
    height: clamp(28px, 6.2vw, 38px) !important;
    max-width: 100% !important;
  }
}

/* 超小手機：仍然同一行，只縮小 */
@media (max-width: 390px) {
  .payment-methods,
  .payment-pro {
    gap: 5px !important;
  }

  .payment-methods img,
  .payment-pro img {
    height: 26px !important;
  }
}
