﻿/* ============================================================
   TreeSize 香港粵語官網 - 通用樣式 common.css
   主題色 Primary: #00C152
   ============================================================ */

:root {
  --ts-primary: #00C152;
  --ts-primary-dark: #009640;
  --ts-primary-light: #2dd47a;
  --ts-primary-50: #e6faee;
  --ts-primary-100: #c8f2d6;
  --ts-accent: #252E30;
  --ts-text: #1a2235;
  --ts-text-muted: #5b6577;
  --ts-text-light: #8590a3;
  --ts-bg: #ffffff;
  --ts-bg-soft: #f6f8fc;
  --ts-bg-alt: #eef2f8;
  --ts-border: #e3e8f1;
  --ts-shadow-sm: 0 2px 8px rgba(0, 193, 82, 0.08);
  --ts-shadow: 0 8px 30px rgba(0, 193, 82, 0.10);
  --ts-shadow-lg: 0 20px 50px rgba(0, 193, 82, 0.14);
  --ts-radius: 12px;
  --ts-radius-lg: 20px;
  --ts-container: 1200px;
  --ts-font: "PingFang SC", "Microsoft YaHei", "微軟雅黑", "Helvetica Neue",
    Helvetica, "Hiragino Sans GB", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--ts-font);
  color: var(--ts-text);
  background: var(--ts-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--ts-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ts-primary-dark); }

.ts-container {
  max-width: var(--ts-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* 通用按鈕 */
.ts-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.ts-btn svg { width: 16px; height: 16px; }
.ts-btn-primary {
  background: var(--ts-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 193, 82, 0.28);
}
.ts-btn-primary:hover {
  background: var(--ts-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 193, 82, 0.38);
}
.ts-btn-ghost {
  background: transparent;
  color: var(--ts-primary);
  border-color: var(--ts-border);
}
.ts-btn-ghost:hover {
  border-color: var(--ts-primary);
  background: var(--ts-primary-50);
}

/* 節標題 */
.ts-section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ts-text);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.ts-section-subtitle {
  font-size: 17px;
  color: var(--ts-text-muted);
  max-width: 760px;
  margin: 0 auto;
}
.ts-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ts-primary-50);
  color: var(--ts-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

/* ============================================================
   導航 Header — 全新設計 v2
   現代、簡潔、專業的設計理念
   ============================================================ */
#ts-header { display: contents; }
.ts-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(227, 232, 241, 0.6);
}
.ts-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ---------- 左側：品牌 + 產品切換（v4 - 緊湊佈局） ---------- */
.ts-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

/* 品牌區：僅 Logo */
.ts-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 10px;
  transition: background .2s ease;
  flex-shrink: 0;
}
.ts-brand:hover { background: rgba(15, 23, 42, 0.035); }
.ts-brand img {
  height: 32px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}
.ts-brand-text,
.ts-brand-name { display: none; }

/* 產品切換：垂直佈局 - 上方是按鈕，下方是 by JAM Software */
.ts-product-switch {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 12px;
}
.ts-product-switch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--ts-border);
}
.ts-product-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px 2px 4px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ts-text);
  letter-spacing: -0.3px;
  cursor: pointer;
  transition: color .2s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.ts-product-toggle:hover {
  color: var(--ts-primary);
}
.ts-product-toggle .ts-product-tag {
  display: inline-flex;
  align-items: center;
  height: 16px;
  padding: 0 5px;
  background: var(--ts-primary-50);
  color: var(--ts-primary);
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}
.ts-product-toggle .ts-chev {
  width: 12px;
  height: 12px;
  color: var(--ts-text-light);
  transition: transform .25s ease;
}
.ts-product-toggle.is-open .ts-chev { transform: rotate(180deg); }
.ts-product-toggle.is-open { color: var(--ts-primary); }

.ts-brand-by {
  display: block;
  margin-left: 4px;
  margin-top: 1px;
  font-size: 9.5px;
  font-weight: 500;
  color: var(--ts-text-light);
  white-space: nowrap;
  letter-spacing: 0.4px;
  line-height: 1;
}

@media (max-width: 640px) {
  .ts-header-left { gap: 6px; }
  .ts-brand img { height: 26px; }
  .ts-product-switch { padding-left: 8px; }
  .ts-product-switch::before { height: 22px; }
  .ts-product-toggle { font-size: 14px; }
  .ts-brand-by { font-size: 9px; }
}

.ts-product-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--ts-border);
  border-radius: 12px;
  box-shadow: 0 20px 50px -18px rgba(15, 23, 42, 0.2), 0 4px 10px rgba(15, 23, 42, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 100;
  padding: 6px;
}
.ts-product-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.ts-product-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
}
.ts-product-dropdown a:hover { background: rgba(0, 193, 82, 0.06); }
.pd-logo {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 6px;
}
.pd-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pd-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ts-text);
  letter-spacing: -0.2px;
  line-height: 1.2;
}
.pd-desc {
  font-size: 11.5px;
  color: var(--ts-text-muted);
  line-height: 1.2;
}

/* ---------- 中部：主導航 ---------- */
.ts-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(15, 23, 42, 0.035);
  border-radius: 999px;
}
.ts-nav a {
  position: relative;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ts-text-muted);
  text-decoration: none;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.ts-nav a:hover {
  color: var(--ts-text);
  background: rgba(255, 255, 255, 0.85);
}
.ts-nav a.is-active {
  color: var(--ts-text);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.05);
}
.ts-nav a::after { display: none; }

/* ---------- 右側：語言 + CTA ---------- */
.ts-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 語言切換 — 重新設計 */
.ts-lang-switch {
  position: relative;
  margin: 0;
}
.ts-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ts-text-muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.ts-lang-btn svg {
  width: 16px;
  height: 16px;
  color: currentColor;
  transition: transform .25s ease;
}
.ts-lang-btn:hover {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ts-text);
}
.ts-lang-btn.is-open {
  background: rgba(15, 23, 42, 0.06);
  color: var(--ts-text);
}
.ts-lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--ts-border);
  border-radius: 12px;
  box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.22), 0 4px 12px rgba(15, 23, 42, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 100;
  padding: 6px;
}
.ts-lang-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.ts-lang-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ts-text);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s ease;
}
.ts-lang-dropdown a:hover {
  background: rgba(0, 193, 82, 0.06);
  color: var(--ts-primary);
}

/* 頂部 CTA 操作 */
.ts-nav-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.1px;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .2s ease;
}
.ts-nav-action-ghost {
  color: var(--ts-text);
  background: transparent;
}
.ts-nav-action-ghost:hover {
  background: rgba(15, 23, 42, 0.05);
}
.ts-nav-action-primary,
.ts-nav-action-primary:hover,
.ts-nav-action-primary:focus,
.ts-nav-action-primary:visited {
  color: #fff;
}
.ts-nav-action-primary {
  background: var(--ts-primary);
  box-shadow: 0 1px 2px rgba(0, 193, 82, 0.2), 0 4px 10px -4px rgba(0, 193, 82, 0.35);
}
.ts-nav-action-primary:hover {
  background: #00a347;
  box-shadow: 0 8px 22px -6px rgba(0, 193, 82, 0.55);
  transform: translateY(-1px);
}
.ts-nav-action-primary svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
.ts-nav-action-primary:hover svg {
  transform: translateX(2px);
}

/* ---------- 響應式：隱藏中間導航在中等螢幕 ---------- */
@media (max-width: 1180px) {
  .ts-product-toggle .ts-product-tag { display: none; }
  .ts-nav { gap: 0; }
  .ts-nav a { padding: 7px 11px; font-size: 13.5px; }
  .ts-nav-action-ghost { display: none; }
}
@media (max-width: 980px) {
  .ts-nav { display: none; }
  .ts-lang-btn .ts-lang-current { display: none; }
}
@media (max-width: 640px) {
  .ts-header-inner { padding: 0 16px; height: 60px; }
  .ts-nav-action-primary { display: none; }
  .ts-product-toggle { padding: 6px 6px 6px 10px; font-size: 14px; }
  .ts-product-toggle .ts-product-tag { display: none; }
}

/* ---------- 舊樣式佔位（保留兼容性） ---------- */
.ts-header-cta { display: none; }
.ts-brand-group { display: contents; }

.ts-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--ts-border);
  position: relative;
  z-index: 1001;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.ts-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ts-primary);
  position: relative;
  transition: all .25s ease;
}
.ts-burger span::before,
.ts-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ts-primary);
  transition: all .25s ease;
}
.ts-burger span::before { top: -6px; }
.ts-burger span::after  { top: 6px; }
.ts-burger.is-open span { background: transparent; }
.ts-burger.is-open span::before { top: 0; transform: rotate(45deg); }
.ts-burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .ts-nav, .ts-header-cta .ts-cta-desktop { display: none; }
  .ts-burger { display: inline-flex; }
}

/* ============================================================
   移動菜單 · 全屏滑入面板
   ============================================================ */
.ts-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.7,0,.15,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -30px 0 60px -20px rgba(37, 46, 48, .25);
  padding: 96px 32px 40px;
  -webkit-overflow-scrolling: touch;
}
.ts-mobile-menu::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  background: radial-gradient(closest-side, rgba(0, 193, 82, .18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.ts-mobile-menu::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(37, 46, 48, .08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.ts-mobile-menu.is-open { transform: translateX(0); }

/* 遮罩 */
.ts-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 32, .45);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.ts-mobile-backdrop.is-open { opacity: 1; visibility: visible; }

/* 菜單頂部標識 */
.ts-mobile-menu .mm-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: ui-monospace, "Consolas", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ts-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ts-mobile-menu .mm-eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--ts-primary);
}
.ts-mobile-menu .mm-title {
  position: relative; z-index: 1;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--ts-text);
  margin: 0 0 32px;
  line-height: 1.2;
}
.ts-mobile-menu .mm-title em {
  font-style: normal;
  color: var(--ts-primary);
}

/* 菜單連結 */
.ts-mobile-menu nav {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  margin-bottom: 28px;
}
.ts-mobile-menu nav a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ts-text);
  border-bottom: 1px solid var(--ts-border);
  text-decoration: none;
  transition: padding-left .25s ease, color .25s ease;
}
.ts-mobile-menu nav a::before {
  content: attr(data-num);
  font-family: ui-monospace, "Consolas", monospace;
  font-size: 11px;
  color: var(--ts-text-light);
  font-weight: 700;
  letter-spacing: 1px;
}
.ts-mobile-menu nav a::after {
  content: "";
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C152' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.ts-mobile-menu nav a:hover,
.ts-mobile-menu nav a:active {
  padding-left: 8px;
  color: var(--ts-primary);
}
.ts-mobile-menu nav a:hover::after,
.ts-mobile-menu nav a:active::after {
  opacity: 1;
  transform: translateX(0);
}

/* CTA 區 */
.ts-mobile-cta {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.ts-mobile-cta .ts-btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; }

/* 聯絡訊息 */
.ts-mobile-foot {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed var(--ts-border);
}
.ts-mobile-foot .mf-label {
  font-size: 11.5px;
  font-family: ui-monospace, "Consolas", monospace;
  letter-spacing: 1.2px;
  color: var(--ts-text-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ts-mobile-foot a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--ts-text-muted);
  text-decoration: none;
}
.ts-mobile-foot a svg { width: 14px; height: 14px; color: var(--ts-primary); }

/* 移動端語言切換 */
.ts-mobile-lang {
  position: relative; z-index: 1;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--ts-bg-soft);
  border-radius: var(--ts-radius);
}
.ts-mobile-lang .mf-label {
  font-size: 11.5px;
  font-family: ui-monospace, "Consolas", monospace;
  letter-spacing: 1.2px;
  color: var(--ts-text-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ts-mobile-lang-link {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ts-text);
  text-decoration: none;
  transition: color .2s ease;
}
.ts-mobile-lang-link:hover {
  color: var(--ts-primary);
}

/* body 滾動鎖 */
body.ts-no-scroll { overflow: hidden; }

/* ============================================================
   頁腳 footer
   ============================================================ */
.ts-footer {
  background: linear-gradient(180deg, #0b2a1a 0%, #051710 100%);
  color: #c7d0e2;
  position: relative;
  overflow: hidden;
}
.ts-footer::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(0, 193, 82, 0.45), transparent);
  pointer-events: none;
}
.ts-footer::after {
  content: "";
  position: absolute;
  bottom: -160px; right: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(37, 46, 48, 0.22), transparent);
  pointer-events: none;
}
.ts-footer-inner {
  position: relative;
  max-width: var(--ts-container);
  margin: 0 auto;
  padding: 72px 24px 32px;
}
.ts-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ts-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.ts-footer-brand img {
  height: 44px;
  width: auto;
  filter: brightness(1.1);
}
.ts-footer-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.ts-footer-brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.ts-footer-brand-by {
  font-size: 12px;
  color: #8a99b8;
  margin-top: 2px;
}
.ts-footer-desc {
  font-size: 14px;
  color: #9aa6bf;
  max-width: 420px;
  line-height: 1.8;
}
.ts-footer-contact {
  display: grid;
  gap: 14px;
}
.ts-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #c7d0e2;
}
.ts-footer-contact-item .ts-fc-icon {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
}
.ts-footer-contact-item .ts-fc-icon svg { width: 18px; height: 18px; }
.ts-footer-contact-item a { color: #fff; }
.ts-footer-contact-item a:hover { color: #00C152; }
.ts-fc-label { font-size: 12px; color: #8a99b8; display: block; }
.ts-fc-value { font-size: 15px; color: #fff; font-weight: 500; }

.ts-footer-notice {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ts-radius);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 13.5px;
  color: #b0bbd4;
  line-height: 1.8;
}
.ts-footer-notice strong { color: #fff; }
.ts-footer-notice .ts-notice-en {
  display: block;
  margin-top: 8px;
  color: #8a99b8;
  font-size: 12.5px;
}

.ts-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8a99b8;
  padding-top: 8px;
}
.ts-footer-bottom a { color: #b0bbd4; }
.ts-footer-bottom a:hover { color: #fff; }

@media (max-width: 768px) {
  .ts-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ts-footer-inner { padding: 56px 24px 24px; }
}
