/* =========================================================
   Zoomix 匯進資訊 - 全站共享樣式
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #165DFF;
  --blue-dark: #0a1a3b;
  --black: #000000;
  --gray-333: #333333;
  --gray-666: #666666;
  --gray-999: #999999;
  --gray-f8: #f8f8f8;
  --gray-f5: #f5f5f5;
  --gold: #c9a964;
  --orange: #FF7A00;
}

html { scroll-behavior: smooth; }

body {
  font-family: "PingFang TC", "Microsoft JhengHei", "微軟正黑體", "Noto Sans TC", "Source Han Sans TC", "Microsoft YaHei", sans-serif;
  color: var(--black);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------------- 頂部導航 ---------------- */
.site-header {
  position: relative;
  width: 100%;
  background: var(--black);
  z-index: 999;
}
.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.brand-logo {
  width: 34px; height: 34px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
  overflow: hidden;
}
.brand-logo svg { width: 20px; height: 20px; fill: #fff; }
.brand-logo img { width: 34px; height: 34px; object-fit: contain; }
.brand-name { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; }
.nav-menu { display: flex; gap: 30px; }
.nav-menu a {
  position: relative;
  color: #e5e5e5;
  font-size: 15px;
  padding: 4px 0;
  transition: color .2s;
  white-space: nowrap;
}
.nav-menu a:hover { color: #fff; }
.nav-menu a.active { color: #fff; }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #fff;
}
.nav-menu a.blue-active.active::after {
  background: var(--blue);
  width: 56%;
  left: 22%;
  transform: none;
}

/* ---------------- 頁腳 ---------------- */
.site-footer { background: var(--black); }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  color: #cccccc;
  font-size: 12px;
}
.footer-top.center { justify-content: center; }
.footer-icp {
  background: #fff;
  padding: 10px 0 14px;
  text-align: center;
  color: var(--gray-999);
  font-size: 12px;
  line-height: 1.8;
}

/* ---------------- 通用模塊 ---------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}
.section-sub {
  text-align: center;
  color: var(--gray-666);
  font-size: 15px;
  margin-top: 8px;
}

/* ---------------- 首屏 KV ---------------- */
.kv {
  position: relative;
  height: calc(100vh - 96px);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-dark, #0a1a3b);
}
.kv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .55;
}
.kv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 59, 0.45);
}
.kv-deco {
  position: absolute;
  inset: 0;
  color: rgba(230, 240, 255, 0.30);
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
  white-space: pre;
}
.kv-deco span {
  position: absolute;
  animation: floatY 7s ease-in-out infinite;
  font-family: "Courier New", monospace;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); opacity: .25; }
  50% { transform: translateY(-18px); opacity: .45; }
}
.kv-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.kv-en {
  font-size: 13px;
  letter-spacing: 2px;
  color: #e5e5e5;
  font-weight: 300;
}
.kv-title {
  font-size: 52px;
  font-weight: 700;
  margin-top: 16px;
  line-height: 1.3;
}
.kv-divider {
  width: 260px;
  height: 1px;
  background: rgba(255,255,255,.75);
  margin: 20px auto 0;
}

/* ---------------- 關於我們 ---------------- */
/* 公司簡介 */
.about-intro {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 0;
}
.about-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.about-intro .container { position: relative; z-index: 1; max-width: 780px; margin: 0 0 0 10%; }
.deco-word {
  font-size: 56px;
  font-weight: 300;
  color: rgba(255,255,255,.30);
  line-height: 1;
}
.about-intro h2 { font-size: 26px; font-weight: 700; margin-top: 6px; }
.about-intro p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: #f0f0f0;
}

/* 企業地圖 */
.map-section {
  background: linear-gradient(180deg, #e6f3ff 0%, #0066cc 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  text-align: center;
}
.map-section h2 { color: #0b2a52; }
.map-img-wrap {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 24px;
}
.map-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 20, 60, .35);
  display: block;
}
.map-deco {
  color: rgba(0,0,0,.18);
  font-size: 15px;
  line-height: 1.2;
  pointer-events: none;
  white-space: pre;
}
.map-wrap { position: relative; height: 420px; margin-top: 10px; }
.map-lines {
  position: absolute;
  inset: 0;
  opacity: .35;
}
.map-dots { position: relative; z-index: 2; height: 100%; }
.map-dot { position: absolute; transform: translate(-50%, -50%); }
.map-dot .pin {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #f2c94c;
  box-shadow: 0 0 0 5px rgba(242,201,76,.25), 0 0 18px rgba(242,201,76,.9);
  position: relative;
}
.map-dot .pin::after {
  content: "";
  position: absolute;
  left: 50%; top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #f2c94c;
}
.map-dot .label {
  position: absolute;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #f2c94c;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.map-dot .label small { display: block; font-size: 11px; font-weight: 400; color: #888; text-align: center; }
.map-deco {
  margin-top: -10px;
  font-size: 30px;
  font-weight: 300;
  color: rgba(0,0,0,.25);
}
.map-deco.center { text-align: center; }

/* 聯繫我們 */
.contact-section {
  background: var(--gray-f5);
  padding: 70px 0 80px;
}
.contact-wrap {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-left { flex: 0 0 30%; border-left: 2px solid #a9a0e8; padding-left: 16px; }
.contact-left h3 { font-size: 18px; font-weight: 700; }
.contact-left .sub { font-size: 14px; color: var(--gray-666); margin-top: 4px; }
.contact-items { margin-top: 22px; }
.contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #333; margin-bottom: 14px; line-height: 1.7; }
.contact-item .ico { color: #a9a0e8; flex: none; margin-top: 3px; }
.contact-right { flex: 1 1 70%; }
.map-panel {
  background: #fff;
  border: 1px solid #d9d9d9;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.map-panel .map-grid {
  position: absolute; inset: 0;
  background-color: #eef4fb;
  background-image:
    linear-gradient(rgba(70,110,160,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,110,160,.18) 1px, transparent 1px),
    linear-gradient(rgba(70,110,160,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,110,160,.10) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 12px 12px, 12px 12px;
}
.map-panel .region {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 300px;
  text-align: center;
  color: #7a8fa8;
  font-size: 13px;
  line-height: 1.6;
}
.map-panel .region b { color: #5a7390; font-weight: 700; font-size: 14px; }
.map-panel .map-pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(22,93,255,.35);
  transform: translate(-50%, -50%);
}
.map-panel .map-pin::after {
  content: "";
  position: absolute;
  left: 50%; top: 100%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--blue);
}
.map-pin .t {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.95);
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1px 8px;
  font-size: 12px;
  white-space: nowrap;
  color: #333;
}
.map-layers {
  position: absolute;
  top: 12px; right: 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
  color: #555;
  z-index: 3;
  line-height: 1.9;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.map-layers label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.map-layers input { accent-color: var(--blue); }
.map-zoom {
  position: absolute;
  right: 12px; bottom: 42px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  overflow: hidden;
  z-index: 3;
}
.map-zoom button {
  width: 28px; height: 28px;
  border: none;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  color: #555;
}
.map-zoom button + button { border-top: 1px solid #eee; }
.map-zoom button:hover { background: #f0f0f0; }
.map-copy {
  position: absolute;
  left: 12px; bottom: 8px;
  font-size: 11px;
  color: #9aa7b8;
  z-index: 3;
}

/* ---------------- AI 客服系統頁 ---------------- */
.ai-kv {
  position: relative;
  background: linear-gradient(135deg, #0b1c3f 0%, #16406e 60%, #2b5b92 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.ai-kv::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,26,59,.66);
}
.ai-kv .en {
  text-shadow: 0 1px 8px rgba(0,0,0,.85);
  background: rgba(0,0,0,.32);
  display: inline-block;
  padding: 3px 14px;
  border-radius: 999px;
}
.ai-kv h1 { text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.ai-kv .container { position: relative; z-index: 1; }
.ai-kv .en { font-size: 13px; letter-spacing: 2px; color: #f0f6ff; font-weight: 400; }
.ai-kv h1 { font-size: 40px; font-weight: 700; margin-top: 18px; }
.ai-kv { padding: 90px 0; }

.section-pad { padding: 70px 0; }

/* 三合一 */
.tri-section {
  background: #fff;
  padding: 50px 0;
}
.tri-banner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.tri-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.tri-grid { display: flex; gap: 40px; justify-content: center; margin-top: 46px; flex-wrap: wrap; }
.tri-item { width: 260px; text-align: center; }
.tri-icon {
  width: 120px; height: 120px;
  margin: 0 auto;
  border-radius: 26px;
  background: linear-gradient(145deg, #4a8bff, #165DFF 60%, #0b3fae);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(22,93,255,.30);
}
.tri-icon svg { width: 58px; height: 58px; fill: #fff; }
.tri-item h3 { font-size: 19px; font-weight: 700; margin-top: 22px; }

/* 應用場景 */
.scene-section { background: #f7f7f7; padding: 70px 0; }
.scene-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  margin-top: 40px;
  flex-wrap: wrap;
}
.scene-card {
  width: 460px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.scene-card.svc { background: var(--blue); }
.scene-card-head { padding: 14px 20px; font-size: 18px; font-weight: 700; text-align: center; }
.scene-card.svc .scene-card-head { background: #fff; color: #000; }
.scene-card.mkt .scene-card-head { background: var(--blue); color: #fff; }
.scene-card.mkt .scene-body { background: #EDF4FF; }
.scene-body { padding: 20px; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.35); }
.svc-cell {
  background: var(--blue);
  border-radius: 0;
  padding: 22px 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.svc-cell svg { width: 26px; height: 26px; fill: #fff; }
.mkt-rows { display: flex; flex-direction: column; }
.mkt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 6px;
  font-size: 15px;
  color: #000;
  border-bottom: 1px solid #fff;
}
.mkt-row:last-child { border-bottom: none; }
.mkt-row .mi { width: 34px; height: 34px; border-radius: 8px; background: var(--blue); display: flex; align-items: center; justify-content: center; flex: none; }
.mkt-row .mi svg { width: 18px; height: 18px; fill: #fff; }

/* AI-CRM 功能說明 */
.crm-section {
  background: linear-gradient(135deg, #E6F7FF 0%, #F9F0FF 100%);
  padding: 70px 0 80px;
}
.crm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.crm-grid-six {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.crm-grid-six .crm-card { padding: 22px 16px; border-radius: 16px; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.crm-grid-six .crm-card h3 { font-size: 15px; margin-top: 14px; }
.crm-grid-six .crm-card p { font-size: 12.5px; color: #333; line-height: 1.65; margin-top: 6px; }
.crm-card {
  background: #fff;
  border-radius: 8px;
  padding: 26px 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.crm-card .ci {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.crm-grid-six .crm-card .ci { background: transparent; width: 44px; height: 44px; padding: 0; }
.crm-grid-six .crm-card .ci svg { width: 40px; height: 40px; }
.crm-card .ci svg { width: 24px; height: 24px; fill: #fff; }
.crm-card h3 { font-size: 16px; font-weight: 700; margin-top: 16px; }
.crm-card p { font-size: 13px; color: var(--gray-666); margin-top: 8px; line-height: 1.7; }

/* 商務合作聯繫 */
.biz-contact { background: #fff; padding: 60px 0 70px; text-align: center; }
.biz-contact .red { color: #FF0000; font-size: 20px; font-weight: 700; }
.biz-contact .info { margin-top: 12px; font-size: 15px; color: #333; }
.biz-qr { display: inline-flex; align-items: center; gap: 18px; margin-top: 18px; }
.biz-qr svg { width: 120px; height: 120px; }
.biz-qr .qr-img, .case-qr .qr-img { width: 120px; height: 120px; border: 1px solid #eee; border-radius: 6px; }

/* ---------------- 客戶與案例頁 ---------------- */
.cases-kv {
  background: linear-gradient(135deg, #0b1c3f, #123a6b 60%, #1a4d8f);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cases-kv::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1px 1px at 12% 30%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 25% 65%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 38% 20%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 55% 75%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 70% 35%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 82% 60%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 92% 25%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 8% 80%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 46% 45%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 68% 10%, #fff 50%, transparent 51%);
  background-size: 220px 220px;
  opacity: .5;
}
.cases-kv h1 { position: relative; z-index: 1; font-size: 32px; font-weight: 700; }

.cases-body { background: var(--gray-f8); padding: 50px 0 70px; }

/* 合作客戶 logo 區 */
.clients { background: #fff; border-radius: 10px; padding: 34px 30px; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.clients h2 { text-align: center; font-size: 24px; font-weight: 700; margin-bottom: 26px; }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 24px; }
.client-cell {
  text-align: center;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
}
.client-cell .logo { font-weight: 800; font-size: 15px; letter-spacing: .5px; line-height: 1.4; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; }
.client-cell .logo .sub { font-weight: 400; font-size: 11px; color: var(--gray-666); display: block; margin-top: 3px; }
.client-cell .logo img { width: 46px; height: 46px; object-fit: contain; }
.client-cell .tag { display: block; text-align: center; margin-top: 8px; font-size: 11px; color: var(--gray-999); line-height: 1.4; }

/* 案例卡片 */
.case-block { margin-top: 54px; }
.case-head { display: flex; align-items: center; gap: 14px; font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.case-head .logo-badge { display: inline-flex; align-items: center; justify-content: center; text-align: center; line-height: 1.2; padding: 0 4px; }
.case-head .logo-badge { width: 54px; height: 54px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: none; font-weight: 800; font-size: 12px; color: #fff; }
.case-cols { display: flex; gap: 30px; align-items: stretch; }
.case-card {
  flex: 1;
  background: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.case-card.gold { border-color: var(--gold); }
.case-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.case-card ol { padding-left: 20px; }
.case-card li { font-size: 14px; line-height: 1.65; margin-bottom: 6px; }
.case-qr {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.case-qr svg { width: 100px; height: 100px; }

/* ================= 合作客戶品牌 Logo（新截圖版） ================= */
.client-grid { background: #F7F7F7; padding: 14px; border-radius: 6px; }
.client-cell { background: #fff; border-radius: 4px; padding: 18px 10px; min-height: 118px; }
.client-cell .logo { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }

/* myTV SUPER */
.cl-mytv { display: flex; align-items: center; gap: 10px; }
.cl-mytv-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid #000;
  display: flex; flex-direction: column; overflow: hidden; flex: none;
}
.cl-mytv-badge .bar { flex: 1; display: block; }
.cl-mytv-badge .b1 { background: #0057a8; }
.cl-mytv-badge .b2 { background: #4fae4f; }
.cl-mytv-badge .b3 { background: #e2231a; }
.cl-mytv-text { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 700; line-height: 1.05; color: #000; text-align: left; }
.cl-mytv-text .super { font-size: 12px; letter-spacing: 3px; font-weight: 400; }
.cl-mytv-text .super::first-letter { color: #e2231a; }

/* PCCW */
.cl-pccw { display: flex; align-items: center; gap: 10px; }
.cl-pccw-grid { display: grid; grid-template-columns: repeat(4, 8px); gap: 3px; flex: none; }
.cl-pccw-grid i { width: 8px; height: 8px; background: #dcdcdc; }
.cl-pccw-grid i.r { background: #e2231a; }
.cl-pccw-grid i.o { background: #f58220; }
.cl-pccw-grid i.y { background: #ffd200; }
.cl-pccw-grid i.g { background: #00843d; }
.cl-pccw-grid i.db { background: #0057a8; }
.cl-pccw-grid i.lb { background: #6ec6e6; }
.cl-pccw-grid i.r2 { background: #e2231a; }
.cl-pccw-text { font-size: 18px; font-weight: 800; color: #00274d; line-height: 1.15; text-align: left; }
.cl-pccw-text .cn { font-size: 12px; font-weight: 500; }

/* 香港寬頻 */
.cl-hkbn { display: flex; align-items: center; gap: 10px; }
.cl-hkbn-mark {
  width: 40px; height: 40px; background: #002d62; position: relative; flex: none;
  border-radius: 3px; overflow: hidden;
}
.cl-hkbn-mark .curve {
  position: absolute; right: -6px; bottom: -4px;
  width: 30px; height: 30px; border-radius: 50%;
  background: transparent; border: 4px solid #fff; border-left-color: transparent; border-top-color: transparent;
  transform: rotate(-18deg);
}
.cl-hkbn-mark .dot { position: absolute; left: 4px; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: #ff6b00; }
.cl-hkbn-text { font-size: 17px; font-weight: 800; color: #002d62; line-height: 1.2; text-align: left; }
.cl-hkbn-text .slogan { font-size: 10.5px; font-weight: 400; letter-spacing: .5px; }

/* 芒果tv */
.cl-mango { display: flex; align-items: center; gap: 9px; }
.cl-mango-mark {
  width: 38px; height: 38px; border-radius: 10px; background: #FF7A00;
  color: #fff; font-size: 24px; font-weight: 900; font-style: italic;
  display: flex; align-items: center; justify-content: center; flex: none;
  position: relative; overflow: hidden;
}
.cl-mango-text { font-size: 20px; font-weight: 700; color: #000; }

/* 美聯集團 */
.cl-midland { display: flex; align-items: center; gap: 10px; }
.cl-midland-m { display: flex; gap: 4px; flex: none; align-items: flex-end; }
.cl-midland-m i {
  width: 12px; height: 26px;
  background:
    linear-gradient(#f5c518 0 3px, transparent 3px 6px),
    linear-gradient(#f5c518 0 3px, transparent 3px 6px),
    linear-gradient(#f5c518 0 3px, transparent 3px 6px),
    #f5c518;
  background-size: 100% 6px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 100% 70%, 50% 18%, 0 70%);
}
.cl-midland-text { font-size: 16px; font-weight: 800; color: #000; line-height: 1.25; text-align: left; }
.cl-midland-text .sub { font-size: 9px; font-weight: 400; color: #000; letter-spacing: 1px; border-bottom: 1px solid #000; display: inline-block; padding-bottom: 1px; }

/* GMS GROUP */
.cl-gms { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.cl-gms-text { font-size: 17px; font-weight: 700; color: #000; letter-spacing: .5px; display: flex; align-items: center; }
.cl-gms .gms-o {
  display: inline-block; width: 14px; height: 14px; margin: 0 1px;
  background: radial-gradient(circle at 50% 55%, #fff 0 3px, #d4a017 3px 4px, #f5c518 4px 6px, #b8860b 6px);
  border-radius: 50%; position: relative;
}
.cl-gms .gms-o::after {
  content: ""; position: absolute; right: -1px; top: -2px;
  border: 4px solid transparent; border-bottom: 6px solid #8b6914; transform: rotate(45deg);
}
.cl-gms-line { width: 130px; height: 1px; background: linear-gradient(90deg, transparent, #d4a017 30%, #d4a017 70%, transparent); }
.cl-gms-sub { font-size: 10px; color: #888; letter-spacing: .5px; }

/* EC Healthcare */
.cl-ec { display: flex; flex-direction: column; align-items: center; gap: 4px; background: #5b5f73; width: 100%; padding: 12px 6px; border-radius: 4px; }
.cl-ec-mark { position: relative; width: 34px; height: 24px; }
.cl-ec .ec-c1 { position: absolute; left: 0; top: 0; width: 18px; height: 18px; border: 2.5px solid #fff; border-radius: 50%; }
.cl-ec .ec-c2 { position: absolute; right: 0; bottom: 0; width: 10px; height: 10px; border: 2.5px solid #fff; border-radius: 50%; }
.cl-ec .ec-link { position: absolute; left: 16px; top: 10px; width: 8px; height: 8px; border-top: 2.5px solid #fff; border-right: 2.5px solid #fff; transform: rotate(45deg); }
.cl-ec-text { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.3; text-align: center; }
.cl-ec-text .stock { font-size: 9px; font-weight: 400; opacity: .85; }

/* 中国电信 */
.cl-ct { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cl-ct-mark { width: 46px; height: 40px; }
.cl-ct-mark svg { width: 100%; height: 100%; }
.cl-ct-text { font-size: 15px; font-weight: 700; color: #0066b3; line-height: 1.3; text-align: center; font-family: "KaiTi", "STKaiti", serif; }
.cl-ct-text .sub { font-family: Arial, sans-serif; font-size: 9px; font-weight: 500; letter-spacing: 1px; }

/* ================= 案例卡片（新截圖版） ================= */
.cases-body { background: #F7F7F2; }
.case-block { margin-top: 54px; }
.case-head { display: flex; align-items: center; justify-content: space-between; font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.logo-badge { display: inline-flex; align-items: center; gap: 8px; }

/* 文善社 logo */
.logo-badge.mansun {
  background: #fce4ec; border-radius: 8px; padding: 6px 12px 6px 8px;
  font-family: "KaiTi", "STKaiti", serif; font-size: 17px; font-weight: 700; color: #000;
}
.mansun-flower { position: relative; width: 34px; height: 34px; flex: none; }
.mansun-flower .p {
  position: absolute; left: 50%; top: 50%;
  width: 13px; height: 13px; border-radius: 50% 50% 50% 0;
  background: #e91e78;
}
.mansun-flower .p1 { transform: translate(-50%, -50%) rotate(0deg) translateY(-10px); }
.mansun-flower .p2 { transform: translate(-50%, -50%) rotate(72deg) translateY(-10px); }
.mansun-flower .p3 { transform: translate(-50%, -50%) rotate(144deg) translateY(-10px); }
.mansun-flower .p4 { transform: translate(-50%, -50%) rotate(216deg) translateY(-10px); }
.mansun-flower .p5 { transform: translate(-50%, -50%) rotate(288deg) translateY(-10px); }

/* 芒果TV logo */
.logo-badge.mango-badge {
  background: #fff; border-radius: 8px; padding: 6px 12px;
  gap: 8px; border: 1px solid #eee;
}
.mango-badge .mango-m {
  width: 30px; height: 30px; border-radius: 8px; background: #FF7A00;
  color: #fff; font-size: 19px; font-weight: 900; font-style: italic;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.mango-badge .mango-text { font-size: 17px; font-weight: 700; color: #000; }

/* 卡片邊框：案例1 */
.case-card.gold { border-color: #c9a964; border-width: 1.5px; }
/* 案例2 左卡：黑色雙層 */
.case-card.black-double { border: 1px solid #000; box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px #000; }
/* 案例2 右卡：淺灰雙層 */
.case-card.gray-double { border: 1px solid #aaa; box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px #aaa; }

.case-qr .qr-img { width: 120px; height: 120px; }

/* ---------------- 芒果 TV 頁（新版） ---------------- */
/* 頭部：黃色豎條 + 標題 + logo */
.mango-header { background: #fff; border-top: 1px solid #000; padding: 22px 0; }
.mango-head-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.mango-header h1 { font-size: 25px; font-weight: 700; color: #000; display: flex; align-items: center; }
.yellow-bar { display: inline-block; width: 6px; height: 30px; background: #FFD400; margin-right: 12px; border-radius: 2px; }
.mango-logo { display: flex; align-items: center; gap: 8px; }
.mango-logo-m {
  width: 42px; height: 42px; border-radius: 12px; background: #FF7A00;
  color: #fff; font-size: 26px; font-weight: 900; font-style: italic;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.mango-logo-text { font-size: 22px; font-weight: 700; color: #222; }

/* 膠片輪播 Banner */
.film-banner-wrap { background: #fff; padding: 26px 0 34px; }
.film-banner {
  position: relative;
  background: #FF7A00;
  border-radius: 10px;
  overflow: hidden;
}
.film-strip {
  height: 26px;
  position: relative;
  background: #FF7A00;
}
.film-strip::after {
  content: "";
  position: absolute; top: 6px; left: 0; right: 0; height: 14px;
  background-image: repeating-linear-gradient(90deg, #fff 0 10px, transparent 10px 22px);
}
.film-slides { display: flex; transition: transform .5s ease; }
.film-slide {
  flex: 0 0 25%;
  height: 170px;
  background-size: cover;
  background-position: center;
  border-left: 3px solid #FF7A00;
  border-right: 3px solid #FF7A00;
}
.film-arrow {
  position: absolute;
  bottom: 36px;
  width: 30px; height: 30px;
  border: none; border-radius: 6px;
  background: rgba(240,240,240,.75);
  color: #555;
  font-size: 15px;
  cursor: pointer;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.film-arrow:hover { background: rgba(255,255,255,.95); }
.film-prev { left: 8px; }
.film-next { right: 8px; }
.film-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.film-dots span { width: 9px; height: 9px; border-radius: 50%; background: #d9d9d9; cursor: pointer; transition: all .2s; }
.film-dots span.on { background: #999; transform: scale(1.15); }

/* 平台基礎信息（4卡） */
.info-section { padding: 50px 0 60px; background: #fff; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px; }
.info-card { text-align: center; }
.info-card h3 { font-size: 19px; font-weight: 700; color: var(--orange); }
.info-card .box {
  margin-top: 12px;
  background: #FFFDF8;
  border: 1px solid #F0E7D8;
  border-radius: 10px;
  padding: 18px 14px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.85;
  text-align: left;
  text-align-last: left;
  min-height: 120px;
}

/* 節目卡片 */
.shows-section { background: var(--gray-f8); padding: 50px 0 60px; }
.shows-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 36px; }
.show-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
  position: relative;
}
.show-info { flex: 1.4; padding: 20px 18px; position: relative; z-index: 1; }
.show-head { display: flex; gap: 10px; align-items: flex-start; }
.show-head .v-bar { width: 4px; height: 34px; background: var(--orange); border-radius: 2px; flex: none; }
.show-head h3 { font-size: 18px; font-weight: 700; line-height: 1.25; color: #000; }
.show-type { font-size: 12px; color: #999; margin-top: 2px; }
.show-meta { margin-top: 14px; }
.show-meta .m { margin-bottom: 10px; }
.show-meta .m b { display: block; font-size: 12px; color: var(--orange); margin-bottom: 2px; }
.show-meta .m span { font-size: 12.5px; color: #555; line-height: 1.6; }
.show-cover { flex: 1; min-width: 200px; min-height: 210px; background-size: cover; background-position: center; position: relative; }
/* 橙色 C 形裝飾 */
.c-deco { position: absolute; z-index: 0; }
.c-deco.c-tl {
  top: 8px; right: 30px;
  width: 18px; height: 18px;
  border: 3px solid rgba(255,122,0,.55);
  border-radius: 50%;
  border-top-color: transparent; border-right-color: transparent;
  transform: rotate(-45deg);
}
.c-deco.c-br {
  bottom: -34px; right: -34px;
  width: 110px; height: 110px;
  border: 22px solid rgba(255,122,0,.18);
  border-radius: 50%;
  border-left-color: transparent;
  transform: rotate(-18deg);
}

/* 數據膠囊模塊 */
.growth-section {
  background: linear-gradient(180deg, #fff3e6 0%, #ffffff 70%);
  padding: 56px 0 66px;
}
.growth-layout { display: flex; gap: 30px; margin-top: 36px; align-items: stretch; }
.growth-left { flex: 1.6; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.growth-right { flex: 0 0 300px; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.pill {
  border-radius: 999px;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.pill-main { background: linear-gradient(90deg, #FF8C32, #FF6A00); color: #fff; padding: 24px 34px; }
.pill-main .big { font-size: 46px; font-weight: 800; line-height: 1; white-space: nowrap; }
.pill-main .big small { font-size: 24px; font-weight: 700; }
.pill-main p { font-size: 14px; line-height: 1.75; }
.pill-white { background: #fff; }
.pill-white .g-title { font-weight: 700; font-size: 15px; color: var(--orange); white-space: nowrap; }
.pill-white .g-desc { font-size: 13px; color: #555; line-height: 1.65; }
/* 緞帶式向上箭頭 */
.arrow-up {
  position: absolute;
  width: 120px; height: 150px;
  background: linear-gradient(135deg, #FF9E4F, #FF6A00);
  clip-path: polygon(30% 100%, 0 45%, 0 15%, 22% 0, 55% 0, 70% 20%, 100% 20%, 100% 45%, 82% 60%, 82% 100%, 55% 100%, 55% 70%, 30% 80%);
  opacity: .9;
}
.arrow-up.a-big { right: 90px; bottom: 0; transform: rotate(8deg); }
.arrow-up.a-small { right: 0; bottom: 10px; width: 78px; height: 96px; opacity: .75; }

.mango-contact { text-align: center; padding: 56px 0 66px; background: #fff; position: relative; overflow: hidden; }
.mango-contact::before {
  content: "";
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 120px;
  border-radius: 50%;
  background: rgba(255,122,0,.10);
}

/* ---------------- 響應式 ---------------- */
@media (max-width: 1024px) {
  .crm-grid { grid-template-columns: repeat(2, 1fr); }
  .crm-grid-six { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { gap: 18px; }
  .growth-layout { flex-direction: column; }
  .growth-right { flex: auto; height: 140px; }
  .pill { flex-direction: column; align-items: flex-start; gap: 10px; text-align: left; }
}
@media (max-width: 720px) {
  .nav-bar { height: auto; flex-direction: column; padding: 12px 16px; gap: 10px; }
  .nav-menu { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .kv-title { font-size: 30px; }
  .shows-grid { grid-template-columns: 1fr; }
  .show-card { flex-direction: column; }
  .show-cover { min-height: 180px; }
  .scene-grid { gap: 24px; }
  .scene-card { width: 100%; }
  .crm-grid-six { grid-template-columns: repeat(2, 1fr); }
  .case-cols { flex-direction: column; }
  .contact-wrap { flex-direction: column; }
  .contact-left { flex: auto; }
  .footer-top { justify-content: center; }
  .film-slide { flex: 0 0 100%; height: 160px; }
  .mango-header h1 { font-size: 20px; }
  .client-grid { grid-template-columns: 1fr 1fr; }
}