/*
Theme Name: Conson 2026
Theme URI: https://www.conson.com.hk/
Description: 港信集团官网主题 - 商务风格 / Conson 内容
Version: 2.0.0
Text Domain: conson-2026
*/

/* ===== Business corporate base ===== */
:root {
  --biz-navy: #0f172a;
  --biz-navy-mid: #1e293b;
  --biz-link: #0c4a6e;
  --biz-amber: #b45309;
  --biz-amber-600: #d97706;
  --biz-amber-700: #92400e;
  --biz-amber-50: #fffbeb;
  --biz-slate-50: #f8fafc;
  --biz-slate-200: #e2e8f0;
  --biz-slate-400: #94a3b8;
  --biz-slate-500: #64748b;
  --biz-slate-700: #334155;
  --sleek-blue: #0c4a6e;
  --sleek-blue-dark: #0f172a;
  --sleek-blue-tint: rgba(15, 23, 42, 0.04);
  --sleek-cta: #d97706;
  --sleek-cta-dark: #b45309;
  --sleek-text: #0f172a;
  --sleek-text-muted: #64748b;
  --sleek-bg: #ffffff;
  --sleek-bg-alt: #f8fafc;
  --sleek-bg-warm: #f8fafc;
  --sleek-bg-cool: #f8fafc;
  --sleek-border: #e2e8f0;
  /* ??????????banner ????*/
  --c-banner-sync-min-h: 300px;
  --c-banner-sync-pt: 48px;
  --c-banner-sync-pb: 64px;
  --c-banner-sync-px: 24px;
  /* 主体内容最大宽度（与香港公司年审页 c-so-content 一致） */
  --c-layout-max: 1100px;
  /* 页眉 / 页脚 / 首页 Hero 等全宽区块（导航项较多，需宽于正文） */
  --c-shell-max: 1280px;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
  color: var(--sleek-text);
  background: var(--biz-slate-50);
  line-height: 1.6;
}
a { color: var(--sleek-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Topbar (Sleek announcement strip) ===== */
.c-topbar {
  background: var(--biz-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}
.c-topbar-marquee {
  overflow: hidden;
  width: 100%;
}
.c-topbar-text {
  display: inline-block;
  line-height: 1.5;
  white-space: nowrap;
  padding-left: 100%;
  animation: c-topbar-scroll 35s linear infinite;
}
.c-topbar-marquee:hover .c-topbar-text {
  animation-play-state: paused;
}
@keyframes c-topbar-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .c-topbar-text {
    animation: none;
    padding-left: 0;
    display: block;
    white-space: normal;
    text-align: center;
    padding: 0 20px;
  }
}

/* ===== Header ===== */
.c-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sleek-border);
}
.c-header-inner {
  max-width: var(--c-shell-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
.c-header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.c-header-logo:hover { text-decoration: none; }
.c-header-logo-text {
  font-weight: 700;
  font-size: 22px;
  color: var(--sleek-blue);
}
.c-header-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.c-header-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 1101px) and (max-width: 1280px) {
  .c-nav-list {
    gap: 4px 12px;
    font-size: 13px;
  }
  .c-nav-list > li > a {
    font-size: 13px;
  }
}
.c-nav-list > li {
  position: relative;
  display: flex;
  align-items: center;
}
.c-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  color: var(--biz-slate-700);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}
.c-nav-list > li > a:hover {
  color: var(--biz-navy);
  text-decoration: none;
}
.c-nav-list a { color: inherit; }
.c-nav-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--sleek-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 200;
}
.c-nav-list .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-nav-list .sub-menu li { margin: 0; }
.c-nav-list .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.c-nav-list .sub-menu a:hover {
  background: var(--sleek-blue-tint);
  color: var(--sleek-blue);
}
.c-nav-list .menu-item-has-children > a::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  margin: 0;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-bottom: none;
  opacity: 0.55;
  transform: translateY(1px);
}
.c-header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.c-header-tcsp {
  text-align: right;
  line-height: 1.3;
}
.c-header-tcsp-label {
  display: block;
  font-size: 10px;
  color: var(--biz-slate-400, #94a3b8);
  margin-bottom: 4px;
}
.c-header-tcsp-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.02em;
}
.c-header-btn {
  background: var(--biz-navy);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.c-header-btn:hover { background: var(--biz-link); text-decoration: none; opacity: 1; }
@media (min-width: 1101px) and (max-width: 1280px) {
  .c-header-tcsp-label { font-size: 9px; }
  .c-header-tcsp-badge { font-size: 11px; }
  .c-header-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .c-header-logo-img {
    height: 36px;
    max-width: 180px;
  }
}

/* ===== 返回顶部（全站右下角） ===== */
.c-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 999px;
  background: var(--biz-navy, #0f172a);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.c-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-back-to-top:hover {
  background: var(--biz-link, #0c4a6e);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.22);
}
.c-back-to-top:focus-visible {
  outline: 2px solid var(--biz-amber-600, #d97706);
  outline-offset: 2px;
}
.c-back-to-top-icon {
  display: block;
}
@media (max-width: 600px) {
  .c-back-to-top {
    right: 16px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-back-to-top {
    transition: none;
  }
}
.c-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.c-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--sleek-text);
}

/* ===== Hero Banner Carousel (Conson ?????? ===== */
.c-hero-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}
.c-hero-carousel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(180, 83, 9, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-hero-slides {
  position: relative;
  min-height: 400px;
}
.c-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 24px 100px;
  box-sizing: border-box;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1;
  display: flex;
  align-items: center;
}
.c-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.c-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}
.c-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}
.c-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.c-hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 24px;
  max-width: 560px;
}
.c-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.c-btn-primary {
  background: var(--sleek-cta);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.2);
}
.c-btn-primary:hover { background: var(--sleek-cta-dark); text-decoration: none; opacity: 1; }
.c-btn-secondary {
  background: transparent;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.5);
}
.c-btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; color: #fff; }
.c-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.c-hero-trust-text { font-size: 14px; opacity: 0.9; }
.c-hero-trust-badges { display: flex; gap: 16px; align-items: center; }

/* Hero carousel dots & arrows */
.c-hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.c-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.c-hero-dot:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.3);
}
.c-hero-dot.is-active {
  background: #fff;
  border-color: #fff;
}
.c-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}
.c-hero-arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}
.c-hero-prev { left: 24px; }
.c-hero-next { right: 24px; }
@media (max-width: 768px) {
  .c-hero-arrow { width: 40px; height: 40px; font-size: 20px; }
  .c-hero-prev { left: 12px; }
  .c-hero-next { right: 12px; }
}

/* ===== Page Hero (?? Sleek ??) ===== */
.c-page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.c-page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(180, 83, 9, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-page-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-page-hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fcd34d;
  background: none;
  border-radius: 0;
}
.c-page-hero-badge::before,
.c-page-hero-badge::after {
  content: "";
  flex: 0 0 28px;
  height: 1px;
}
.c-page-hero-badge::before {
  background: linear-gradient(90deg, transparent, rgba(252, 211, 77, 0.55));
}
.c-page-hero-badge::after {
  background: linear-gradient(90deg, rgba(252, 211, 77, 0.55), transparent);
}
.c-page-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.c-page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 16px;
  line-height: 1.7;
}
.c-page-hero-sub2 {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  line-height: 1.7;
}
.c-page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.c-page-hero-trust {
  font-size: 14px;
  opacity: 0.9;
}
.c-page-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 14px;
  opacity: 0.95;
}

/* ===== HK Register Page: Hero ===== */
.c-hk-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.c-hk-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(180, 83, 9, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-hk-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-hk-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}
.c-hk-hero-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.c-hk-hero-price {
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 24px;
}
.c-hk-hero-price strong { color: #fff; }
.c-hk-hero-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
.c-hk-hero-bullets li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.c-hk-hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}
.c-hk-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.c-hk-hero-trust {
  font-size: 14px;
  opacity: 0.9;
}

/* ===== HK Register: Steps (Sleek ?? - ????+????) ===== */
.c-hk-steps-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #faf5ff 100%);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 97, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #faf5ff 100%);
}
.c-hk-steps-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-hk-steps-desc {
  text-align: center;
  color: var(--sleek-text-muted);
  max-width: 560px;
  margin: -24px auto 48px;
  font-size: 17px;
}
.c-hk-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .c-hk-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .c-hk-steps-grid { grid-template-columns: 1fr; } }
.c-hk-step {
  position: relative;
  text-align: center;
  padding: 24px 20px;
  height: 180px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-hk-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.c-hk-step-icon {
  display: block;
  font-size: 48px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.c-hk-step-num {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.c-hk-step h4 {
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
/* Step 1 - ?? (????/??) */
.c-hk-step--1 {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
  border-color: rgba(16, 185, 129, 0.2);
}
.c-hk-step--1::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.c-hk-step--1 .c-hk-step-num { color: #059669; }
.c-hk-step--1 h4 { color: var(--sleek-text); }
/* Step 2 - ?? (??) */
.c-hk-step--2 {
  background: linear-gradient(145deg, rgba(0, 97, 255, 0.08) 0%, rgba(0, 97, 255, 0.02) 100%);
  border-color: rgba(0, 97, 255, 0.25);
}
.c-hk-step--2::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 97, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.c-hk-step--2 .c-hk-step-num { color: var(--sleek-blue); }
.c-hk-step--2 h4 { color: var(--sleek-text); }
/* Step 3 - ?? (??/??) */
.c-hk-step--3 {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.02) 100%);
  border-color: rgba(245, 158, 11, 0.25);
}
.c-hk-step--3::before {
  content: "";
  position: absolute;
  bottom: -25%;
  right: -25%;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.c-hk-step--3 .c-hk-step-num { color: #d97706; }
.c-hk-step--3 h4 { color: var(--sleek-text); }
/* Step 4 - ??/?? (??/??) */
.c-hk-step--4 {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.02) 100%);
  border-color: rgba(99, 102, 241, 0.25);
}
.c-hk-step--4::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.c-hk-step--4 .c-hk-step-num { color: #4f46e5; }
.c-hk-step--4 h4 { color: var(--sleek-text); }

/* ===== HK Register: Why Choose ===== */
.c-hk-why-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}
.c-hk-why-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-hk-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.c-hk-why-inner > .c-home-section-head + .c-hk-why-grid,
.c-hk-how-inner > .c-home-section-head + .c-hk-how-grid {
  margin-top: 0;
}
@media (max-width: 900px) { .c-hk-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .c-hk-why-grid { grid-template-columns: 1fr; } }
.c-hk-why-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.c-hk-why-icon {
  width: 48px;
  height: 48px;
  background: var(--sleek-blue-tint);
  color: var(--sleek-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.c-hk-why-card h4 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--sleek-text);
}
.c-hk-why-card p {
  font-size: 14px;
  color: var(--sleek-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== HK Register: How To ===== */
.c-hk-how-section {
  padding: 80px 24px;
  background: #fff;
}
.c-hk-how-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-hk-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .c-hk-how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .c-hk-how-grid { grid-template-columns: 1fr; } }
.c-hk-how-item {
  padding: 24px;
  background: var(--sleek-bg-alt);
  border-radius: 12px;
  border: 1px solid var(--sleek-border);
}
.c-hk-how-item h4 {
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--sleek-text);
}
.c-hk-how-item p {
  font-size: 14px;
  color: var(--sleek-text-muted);
  margin: 0;
  line-height: 1.6;
}
.c-hk-how-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== HK Register: 公司注册流程（垂直流程图） ===== */
.c-hk-reg-flow-section {
  padding: 64px 24px 72px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.c-hk-reg-flow-inner {
  max-width: 720px;
  margin: 0 auto;
}
.c-hk-reg-flow-inner > .c-home-section-head {
  margin-bottom: 36px;
}
.c-hk-reg-flow {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-hk-reg-flow-item {
  margin: 0;
  padding: 0;
}
.c-hk-reg-flow-step {
  position: relative;
  padding: 20px 24px 20px 56px;
  text-align: center;
  border: 1px solid rgba(0, 97, 255, 0.28);
  border-radius: 10px;
  background: linear-gradient(180deg, #eef6ff 0%, #f8fbff 45%, #fff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 8px rgba(15, 23, 42, 0.06);
}
.c-hk-reg-flow-step-num {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sleek-blue, #0061ff);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.c-hk-reg-flow-step-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--biz-navy-900, #0f172a);
}
.c-hk-reg-flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 0 12px;
}
.c-hk-reg-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sleek-blue, #0061ff);
}
.c-hk-reg-flow-duration {
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .c-hk-reg-flow-step {
    padding: 18px 16px 18px 48px;
    text-align: left;
  }
  .c-hk-reg-flow-step-num {
    left: 12px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .c-hk-reg-flow-step-text {
    font-size: 14px;
    line-height: 1.65;
  }
}
.c-offshore-reg-flow-inner {
  max-width: 840px;
}
.c-hk-reg-flow-fork {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.c-hk-reg-flow-fork-branch {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.c-hk-reg-flow-step--plain {
  padding: 20px 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-hk-reg-flow-fork-branch .c-hk-reg-flow-step-text {
  text-align: center;
}
@media (max-width: 640px) {
  .c-hk-reg-flow-fork {
    grid-template-columns: 1fr;
  }
  .c-hk-reg-flow-step--plain {
    text-align: left;
    justify-content: flex-start;
  }
  .c-hk-reg-flow-fork-branch .c-hk-reg-flow-step-text {
    text-align: left;
  }
}

/* ===== HK Incorporation pricing cards ===== */
.c-hk-inc-section {
  background: transparent;
}
.c-hk-inc-subtitle {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--biz-slate-500, #64748b);
}
.c-reg-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}
.c-reg-plan-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .c-reg-plan-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .c-reg-plan-grid,
  .c-reg-plan-grid--3 {
    grid-template-columns: 1fr;
  }
}
.c-reg-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  background: var(--biz-slate-50, #f8fafc);
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.c-reg-plan:hover {
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  transform: translateY(-4px);
}
.c-reg-plan--featured {
  border: 2px solid var(--biz-amber-600, #d97706);
  box-shadow: 0 4px 6px -1px rgba(217, 119, 6, 0.12);
}
.c-reg-plan-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--biz-amber-600, #d97706);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.c-reg-plan-body {
  flex: 1 1 auto;
}
.c-reg-plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.c-reg-plan-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.c-reg-plan-badge--blue {
  background: #dbeafe;
  color: #1e40af;
}
.c-reg-plan-badge--amber {
  background: #fef3c7;
  color: #92400e;
}
.c-reg-plan-badge--indigo {
  background: #e0e7ff;
  color: #3730a3;
}
.c-reg-plan-time {
  font-size: 12px;
  color: var(--biz-slate-400, #94a3b8);
  white-space: nowrap;
}
.c-reg-plan-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--biz-navy-900, #0f172a);
}
.c-reg-plan-desc {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--biz-slate-500, #64748b);
}
.c-reg-plan-pricing {
  padding: 16px 0;
  margin-bottom: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.c-reg-plan-tier-label {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--biz-slate-500, #64748b);
  line-height: 1.45;
}
.c-reg-plan-tier-label--p {
  margin-top: 8px;
}
.c-reg-plan-tier-price {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.c-reg-plan-tier-price--navy {
  color: var(--biz-navy-900, #0f172a);
}
.c-reg-plan-tier-price--amber {
  color: var(--biz-amber-700, #b45309);
}
.c-reg-plan-specs-wrap {
  padding-top: 16px;
  border-top: 1px solid var(--biz-slate-200, #e2e8f0);
}
.c-reg-plan-specs-title {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--biz-slate-700, #334155);
}
.c-reg-plan-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--biz-slate-600, #475569);
}
.c-reg-plan-spec-item strong {
  font-weight: 700;
  color: var(--biz-slate-800, #1e293b);
}
.c-reg-plan-spec-item--highlight strong {
  color: var(--biz-amber-700, #b45309);
}
.c-reg-plan-cta {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--biz-navy-900, #0f172a);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.c-reg-plan-cta:hover {
  background: #1e293b;
  text-decoration: none;
}
.c-reg-plan-cta--featured {
  background: var(--biz-amber-600, #d97706);
}
.c-reg-plan-cta--featured:hover {
  background: var(--biz-amber-700, #b45309);
}
.c-home-kicker--amber {
  color: var(--biz-amber-700, #b45309);
}
.c-hk-inc-promo {
  margin: 28px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--biz-slate-400, #94a3b8);
}
.c-hk-inc-promo strong {
  color: var(--biz-slate-600, #475569);
  font-weight: 700;
}
.c-hk-inc-disclaimers {
  margin: 20px auto 0;
  padding: 0;
  max-width: 720px;
  list-style: none;
  text-align: center;
}
.c-hk-inc-disclaimers li {
  font-size: 11px;
  color: var(--biz-slate-400, #94a3b8);
  line-height: 1.6;
}
.c-hk-inc-disclaimers li + li {
  margin-top: 4px;
}
.c-hk-inc-addons {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--biz-slate-200, #e2e8f0);
  text-align: center;
}
.c-hk-inc-addons-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--biz-slate-800, #1e293b);
}
.c-hk-inc-addons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-hk-inc-addons-list li {
  font-size: 12px;
  color: var(--biz-slate-600, #475569);
}

/* ===== China Register Page ===== */
.c-china-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.c-china-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(180, 83, 9, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-china-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-china-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}
.c-china-hero-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.c-china-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 20px;
  line-height: 1.6;
}
.c-china-hero-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
.c-china-hero-bullets li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.c-china-hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}
.c-china-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.c-china-hero-trust { font-size: 14px; opacity: 0.9; }

.c-china-types-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #faf5ff 100%);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 97, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #faf5ff 100%);
}
.c-china-types-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-china-types-desc {
  text-align: center;
  color: var(--sleek-text-muted);
  max-width: 640px;
  margin: -8px auto 40px;
  font-size: 17px;
  line-height: 1.7;
}
.c-china-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .c-china-types-grid { grid-template-columns: 1fr; } }
.c-china-type-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid transparent;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-china-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.c-china-type-card--1 {
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.06) 0%, #fff 30%);
}
.c-china-type-card--1::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.c-china-type-card--2 {
  border-color: rgba(0, 97, 255, 0.2);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.04) 0%, #fff 30%);
}
.c-china-type-card--2::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 97, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.c-china-type-icon {
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.c-china-type-card h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--sleek-text);
  position: relative;
  z-index: 1;
}
.c-china-type-card p {
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}
.c-china-type-card .c-btn-primary { margin-top: auto; position: relative; z-index: 1; }

.c-china-cities-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}
.c-china-cities-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-china-cities-desc {
  text-align: center;
  color: var(--sleek-text-muted);
  margin: -8px 0 40px;
  font-size: 17px;
}
.c-china-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) { .c-china-cities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .c-china-cities-grid { grid-template-columns: 1fr; } }
.c-china-city-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--sleek-border);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-china-city-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
.c-china-city-icon {
  display: inline-block;
  font-size: 14px;
  color: var(--sleek-blue);
  font-weight: 600;
  margin-bottom: 12px;
  background: rgba(0, 97, 255, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
}
.c-china-city-card h4 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--sleek-text);
}
.c-china-city-card p {
  font-size: 14px;
  color: var(--sleek-text-muted);
  margin: 0;
  line-height: 1.5;
}

.c-china-why-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}
.c-china-why-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-china-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .c-china-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .c-china-why-grid { grid-template-columns: 1fr; } }
.c-china-why-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.c-china-why-icon {
  width: 48px;
  height: 48px;
  background: var(--sleek-blue-tint);
  color: var(--sleek-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.c-china-why-card h4 { font-size: 18px; margin: 0 0 8px; color: var(--sleek-text); }
.c-china-why-card p { font-size: 14px; color: var(--sleek-text-muted); margin: 0; line-height: 1.6; }

/* ===== Section: 公司注册类型卡片 ===== */
.c-register-types-section {
  padding: 52px 24px 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.c-register-types-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-reg-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 1100px) {
  .c-reg-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .c-reg-type-grid { grid-template-columns: 1fr; }
}
a.c-reg-type-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
  background: var(--biz-slate-50, #f8fafc);
  border-radius: 16px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
a.c-reg-type-card:hover {
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}
.c-reg-type-card-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.c-reg-type-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}
.c-reg-type-card-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--biz-navy-900, #0f172a);
}
.c-reg-type-card-desc {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  color: var(--biz-slate-400, #94a3b8);
}
.c-reg-type-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.c-reg-type-tags li {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--biz-slate-700, #334155);
  background: var(--biz-slate-50, #f8fafc);
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 999px;
}
.c-reg-type-more {
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--biz-slate-700, #334155);
  background: #e2e8f0;
  border-radius: 8px;
  padding: 6px 12px;
  text-align: center;
}
a.c-reg-type-card:hover .c-reg-type-more {
  background: #cbd5e1;
  text-decoration: none;
}

/* ===== Section: 更多服务 ===== */
.c-related-section {
  padding: 52px 24px 56px;
  background: #fff;
  border-top: 1px solid var(--biz-slate-100, #f1f5f9);
}
.c-related-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
@media (min-width: 1100px) {
  .c-related-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .c-related-grid { grid-template-columns: 1fr; }
}
a.c-related-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
  background: var(--biz-slate-50, #f8fafc);
  border-radius: 16px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
a.c-related-card:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
  text-decoration: none;
}
.c-related-card-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.c-related-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}
.c-related-card-body h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--biz-navy-900, #0f172a);
}
.c-related-card-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--biz-slate-500, #64748b);
  flex: 1 1 auto;
}
.c-related-card-more {
  margin-top: auto;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--biz-slate-700, #334155);
  background: #e2e8f0;
  border-radius: 8px;
  text-align: center;
}
a.c-related-card:hover .c-related-card-more {
  background: #cbd5e1;
}
@media (prefers-reduced-motion: reduce) {
  a.c-related-card {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  a.c-related-card:hover {
    transform: none;
  }
}

/* ????????????????????????? */
body.page-template-page-register-hk-php .c-hk-inc-section .c-hk-inc-promo {
  margin-top: 24px;
}
body.page-template-page-register-hk-php .c-hk-inc-section .c-hk-inc-addons {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
}

/* ===== Section: Two-column cards ===== */
.c-stage-section {
  padding: 80px 24px;
  background: #fff;
}
.c-stage-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
  color: var(--sleek-text);
}
.c-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .c-stage-grid { grid-template-columns: 1fr; } }
.c-stage-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-left: 3px solid var(--biz-amber-600, #d97706);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.c-stage-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}
.c-stage-card .c-stage-label {
  font-size: 12px;
  color: var(--biz-amber-700);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
  flex-shrink: 0;
}
.c-stage-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--sleek-text);
  flex-shrink: 0;
}
.c-stage-card p {
  color: var(--sleek-text-muted);
  margin: 0 0 20px;
  font-size: 15px;
  flex: 1 1 auto;
  min-height: 0;
}
.c-stage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
  margin-top: auto;
}
.c-stage-links a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 13px;
  color: var(--biz-slate-700, #334155);
  background: var(--biz-slate-50, #f8fafc);
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.c-stage-links a:hover {
  background: var(--biz-navy-900, #0f172a);
  border-color: var(--biz-navy-900, #0f172a);
  color: #fff;
  text-decoration: none;
}

/* ===== Section: 核心配套服务 ===== */
.c-features-section {
  padding: 80px 24px;
  background: var(--biz-slate-50);
}
.c-features-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .c-features-grid { grid-template-columns: 1fr; } }
.c-feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
a.c-feature-card {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
a.c-feature-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}
a.c-feature-card:focus-visible {
  outline: 2px solid var(--sleek-blue);
  outline-offset: 3px;
}
.c-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--biz-slate-50);
  color: var(--biz-navy);
  border: 1px solid var(--biz-slate-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.c-feature-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-feature-card h4 { margin: 0; font-size: 18px; color: var(--sleek-text); }
a.c-feature-card:hover h4 {
  color: var(--biz-navy);
}
.c-feature-card p { margin: 0; font-size: 14px; color: var(--sleek-text-muted); line-height: 1.65; }
.c-feature-more {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--biz-amber-700);
}
a.c-feature-card:hover .c-feature-more {
  text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
  a.c-feature-card {
    transition: none;
  }
  a.c-feature-card:hover {
    transform: none;
  }
}

.home .c-stage-section {
  padding-bottom: 40px;
}
.home .c-features-section {
  padding-top: 40px;
  padding-bottom: 48px;
}
.home .c-testimonials-section {
  padding-top: 40px;
}

/* ===== Section: 客户评价 ===== */
.c-testimonials-section {
  padding: 80px 24px;
  background: #fff;
}
.c-testimonials-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .c-testimonials-grid { grid-template-columns: 1fr; } }
.c-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: none;
  border: 1px solid var(--biz-slate-200);
  border-left: 3px solid var(--biz-amber-600);
}
.c-testimonial-card p {
  font-size: 15px;
  color: var(--sleek-text);
  margin: 0 0 16px;
  line-height: 1.7;
}
.c-testimonial-name { font-weight: 600; font-size: 15px; }
.c-testimonial-role { font-size: 13px; color: var(--sleek-text-muted); }

/* ===== Section: ???????(Stats) ===== */
.c-stats-section {
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--biz-navy) 0%, var(--biz-navy-mid) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.c-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 45%);
  pointer-events: none;
}
.c-stats-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 32px;
}
@media (max-width: 768px) { .c-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.c-stat-number {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
  color: #f59e0b;
}
.c-stat-label { font-size: 14px; color: #cbd5e1; }

/* ===== Section: ?????===== */
.c-news-section {
  padding: 80px 24px;
  background: var(--biz-slate-50);
}
.c-news-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .c-news-grid { grid-template-columns: 1fr; } }
.c-news-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s;
}
.c-news-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.c-news-date { font-size: 13px; color: var(--sleek-text-muted); margin-bottom: 8px; }
.c-news-card h3 {
  font-size: 17px;
  margin: 0 0 12px;
  line-height: 1.4;
}
.c-news-card h3 a { color: var(--sleek-text); }
.c-news-card h3 a:hover { color: var(--biz-amber-700); text-decoration: none; }
.c-news-card p { font-size: 14px; color: var(--sleek-text-muted); margin: 0 0 12px; line-height: 1.5; }
.c-news-link { font-weight: 600; font-size: 14px; }

/* ===== Section: ?? Pricing ===== */
.c-pricing-section {
  padding: 80px 24px;
  background: var(--biz-slate-50);
}
.c-pricing-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
@media (max-width: 900px) { .c-pricing-grid { grid-template-columns: 1fr; } }
.c-pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(0, 97, 255, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.c-pricing-card-featured {
  border-color: var(--sleek-blue);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}
.c-pricing-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--sleek-blue);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
}
.c-pricing-card h3 {
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--sleek-text);
}
.c-pricing-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--sleek-blue);
  margin-bottom: 20px;
}
.c-pricing-currency { font-size: 20px; }
.c-pricing-card ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
}
.c-pricing-card li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--sleek-text-muted);
}
.c-pricing-card li::before {
  content: "✓";
  color: var(--sleek-blue);
  font-weight: 600;
}
.c-pricing-note { font-size: 13px; color: var(--sleek-text-muted); margin-bottom: 20px; }
/* ??????????Conson ????*/
.c-pricing-disclaimer-wrap {
  margin-top: 32px;
  overflow: hidden;
  padding: 12px 0;
  background: rgba(0, 97, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(0, 97, 255, 0.08);
}
.c-pricing-disclaimer-track {
  display: flex;
  flex-wrap: nowrap;
  animation: c-disclaimer-scroll 60s linear infinite;
  width: max-content;
}
.c-pricing-disclaimer-track:hover {
  animation-play-state: paused;
}
.c-pricing-disclaimer-track span {
  flex-shrink: 0;
  font-size: 13px;
  color: #c53030;
  white-space: nowrap;
  padding: 0 8px;
}
.c-pricing-disclaimer-sep {
  color: #c53030;
  opacity: 0.7;
  font-weight: 600;
}
@keyframes c-disclaimer-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.c-pricing-addons {
  margin-top: 24px;
  padding: 20px;
  background: rgba(0, 97, 255, 0.04);
  border-radius: 12px;
}
.c-pricing-addons h4 { margin: 0 0 12px; font-size: 16px; }
.c-pricing-addons p { margin: 0; font-size: 14px; color: var(--sleek-text-muted); }
.c-pricing-addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.c-pricing-addons-grid span {
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--sleek-blue);
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
}
.c-pricing-subtitle {
  text-align: center;
  color: var(--sleek-text-muted);
  margin: -24px 0 32px;
  font-size: 15px;
}

/* ===== Section: ?? / ?? ===== */
.c-offshore-section, .c-overseas-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #f8fafc 100%);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 97, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #f8fafc 100%);
}
.c-offshore-inner, .c-overseas-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-offshore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .c-offshore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .c-offshore-grid { grid-template-columns: 1fr; } }
.c-offshore-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-offshore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.c-offshore-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sleek-blue);
  color: #fff;
  z-index: 2;
}
.c-offshore-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  opacity: 0.9;
}
.c-offshore-card h3 {
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--sleek-text);
  font-weight: 700;
}
.c-offshore-tag {
  font-size: 13px;
  color: var(--sleek-text-muted);
  margin: 0 0 16px;
  line-height: 1.5;
}
.c-offshore-price {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}
.c-offshore-currency { font-size: 16px; }
.c-offshore-unit { font-size: 14px; font-weight: 500; color: var(--sleek-text-muted); }
.c-offshore-details {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 14px;
  color: var(--sleek-text-muted);
  flex: 1 1 auto;
}
.c-offshore-details li {
  padding: 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.c-offshore-detail-label {
  color: var(--sleek-text);
  font-weight: 500;
  min-width: 0;
}
/* ?????? */
.c-offshore-card--1 {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.05) 0%, #fff 40%);
}
.c-offshore-card--1 .c-offshore-price,
.c-offshore-card--1 .c-offshore-icon { color: #059669; }
.c-offshore-card--1 .c-offshore-badge { background: #059669; }
.c-offshore-card--1::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.c-offshore-card--2 {
  border-color: rgba(0, 97, 255, 0.25);
  background: linear-gradient(145deg, rgba(0, 97, 255, 0.05) 0%, #fff 40%);
}
.c-offshore-card--2 .c-offshore-price,
.c-offshore-card--2 .c-offshore-icon { color: var(--sleek-blue); }
.c-offshore-card--2 .c-offshore-badge { background: var(--sleek-blue); }
.c-offshore-card--2::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -25%;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(0, 97, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.c-offshore-card--3 {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.05) 0%, #fff 40%);
}
.c-offshore-card--3 .c-offshore-price,
.c-offshore-card--3 .c-offshore-icon { color: #d97706; }
.c-offshore-card--3 .c-offshore-badge { background: #d97706; }
.c-offshore-card--3::before {
  content: "";
  position: absolute;
  bottom: -25%;
  right: -25%;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.c-offshore-card--4 {
  border-color: rgba(99, 102, 241, 0.25);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.05) 0%, #fff 40%);
}
.c-offshore-card--4 .c-offshore-price,
.c-offshore-card--4 .c-offshore-icon { color: #4f46e5; }
.c-offshore-card--4 .c-offshore-badge { background: #4f46e5; }
.c-offshore-card--4::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
/* ===== Overseas Register Page ===== */
.c-overseas-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.c-overseas-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(180, 83, 9, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-overseas-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-overseas-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}
.c-overseas-hero-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.c-overseas-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 20px;
  line-height: 1.6;
}
.c-overseas-hero-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
.c-overseas-hero-bullets li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.c-overseas-hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}
.c-overseas-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.c-overseas-hero-trust { font-size: 14px; opacity: 0.9; }

.c-overseas-services-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #f8fafc 100%);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 97, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #f8fafc 100%);
}
.c-overseas-services-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-overseas-services-desc {
  text-align: center;
  color: var(--sleek-text-muted);
  max-width: 600px;
  margin: -8px auto 40px;
  font-size: 17px;
  line-height: 1.7;
}

.c-overseas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) { .c-overseas-grid { grid-template-columns: 1fr; } }
.c-overseas-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-overseas-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.c-overseas-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  opacity: 0.9;
}
.c-overseas-card h3 {
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--sleek-text);
  font-weight: 700;
}
.c-overseas-tag {
  font-size: 13px;
  color: var(--sleek-text-muted);
  margin: 0 0 16px;
  line-height: 1.5;
}
.c-overseas-price {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}
.c-overseas-currency { font-size: 16px; }
.c-overseas-unit { font-size: 14px; font-weight: 500; color: var(--sleek-text-muted); }
.c-overseas-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 14px;
  color: var(--sleek-text-muted);
  flex: 1 1 auto;
}
.c-overseas-features li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.c-overseas-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sleek-blue);
  font-weight: 600;
}
.c-overseas-note {
  font-size: 12px;
  color: var(--sleek-text-muted);
  margin: 0 0 20px;
  line-height: 1.5;
  opacity: 0.9;
}
.c-overseas-desc {
  font-size: 14px;
  color: var(--sleek-text-muted);
  margin: 0 0 24px;
  line-height: 1.6;
  flex: 1;
}
/* ???????? */
.c-overseas-card--1 {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.05) 0%, #fff 40%);
}
.c-overseas-card--1 .c-overseas-price,
.c-overseas-card--1 .c-overseas-icon { color: #059669; }
.c-overseas-card--1::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.c-overseas-card--2 {
  border-color: rgba(0, 97, 255, 0.25);
  background: linear-gradient(145deg, rgba(0, 97, 255, 0.05) 0%, #fff 40%);
}
.c-overseas-card--2 .c-overseas-price,
.c-overseas-card--2 .c-overseas-icon { color: var(--sleek-blue); }
.c-overseas-card--2::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -25%;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(0, 97, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.c-overseas-card--3 {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.05) 0%, #fff 40%);
}
.c-overseas-card--3 .c-overseas-price,
.c-overseas-card--3 .c-overseas-icon { color: #d97706; }
.c-overseas-card--3::before {
  content: "";
  position: absolute;
  bottom: -25%;
  right: -25%;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.c-overseas-card--4 {
  border-color: rgba(99, 102, 241, 0.25);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.05) 0%, #fff 40%);
}
.c-overseas-card--4 .c-overseas-price,
.c-overseas-card--4 .c-overseas-icon { color: #4f46e5; }
.c-overseas-card--4::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.c-overseas-why-section {
  padding: 72px 24px 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}
.c-overseas-why-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-overseas-why-desc {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.c-overseas-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.c-overseas-why-inner > .c-home-section-head + .c-overseas-why-grid {
  margin-top: 40px;
}
.c-overseas-why-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 900px) {
  .c-overseas-why-grid { grid-template-columns: repeat(2, 1fr); }
  .c-overseas-why-grid--3 { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 500px) { .c-overseas-why-grid { grid-template-columns: 1fr; } }
.c-overseas-why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  padding: 28px 24px 24px;
  border-radius: 16px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.c-overseas-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sleek-blue);
}
.c-overseas-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.c-overseas-why-card--emerald::before { background: #059669; }
.c-overseas-why-card--blue::before { background: var(--sleek-blue); }
.c-overseas-why-card--amber::before { background: #d97706; }
.c-overseas-why-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.c-overseas-why-icon {
  width: 52px;
  height: 52px;
  background: var(--sleek-blue-tint);
  color: var(--sleek-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.c-overseas-why-card--emerald .c-overseas-why-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.c-overseas-why-card--amber .c-overseas-why-icon {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}
.c-overseas-why-stat {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--biz-slate-600, #475569);
  background: var(--biz-slate-100, #f1f5f9);
  border-radius: 999px;
  white-space: nowrap;
}
.c-overseas-why-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--sleek-text);
}
.c-overseas-why-text {
  font-size: 14px;
  color: var(--sleek-text-muted);
  margin: 0;
  line-height: 1.65;
  flex: 1 1 auto;
}
.c-overseas-why-card h4 { font-size: 18px; margin: 0 0 8px; color: var(--sleek-text); }
.c-overseas-why-card p { font-size: 14px; color: var(--sleek-text-muted); margin: 0; line-height: 1.6; }

/* ===== Section: FAQ ===== */
.c-faq-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.c-faq-inner { max-width: 900px; margin: 0 auto; }
.c-faq-section--wide .c-faq-inner { max-width: var(--c-layout-max); }
.c-faq-intro {
  text-align: center;
  color: var(--sleek-text-muted);
  font-size: 17px;
  margin: -8px auto 32px;
  max-width: 640px;
  line-height: 1.6;
}
/* FAQ ????Sleek ????????*/
.c-faq-accordion {
  margin-top: 32px;
  border: 1px solid var(--sleek-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.c-faq-details {
  border-bottom: 1px solid var(--sleek-border);
}
.c-faq-details:last-child { border-bottom: none; }
.c-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--sleek-text);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}
.c-faq-summary::-webkit-details-marker { display: none; }
.c-faq-summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--sleek-blue);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.c-faq-details[open] .c-faq-summary::after {
  content: "✓";
  transform: none;
}
.c-faq-details[open] .c-faq-summary {
  color: var(--sleek-blue);
}
.c-faq-summary:hover { background: rgba(0, 97, 255, 0.03); }
.c-faq-content {
  padding: 0 24px 20px;
}
.c-faq-content p {
  margin: 0;
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.75;
  padding-top: 4px;
}
/* ????grid ???????? */
.c-faq-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.c-faq-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .c-faq-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .c-faq-grid-3 { grid-template-columns: 1fr; } }
.c-faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--sleek-border);
}
.c-faq-item h4 { font-size: 18px; margin: 0 0 12px; color: var(--sleek-text); }
.c-faq-item p { margin: 0; font-size: 15px; color: var(--sleek-text-muted); line-height: 1.7; }

/* ===== Trademark Page ===== */
.c-trademark-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.c-trademark-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(147, 51, 234, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-trademark-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-trademark-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}
.c-trademark-hero-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.c-trademark-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 12px;
  line-height: 1.6;
}
.c-trademark-hero-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
.c-trademark-hero-bullets li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.c-trademark-hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}
.c-trademark-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.c-trademark-hero-trust { font-size: 14px; opacity: 0.9; }

.c-trademark-benefits-section {
  padding: 44px 24px 48px;
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 30%, #f8fafc 100%);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(147, 51, 234, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #faf5ff 0%, #ffffff 30%, #f8fafc 100%);
}
.c-trademark-benefits-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-trademark-benefits-section .c-section-title {
  margin-bottom: 18px;
}
.c-trademark-benefits-desc {
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.6;
  margin: 0 0 14px;
}
.c-trademark-benefits-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 8px;
}
.c-trademark-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-trademark-benefits-list li {
  padding: 4px 0;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--sleek-text-muted);
  line-height: 1.5;
}
.c-trademark-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9333ea;
  font-weight: 700;
}

.c-trademark-hk-section {
  padding: 48px 24px;
  background: #fff;
}
.c-trademark-hk-inner { max-width: var(--c-layout-max); margin: 0 auto; text-align: center; }
.c-trademark-hk-section .c-section-title {
  margin-bottom: 20px;
}
.c-trademark-hk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 0;
  text-align: left;
}
@media (max-width: 900px) { .c-trademark-hk-grid { grid-template-columns: 1fr; } }
.c-trademark-hk-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 20px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.c-trademark-hk-card--fee {
  border-color: rgba(147, 51, 234, 0.3);
  background: linear-gradient(145deg, rgba(147, 51, 234, 0.06) 0%, #fff 40%);
}
.c-trademark-hk-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 10px;
}
.c-trademark-hk-price {
  font-size: 24px;
  font-weight: 800;
  color: #9333ea;
  margin-bottom: 6px;
}
.c-trademark-hk-note {
  font-size: 13px;
  color: var(--sleek-text-muted);
  margin: 0 0 8px;
}
.c-trademark-hk-breakdown,
.c-trademark-hk-steps,
.c-trademark-hk-docs {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--sleek-text-muted);
  line-height: 1.55;
}
.c-trademark-hk-breakdown li { padding: 2px 0; }
.c-trademark-hk-steps {
  counter-reset: tm-step;
}
.c-trademark-hk-steps li {
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
  counter-increment: tm-step;
}
.c-trademark-hk-steps li::before {
  content: counter(tm-step);
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #9333ea;
}
.c-trademark-hk-docs li { padding: 4px 0; padding-left: 18px; position: relative; }
.c-trademark-hk-docs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9333ea;
}
.c-trademark-process-section {
  padding: 52px 24px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 40%, #faf5ff 100%);
}
.c-trademark-process-inner { max-width: 900px; margin: 0 auto; }
.c-trademark-process-section .c-section-title {
  margin-bottom: 22px;
}
.c-trademark-process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 22px 0 18px;
}
.c-trademark-process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--sleek-border);
}
.c-trademark-process-step:last-child { border-bottom: none; }
.c-trademark-process-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-trademark-process-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 3px;
  line-height: 1.35;
}
.c-trademark-process-time {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #9333ea;
  margin-bottom: 3px;
}
.c-trademark-process-content p {
  margin: 0;
  font-size: 13px;
  color: var(--sleek-text-muted);
  line-height: 1.45;
}
.c-trademark-process-note {
  font-size: 12px;
  color: var(--sleek-text-muted);
  line-height: 1.55;
  padding: 14px 16px;
  background: rgba(147, 51, 234, 0.05);
  border-radius: 10px;
  border-left: 3px solid #9333ea;
}

.c-trademark-regions-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 30%, #f0f9ff 100%);
  background-image:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(147, 51, 234, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #faf5ff 0%, #ffffff 30%, #f0f9ff 100%);
}
.c-trademark-regions-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-trademark-regions-desc {
  text-align: center;
  color: var(--sleek-text-muted);
  max-width: 600px;
  margin: -8px auto 48px;
  font-size: 17px;
  line-height: 1.7;
}
.c-trademark-regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.c-trademark-region-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid transparent;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 300px;
}
.c-trademark-region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.c-trademark-region-header {
  padding: 24px 24px 16px;
  text-align: center;
  border-bottom: 1px solid var(--sleek-border);
  min-height: 108px;
  flex-shrink: 0;
}
.c-trademark-region-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.c-trademark-region-price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.c-trademark-region-price-label {
  display: block;
  font-size: 12px;
  color: var(--sleek-text-muted);
  font-weight: 500;
  margin-top: 4px;
}
.c-trademark-region-dl {
  flex: 1 1 auto;
  margin: 0;
  padding: 20px 24px;
  font-size: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  min-height: 88px;
}
.c-trademark-region-dl dt {
  color: var(--sleek-text-muted);
  font-weight: 500;
  font-size: 13px;
}
.c-trademark-region-dl dd { margin: 0; color: var(--sleek-text); font-weight: 500; }
.c-trademark-region-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  margin: 0 24px 24px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.c-trademark-region-btn:hover { opacity: 0.95; transform: scale(1.02); text-decoration: none; }
/* ???? */
.c-trademark-region-card--1 {
  border-color: rgba(147, 51, 234, 0.25);
  background: linear-gradient(145deg, rgba(147, 51, 234, 0.04) 0%, #fff 35%);
}
.c-trademark-region-card--1 .c-trademark-region-price { color: #7c3aed; }
.c-trademark-region-card--2 {
  border-color: rgba(0, 97, 255, 0.2);
  background: linear-gradient(145deg, rgba(0, 97, 255, 0.04) 0%, #fff 35%);
}
.c-trademark-region-card--2 .c-trademark-region-price { color: var(--sleek-blue); }
.c-trademark-region-card--3 {
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.04) 0%, #fff 35%);
}
.c-trademark-region-card--3 .c-trademark-region-price { color: #059669; }
.c-trademark-region-card--4 {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.04) 0%, #fff 35%);
}
.c-trademark-region-card--4 .c-trademark-region-price { color: #d97706; }
.c-trademark-regions-footnote {
  font-size: 13px;
  color: var(--sleek-text-muted);
  line-height: 1.75;
  margin: 48px 0 0;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.c-trademark-why-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 40%, #f0f9ff 100%);
}
.c-trademark-why-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-trademark-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .c-trademark-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .c-trademark-why-grid { grid-template-columns: 1fr; } }
.c-trademark-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.c-trademark-why-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.c-trademark-why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 10px;
}
.c-trademark-why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--sleek-text-muted);
  line-height: 1.6;
}

.c-trademark-faq-section {
  padding: 80px 24px;
  background: #fff;
}
.c-trademark-faq-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-trademark-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 700px) { .c-trademark-faq-grid { grid-template-columns: 1fr; } }
.c-trademark-faq-item {
  background: #f8fafc;
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid var(--sleek-border);
}
.c-trademark-faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 12px;
}
.c-trademark-faq-item p,
.c-trademark-faq-item ul { margin: 0; font-size: 14px; color: var(--sleek-text-muted); line-height: 1.7; }
.c-trademark-faq-item ul { padding-left: 20px; }

/* ===== Secretary Page ===== */
.c-secretary-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.c-secretary-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-secretary-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-secretary-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}
.c-secretary-hero-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.c-secretary-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 12px;
  line-height: 1.6;
}
.c-secretary-hero-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
.c-secretary-hero-bullets li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.c-secretary-hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}
.c-secretary-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.c-secretary-hero-trust { font-size: 14px; opacity: 0.9; }

.c-secretary-duties-section {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background-color: #e8ecf4;
  /* ?? slate + ????????????banner ????*/
  background-image:
    radial-gradient(ellipse 88% 72% at 14% 10%, rgba(0, 97, 255, 0.11) 0%, transparent 56%),
    radial-gradient(ellipse 62% 52% at 94% 14%, rgba(99, 102, 241, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse 52% 48% at 72% 90%, rgba(15, 23, 42, 0.04) 0%, transparent 46%),
    radial-gradient(ellipse 42% 38% at 6% 78%, rgba(30, 58, 138, 0.05) 0%, transparent 44%),
    linear-gradient(168deg, #e4e9f2 0%, #f0f3fa 24%, #fafbfe 52%, #eef1f8 78%, #e8ecf4 100%);
}
.c-secretary-duties-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 14px,
    rgba(0, 97, 255, 0.028) 14px,
    rgba(0, 97, 255, 0.028) 15px
  );
  pointer-events: none;
  z-index: 0;
}
.c-secretary-duties-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-secretary-duties-desc {
  font-size: 16px;
  color: var(--sleek-text-muted);
  line-height: 1.75;
  margin: 0 0 24px;
}
.c-secretary-duties-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-secretary-duties-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--sleek-text);
  line-height: 1.6;
}
.c-secretary-duties-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sleek-blue);
  font-weight: 700;
}

.c-secretary-plans-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #eef1f8 0%, #ffffff 45%, #f5f7fc 100%);
}
.c-secretary-plans-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-secretary-plans-desc {
  text-align: center;
  color: var(--sleek-text-muted);
  max-width: 560px;
  margin: -8px auto 48px;
  font-size: 17px;
  line-height: 1.7;
}
.c-secretary-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 800px) { .c-secretary-plans-grid { grid-template-columns: 1fr; } }
.c-secretary-plan-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px 24px;
  border: 2px solid var(--sleek-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-secretary-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
}
.c-secretary-plan-card--basic {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.04) 0%, #fff 40%);
}
.c-secretary-plan-card--enterprise {
  border-color: var(--sleek-blue);
  background: linear-gradient(145deg, rgba(0, 97, 255, 0.05) 0%, #fff 40%);
}
.c-secretary-plan-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--sleek-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.c-secretary-plan-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 10px;
  padding-right: 72px;
}
.c-secretary-plan-card--basic h3 { padding-right: 0; }
.c-secretary-plan-price {
  margin-bottom: 14px;
}
.c-secretary-plan-currency { font-size: 15px; font-weight: 600; }
.c-secretary-plan-amount {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.c-secretary-plan-card--basic .c-secretary-plan-amount { color: #16a34a; }
.c-secretary-plan-card--enterprise .c-secretary-plan-amount { color: var(--sleek-blue); }
.c-secretary-plan-unit { font-size: 14px; font-weight: 500; color: var(--sleek-text-muted); margin-left: 4px; }
.c-secretary-plan-includes {
  font-size: 13px;
  color: var(--sleek-text-muted);
  margin: 0 0 8px;
}
.c-secretary-plan-features {
  flex: 1;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 13px;
  color: var(--sleek-text-muted);
  line-height: 1.5;
}
.c-secretary-plan-features li {
  padding: 3px 0;
  padding-left: 20px;
  position: relative;
}
.c-secretary-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.c-secretary-plan-card--basic .c-secretary-plan-features li::before { color: #22c55e; }
.c-secretary-plan-card--enterprise .c-secretary-plan-features li::before { color: var(--sleek-blue); }
.c-secretary-plan-btn { margin-top: auto; align-self: flex-start; padding: 10px 20px; font-size: 15px; }
.c-secretary-plans-note {
  font-size: 13px;
  color: var(--sleek-text-muted);
  line-height: 1.65;
  padding: 16px 20px;
  background: rgba(0, 97, 255, 0.04);
  border-radius: 12px;
  border-left: 4px solid var(--sleek-blue);
}

.c-secretary-other-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 50%, #ebeef5 100%);
}
.c-secretary-other-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-secretary-other-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.c-secretary-other-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.c-secretary-other-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-secretary-other-card--featured {
  width: 100%;
  max-width: 720px;
  text-align: left;
}
.c-secretary-other-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.c-secretary-other-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 12px;
}
.c-secretary-other-price {
  font-size: 20px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 8px;
}
.c-secretary-other-card p {
  font-size: 14px;
  color: var(--sleek-text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.c-secretary-other-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--sleek-blue);
}
.c-secretary-other-link:hover { color: var(--sleek-blue-dark); text-decoration: none; }

/* ?????????????????????????? */
.c-secretary-other-compact {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  padding: 20px 22px 16px;
}
.c-secretary-other-compact-lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sleek-text-muted);
}
.c-secretary-other-compact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
}
@media (max-width: 640px) {
  .c-secretary-other-compact-list {
    grid-template-columns: 1fr;
  }
}
.c-secretary-other-compact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f5f7fc 0%, #eef1f8 100%);
  border: 1px solid rgba(0, 97, 255, 0.14);
  font-size: 14px;
  font-weight: 600;
  color: var(--sleek-text);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.c-secretary-other-compact-link:hover {
  background: #e8eef9;
  border-color: rgba(0, 97, 255, 0.32);
  box-shadow: 0 2px 12px rgba(0, 97, 255, 0.1);
  text-decoration: none;
}
.c-secretary-other-compact-name {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
.c-secretary-other-compact-cta {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--sleek-blue);
}
.c-secretary-other-compact-link:hover .c-secretary-other-compact-cta {
  color: var(--sleek-blue-dark);
}

.c-secretary-value-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f4fb 100%);
}
.c-secretary-value-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-secretary-value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 900px) { .c-secretary-value-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .c-secretary-value-grid { grid-template-columns: repeat(2, 1fr); } }
.c-secretary-value-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 20px 16px;
  background: #eef2f8;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sleek-text);
  text-align: center;
  border: 1px solid var(--sleek-border);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.c-secretary-value-card:hover {
  background: var(--sleek-blue);
  color: #fff !important;
  border-color: var(--sleek-blue);
  text-decoration: none;
}

.c-secretary-faq-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #e8eef8 0%, #f8f9fd 42%, #ffffff 100%);
}
.c-secretary-faq-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-secretary-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 700px) { .c-secretary-faq-grid { grid-template-columns: 1fr; } }
.c-secretary-faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.c-secretary-faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 12px;
}
.c-secretary-faq-item p { margin: 0; font-size: 14px; color: var(--sleek-text-muted); line-height: 1.7; }

.c-secretary-scr-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f4f6fb 0%, #fafbfd 100%);
}
.c-secretary-scr-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-secretary-scr-content {
  margin-top: 24px;
  padding: 28px 32px;
  background: #fefce8;
  border-radius: 16px;
  border-left: 4px solid #eab308;
}
.c-secretary-scr-content p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.75;
}
.c-secretary-scr-content p:last-child { margin-bottom: 0; }

/* ?????????????? */
body.page-template-page-secretary-php .c-secretary-duties-section,
body.page-template-page-secretary-php .c-secretary-plans-section,
body.page-template-page-secretary-php .c-secretary-other-section,
body.page-template-page-secretary-php .c-secretary-value-section,
body.page-template-page-secretary-php .c-secretary-faq-section,
body.page-template-page-secretary-php .c-secretary-scr-section {
  padding-top: 44px;
  padding-bottom: 44px;
}
body.page-template-page-secretary-php .c-cta-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
body.page-template-page-secretary-php .c-section-title {
  margin-bottom: 26px;
}
body.page-template-page-secretary-php .c-secretary-plans-desc {
  margin-bottom: 28px;
  font-size: 16px;
}
body.page-template-page-secretary-php .c-secretary-plans-grid {
  gap: 20px;
  margin-bottom: 20px;
}
body.page-template-page-secretary-php .c-secretary-other-layout {
  margin-top: 28px;
  gap: 22px;
}
body.page-template-page-secretary-php .c-secretary-value-grid {
  margin-top: 28px;
}
body.page-template-page-secretary-php .c-secretary-faq-grid {
  margin-top: 28px;
  gap: 18px;
}
body.page-template-page-secretary-php .c-secretary-faq-item {
  padding: 18px 18px;
}
body.page-template-page-secretary-php .c-secretary-scr-content {
  margin-top: 18px;
  padding: 20px 22px;
}
body.page-template-page-secretary-php .c-cta-section h2 {
  font-size: 24px;
}
body.page-template-page-secretary-php .c-cta-section p {
  margin-bottom: 18px;
}

/* ===== Accounting Page ===== */
body.page-template-page-accounting-php,
body.page-template-page-accounting-php main {
  background-color: #f8fafc;
}

.c-accounting-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.c-accounting-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-accounting-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-accounting-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}
.c-accounting-hero-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.c-accounting-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 12px;
  line-height: 1.6;
}
.c-accounting-hero-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
.c-accounting-hero-bullets li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.c-accounting-hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #facc15;
  font-weight: 700;
}
.c-accounting-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.c-accounting-hero-trust { font-size: 14px; opacity: 0.9; }

/* ???? ????????banner ???? */
.home .c-hero-slides {
  min-height: var(--c-banner-sync-min-h);
}
.home .c-hero-slide {
  padding: var(--c-banner-sync-pt) var(--c-banner-sync-px) var(--c-banner-sync-pb);
}
.home .c-hero-dots {
  bottom: 20px;
}

/* ???????????????????????????????????????????????? */
body.page-template-page-service-groups-php .c-page-hero,
body.page-template-page-register-offshore-php .c-page-hero,
.c-hk-hero,
.c-china-hero,
.c-overseas-hero,
.c-trademark-hero,
.c-secretary-hero,
.c-accounting-hero {
  min-height: var(--c-banner-sync-min-h);
  padding: var(--c-banner-sync-pt) var(--c-banner-sync-px) var(--c-banner-sync-pb);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body.page-template-page-service-groups-php .c-page-hero-inner,
body.page-template-page-register-offshore-php .c-page-hero-inner,
.c-hk-hero-inner,
.c-china-hero-inner,
.c-overseas-hero-inner,
.c-trademark-hero-inner,
.c-secretary-hero-inner,
.c-accounting-hero-inner {
  width: 100%;
  max-width: var(--c-layout-max);
}

body.page-template-page-service-groups-php .c-page-hero-badge,
body.page-template-page-register-offshore-php .c-page-hero-badge,
.c-hk-hero-badge,
.c-china-hero-badge,
.c-overseas-hero-badge,
.c-trademark-hero-badge,
.c-secretary-hero-badge,
.c-accounting-hero-badge {
  margin-bottom: 10px;
}

body.page-template-page-service-groups-php .c-page-hero-title,
body.page-template-page-register-offshore-php .c-page-hero-title,
.c-hk-hero-title,
.c-china-hero-title,
.c-overseas-hero-title,
.c-trademark-hero-title,
.c-secretary-hero-title,
.c-accounting-hero-title {
  font-size: clamp(24px, 3.6vw, 38px);
  margin: 0 0 8px;
}

body.page-template-page-service-groups-php .c-page-hero-sub,
body.page-template-page-service-groups-php .c-page-hero-sub2,
body.page-template-page-register-offshore-php .c-page-hero-sub,
.c-hk-hero-price,
.c-china-hero-sub,
.c-overseas-hero-sub,
.c-trademark-hero-inner > .c-trademark-hero-sub,
.c-secretary-hero-sub,
.c-accounting-hero-inner > .c-accounting-hero-sub {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 8px;
}

body.page-template-page-service-groups-php .c-page-hero-cta,
body.page-template-page-register-offshore-php .c-page-hero-cta,
.c-hk-hero-cta,
.c-china-hero-cta,
.c-overseas-hero-cta,
.c-trademark-hero-cta,
.c-secretary-hero-cta,
.c-accounting-hero-cta {
  margin-bottom: 10px;
  gap: 10px;
}

.c-hk-hero-bullets,
.c-china-hero-bullets,
.c-overseas-hero-bullets,
.c-trademark-hero-bullets,
.c-secretary-hero-bullets,
.c-accounting-hero-bullets {
  margin: 0 0 10px;
  font-size: 14px;
}

.c-hk-hero-bullets li,
.c-china-hero-bullets li,
.c-overseas-hero-bullets li,
.c-trademark-hero-bullets li,
.c-secretary-hero-bullets li,
.c-accounting-hero-bullets li {
  padding-top: 3px;
  padding-bottom: 3px;
}

body.page-template-page-service-groups-php .c-page-hero-trust,
.c-hk-hero-trust,
.c-china-hero-trust,
.c-overseas-hero-trust,
.c-trademark-hero-trust,
.c-secretary-hero-trust,
.c-accounting-hero-trust {
  margin: 0;
  font-size: 13px;
}

body.page-template-page-service-groups-php .c-page-hero .c-btn-primary,
body.page-template-page-service-groups-php .c-page-hero .c-btn-secondary,
body.page-template-page-register-offshore-php .c-page-hero .c-btn-primary,
body.page-template-page-register-offshore-php .c-page-hero .c-btn-secondary,
.c-hk-hero .c-btn-primary,
.c-hk-hero .c-btn-secondary,
.c-china-hero .c-btn-primary,
.c-china-hero .c-btn-secondary,
.c-overseas-hero .c-btn-primary,
.c-overseas-hero .c-btn-secondary,
.c-trademark-hero .c-btn-primary,
.c-trademark-hero .c-btn-secondary,
.c-secretary-hero .c-btn-primary,
.c-secretary-hero .c-btn-secondary,
.c-accounting-hero .c-btn-primary,
.c-accounting-hero .c-btn-secondary {
  padding: 10px 20px;
  font-size: 15px;
}

@media (min-width: 768px) {
  body.page-template-page-service-groups-php .c-page-hero-sub,
  body.page-template-page-service-groups-php .c-page-hero-sub2,
  body.page-template-page-register-offshore-php .c-page-hero-sub,
  .c-trademark-hero-inner > .c-trademark-hero-sub,
  .c-accounting-hero-inner > .c-accounting-hero-sub,
  .c-overseas-hero-sub {
    column-count: 2;
    column-gap: 28px;
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (min-width: 640px) {
  .c-hk-hero-bullets,
  .c-china-hero-bullets,
  .c-overseas-hero-bullets,
  .c-trademark-hero-bullets,
  .c-secretary-hero-bullets,
  .c-accounting-hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 20px;
  }
  .c-hk-hero-bullets li,
  .c-china-hero-bullets li,
  .c-overseas-hero-bullets li,
  .c-trademark-hero-bullets li,
  .c-secretary-hero-bullets li,
  .c-accounting-hero-bullets li {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.c-accounting-tips-section {
  padding: 60px 24px;
  position: relative;
  background: transparent;
}
.c-accounting-tips-inner { max-width: var(--c-layout-max); margin: 0 auto; position: relative; }
.c-accounting-tips-section .c-section-title {
  margin-bottom: 8px;
}
.c-accounting-tips-section .c-section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #ca8a04, #fbbf24, #fde047);
}
.c-accounting-tips-desc {
  font-size: 16px;
  color: var(--sleek-text);
  line-height: 1.75;
  margin: 28px 0 0;
  padding: 26px 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--sleek-border);
  border-left: 4px solid #eab308;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.c-accounting-services-section {
  padding: 80px 24px;
  position: relative;
  background: transparent;
}
.c-accounting-services-inner { max-width: var(--c-layout-max); margin: 0 auto; position: relative; }
.c-accounting-services-section .c-section-title {
  margin-bottom: 8px;
}
.c-accounting-services-section .c-section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sleek-blue), #60a5fa);
}
.c-accounting-services-list {
  list-style: none;
  margin: 28px 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.c-accounting-services-list li {
  margin: 0;
  padding: 18px 18px 18px 52px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--sleek-text);
  line-height: 1.5;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.c-accounting-services-list li:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}
.c-accounting-services-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--sleek-blue);
  font-weight: 800;
  background: linear-gradient(180deg, rgba(0, 97, 255, 0.1) 0%, rgba(96, 165, 250, 0.08) 100%);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
}
@media (prefers-reduced-motion: reduce) {
  .c-accounting-services-list li,
  .c-accounting-services-list li:hover {
    transition: none;
    transform: none;
  }
}
.c-accounting-services-note {
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.7;
  margin: 0;
  padding: 20px 22px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--sleek-border);
  border-left: 4px solid var(--sleek-blue);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.c-accounting-tax-section {
  padding: 80px 24px;
  background: transparent;
}
.c-accounting-tax-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-accounting-tax-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 800px) { .c-accounting-tax-grid { grid-template-columns: 1fr; } }
.c-accounting-tax-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.c-accounting-tax-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 12px;
}
.c-accounting-tax-card p { margin: 0; font-size: 15px; color: var(--sleek-text-muted); line-height: 1.6; }

.c-accounting-profits-section {
  padding: 80px 24px;
  background: transparent;
}
.c-accounting-profits-inner { max-width: 900px; margin: 0 auto; }
.c-accounting-profits-intro {
  font-size: 17px;
  color: var(--sleek-text-muted);
  margin: 24px 0;
}
.c-accounting-profits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .c-accounting-profits-grid { grid-template-columns: 1fr; } }
.c-accounting-profits-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.c-accounting-profits-card--highlight {
  border-color: rgba(234, 179, 8, 0.35);
  background: #fff;
  box-shadow: 0 2px 12px rgba(234, 179, 8, 0.08);
}
.c-accounting-profits-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 12px;
}
.c-accounting-profits-card p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.65;
}
.c-accounting-profits-card p:last-child { margin-bottom: 0; }

.c-accounting-salary-section {
  padding: 80px 24px;
  background: transparent;
}
.c-accounting-salary-inner { max-width: 900px; margin: 0 auto; }
.c-accounting-salary-intro {
  font-size: 16px;
  color: var(--sleek-text-muted);
  margin: 24px 0 32px;
  line-height: 1.7;
}
.c-accounting-salary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .c-accounting-salary-grid { grid-template-columns: 1fr; } }
.c-accounting-salary-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.c-accounting-salary-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 0 0 12px;
}
.c-accounting-salary-card p { margin: 0 0 12px; font-size: 15px; color: var(--sleek-text-muted); line-height: 1.6; }
.c-accounting-salary-table-wrap {
  overflow-x: auto;
  margin: 12px 0;
}
.c-accounting-salary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.c-accounting-salary-table th,
.c-accounting-salary-table td {
  padding: 10px 14px;
  border: 1px solid var(--sleek-border);
  text-align: left;
}
.c-accounting-salary-table th {
  background: #f8fafc;
  font-weight: 600;
  color: var(--sleek-text);
}
.c-accounting-salary-note {
  font-size: 13px !important;
  color: var(--sleek-text-muted) !important;
  margin-top: 8px !important;
}
.c-accounting-salary-extras {
  margin-top: 40px;
  padding: 32px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--sleek-border);
}
.c-accounting-salary-extras h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 24px 0 8px;
}
.c-accounting-salary-extras h4:first-child { margin-top: 0; }
.c-accounting-salary-extras p { margin: 0 0 16px; font-size: 15px; color: var(--sleek-text-muted); line-height: 1.65; }
.c-accounting-salary-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-accounting-salary-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.6;
}
.c-accounting-salary-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ca8a04;
  font-weight: 700;
  font-size: 16px;
}
.c-accounting-salary-wide {
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--sleek-border);
  border-left: 4px solid #ca8a04;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.c-accounting-property-section {
  padding: 80px 24px;
  background: transparent;
}
.c-accounting-property-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-accounting-property-content {
  margin-top: 24px;
  padding: 32px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.c-accounting-property-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sleek-text);
  margin: 24px 0 8px;
}
.c-accounting-property-content h4:first-child { margin-top: 0; }
.c-accounting-property-content p { margin: 0 0 16px; font-size: 15px; color: var(--sleek-text-muted); line-height: 1.65; }
.c-accounting-property-content p:last-child { margin-bottom: 0; }

.c-accounting-process-section {
  padding: 80px 24px;
  background: transparent;
}
.c-accounting-process-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-accounting-process-flow {
  margin: 40px 0 32px;
}
.c-accounting-process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px dashed var(--sleek-border);
}
.c-accounting-process-step:last-child { border-bottom: none; }
.c-accounting-process-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ca8a04, #eab308);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-accounting-process-content {
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.65;
}
.c-accounting-process-cta { display: inline-block; margin-top: 8px; }

.c-accounting-faq-section {
  padding: 80px 24px;
  background: transparent;
}
.c-accounting-faq-inner { max-width: 900px; margin: 0 auto; }
.c-accounting-faq-list {
  margin-top: 40px;
}
.c-accounting-faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.c-accounting-faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--sleek-text);
  cursor: pointer;
  list-style: none;
}
.c-accounting-faq-item summary::-webkit-details-marker { display: none; }
.c-accounting-faq-item summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  color: #ca8a04;
}
.c-accounting-faq-item[open] summary::after { content: "✓"; }
.c-accounting-faq-item p {
  margin: 0;
  padding: 0 24px 24px 24px;
  font-size: 15px;
  color: var(--sleek-text-muted);
  line-height: 1.7;
}

.c-accounting-news-section {
  padding: 80px 24px;
  background: transparent;
}
.c-accounting-news-inner { max-width: var(--c-layout-max); margin: 0 auto; }
.c-accounting-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .c-accounting-news-grid { grid-template-columns: 1fr; } }
.c-accounting-news-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--sleek-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.c-accounting-news-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.c-accounting-news-date {
  font-size: 13px;
  color: #ca8a04;
  font-weight: 600;
  margin-bottom: 8px;
}
.c-accounting-news-card h3 {
  font-size: 17px;
  margin: 0 0 12px;
  line-height: 1.4;
}
.c-accounting-news-card h3 a { color: var(--sleek-text); }
.c-accounting-news-card h3 a:hover { color: #ca8a04; text-decoration: none; }
.c-accounting-news-card p {
  font-size: 14px;
  color: var(--sleek-text-muted);
  margin: 0 0 12px;
  line-height: 1.55;
}
.c-accounting-news-link {
  font-weight: 600;
  font-size: 14px;
  color: #ca8a04;
}
.c-accounting-news-link:hover { color: #a16207; text-decoration: none; }
.c-accounting-news-more {
  text-align: center;
  margin: 32px 0 0;
}
.c-accounting-news-empty {
  text-align: center;
  font-size: 15px;
  color: var(--sleek-text-muted);
  margin: 40px 0 0;
}

/* ???????????????????? banner ????????padding??*/
body.page-template-page-accounting-php .c-accounting-hero {
  padding: 40px 24px 48px !important;
  min-height: 260px;
}
body.page-template-page-accounting-php .c-accounting-tips-section {
  padding: 40px 24px;
}
body.page-template-page-accounting-php .c-accounting-services-section,
body.page-template-page-accounting-php .c-accounting-tax-section,
body.page-template-page-accounting-php .c-accounting-profits-section,
body.page-template-page-accounting-php .c-accounting-salary-section,
body.page-template-page-accounting-php .c-accounting-property-section,
body.page-template-page-accounting-php .c-accounting-process-section,
body.page-template-page-accounting-php .c-accounting-faq-section,
body.page-template-page-accounting-php .c-accounting-news-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
body.page-template-page-accounting-php .c-section-title {
  margin-bottom: 18px;
}
body.page-template-page-accounting-php .c-accounting-tips-section .c-section-title::after,
body.page-template-page-accounting-php .c-accounting-services-section .c-section-title::after {
  margin-top: 12px;
}
body.page-template-page-accounting-php .c-accounting-tips-desc {
  margin-top: 14px;
  padding: 20px 22px;
}
body.page-template-page-accounting-php .c-accounting-services-list {
  margin: 14px 0 14px;
}
body.page-template-page-accounting-php .c-accounting-services-note {
  padding: 16px 18px;
}
body.page-template-page-accounting-php .c-accounting-tax-grid {
  margin-top: 20px;
  gap: 18px;
}
body.page-template-page-accounting-php .c-accounting-profits-intro {
  margin: 14px 0;
}
body.page-template-page-accounting-php .c-accounting-profits-grid {
  gap: 18px;
}
body.page-template-page-accounting-php .c-accounting-salary-intro {
  margin: 14px 0 20px;
}
body.page-template-page-accounting-php .c-accounting-salary-grid {
  gap: 18px;
}
body.page-template-page-accounting-php .c-accounting-salary-extras {
  margin-top: 26px;
  padding: 22px 22px;
}
body.page-template-page-accounting-php .c-accounting-property-content {
  margin-top: 16px;
  padding: 22px 22px;
}
body.page-template-page-accounting-php .c-accounting-process-flow {
  margin: 20px 0 20px;
}
body.page-template-page-accounting-php .c-accounting-process-step {
  padding: 14px 0;
  gap: 16px;
}
body.page-template-page-accounting-php .c-accounting-faq-list {
  margin-top: 20px;
}
body.page-template-page-accounting-php .c-accounting-faq-item {
  margin-bottom: 10px;
}
body.page-template-page-accounting-php .c-accounting-faq-item summary {
  padding: 16px 20px;
}
body.page-template-page-accounting-php .c-accounting-faq-item p {
  padding: 0 20px 18px 20px;
}
body.page-template-page-accounting-php .c-accounting-news-grid {
  margin-top: 20px;
  gap: 18px;
}
body.page-template-page-accounting-php .c-accounting-news-more {
  margin: 22px 0 0;
}
body.page-template-page-accounting-php .c-accounting-news-empty {
  margin: 24px 0 0;
}
body.page-template-page-accounting-php .c-cta-section {
  padding: 44px 24px;
}

/* ===== 港信信誉承诺（全站页脚前模块） ===== */
.c-promise-section {
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  color: #fff;
  background: #0f172a;
}
.c-promise-bg {
  position: absolute;
  inset: 0;
  background: var(--c-promise-bg-image, url("/wp-content/uploads/conson2026-site-images/bannerpromise.jpg")) center / cover no-repeat;
  opacity: 0.1;
}
.c-promise-inner {
  position: relative;
  z-index: 1;
  max-width: var(--c-shell-max);
  margin: 0 auto;
}
.c-promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .c-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }
}
.c-promise-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-promise-kicker {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
}
.c-promise-title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}
.c-promise-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #94a3b8;
}
.c-promise-features {
  display: grid;
  gap: 16px;
}
.c-promise-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.c-promise-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 6px;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 8px;
}
.c-promise-feature-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
}
.c-promise-feature-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #94a3b8;
}
.c-promise-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 520px) {
  .c-promise-cards {
    grid-template-columns: 1fr;
  }
}
.c-promise-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}
.c-promise-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.c-promise-card-icon {
  display: block;
  margin-bottom: 12px;
  color: #f59e0b;
}
.c-promise-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.c-promise-card-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: #94a3b8;
}
a.c-promise-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.c-promise-card-link:hover {
  border-color: rgba(245, 158, 11, 0.35);
}
a.c-promise-card-link:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}
.c-promise-card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #f59e0b;
}
a.c-promise-card-link:hover .c-promise-card-cta {
  text-decoration: underline;
}

/* 旧 CTA 区块（已由 c-promise-section 取代，保留类名避免残留引用报错） */
.c-cta-section {
  display: none;
}

/* ===== 关于港信 (page-about-conson) ===== */
.c-about-conson-page {
  background: var(--biz-slate-50, #f8fafc);
}
.c-about-hero .c-about-hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  gap: 16px;
}
@media (max-width: 720px) {
  .c-about-hero .c-about-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.c-about-body {
  background: transparent;
}
.c-about-content {
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-about-main-card {
  padding: 20px 22px 22px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
.c-about-block + .c-about-block--divider {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--biz-slate-100, #f1f5f9);
}
.c-about-section-head {
  max-width: none;
  margin-bottom: 16px;
  text-align: left;
}
.c-about-section-head .c-section-title {
  margin-bottom: 0;
}
.c-about-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
@media (max-width: 600px) {
  .c-about-group-list {
    grid-template-columns: 1fr;
  }
}
.c-about-group-list li {
  margin: 0;
  padding: 10px 12px 10px 28px;
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
  font-size: 14px;
  font-weight: 600;
  color: var(--biz-navy-900, #0f172a);
  line-height: 1.45;
}
.c-about-group-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-amber, #f59e0b);
}
.c-about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 640px) {
  .c-about-values-grid {
    grid-template-columns: 1fr;
  }
}
.c-about-value-card {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-about-value-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.c-about-value-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-about-value-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--biz-slate-600, #475569);
}
.c-about-value-card--featured {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #fffbeb 0%, #fff 55%);
}
.c-about-value-card--featured h3 {
  color: #b45309;
}
.c-about-news-desc {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  text-align: left;
}
.c-about-news-more {
  margin-left: 6px;
  font-weight: 600;
  color: var(--biz-navy-800, #1e293b);
  text-decoration: none;
}
.c-about-news-more:hover {
  color: #b45309;
  text-decoration: underline;
}
.c-about-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 10px;
  overflow: hidden;
}
.c-about-news-list li {
  margin: 0;
  border-bottom: 1px solid var(--biz-slate-100, #f1f5f9);
}
.c-about-news-list li:last-child {
  border-bottom: none;
}
.c-about-news-link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 10px 14px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease;
}
.c-about-news-link:hover {
  background: var(--biz-slate-50, #f8fafc);
}
.c-about-news-link time {
  flex-shrink: 0;
  min-width: 5em;
  font-size: 12px;
  font-weight: 600;
  color: #b45309;
  font-variant-numeric: tabular-nums;
}
.c-about-news-link:hover .c-about-news-title {
  color: var(--biz-navy-800, #1e293b);
  text-decoration: underline;
}
.c-about-news-title {
  flex: 1 1 160px;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--biz-navy-900, #0f172a);
}
.c-about-news-empty {
  padding: 14px 16px !important;
  font-size: 14px;
  line-height: 1.6;
  color: var(--biz-slate-600, #475569);
  text-align: left;
}
.c-about-prose {
  font-size: 14px;
  line-height: 1.75;
  color: var(--biz-slate-700, #334155);
}
.c-about-prose > *:first-child {
  margin-top: 0;
}
.c-about-prose > *:last-child {
  margin-bottom: 0;
}

/* ===== Footer ===== */
.c-footer {
  background: #020617;
  color: #94a3b8;
  font-size: 12px;
  padding: 48px 24px 0;
  border-top: 1px solid #0f172a;
  margin-top: auto;
}
.c-footer-inner {
  max-width: var(--c-shell-max);
  margin: 0 auto;
}
.c-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .c-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .c-footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr) minmax(0, 1fr);
  }
}
.c-footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.c-footer-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.c-footer-logo:hover {
  text-decoration: none;
}
.c-footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.c-footer-logo-text {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.c-footer-brand-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
}
.c-footer-desc {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.75;
}
.c-footer-license {
  margin: 0;
  font-size: 10px;
  color: #475569;
}
.c-footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.c-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-footer-links li + li {
  margin-top: 8px;
}
.c-footer-links a {
  color: #94a3b8;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.c-footer-links a:hover {
  color: #f59e0b;
  text-decoration: none;
}
.c-footer-text {
  color: #94a3b8;
  font-size: 12px;
}
.c-footer-contact-hint {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.65;
  color: #64748b;
}
.c-footer-contact-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b !important;
  font-size: 12px;
  font-weight: 600;
}
.c-footer-contact-cta:hover {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24 !important;
}
.c-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 20px;
  padding: 32px 0;
  border-top: 1px solid #0f172a;
  font-size: 10px;
  color: #475569;
  text-align: left;
}
@media (min-width: 768px) {
  .c-footer-bottom {
    flex-wrap: nowrap;
  }
}
.c-footer-copy,
.c-footer-disclaimer {
  margin: 0;
  line-height: 1.6;
}
.c-footer-copy {
  white-space: nowrap;
  flex-shrink: 0;
}
.c-footer-icp {
  white-space: nowrap;
  flex-shrink: 0;
}
.c-footer-friend-links {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
.c-footer-friend-link {
  color: inherit;
  text-decoration: none;
}
.c-footer-friend-link:hover {
  color: #64748b;
  text-decoration: underline;
}
.c-footer-friend-links-sep {
  color: inherit;
}
.c-footer-icp-link {
  color: inherit;
  text-decoration: none;
}
.c-footer-icp-link:hover {
  color: #64748b;
  text-decoration: underline;
}
.c-footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 600px) {
  .c-footer-nav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 32px;
  }
}
.c-footer-nav-block + .c-footer-nav-block {
  margin-top: 22px;
}
.c-footer-nav-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.c-footer-nav-site .c-footer-links a {
  font-weight: 400;
}
@media (max-width: 1099px) {
  .c-footer-col-brand {
    grid-column: 1 / -1;
  }
  .c-footer-col-nav {
    grid-column: 1 / -1;
  }
}

/* ===== Mobile nav ===== */
@media (max-width: 1100px) {
  /* 导航项较多时改用汉堡选单，避免桌面顶栏换行错位 */
  .c-header-inner {
    flex-wrap: wrap;
    align-items: center;
  }
  .c-header-nav,
  .c-header-right { display: none; }
  .c-hamburger { display: flex; }
  .c-nav-open .c-header-logo {
    order: 1;
    flex: 0 0 auto;
  }
  .c-nav-open .c-hamburger {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .c-nav-open .c-header-nav {
    order: 3;
    display: flex;
    position: static;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--sleek-border);
    gap: 12px;
    background: #fff;
  }
  .c-nav-open .c-header-nav .c-nav-list {
    width: 100%;
  }
  .c-nav-open .c-header-right {
    order: 4;
    display: flex;
    position: static;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--sleek-border);
    gap: 16px;
    background: #fff;
  }
  .c-nav-list { flex-direction: column; align-items: stretch; flex-wrap: wrap; gap: 12px; }
  .c-nav-list > li { display: block; }
  .c-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    white-space: normal;
  }
  .c-nav-list .menu-item-has-children > a::after {
    transform: none;
    margin-left: 8px;
  }
  .c-nav-list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 8px 16px;
    margin-top: 8px;
    display: none;
    background: rgba(0,97,255,0.04);
    border-radius: 6px;
  }
  .c-nav-list .menu-item-has-children.is-open > .sub-menu { display: block; }
  .c-nav-list .menu-item-has-children:hover > .sub-menu { display: none; }
  .c-nav-list .menu-item-has-children.is-open:hover > .sub-menu { display: block; }
  .c-nav-open .c-header-tcsp {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    background: var(--biz-slate-50, #f8fafc);
    border: 1px solid var(--biz-slate-200, #e2e8f0);
    border-radius: 8px;
  }
  .c-nav-open .c-header-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== ?????? page ===== */
.c-section {
  max-width: var(--c-layout-max);
  margin-left: auto;
  margin-right: auto;
  padding: 60px 20px 80px;
}
.c-section-alt { background: var(--biz-slate-50); }
.c-section-header { text-align: center; margin-bottom: 32px; }
.c-section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--biz-amber-700, #b45309);
  background: none;
  border: none;
  border-radius: 0;
}
.c-section-kicker::before,
.c-section-kicker::after {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.55));
}
.c-section-kicker::after {
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.55), transparent);
}
.c-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--sleek-border);
}
.c-card-title { font-size: 18px; margin: 0 0 12px; color: var(--sleek-text); }
.c-card-text { font-size: 15px; color: var(--sleek-text-muted); margin: 0; line-height: 1.6; }

/* ===== 服务式办公室主列表页 (page-serviced-office) ===== */
.c-so-page {
  background: var(--biz-slate-50, #f8fafc);
}
.c-so-page-hero .c-so-hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  gap: 16px;
}
@media (max-width: 720px) {
  .c-so-page-hero .c-so-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.c-so-body {
  background: transparent;
}
.c-offshore-global.c-so-body,
.c-offshore-global.c-about-body,
.c-offshore-global.c-contact-body,
.c-offshore-global.c-sec-section {
  padding: 28px 20px 36px;
  background: transparent;
}
.c-so-content {
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-so-main-card {
  padding: 20px 22px 22px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
.c-so-block + .c-so-block--divider {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--biz-slate-100, #f1f5f9);
}
.c-so-section-head {
  max-width: none;
  margin-bottom: 14px;
  text-align: left;
}
.c-so-section-head .c-section-title {
  margin-bottom: 0;
}
.c-so-intro-copy p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--biz-slate-700, #334155);
}
.c-so-intro-copy p:last-child {
  margin-bottom: 0;
}
.c-so-benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.c-so-benefit-chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
  font-size: 12px;
  line-height: 1.45;
  color: var(--biz-slate-700, #334155);
}
.c-so-benefit-chip strong {
  color: var(--biz-navy-900, #0f172a);
}
.c-so-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.c-so-locations-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.c-so-locations-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .c-so-locations-grid,
  .c-so-locations-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .c-so-locations-grid,
  .c-so-locations-grid--2,
  .c-so-locations-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.c-so-loc-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-so-loc-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.c-so-loc-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--biz-slate-200, #e2e8f0);
}
.c-so-loc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.c-so-loc-card-media:hover img {
  transform: scale(1.03);
}
.c-so-loc-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 12px 14px 14px;
}
.c-so-loc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.c-so-loc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--biz-slate-600, #475569);
  border: 1px solid var(--biz-slate-200, #e2e8f0);
}
.c-so-loc-tag--primary {
  background: #fffbeb;
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.35);
}
.c-so-loc-card-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
  line-height: 1.35;
}
.c-so-loc-card-text {
  flex: 1 1 auto;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--biz-slate-600, #475569);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-so-loc-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-navy-800, #1e293b);
  text-decoration: none;
}
.c-so-loc-card-link:hover {
  color: #b45309;
  text-decoration: underline;
}
.c-so-meeting-banner {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: linear-gradient(135deg, #fffbeb 0%, #fff 60%);
}
.c-so-meeting-banner .c-so-section-head {
  margin-bottom: 8px;
}
.c-so-meeting-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--biz-slate-700, #334155);
}
.c-so-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  gap: 20px 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .c-so-faq-layout {
    grid-template-columns: 1fr;
  }
}
.c-so-faq-news {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
}
@media (min-width: 901px) {
  .c-so-faq-news {
    position: sticky;
    top: 88px;
  }
}
.c-so-faq-news-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-so-faq-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--biz-slate-200, #e2e8f0);
}
.c-so-faq-news-list li {
  border-bottom: 1px solid var(--biz-slate-100, #f1f5f9);
}
.c-so-faq-news-list li:last-child {
  border-bottom: none;
}
.c-so-faq-news-link {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding: 8px 0;
  font-size: 13px;
  color: inherit;
  text-decoration: none;
}
.c-so-faq-news-link time {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: #b45309;
}
.c-so-faq-news-link span {
  flex: 1 1 140px;
  min-width: 0;
  font-weight: 500;
  color: var(--biz-navy-900, #0f172a);
}
.c-so-faq-news-link:hover span {
  text-decoration: underline;
}
.c-so-faq-news-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-navy-800, #1e293b);
  text-decoration: none;
}
.c-so-faq-news-more:hover {
  color: #b45309;
  text-decoration: underline;
}
.c-so-faq-news-empty {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--biz-slate-600, #475569);
}
.c-so-faq-item {
  margin-bottom: 8px;
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
  overflow: hidden;
}
.c-so-faq-item summary {
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--biz-navy-900, #0f172a);
}
.c-so-faq-item summary::-webkit-details-marker {
  display: none;
}
.c-so-faq-item summary::after {
  content: "+";
  float: right;
  color: #b45309;
  font-weight: 700;
}
.c-so-faq-item[open] summary::after {
  content: "−";
}
.c-so-faq-item p,
.c-so-faq-item ul,
.c-so-faq-item ol {
  padding: 0 14px 12px;
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--biz-slate-700, #334155);
}
.c-so-faq-item li {
  margin: 4px 0;
}
.c-so-prose {
  font-size: 14px;
  line-height: 1.75;
  color: var(--biz-slate-700, #334155);
}
.c-so-prose > *:first-child {
  margin-top: 0;
}
.c-so-prose > *:last-child {
  margin-bottom: 0;
}

/* 子页 / 共用：导语与优势条 */
.c-so-hero {
  max-width: var(--c-layout-max);
  margin: 0 auto 48px;
  font-size: 17px;
  text-align: center;
  line-height: 1.7;
}
.c-so-hero strong { color: var(--sleek-blue); }

.c-so-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 700px) {
  .c-so-benefits { grid-template-columns: 1fr; }
}
.c-so-benefit {
  padding: 12px 16px;
  background: var(--sleek-bg-cool);
  border-radius: 8px;
  font-size: 14px;
}

/* ?????????????????????*/
.c-so-hk-grid .c-so-hk-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.c-so-hk-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--sleek-bg-alt);
  overflow: hidden;
}
.c-so-hk-card-media--link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-so-hk-card-media--link:hover img,
.c-so-hk-card-media--link:focus-visible img {
  transform: scale(1.03);
}
.c-so-hk-card-media--link:focus-visible {
  outline: 2px solid var(--sleek-blue);
  outline-offset: 2px;
}
.c-so-hk-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.c-so-hk-card-body {
  padding: 20px 24px 24px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.c-so-hk-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.c-so-hk-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sleek-bg-alt);
  color: var(--sleek-text-muted);
  border: 1px solid var(--sleek-border);
}
.c-so-hk-tag--primary {
  background: rgba(0, 97, 255, 0.08);
  color: var(--sleek-blue);
  border-color: rgba(0, 97, 255, 0.2);
}
.c-so-hk-card-body .c-card-title { margin-top: 0; }
.c-so-hk-card-body .c-card-text { flex: 1 1 auto; margin-bottom: 0; }
.c-so-hk-card-actions {
  margin-top: 20px;
  padding-top: 4px;
}
.c-so-hk-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--biz-navy);
  background: var(--biz-navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.c-so-hk-btn:hover {
  background: var(--biz-link);
  color: #fff;
  border-color: var(--biz-link);
  text-decoration: none;
}
.c-so-hk-btn:focus-visible {
  outline: 2px solid var(--sleek-blue);
  outline-offset: 2px;
}
.c-so-hk-btn-arrow {
  transition: transform 0.2s;
}
.c-so-hk-btn:hover .c-so-hk-btn-arrow {
  transform: translateX(3px);
}
.c-so-asia { background: var(--biz-slate-50); padding: 32px 24px; border-radius: 12px; border: 1px solid var(--biz-slate-200); }
.c-so-areas { color: var(--biz-link); font-weight: 500; margin: 0; }

/* 子页 FAQ 列表（旧结构兼容） */
.c-so-faq-news-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--sleek-border);
}
.c-so-faq-news-item:first-child { padding-top: 0; }
.c-so-faq-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.c-so-faq-news-date {
  display: block;
  font-size: 12px;
  color: var(--sleek-text-muted);
  margin-bottom: 4px;
}
.c-so-faq-news-excerpt {
  font-size: 13px;
  color: var(--sleek-text-muted);
  margin: 8px 0 0;
  line-height: 1.5;
}
.c-so-faq-news-more .c-so-hk-btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 10px 14px;
}
.c-so-faq-inner { max-width: none; margin: 0 auto; }

.c-so-cta {
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--sleek-blue), var(--sleek-blue-dark));
  color: #fff;
  text-align: center;
  margin: 0 auto;
  max-width: var(--c-layout-max);
  border-radius: 12px;
}
.c-so-cta .c-section-title { color: #fff; margin-bottom: 20px; }
.c-so-cta-desc { margin: 0 auto 16px; max-width: 700px; opacity: 0.95; font-size: 15px; line-height: 1.6; }
.c-so-cta-note { font-size: 13px; opacity: 0.85; margin: 0 0 24px; }
.c-so-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.c-so-cta .c-btn-primary { background: #fff; color: var(--sleek-blue) !important; }
.c-so-cta .c-btn-secondary {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.8);
}
.c-so-cta .c-btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.15); text-decoration: none; }

/* ?????? ???????????? */
.c-so-loc-page { max-width: var(--c-layout-max); margin-left: auto; margin-right: auto; }
.c-so-loc-breadcrumb {
  font-size: 13px;
  color: var(--sleek-muted, #5c6470);
  margin: 0 0 20px;
}
.c-so-loc-breadcrumb a {
  color: var(--sleek-blue);
  text-decoration: none;
}
.c-so-loc-breadcrumb a:hover { text-decoration: underline; }
.c-so-loc-breadcrumb-sep { margin: 0 8px; opacity: 0.6; }

.c-so-loc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 24px 0 40px;
}
.c-so-loc-hero-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.c-so-loc-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.c-so-loc-hero-lead { margin: 0 0 20px; }
.c-so-loc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.c-so-hk-btn--outline {
  background: transparent !important;
  color: var(--sleek-blue) !important;
  border: 2px solid var(--sleek-blue);
}
.c-so-hk-btn--outline:hover {
  background: rgba(15, 23, 42, 0.04) !important;
}

@media (max-width: 768px) {
  .c-so-loc-hero { grid-template-columns: 1fr; }
}

.c-so-loc-story { margin-top: 0; }

/* ?????? ??????????????*/
.c-so-loc-facilities {
  margin: 56px 0;
  position: relative;
}
/* ??????????????????????*/
.c-so-loc-facilities-surface {
  position: relative;
  padding: 36px 28px 40px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #faf5ff 100%);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 97, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 30%, #faf5ff 100%);
  border: 1px solid rgba(0, 97, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 16px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.c-so-loc-facilities-surface::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.55),
    rgba(0, 97, 255, 0.55),
    rgba(245, 158, 11, 0.55),
    rgba(99, 102, 241, 0.55)
  );
  pointer-events: none;
}
.c-so-loc-facilities-header {
  text-align: center;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.c-so-loc-facilities-title {
  margin-bottom: 10px !important;
}
.c-so-loc-facilities-kicker {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sleek-muted, #5c6470);
  letter-spacing: 0.02em;
}
.c-so-loc-facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 640px) {
  .c-so-loc-facilities-surface {
    padding: 28px 18px 32px;
  }
  .c-so-loc-facilities-grid { grid-template-columns: 1fr; }
}

/* ??????????????.c-hk-step--1??-4 */
.c-so-loc-fac-card {
  position: relative;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Step 1 ?????? */
.c-so-loc-fac-card--room {
  --fac-accent: #059669;
  --fac-accent-dark: #047857;
  --fac-glow: rgba(16, 185, 129, 0.28);
  --fac-border: rgba(16, 185, 129, 0.2);
  --fac-bg-a: rgba(16, 185, 129, 0.08);
  --fac-bg-b: rgba(16, 185, 129, 0.02);
  --fac-radial: rgba(16, 185, 129, 0.12);
  --fac-list-bg-1: rgba(16, 185, 129, 0.07);
  --fac-list-bg-2: rgba(16, 185, 129, 0.02);
  --fac-list-hover-1: rgba(16, 185, 129, 0.11);
  --fac-list-hover-2: rgba(16, 185, 129, 0.04);
}
/* Step 2 ????????*/
.c-so-loc-fac-card--office {
  --fac-accent: var(--sleek-blue, #0c4a6e);
  --fac-accent-dark: #0052d4;
  --fac-glow: rgba(15, 23, 42, 0.12);
  --fac-border: rgba(0, 97, 255, 0.25);
  --fac-bg-a: rgba(0, 97, 255, 0.08);
  --fac-bg-b: rgba(0, 97, 255, 0.02);
  --fac-radial: rgba(0, 97, 255, 0.1);
  --fac-list-bg-1: rgba(0, 97, 255, 0.07);
  --fac-list-bg-2: rgba(0, 97, 255, 0.02);
  --fac-list-hover-1: rgba(0, 97, 255, 0.1);
  --fac-list-hover-2: rgba(0, 97, 255, 0.035);
}
/* Step 3 ?????? */
.c-so-loc-fac-card--biz {
  --fac-accent: #d97706;
  --fac-accent-dark: #b45309;
  --fac-glow: rgba(245, 158, 11, 0.26);
  --fac-border: rgba(245, 158, 11, 0.25);
  --fac-bg-a: rgba(245, 158, 11, 0.08);
  --fac-bg-b: rgba(245, 158, 11, 0.02);
  --fac-radial: rgba(245, 158, 11, 0.1);
  --fac-list-bg-1: rgba(245, 158, 11, 0.07);
  --fac-list-bg-2: rgba(245, 158, 11, 0.02);
  --fac-list-hover-1: rgba(245, 158, 11, 0.11);
  --fac-list-hover-2: rgba(245, 158, 11, 0.035);
}
/* Step 4 ?????? */
.c-so-loc-fac-card--comm {
  --fac-accent: #4f46e5;
  --fac-accent-dark: #4338ca;
  --fac-glow: rgba(99, 102, 241, 0.26);
  --fac-border: rgba(99, 102, 241, 0.25);
  --fac-bg-a: rgba(99, 102, 241, 0.08);
  --fac-bg-b: rgba(99, 102, 241, 0.02);
  --fac-radial: rgba(99, 102, 241, 0.12);
  --fac-list-bg-1: rgba(99, 102, 241, 0.07);
  --fac-list-bg-2: rgba(99, 102, 241, 0.02);
  --fac-list-hover-1: rgba(99, 102, 241, 0.11);
  --fac-list-hover-2: rgba(99, 102, 241, 0.035);
}

.c-so-loc-fac-card-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, var(--fac-bg-a) 0%, var(--fac-bg-b) 100%);
  border: 1px solid var(--fac-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.c-so-loc-fac-card-inner::before {
  content: "";
  position: absolute;
  background: radial-gradient(circle, var(--fac-radial) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.c-so-loc-fac-card--room .c-so-loc-fac-card-inner::before {
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
}
.c-so-loc-fac-card--office .c-so-loc-fac-card-inner::before {
  top: -20%;
  left: -20%;
  width: 70%;
  height: 70%;
}
.c-so-loc-fac-card--biz .c-so-loc-fac-card-inner::before {
  bottom: -25%;
  right: -25%;
  width: 75%;
  height: 75%;
}
.c-so-loc-fac-card--comm .c-so-loc-fac-card-inner::before {
  bottom: -30%;
  left: -20%;
  width: 80%;
  height: 80%;
}
.c-so-loc-fac-card:hover {
  transform: translateY(-4px);
}
.c-so-loc-fac-card:hover .c-so-loc-fac-card-inner {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.c-so-loc-fac-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fac-border);
}
.c-so-loc-fac-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fac-accent) 0%, var(--fac-accent-dark) 100%);
  box-shadow: 0 6px 16px var(--fac-glow);
}
.c-so-loc-fac-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  color: var(--sleek-text, #1a1d24);
}

.c-so-loc-fac-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.55;
  font-size: 14px;
  flex: 1 1 auto;
}
.c-so-loc-fac-list li {
  position: relative;
  margin: 0 0 8px;
  padding: 10px 12px 10px 38px;
  background: linear-gradient(90deg, var(--fac-list-bg-1) 0%, var(--fac-list-bg-2) 100%);
  border-radius: 10px;
  border-left: 3px solid var(--fac-accent);
  transition: background 0.18s ease, padding-left 0.18s ease;
}
.c-so-loc-fac-list li:last-child { margin-bottom: 0; }
.c-so-loc-fac-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fac-accent);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95);
}
.c-so-loc-fac-list li:hover {
  background: linear-gradient(90deg, var(--fac-list-hover-1) 0%, var(--fac-list-hover-2) 100%);
  padding-left: 40px;
}
.c-so-loc-fac-li-text {
  display: block;
  color: #2d323c;
}

@media (prefers-reduced-motion: reduce) {
  .c-so-loc-fac-card {
    transition: none;
  }
  .c-so-loc-fac-card:hover {
    transform: none;
  }
  .c-so-loc-fac-list li {
    transition: none;
  }
  .c-so-loc-fac-list li:hover {
    padding-left: 38px;
  }
}

.c-so-loc-features { margin: 48px 0; }
.c-so-loc-feature-chips.c-so-benefits {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.c-so-loc-visit { margin: 48px 0; }
.c-so-loc-visit .c-section-title { margin-bottom: 24px; }
.c-so-loc-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .c-so-loc-visit-grid { grid-template-columns: 1fr; }
}
.c-so-loc-visit-block {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  padding: 16px 18px;
}
.c-so-loc-visit-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sleek-blue);
  margin: 0 0 8px;
}
.c-so-loc-visit-text {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.55;
}
.c-so-loc-visit-text a { color: var(--sleek-blue); }

.c-so-loc-testimonials { margin: 48px 0; }
.c-so-loc-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .c-so-loc-testimonial-grid { grid-template-columns: 1fr; }
}
.c-so-loc-quote {
  margin: 0;
  padding: 22px 24px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--sleek-blue);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
}
.c-so-loc-quote p {
  margin: 0 0 14px;
  flex: 1 1 auto;
}
.c-so-loc-quote footer {
  font-size: 13px;
  font-weight: 600;
  color: var(--sleek-muted, #5c6470);
  margin-top: auto;
  padding-top: 8px;
  line-height: 1.4;
}

.c-so-loc-other { margin: 48px 0 32px; }
.c-so-loc-back {
  text-align: center;
  margin: 28px 0 0;
}

/* ?????? */
.c-so-taipei-h1-sep {
  margin: 0 0.35em;
  opacity: 0.45;
  font-weight: 300;
}
.c-so-taipei-pill-row.c-so-benefits {
  margin-bottom: 20px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
.c-so-taipei-pillars {
  margin: 40px 0;
}
.c-so-taipei-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .c-so-taipei-pillar-grid { grid-template-columns: 1fr; }
}
.c-so-taipei-pillar {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.c-so-taipei-pillar-title {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--sleek-blue);
}
.c-so-taipei-pillar-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sleek-muted, #5c6470);
}
.c-so-taipei-virtual {
  margin: 48px 0;
}
.c-so-taipei-virtual-lead {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}
.c-so-taipei-vo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .c-so-taipei-vo-grid { grid-template-columns: 1fr; }
}
.c-so-taipei-vo-note {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 14px;
  opacity: 0.9;
}
.c-so-taipei-sites {
  margin: 48px 0;
}
.c-so-taipei-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.c-so-taipei-site-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 97, 255, 0.1);
  padding: 20px 22px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.c-so-taipei-site-district {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sleek-blue);
}
.c-so-taipei-site-name {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.35;
}
.c-so-taipei-site-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sleek-muted, #5c6470);
}
.c-so-loc-page--taipei .c-so-loc-other .c-so-hk-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ?????? */
.c-so-korea-pillar-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .c-so-korea-pillar-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .c-so-korea-pillar-grid--4 { grid-template-columns: 1fr; }
}
.c-so-korea-list {
  margin: 12px 0 0;
  padding-left: 1.25em;
  line-height: 1.65;
  font-size: 15px;
}
.c-so-korea-list li { margin: 8px 0; }
.c-so-korea-lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--sleek-blue);
  margin: 0 0 12px;
}
.c-so-loc-page--korea .c-so-loc-other .c-so-hk-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
/* ??????????????????????????????????*/
.c-so-korea-so-sites {
  margin: 48px 0;
}
.c-so-korea-so-sites .c-so-taipei-sites-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
}
@media (max-width: 700px) {
  .c-so-korea-so-sites .c-so-taipei-sites-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* ????????????????? c-so-* ???????*/
/* ????????????? 3 ???????? 5 ?????? gap ??.c-so-intro ?? */
.c-vo-page .c-vo-benefits-top {
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.c-vo-page .c-vo-benefits-chips {
  margin-top: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
/* ???????????? ??3D ?????????? */
.c-vo-page .c-vo-flip {
  perspective: 1000px;
  min-height: 100px;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.c-vo-page .c-vo-flip:focus-visible {
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(0, 97, 255, 0.45);
}
.c-vo-page .c-vo-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100px;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.02, 0.2, 1);
}
.c-vo-page .c-vo-flip:hover .c-vo-flip-inner,
.c-vo-page .c-vo-flip:focus .c-vo-flip-inner {
  transform: rotateY(180deg);
}
.c-vo-page .c-vo-flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}
.c-vo-page .c-vo-flip-face--back {
  transform: rotateY(180deg);
}
.c-vo-page .c-vo-flip-back-text {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: var(--sleek-text-muted);
}
.c-vo-page .c-vo-flip-front-text {
  font-size: 14px;
  line-height: 1.45;
}
@media (prefers-reduced-motion: reduce) {
  .c-vo-page .c-vo-flip-inner {
    transition: none;
    transform: none !important;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .c-vo-page .c-vo-flip:hover .c-vo-flip-inner,
  .c-vo-page .c-vo-flip:focus .c-vo-flip-inner {
    transform: none;
  }
  .c-vo-page .c-vo-flip-face {
    position: relative;
    inset: auto;
    transform: none !important;
    flex: none;
  }
}
@media (max-width: 700px) {
  .c-vo-page .c-vo-benefits-top,
  .c-vo-page .c-vo-benefits-chips {
    grid-template-columns: 1fr;
  }
  .c-vo-page .c-vo-flip {
    min-height: 88px;
  }
  .c-vo-page .c-vo-flip-inner {
    min-height: 88px;
  }
}
/* ??.c-card-grid / .c-so-types-grid ???????? 1100px ?? */
.c-vo-pricing,
.c-vo-process,
.c-vo-services {
  max-width: var(--c-layout-max);
  margin: 48px auto;
  width: 100%;
  box-sizing: border-box;
}
.c-vo-promo {
  margin: 0 0 28px;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(255, 255, 255, 0.95));
}
.c-vo-promo-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sleek-blue);
}
.c-vo-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
.c-vo-plans-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .c-vo-plans-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .c-vo-plans-grid,
  .c-vo-plans-grid--3 { grid-template-columns: 1fr; }
}
.c-vo-plan-price-tag {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-vo-plan {
  position: relative;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 97, 255, 0.1);
  padding: 22px 24px 26px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-vo-plan--featured {
  border-color: rgba(0, 97, 255, 0.28);
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.08);
}
.c-vo-plan-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--sleek-blue);
  padding: 4px 10px;
  border-radius: 999px;
}
.c-vo-plan-name {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: var(--sleek-blue);
  padding-right: 56px;
}
.c-vo-plan-prices {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.c-vo-plan-del {
  opacity: 0.55;
  margin-right: 6px;
}
.c-vo-plan-from {
  font-weight: 700;
  font-size: 17px;
  color: var(--sleek-blue);
}
.c-vo-plan-unit {
  font-size: 13px;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-plan-list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.65;
  color: var(--sleek-muted, #5c6470);
  flex: 1;
}
.c-vo-plan-list li { margin: 6px 0; }
.c-vo-plan-list-item--includes {
  margin: 6px 0 10px !important;
  padding: 6px 10px 6px 4px;
  border-radius: 8px;
  border: 1px solid rgba(0, 97, 255, 0.14);
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.06), rgba(255, 255, 255, 0.9));
}
.c-vo-plan-list-item--includes-cs1o {
  border-color: rgba(0, 97, 255, 0.18);
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.08), rgba(248, 250, 252, 0.95));
}
.c-vo-plan-list-item--includes-cs1p {
  border-color: rgba(217, 119, 6, 0.22);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(255, 251, 235, 0.95));
}
.c-vo-plan--featured .c-vo-plan-list-item--includes-cs1o {
  border-color: rgba(0, 97, 255, 0.24);
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.1), rgba(255, 255, 255, 0.92));
}
.c-vo-plan-includes-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--biz-navy-900, #0f172a);
}
.c-vo-plan-list-item--includes-cs1p .c-vo-plan-includes-text {
  color: #92400e;
}
.c-vo-plan-term {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-plan .c-so-hk-btn {
  align-self: flex-start;
  margin-top: 4px;
}
.c-vo-footnote {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-pricing-note {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sleek-muted, #5c6470);
  text-align: center;
}
.c-vo-rmb-pricing {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sleek-border, #e2e6eb);
}
.c-section-title--sm {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 16px;
}
.c-vo-rmb-subtitle {
  margin: 24px 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sleek-text, #1a1f2b);
}
.c-vo-rmb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 700px) {
  .c-vo-rmb-grid { grid-template-columns: 1fr; }
}
.c-vo-rmb-card {
  padding: 16px 18px;
  border: 1px solid var(--sleek-border, #e2e6eb);
  border-radius: 10px;
  background: #fff;
}
.c-vo-rmb-card h5 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
}
.c-vo-rmb-price {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--sleek-primary, #0c4a6e);
}
.c-vo-rmb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 8px;
}
.c-vo-rmb-table th,
.c-vo-rmb-table td {
  padding: 10px 12px;
  border: 1px solid var(--sleek-border, #e2e6eb);
  text-align: left;
}
.c-vo-rmb-table th {
  background: #f4f7fb;
  font-weight: 600;
}
.c-offshore-secretary-note {
  margin-top: 20px;
}
.c-offshore-includes {
  margin-top: 32px;
}
.c-offshore-includes-list {
  margin: 12px 0 0;
  padding-left: 1.2em;
  line-height: 1.7;
}
.c-offshore-disclaimers {
  margin: 20px 0 0;
  padding-left: 1.2em;
  font-size: 13px;
  color: var(--sleek-muted, #5c6470);
  line-height: 1.6;
}
.c-hk-annual-section {
  padding: 48px 20px;
  background: #f8fafc;
}
.c-hk-annual-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-vo-loc-rmb-table-wrap {
  margin-top: 28px;
}
.c-vo-pricing-intro {
  margin: 0 auto 24px;
  max-width: 900px;
  text-align: center;
  line-height: 1.65;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-rmb-features {
  margin: 10px 0 0;
  padding-left: 1.1em;
  font-size: 12px;
  line-height: 1.5;
  color: var(--sleek-muted, #5c6470);
}
.c-overseas-docs-title {
  margin: 12px 0 6px;
  font-size: 14px;
  font-weight: 600;
}

/* ????????????.c-so-loc-page ???????? */
.c-vo-loc-page .c-vo-loc-china-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 700px) {
  .c-vo-loc-page .c-vo-loc-china-grid {
    grid-template-columns: 1fr;
  }
}
.c-vo-loc-china-block .c-so-loc-visit-label {
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

/* ???????????????????????????? .c-vo-plan??*/
.c-vo-loc-page .c-vo-loc-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .c-vo-loc-page .c-vo-loc-plans-grid {
    grid-template-columns: 1fr;
  }
}
.c-vo-loc-page .c-vo-loc-plan-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 97, 255, 0.1);
  padding: 22px 24px 26px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-vo-loc-page .c-vo-loc-plan-card--featured {
  border-color: rgba(0, 97, 255, 0.28);
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.08);
}
.c-vo-loc-page .c-vo-loc-plan-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--sleek-blue);
  padding: 4px 10px;
  border-radius: 999px;
}
.c-vo-loc-page .c-vo-loc-plan-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--sleek-blue);
  padding-right: 56px;
}
.c-vo-loc-page .c-vo-loc-plan-fy {
  margin: -4px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-loc-page .c-vo-loc-plan-prices {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.c-vo-loc-page .c-vo-loc-plan-del {
  opacity: 0.55;
  margin-right: 6px;
}
.c-vo-loc-page .c-vo-loc-plan-from {
  font-weight: 700;
  font-size: 17px;
  color: var(--sleek-blue);
}
.c-vo-loc-page .c-vo-loc-plan-qi {
  font-weight: 700;
  font-size: 15px;
  color: var(--sleek-blue);
  margin-left: 2px;
}
.c-vo-loc-page .c-vo-loc-plan-unit {
  font-size: 13px;
  color: var(--sleek-muted, #5c6470);
  margin-left: 4px;
}
.c-vo-loc-page .c-vo-loc-plan-list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.65;
  color: var(--sleek-muted, #5c6470);
  flex: 1;
}
.c-vo-loc-page .c-vo-loc-plan-list li {
  margin: 6px 0;
}
.c-vo-loc-page .c-vo-loc-plan-term {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-loc-page .c-vo-loc-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.c-vo-loc-page .c-vo-loc-plan-actions .c-so-hk-btn {
  align-self: flex-start;
  margin-top: 0;
}

/* ???????????????????? B/D ??????????? */
.c-vo-loc-page .c-vo-loc-china-segment {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.c-vo-loc-page .c-vo-loc-china-segment:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.c-vo-loc-page .c-vo-loc-china-city {
  margin-bottom: 22px;
}
.c-vo-loc-page .c-vo-loc-china-city-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--sleek-blue);
  letter-spacing: 0.02em;
}
.c-vo-loc-page .c-vo-loc-china-city-body {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sleek-text, #1a1d21);
}
.c-vo-loc-page .c-vo-loc-china-address {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sleek-muted, #5c6470);
  padding: 12px 14px;
  background: rgba(0, 97, 255, 0.04);
  border-radius: 8px;
  border-left: 3px solid rgba(0, 97, 255, 0.25);
}
.c-vo-loc-page .c-vo-loc-plans-grid--china-segment {
  margin-top: 8px;
}
.c-vo-loc-page .c-vo-loc-china-quote-hints {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(0, 97, 255, 0.05);
  border: 1px solid rgba(0, 97, 255, 0.1);
}
.c-vo-loc-page .c-vo-loc-china-quote-hint {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sleek-text, #1a1d21);
}
.c-vo-loc-page .c-vo-loc-china-quote-hint:last-child {
  margin-bottom: 0;
}
.c-vo-loc-page .c-vo-loc-china-contact-footer {
  margin-top: 0;
}
.c-vo-loc-china-contact-row {
  margin-top: 20px;
}

.c-vo-loc-promo {
  margin: 20px 0 8px;
  padding: 18px 20px;
  border-radius: 12px;
}
.c-vo-loc-promo-text {
  margin: 0;
  line-height: 1.6;
}
.c-vo-loc-pricing-highlight {
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.c-vo-loc-pricing-highlight .c-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.c-vo-loc-addons {
  margin-top: 28px;
}
.c-vo-loc-addons-title {
  font-size: 17px;
  margin: 0 0 14px;
  color: var(--sleek-blue);
}
.c-vo-loc-addons-law {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(0, 97, 255, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.c-vo-loc-addons-law-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-loc-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 720px) {
  .c-vo-loc-addons-grid {
    grid-template-columns: 1fr;
  }
}
.c-vo-loc-addons-group {
  border-radius: 12px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafbfd;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.c-vo-loc-addons-group--extra {
  border-left: 4px solid var(--sleek-blue);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), #fafbfd 42%);
}
.c-vo-loc-addons-group--value {
  border-left: 4px solid rgba(0, 97, 255, 0.45);
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.03), #f8f9fb 40%);
}
.c-vo-loc-addons-subtitle {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sleek-blue);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 97, 255, 0.14);
}
.c-vo-loc-addons-list {
  margin: 0;
  padding-left: 1.15em;
  font-size: 14px;
  line-height: 1.65;
  color: var(--sleek-text, #1a1d21);
}
/* ?????????????????? */
.c-vo-loc-addons-list > li.c-vo-loc-addons-li {
  margin: 14px 0;
  list-style-position: outside;
}
.c-vo-loc-addons-li-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.c-vo-loc-addons-li-text {
  flex: 1;
  min-width: 0;
}
.c-vo-loc-addon-prices {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.c-vo-loc-addon-prices li {
  margin: 0;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sleek-blue);
  background: #fff;
  border: 1px solid rgba(0, 97, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.c-vo-loc-addon-badge {
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px 0 0;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #fff;
  background: linear-gradient(135deg, #0c4a6e, #3d8bff);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 97, 255, 0.25);
  white-space: nowrap;
}
.c-vo-loc-pricing-notes {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.c-vo-loc-pricing-note-line {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--sleek-muted, #5c6470);
}

.c-vo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 960px) {
  .c-vo-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .c-vo-steps { grid-template-columns: 1fr; }
}
.c-vo-step {
  background: #fff;
  border: 1px solid rgba(0, 97, 255, 0.1);
  border-radius: 12px;
  padding: 18px 18px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.c-vo-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sleek-blue);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
}
.c-vo-step-title {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--sleek-blue);
}
.c-vo-step-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-process-note {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--sleek-muted, #5c6470);
}
.c-vo-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 640px) {
  .c-vo-services-grid { grid-template-columns: 1fr; }
}
.c-vo-service-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 97, 255, 0.1);
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.c-vo-service-title {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--sleek-blue);
}
.c-vo-service-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sleek-muted, #5c6470);
}

/* ===== 联络方式 / 联系我们 (page-contact-locations) ===== */
.c-contact-locations-page {
  background: var(--biz-slate-50, #f8fafc);
}
.c-contact-hero .c-contact-hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  gap: 16px;
}
@media (max-width: 720px) {
  .c-contact-hero .c-contact-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.c-contact-hero-panel-note {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.c-contact-body {
  background: transparent;
}
.c-contact-content {
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-contact-main-card {
  padding: 20px 22px 22px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
.c-contact-block + .c-contact-block--divider {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--biz-slate-100, #f1f5f9);
}
.c-contact-section-head {
  max-width: none;
  margin-bottom: 14px;
  text-align: left;
}
.c-contact-section-head .c-section-title {
  margin-bottom: 0;
}
.c-contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  align-items: start;
}
@media (max-width: 720px) {
  .c-contact-offices-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.c-contact-office-card {
  margin: 0;
  padding: 12px 14px;
  min-width: 0;
  background: var(--biz-slate-50, #f8fafc);
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-contact-office-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.c-contact-office-name {
  margin: 0 0 6px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
  line-height: 1.4;
}
.c-contact-office-vo-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.c-contact-office-vo-link:hover,
.c-contact-office-vo-link:focus {
  color: #b45309;
  text-decoration: underline;
}
.c-contact-office-vo-arrow {
  font-size: 0.85em;
  opacity: 0.75;
}
.c-contact-office-dl {
  margin: 0;
}
.c-contact-office-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 2px;
  margin: 0 0 2px;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
}
.c-contact-office-row:last-child {
  margin-bottom: 0;
}
.c-contact-office-row dt {
  flex: 0 0 auto;
  min-width: 2.75em;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 12px;
  color: var(--biz-slate-500, #64748b);
}
.c-contact-office-row dt::after {
  content: ":";
}
.c-contact-office-row dt::before {
  display: none !important;
}
.c-contact-office-row dd {
  flex: 1 1 120px;
  margin: 0;
  padding: 0;
  min-width: 0;
  color: var(--biz-slate-700, #334155);
}
.c-contact-office-row dd a {
  color: var(--biz-navy-800, #1e293b);
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}
.c-contact-office-row dd a:hover {
  color: #b45309;
  text-decoration: underline;
}
.c-contact-office-row--address dd {
  color: var(--biz-slate-600, #475569);
  font-size: 12px;
  line-height: 1.55;
}
.c-contact-prose {
  font-size: 14px;
  line-height: 1.75;
  color: var(--biz-slate-700, #334155);
}
.c-contact-prose > *:first-child {
  margin-top: 0;
}
.c-contact-prose > *:last-child {
  margin-bottom: 0;
}

/* ===== Homepage: Business / Corporate (???????) ===== */
.home {
  --biz-navy: #0f172a;
  --biz-navy-mid: #1e293b;
  --biz-slate-50: #f8fafc;
  --biz-slate-200: #e2e8f0;
  --biz-slate-400: #94a3b8;
  --biz-slate-500: #64748b;
  --biz-slate-700: #334155;
  --biz-amber: #b45309;
  --biz-amber-600: #d97706;
  --biz-amber-700: #92400e;
  --biz-amber-50: #fffbeb;
  --biz-amber-100: #fef3c7;
  background: var(--biz-slate-50);
}
.home .c-topbar {
  background: var(--biz-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.home .c-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--biz-slate-200);
}
.home .c-nav-list a {
  color: var(--biz-slate-700);
  font-weight: 500;
  font-size: 14px;
}
.home .c-nav-list a:hover {
  color: var(--biz-navy);
}
.home .c-header-btn {
  background: var(--biz-navy);
}
.home .c-header-btn:hover {
  background: #0c4a6e;
}
.home .c-home-main a {
  color: #0c4a6e;
}
.home .c-home-main a.c-home-btn {
  text-decoration: none;
}

/* Hero */
.c-home-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-navy) 0%, var(--biz-navy-mid) 50%, var(--biz-navy) 100%);
  padding: 72px 24px 88px;
}
.c-home-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.c-home-hero-glow--tr {
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background: rgba(7, 89, 133, 0.12);
  transform: translate(20%, -20%);
}
.c-home-hero-glow--bl {
  bottom: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background: rgba(180, 83, 9, 0.1);
  transform: translate(-20%, 20%);
}
.c-home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--c-shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .c-home-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.c-home-hero-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.c-home-hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
}
.c-home-hero-pill-accent {
  color: #fcd34d;
  font-weight: 600;
}
.c-home-hero-pill-sep {
  color: rgba(255, 255, 255, 0.35);
}
.c-home-hero-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.c-home-hero-lead {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.75;
  color: #cbd5e1;
}
.c-home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.c-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.c-home-btn--primary {
  background: var(--biz-amber-600);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.25);
}
.c-home-btn--primary:hover {
  background: var(--biz-amber);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.32);
}
.c-home-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.c-home-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}
.c-home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 560px;
}
@media (max-width: 600px) {
  .c-home-hero-stats { grid-template-columns: 1fr; max-width: none; }
}
.c-home-hero-stat-num {
  margin: 0 0 4px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1.1;
}
.c-home-hero-stat-label {
  margin: 0;
  font-size: 12px;
  color: var(--biz-slate-400);
  line-height: 1.45;
}
.c-home-hero-panel {
  position: relative;
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.c-home-hero-panel-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--biz-amber-600);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.c-home-hero-panel-head {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.c-home-hero-panel-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}
.c-home-hero-panel-sub {
  margin: 0;
  font-size: 12px;
  color: var(--biz-slate-400);
}
.c-home-hero-panel-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.65;
  color: #e2e8f0;
}
.c-home-hero-panel-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}
.c-home-hero-panel-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #34d399;
}
.c-home-hero-panel-link {
  display: block;
  padding: 12px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: background 0.2s;
}
.c-home-hero-panel-link:hover {
  background: rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

/* Section headers — 眉题（替代胶囊徽章） */
.c-home-section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.c-home-section-head--light .c-home-section-title {
  color: #fff;
}
.c-home-kicker,
.c-home-section-eyebrow {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  color: var(--biz-amber-700, #b45309);
  background: none;
  border: none;
  border-radius: 0;
}
.c-home-kicker::before,
.c-home-kicker::after,
.c-home-section-eyebrow::before,
.c-home-section-eyebrow::after {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.55));
}
.c-home-kicker::after,
.c-home-section-eyebrow::after {
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.55), transparent);
}
.c-home-kicker--light,
.c-home-kicker--hero {
  color: #fcd34d;
  background: none;
  border: none;
}
.c-home-kicker--light::before,
.c-home-kicker--hero::before {
  background: linear-gradient(90deg, transparent, rgba(252, 211, 77, 0.55));
}
.c-home-kicker--light::after,
.c-home-kicker--hero::after {
  background: linear-gradient(90deg, rgba(252, 211, 77, 0.55), transparent);
}
.c-home-section-head .c-home-section-title,
.c-home-section-head--intro .c-home-section-title {
  margin-bottom: 0 !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.c-home-section-head--light .c-home-kicker + .c-home-section-title {
  color: #fff !important;
}
.c-home-section-desc,
.c-home-section-lead {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--biz-slate-600, #475569);
}
.c-home-section-head--light .c-home-section-desc {
  color: rgba(226, 232, 240, 0.88);
}
/* 各类区块标题内的眉题：一律居中 + 双侧装饰线（标题仍可左对齐） */
.c-so-section-head .c-home-kicker,
.c-about-section-head .c-home-kicker,
.c-contact-section-head .c-home-kicker,
.c-trademark-section-head .c-home-kicker,
.c-sec-section-head .c-home-kicker,
.c-acct-section-head .c-home-kicker,
.c-hk-inc-head .c-home-kicker,
.c-offshore-hero-inner > .c-home-kicker,
.c-offshore-hero-inner > .c-home-kicker--hero {
  display: inline-flex;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  justify-content: center;
  white-space: nowrap;
}
.c-home-section-head--intro {
  max-width: 640px;
  margin-bottom: 44px;
}
.c-home-section-head--intro .c-home-section-title {
  font-size: clamp(26px, 3.2vw, 34px);
}

/* Homepage sections override */
.home .c-stage-section {
  padding: 72px 24px;
  background: #fff;
}
.home .c-stage-card {
  border-radius: 12px;
  border: 1px solid var(--biz-slate-200);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  padding: 32px 28px;
}
.home .c-stage-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}
.home .c-stage-card .c-stage-label {
  color: var(--biz-amber-700);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home .c-stage-card h3 {
  color: var(--biz-navy);
}

.home .c-features-section {
  padding: 72px 24px;
  background: var(--biz-slate-50);
  background-image: none;
}
.home .c-feature-card {
  border-radius: 12px;
  border: 1px solid var(--biz-slate-200);
  box-shadow: none;
  background: #fff;
}
.home a.c-feature-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}
.home .c-feature-icon {
  background: var(--biz-slate-50);
  color: var(--biz-navy);
  border: 1px solid var(--biz-slate-200);
  font-size: 22px;
}
.home a.c-feature-card:hover h4 {
  color: var(--biz-navy);
}
.home .c-feature-more {
  color: var(--biz-amber-700);
}

.home .c-testimonials-section {
  padding: 72px 24px;
  background: #fff;
  background-image: none;
}
.home .c-testimonial-card {
  border-radius: 12px;
  border: 1px solid var(--biz-slate-200);
  border-left: 3px solid var(--biz-amber-600);
  box-shadow: none;
}

.home .c-stats-section {
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--biz-navy) 0%, var(--biz-navy-mid) 100%);
  color: #fff;
}
.home .c-stats-section::before {
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 45%);
}
.home .c-stat-number {
  color: #f59e0b;
}
.home .c-stat-label {
  color: #cbd5e1;
}

.home .c-news-section {
  padding: 72px 24px;
  background: var(--biz-slate-50);
  background-image: none;
}
.home .c-news-card {
  border-radius: 12px;
  border: 1px solid var(--biz-slate-200);
  box-shadow: none;
}
.home .c-news-card:hover {
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.home .c-news-card h3 a:hover {
  color: var(--biz-amber-700);
}
.home .c-news-link {
  color: #0c4a6e;
}
.home .c-home-news-more {
  text-align: center;
  margin: 36px 0 0;
}

.home .c-cta-section {
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--biz-navy) 0%, #0c4a6e 100%);
}
.home .c-cta-section .c-home-btn--primary {
  margin-top: 4px;
}

/* ===== 注册离岸公司页（全球离岸/海外公司设立模块风格） ===== */
.c-offshore-page {
  background: var(--biz-slate-50);
}
.c-offshore-hero {
  background: linear-gradient(135deg, var(--biz-navy) 0%, var(--biz-navy-mid) 50%, var(--biz-navy) 100%);
  color: #fff;
  padding: 64px 24px 72px;
}
.c-offshore-hero-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-home-section-title {
  margin-bottom: 12px !important;
  color: var(--biz-navy) !important;
}
.c-offshore-hero-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}
.c-offshore-hero-lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: #cbd5e1;
  max-width: 640px;
}
.c-offshore-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.c-offshore-global {
  padding: 72px 24px;
  background: #fff;
}
.c-offshore-global-inner {
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-offshore-global-note {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--biz-slate-500);
}
.c-offshore-global-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.c-offshore-global-grid + .c-offshore-global-subheading {
  margin-top: 48px;
}
.c-offshore-global-subheading {
  margin: 40px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--biz-navy);
}
.c-offshore-global-subheading + .c-offshore-global-grid {
  margin-top: 20px;
}
@media (max-width: 1100px) {
  .c-offshore-global-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .c-offshore-global-grid { grid-template-columns: 1fr; }
}
.c-offshore-global-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 20px;
  background: var(--biz-slate-50, #f8fafc);
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.c-offshore-global-card:hover {
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
}
.c-offshore-global-card-body,
.c-reg-region-card-body {
  padding: 0;
  flex: 1 1 auto;
}
.c-offshore-global-card:not(:has(.c-reg-region-btn)) .c-offshore-global-card-body {
  padding-bottom: 0;
}
.c-reg-region-card-top,
.c-offshore-global-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.c-offshore-global-en {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--biz-slate-400, #94a3b8);
}
.c-offshore-global-days {
  flex-shrink: 0;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 700;
  color: #065f46;
  background: #d1fae5;
  border-radius: 4px;
}
.c-offshore-global-days--slow {
  color: #92400e;
  background: #fef3c7;
}
.c-offshore-global-name,
.c-reg-region-name {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
  line-height: 1.3;
}
.c-offshore-global-icon,
.c-reg-region-icon {
  font-size: 18px;
  line-height: 1;
}
.c-reg-region-icon--flag {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 2px;
}
.c-country-flag-img {
  display: block;
  width: 28px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.c-reg-region-prices {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}
.c-reg-region-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}
.c-reg-region-price-label {
  color: var(--biz-slate-500, #64748b);
  line-height: 1.4;
}
.c-reg-region-price-value {
  font-weight: 600;
  color: var(--biz-navy-900, #0f172a);
  white-space: nowrap;
}
.c-offshore-global-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--biz-slate-600, #475569);
}
.c-offshore-global-card.c-reg-region-card .c-offshore-global-desc,
.c-reg-region-desc {
  font-size: 10px;
  line-height: 1.6;
  color: var(--biz-slate-400, #94a3b8);
}
.c-reg-region-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #e2e8f0;
  color: var(--biz-slate-700, #334155) !important;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.c-reg-region-btn:hover {
  background: #cbd5e1;
  text-decoration: none;
}
.c-offshore-global-more,
.c-offshore-global-includes {
  margin-top: 32px;
  padding: 24px;
  background: var(--biz-slate-50);
  border: 1px solid var(--biz-slate-200);
  border-radius: 16px;
}
.c-offshore-global-more-title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--biz-navy);
}
.c-offshore-global-more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 900px) {
  .c-offshore-global-more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .c-offshore-global-more-grid { grid-template-columns: 1fr; }
}
.c-offshore-global-more-name {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-slate-700);
}
.c-offshore-global-more-line {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--biz-slate-500);
  line-height: 1.5;
}
.c-offshore-global-more-extra {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  color: var(--biz-amber-700);
}
.c-offshore-page .c-offshore-includes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.65;
  color: var(--biz-slate-700);
}
@media (max-width: 640px) {
  .c-offshore-page .c-offshore-includes-list { grid-template-columns: 1fr; }
}
.c-offshore-page .c-offshore-includes-list li {
  position: relative;
  padding-left: 18px;
}
.c-offshore-page .c-offshore-includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 11px;
}
.c-offshore-page .c-offshore-secretary-note {
  margin: 24px 0 0;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--biz-slate-700);
  background: var(--biz-amber-50);
  border: 1px solid #fde68a;
  border-radius: 10px;
}
.c-offshore-page .c-offshore-disclaimers {
  margin: 20px 0 0;
  padding-left: 1.2em;
  font-size: 12px;
  color: var(--biz-slate-500);
  line-height: 1.6;
}
.c-offshore-page .c-cta-section p {
  margin: 0 0 20px;
  opacity: 0.9;
}
.c-offshore-page .c-cta-section .c-home-btn--primary {
  display: inline-flex;
}
.c-overseas-page .c-offshore-global--why {
  padding-top: 0;
  background: var(--biz-slate-50);
}
.c-overseas-page .c-overseas-why-section {
  padding-top: 72px;
}
.c-offshore-global-grid--why {
  margin-top: 0;
}
.c-overseas-detail {
  margin-top: 24px;
}
.c-overseas-detail-subtitle {
  margin: 16px 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--biz-slate-700);
}
.c-overseas-detail .c-offshore-secretary-note {
  margin-top: 12px;
}
.c-offshore-global-grid--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .c-offshore-global-grid--2col {
    grid-template-columns: 1fr;
  }
}
.c-offshore-global--alt {
  background: var(--biz-slate-50);
}
.c-china-page .c-offshore-global--why {
  padding-top: 0;
}
.c-china-hero-advantages {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 720px;
}
.c-china-hero-advantages li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.95;
}
.c-china-hero-advantages li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--biz-amber-400);
  font-weight: 700;
}
.c-china-type-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.c-china-type-details .c-overseas-detail {
  margin-top: 0;
}
@media (max-width: 960px) {
  .c-china-type-details {
    grid-template-columns: 1fr;
  }
}

/* ===== Trademark Page (business layout) ===== */
.c-trademark-page .c-offshore-global--why {
  padding-top: 0;
  background: var(--biz-slate-50);
}
.c-trademark-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.c-trademark-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}
.c-trademark-section-head .c-section-title,
.c-trademark-section-head .c-home-section-title {
  margin-bottom: 0 !important;
}
.c-trademark-section-head .c-home-section-desc {
  margin-top: 16px;
}
.c-trademark-table-wrap {
  border: 1px solid var(--biz-slate-200);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.c-trademark-table-scroll {
  overflow-x: auto;
}
.c-trademark-table-caption {
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--biz-navy-900) 0%, #1e3a5f 100%);
  border-bottom: 3px solid var(--biz-amber-500);
  text-align: center;
}
.c-trademark-table-caption-title {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.c-trademark-table-caption-sub {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--biz-amber-300);
}
.c-trademark-table-wrap--official .c-trademark-table-caption-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
}
.c-trademark-table-wrap--spaced {
  margin-bottom: 20px;
}
.c-trademark-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}
.c-trademark-table:not(.c-trademark-table--kv) {
  min-width: 960px;
}
.c-trademark-table thead tr {
  background: var(--biz-navy-900);
  border-bottom: 1px solid var(--biz-slate-200);
}
.c-trademark-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
}
.c-trademark-table--official {
  min-width: 1080px;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.4;
}
.c-trademark-table--official thead tr {
  background: #fff;
}
.c-trademark-table--official thead th,
.c-trademark-table--official tbody td {
  border: 1px solid #d9d9d9;
}
.c-trademark-table--official thead th {
  padding: 8px 10px;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: #4a4a4a;
  white-space: normal;
  line-height: 1.35;
  background: #fff;
}
.c-trademark-table--official tbody td {
  padding: 7px 10px;
  vertical-align: middle;
  text-align: center;
  color: #333;
  background: #fff;
  font-size: 12px;
  line-height: 1.4;
}
.c-trademark-table--official tbody tr:nth-child(even) td {
  background: #fff;
}
.c-trademark-table--official tbody tr:hover td {
  background: #fafafa;
}
.c-trademark-table--official .c-trademark-table-flag-cell {
  width: 72px;
  min-width: 72px;
}
.c-trademark-table--official .c-trademark-table-flag-img {
  width: 48px;
  border-radius: 4px;
}
.c-trademark-table--official .c-trademark-table-flag--emoji {
  font-size: 32px;
}
.c-trademark-table--official .c-trademark-table-materials--ordered {
  text-align: left;
  padding-left: 16px;
  font-size: 11px;
  line-height: 1.45;
}
.c-trademark-table--official .c-trademark-table-materials--ordered li {
  padding: 1px 0;
}
.c-trademark-table--kv thead tr {
  background: var(--biz-slate-100);
}
.c-trademark-table--kv thead th {
  color: var(--biz-slate-700);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.c-trademark-table td {
  padding: 14px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--biz-slate-100);
  color: var(--biz-slate-700);
}
.c-trademark-table tbody tr:last-child td {
  border-bottom: none;
}
.c-trademark-table tbody tr:nth-child(even) {
  background: var(--biz-slate-50);
}
.c-trademark-table tbody tr:hover {
  background: var(--biz-amber-50);
}
.c-trademark-table-region {
  min-width: 140px;
}
.c-trademark-table-country {
  min-width: 140px;
  font-weight: 500;
  white-space: nowrap;
}
.c-trademark-table-flag-cell {
  width: 88px;
  min-width: 88px;
  text-align: center;
  vertical-align: middle;
}
.c-trademark-table-flag-img {
  display: block;
  width: 64px;
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--biz-slate-200);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}
.c-trademark-table-flag {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
}
.c-trademark-table-flag--emoji {
  font-size: 40px;
  line-height: 1;
}
.c-trademark-table-materials--ordered {
  list-style: decimal;
  padding-left: 18px;
  margin: 0;
}
.c-trademark-table-materials--ordered li {
  padding: 2px 0;
}
.c-trademark-table-materials--ordered li::before {
  content: none;
}
.c-trademark-table-wrap--official {
  margin-top: 0;
}
.c-trademark-section--compact {
  padding-top: 36px;
  padding-bottom: 36px;
}
.c-trademark-section-head--tight {
  margin-bottom: 16px;
}

/* 商标注册页 — 与香港公司年审同版式（1100px 主卡片） */
body.page-template-page-trademark-php .c-trademark-page.c-offshore-page {
  background: var(--biz-slate-50, #f8fafc);
  max-width: none;
  margin: 0;
}
body.page-template-page-trademark-php .c-trademark-page .c-so-block + .c-so-block--divider {
  margin-top: 18px;
  padding-top: 18px;
}
body.page-template-page-trademark-php .c-trademark-block--pricing .c-trademark-table-wrap--official {
  margin-left: -22px;
  margin-right: -22px;
  width: calc(100% + 44px);
  max-width: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  box-shadow: none;
}
body.page-template-page-trademark-php .c-trademark-block--strategy .c-trademark-section-head {
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: center;
}
body.page-template-page-trademark-php .c-trademark-block--pricing .c-trademark-section-head--tight {
  max-width: 720px;
  margin: 0 auto 16px;
  text-align: center;
}
body.page-template-page-trademark-php .c-trademark-table-wrap--flat {
  border-radius: 10px;
}
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table--kv thead th {
  padding: 8px 12px;
  font-size: 10px;
}
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table--kv td {
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
}
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table-num {
  width: 72px;
  white-space: nowrap;
}
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table-label,
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table-faq-q,
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table-step-title,
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table-phase {
  width: 22%;
  min-width: 108px;
  font-weight: 600;
}
body.page-template-page-trademark-php .c-trademark-table-wrap--follow {
  margin-top: 12px;
}
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table-materials {
  margin: 0;
  padding-left: 18px;
}
body.page-template-page-trademark-php .c-trademark-table-wrap--flat .c-trademark-table-materials li {
  padding: 2px 0;
  font-size: 13px;
}
body.page-template-page-trademark-php .c-trademark-page .c-trademark-table-wrap--official {
  border-radius: 10px;
}
body.page-template-page-trademark-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-top: 0;
}

.c-trademark-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body.page-template-page-trademark-php .c-trademark-block--strategy .c-trademark-strategy-grid {
  gap: 16px;
}
@media (max-width: 960px) {
  .c-trademark-strategy-grid {
    grid-template-columns: 1fr;
  }
}
.c-trademark-strategy-card {
  display: flex;
  flex-direction: column;
  background: var(--biz-slate-50);
  border: 1px solid var(--biz-slate-200);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.c-trademark-strategy-card:hover {
  border-color: var(--biz-slate-300);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.c-trademark-strategy-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.c-trademark-strategy-region {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--biz-slate-400);
}
.c-trademark-strategy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.c-trademark-strategy-badge--navy {
  background: #eff6ff;
  color: var(--biz-navy-900);
}
.c-trademark-strategy-badge--green {
  background: #ecfdf5;
  color: #065f46;
}
.c-trademark-strategy-badge--indigo {
  background: #eef2ff;
  color: #3730a3;
}
.c-trademark-strategy-badge-flag {
  display: block;
  border-radius: 2px;
}
.c-trademark-strategy-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--biz-navy-900);
}
.c-trademark-strategy-body {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--biz-slate-600);
  flex: 1;
}
.c-trademark-strategy-meta {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--biz-slate-200);
}
.c-trademark-strategy-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  padding: 3px 0;
}
.c-trademark-strategy-meta-row dt {
  margin: 0;
  color: var(--biz-slate-400);
}
.c-trademark-strategy-meta-row dd {
  margin: 0;
  font-weight: 600;
  color: var(--biz-slate-800);
  text-align: right;
}
.c-trademark-strategy-meta-row dd.is-highlight {
  color: var(--biz-amber-700);
  font-weight: 700;
}
.c-trademark-table-cell--center {
  text-align: center;
  vertical-align: middle;
}
.c-trademark-table-cell--materials {
  text-align: left;
  vertical-align: top;
}
.c-trademark-table-fee {
  font-weight: 600;
  color: #333;
  white-space: normal;
}
.c-trademark-table-num {
  width: 72px;
  font-weight: 700;
  color: var(--biz-amber-700);
  text-align: center;
  white-space: nowrap;
}
.c-trademark-table-label {
  width: 180px;
  font-weight: 700;
  color: var(--biz-navy-900);
  white-space: nowrap;
}
.c-trademark-table-phase {
  width: 64px;
  font-weight: 700;
  font-size: 13px;
  color: var(--biz-amber-700);
  text-align: center;
  white-space: nowrap;
}
.c-trademark-table-step-title {
  width: 200px;
  font-weight: 700;
  color: var(--biz-navy-900);
}
.c-trademark-table-faq-q {
  width: 220px;
  font-weight: 700;
  color: var(--biz-navy-900);
}
.c-trademark-table-materials {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-trademark-table-materials li {
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.c-trademark-table-materials li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--biz-amber-600);
}
.c-trademark-group-footnote {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--biz-slate-500);
}
.c-trademark-group-footnote a {
  margin-left: 8px;
  font-weight: 600;
  color: var(--biz-amber-700);
}
@media (max-width: 768px) {
  .c-trademark-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .c-trademark-table-label,
  .c-trademark-table-faq-q,
  .c-trademark-table-step-title {
    width: auto;
    min-width: 120px;
  }
}

/* ===== Company Secretary (法定秘书与单项收费) ===== */
.c-secretary-page .c-sec-section {
  background: #fff;
}
.c-sec-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.c-sec-module-intro {
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.c-sec-subtitle {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--biz-slate-500, #64748b);
}
.c-sec-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .c-sec-plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-sec-plan-card {
  display: flex;
  flex-direction: column;
  background: var(--biz-slate-50, #f8fafc);
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 16px;
  padding: 24px;
}
.c-sec-plan-card--featured {
  background: rgba(255, 251, 235, 0.4);
  border: 2px solid rgba(217, 119, 6, 0.6);
}
.c-sec-plan-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.c-sec-plan-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-sec-plan-card--featured .c-sec-plan-title {
  color: var(--biz-amber-900, #78350f);
}
.c-sec-plan-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--biz-slate-200, #e2e8f0);
  color: var(--biz-slate-800, #1e293b);
}
.c-sec-plan-card--featured .c-sec-plan-badge {
  background: #fef3c7;
  color: #92400e;
}
.c-sec-plan-price {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  color: var(--biz-navy-900, #0f172a);
  line-height: 1.2;
}
.c-sec-plan-card--featured .c-sec-plan-price {
  color: var(--biz-amber-700, #b45309);
}
.c-sec-plan-unit {
  font-size: 12px;
  font-weight: 400;
  color: var(--biz-slate-400, #94a3b8);
}
.c-sec-plan-desc {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--biz-slate-500, #64748b);
  flex: 1;
}
.c-sec-plan-cta {
  display: block;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--biz-navy-900, #0f172a);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.c-sec-plan-cta:hover {
  background: var(--biz-navy-800, #1e293b);
  color: #fff;
}
.c-sec-plan-cta--featured {
  background: var(--biz-amber-600, #d97706);
}
.c-sec-plan-cta--featured:hover {
  background: var(--biz-amber-700, #b45309);
}
.c-sec-table-block {
  margin-top: 32px;
}
.c-sec-table-panel {
  background: #fff;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.c-sec-table-panel-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--biz-slate-100, #f1f5f9);
}
.c-sec-table-panel-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-sec-table-panel .c-trademark-table-wrap {
  overflow-x: auto;
}
.c-sec-comparison-table {
  min-width: 640px;
}
.c-sec-comparison-service,
.c-sec-pricing-service {
  text-align: left !important;
  font-weight: 500;
}
.c-sec-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  font-size: 13px;
  font-weight: 700;
}
.c-sec-dash {
  color: var(--biz-slate-400, #94a3b8);
}
.c-sec-pricing-table {
  min-width: 960px;
}
.c-sec-note {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: var(--biz-slate-500, #64748b);
}

/* 公司秘书页 — 紧凑布局 */
body.page-template-page-secretary-php .c-secretary-page .c-offshore-global.c-sec-section {
  padding: 28px 20px 36px;
}
body.page-template-page-secretary-php .c-sec-content {
  max-width: var(--c-layout-max);
  margin-left: auto;
  margin-right: auto;
}
body.page-template-page-secretary-php .c-sec-main-card {
  padding: 20px 22px 22px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
body.page-template-page-secretary-php .c-sec-section-head {
  max-width: none;
  margin-bottom: 18px;
}
body.page-template-page-secretary-php .c-sec-section-head .c-section-title {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 28px);
}
body.page-template-page-secretary-php .c-sec-module-intro {
  max-width: none;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.7;
}
body.page-template-page-secretary-php .c-sec-subtitle {
  margin-top: 4px;
  font-size: 12px;
}
body.page-template-page-secretary-php .c-sec-plans-grid {
  gap: 16px;
  margin-bottom: 18px;
}
body.page-template-page-secretary-php .c-sec-plan-card {
  padding: 18px;
  border-radius: 12px;
}
body.page-template-page-secretary-php .c-sec-plan-card-head {
  margin-bottom: 8px;
}
body.page-template-page-secretary-php .c-sec-plan-title {
  font-size: 16px;
}
body.page-template-page-secretary-php .c-sec-plan-price {
  margin-bottom: 8px;
  font-size: 24px;
}
body.page-template-page-secretary-php .c-sec-plan-desc {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.6;
}
body.page-template-page-secretary-php .c-sec-plan-cta {
  padding: 9px 14px;
  font-size: 12px;
}
body.page-template-page-secretary-php .c-sec-table-block {
  margin-top: 0;
}
body.page-template-page-secretary-php .c-sec-table-panel {
  border-radius: 12px;
}
body.page-template-page-secretary-php .c-sec-table-panel-head {
  padding: 10px 16px;
}
body.page-template-page-secretary-php .c-sec-table-panel-title {
  font-size: 13px;
}
body.page-template-page-secretary-php .c-sec-comparison-table th,
body.page-template-page-secretary-php .c-sec-comparison-table td {
  padding: 10px 12px;
  font-size: 13px;
}
body.page-template-page-secretary-php .c-sec-check {
  width: 20px;
  height: 20px;
  font-size: 12px;
}
body.page-template-page-secretary-php .c-sec-note {
  max-width: none;
  margin-top: 14px;
  text-align: left;
  font-size: 12px;
  line-height: 1.55;
}
body.page-template-page-secretary-php .c-cta-section {
  padding-top: 32px;
  padding-bottom: 32px;
}
body.page-template-page-secretary-php main.c-secretary-page {
  background: var(--biz-slate-50, #f8fafc);
}

/* ===== Accounting Page (Banner: 会计税务.html / Body: conson.com.hk/會計稅務) ===== */

.c-acct-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 44px 20px 52px;
}
.c-acct-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.92) 45%, rgba(15, 23, 42, 0.55) 100%),
    var(--c-acct-hero-bg-image, url("/wp-content/uploads/conson2026-site-images/bannerdefault.jpg")) center / cover no-repeat;
}
.c-acct-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--c-layout-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .c-acct-hero-inner {
    grid-template-columns: 1fr;
  }
}
.c-acct-hero-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  font-size: 11px;
  color: rgba(226, 232, 240, 0.92);
}
.c-acct-hero-pill-accent {
  color: #fbbf24;
  font-weight: 600;
}
.c-acct-hero-pill-sep {
  opacity: 0.45;
}
.c-acct-hero-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.c-acct-hero-lead {
  margin: 0 0 14px;
  max-width: 580px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.92);
}
.c-acct-hero-points {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.c-acct-hero-points li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.9);
}
.c-acct-hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: 700;
}
.c-acct-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.c-acct-hero-aside {
  padding: 18px 20px;
  align-self: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.88);
}
.c-acct-hero-aside p {
  margin: 0;
}
.c-acct-hero-aside-label {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbbf24;
}
.c-acct-hero-aside-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: rgba(148, 163, 184, 0.95);
}
.c-acct-hero-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.c-acct-hero-aside-list li {
  position: relative;
  padding-left: 14px;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.9);
}
.c-acct-hero-aside-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fbbf24;
}
.c-acct-hero-aside-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fbbf24;
  text-decoration: none;
}
.c-acct-hero-aside-link:hover {
  color: #fde68a;
  text-decoration: underline;
}
.c-acct-hero-inner--solo {
  grid-template-columns: 1fr;
  max-width: 820px;
}

/* 保留 modifier：与非 compact 页兼容（默认已全部 compact） */
.c-acct-hero:not(.c-acct-hero--compact) {
  padding: 72px 24px 80px;
}
.c-acct-hero:not(.c-acct-hero--compact) .c-acct-hero-inner {
  gap: 40px;
  align-items: center;
}
.c-acct-hero:not(.c-acct-hero--compact) .c-acct-hero-pill {
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 12px;
}
.c-acct-hero:not(.c-acct-hero--compact) .c-acct-hero-title {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.5vw, 48px);
}
.c-acct-hero:not(.c-acct-hero--compact) .c-acct-hero-lead {
  margin-bottom: 20px;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.75;
}
.c-acct-hero:not(.c-acct-hero--compact) .c-acct-hero-points {
  margin-bottom: 24px;
  gap: 8px;
}
.c-acct-hero:not(.c-acct-hero--compact) .c-acct-hero-points li {
  font-size: 14px;
}
.c-acct-hero:not(.c-acct-hero--compact) .c-acct-hero-aside {
  padding: 24px;
}

.c-news-body,
.c-about-contact-body {
  padding: 48px 24px 56px;
}

.c-acct-block {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #fff;
}
.c-acct-block--alt {
  background: var(--biz-slate-50, #f8fafc);
}
.c-acct-content {
  max-width: var(--c-layout-max);
  margin-left: auto;
  margin-right: auto;
}
.c-acct-content--wide {
  max-width: var(--c-layout-max);
}
.c-acct-section-head {
  margin-bottom: 32px;
}
body.page-template-page-accounting-php .c-accounting-page .c-trademark-section-head {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.c-acct-intro-panel {
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: linear-gradient(135deg, #fff 0%, var(--biz-slate-50, #f8fafc) 100%);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.c-acct-intro-panel p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--biz-slate-700, #334155);
}
.c-acct-intro-panel p:last-child {
  margin-bottom: 0;
}
.c-acct-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .c-acct-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.c-acct-highlight {
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.c-acct-highlight:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.c-acct-highlight-value {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--biz-amber-700, #b45309);
  line-height: 1.1;
}
.c-acct-highlight-label {
  display: block;
  font-size: 13px;
  color: var(--biz-slate-600, #475569);
}

.c-acct-service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.c-acct-service-list li {
  position: relative;
  padding: 14px 16px 14px 40px;
  border-radius: 12px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--biz-slate-800, #1e293b);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.c-acct-block--alt .c-acct-service-list li {
  background: #fff;
}
.c-acct-service-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--biz-amber-600, #d97706);
  font-weight: 700;
}
.c-acct-service-list li:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
  transform: translateY(-2px);
}

.c-acct-callout {
  padding: 22px 26px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  border-left: 4px solid var(--biz-amber-600, #d97706);
  background: #fff;
}
.c-acct-callout p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--biz-slate-700, #334155);
}
.c-acct-callout p:last-child {
  margin-bottom: 0;
}

.c-acct-contact-band {
  margin-top: 28px;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: linear-gradient(135deg, var(--biz-navy-900, #0f172a) 0%, #1e293b 100%);
  color: #fff;
  text-align: center;
}
.c-acct-contact-band h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.c-acct-contact-band .c-acct-phone {
  margin: 0 0 18px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
}
.c-acct-contact-band .c-acct-phone a {
  color: #fbbf24;
  text-decoration: none;
}
.c-acct-contact-band .c-acct-phone a:hover {
  color: #fde68a;
}

.c-acct-tax-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .c-acct-tax-grid {
    grid-template-columns: 1fr;
  }
}
.c-acct-tax-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.c-acct-block--alt .c-acct-tax-card,
.c-acct-block .c-acct-tax-card {
  background: #fff;
}
.c-acct-tax-card:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}
.c-acct-tax-card-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-acct-tax-card-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--biz-slate-600, #475569);
}

.c-acct-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .c-acct-split-grid {
    grid-template-columns: 1fr;
  }
}
.c-acct-panel {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  transition: box-shadow 0.2s;
}
.c-acct-block--alt .c-acct-panel {
  background: #fff;
}
.c-acct-panel:hover {
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.c-acct-panel--highlight {
  border-color: rgba(217, 119, 6, 0.45);
  background: rgba(255, 251, 235, 0.55);
}
.c-acct-panel--wide {
  margin-top: 4px;
}
.c-acct-panel h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-acct-panel p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--biz-slate-700, #334155);
}
.c-acct-panel p:last-child {
  margin-bottom: 0;
}

.c-acct-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--biz-slate-500, #64748b);
}
.c-acct-note--center {
  text-align: center;
}
.c-acct-footnotes {
  margin: 20px 0 0;
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.65;
  color: var(--biz-slate-500, #64748b);
}
.c-acct-footnotes li {
  margin-bottom: 6px;
}

.c-acct-rate-table {
  min-width: 0;
  width: 100%;
  margin-top: 8px;
}
.c-acct-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.c-acct-tag-list--cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 600px) {
  .c-acct-tag-list--cols {
    grid-template-columns: 1fr;
  }
}
.c-acct-tag-list li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
  font-size: 13px;
  color: var(--biz-slate-700, #334155);
  transition: background 0.15s, border-color 0.15s;
}
.c-acct-tag-list li:hover {
  background: #fffbeb;
  border-color: #fde68a;
}

.c-acct-steps {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  counter-reset: acct-step;
  display: grid;
  gap: 14px;
}
.c-acct-step-card {
  position: relative;
  counter-increment: acct-step;
  padding: 20px 20px 20px 56px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.c-acct-step-card::before {
  content: counter(acct-step);
  position: absolute;
  left: 18px;
  top: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--biz-navy-900, #0f172a);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.c-acct-step-card:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transform: translateX(4px);
}
.c-acct-step-label {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-acct-step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--biz-slate-600, #475569);
}
.c-acct-process-cta {
  margin: 28px 0 0;
  text-align: center;
}

.c-acct-faq.c-faq-accordion {
  margin-top: 0;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.c-acct-faq .c-faq-content p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
}
.c-acct-faq .c-trademark-table-wrap {
  margin-bottom: 14px;
}

.c-acct-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) {
  .c-acct-news-grid {
    grid-template-columns: 1fr;
  }
}
.c-acct-news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.c-acct-news-card:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}
.c-acct-news-card time {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--biz-slate-400, #94a3b8);
}
.c-acct-news-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.45;
}
.c-acct-news-card h3 a {
  color: var(--biz-navy-900, #0f172a);
  text-decoration: none;
}
.c-acct-news-card h3 a:hover {
  color: var(--biz-amber-700, #b45309);
}
.c-acct-news-card p {
  margin: 0 0 14px;
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  color: var(--biz-slate-600, #475569);
}
.c-acct-news-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-amber-700, #b45309);
  text-decoration: none;
}
.c-acct-news-link:hover {
  text-decoration: underline;
}
.c-acct-empty {
  text-align: center;
  padding: 40px 20px;
  border-radius: 14px;
  border: 1px dashed var(--biz-slate-200, #e2e8f0);
  font-size: 15px;
  color: var(--biz-slate-500, #64748b);
}

/* Tabs — 参考 consonchina.com 会计服务 / 税务顾问 / 须知 */
.c-acct-tab-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-acct-tabs {
  position: relative;
  margin-bottom: 32px;
}
.c-acct-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-100, #f1f5f9);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}
.c-acct-tab-btn {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 14px 20px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: var(--biz-slate-600, #475569);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  border-radius: 10px;
  text-align: center;
}
.c-acct-tab-btn:hover {
  color: var(--biz-navy-900, #0f172a);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--biz-slate-200, #e2e8f0);
}
#c-acct-tab-accounting:checked ~ .c-acct-tab-nav label[for="c-acct-tab-accounting"],
#c-acct-tab-tax-advisory:checked ~ .c-acct-tab-nav label[for="c-acct-tab-tax-advisory"],
#c-acct-tab-faq:checked ~ .c-acct-tab-nav label[for="c-acct-tab-faq"] {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--biz-navy-900, #0f172a) 0%, #1e293b 100%);
  border-color: var(--biz-navy-900, #0f172a);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.22);
  transform: translateY(-1px);
}
.c-acct-tab-panel {
  display: none;
  padding-top: 4px;
  animation: c-acct-tab-in 0.25s ease;
}
@media (max-width: 640px) {
  .c-acct-tab-nav {
    flex-direction: column;
  }
  .c-acct-tab-btn {
    width: 100%;
    min-width: 0;
  }
}
@keyframes c-acct-tab-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
#c-acct-tab-accounting:checked ~ #c-acct-panel-accounting,
#c-acct-tab-tax-advisory:checked ~ #c-acct-panel-tax-advisory,
#c-acct-tab-faq:checked ~ #accounting-faq {
  display: block;
}
.c-acct-tab-block {
  margin-bottom: 28px;
  padding: 24px 26px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.c-acct-tab-block:last-child {
  margin-bottom: 0;
}
.c-acct-tab-block-title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--biz-slate-100, #f1f5f9);
  font-size: 17px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
  letter-spacing: 0.08em;
}
.c-acct-tab-intro p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--biz-slate-700, #334155);
}
.c-acct-tab-intro p:last-child {
  margin-bottom: 0;
}
.c-acct-tab-panel--faq {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* 会计税务页 — 紧凑布局 */
body.page-template-page-accounting-php .c-accounting-page .c-offshore-global.c-acct-block {
  padding: 28px 20px 36px;
}
body.page-template-page-accounting-php .c-acct-main-card {
  padding: 20px 22px 22px;
  border-radius: 14px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
body.page-template-page-accounting-php .c-acct-tabs {
  margin-bottom: 18px;
}
body.page-template-page-accounting-php .c-acct-tab-nav {
  gap: 6px;
  margin-bottom: 16px;
  padding: 6px;
}
body.page-template-page-accounting-php .c-acct-tab-btn {
  min-width: 0;
  padding: 10px 14px;
  font-size: 14px;
}
body.page-template-page-accounting-php .c-acct-tab-block {
  margin-bottom: 0;
  padding: 16px 18px;
  box-shadow: none;
}
body.page-template-page-accounting-php .c-acct-tab-block--combined {
  padding: 0;
  border: none;
  background: transparent;
}
body.page-template-page-accounting-php .c-acct-tab-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
}
@media (max-width: 768px) {
  body.page-template-page-accounting-php .c-acct-tab-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
body.page-template-page-accounting-php .c-acct-tab-block-title {
  margin-bottom: 8px;
  padding-bottom: 6px;
  font-size: 14px;
}
body.page-template-page-accounting-php .c-acct-tab-intro p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.75;
}
body.page-template-page-accounting-php .c-acct-service-list--compact {
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 0;
}
body.page-template-page-accounting-php .c-acct-service-list--compact li {
  padding: 8px 10px 8px 28px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
}
body.page-template-page-accounting-php .c-acct-service-list--compact li::before {
  left: 10px;
  top: 8px;
  font-size: 12px;
}
body.page-template-page-accounting-php .c-acct-service-list--compact li:hover {
  transform: none;
  box-shadow: none;
}
body.page-template-page-accounting-php .c-acct-contact-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 18px;
  padding: 16px 20px;
  text-align: left;
}
body.page-template-page-accounting-php .c-acct-contact-band-text h3 {
  margin: 0 0 4px;
  font-size: 15px;
}
body.page-template-page-accounting-php .c-acct-contact-band .c-acct-phone {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
}
body.page-template-page-accounting-php .c-acct-faq.c-faq-accordion {
  box-shadow: none;
}
body.page-template-page-accounting-php .c-acct-faq .c-faq-summary {
  padding: 14px 18px;
  font-size: 15px;
}
body.page-template-page-accounting-php .c-acct-faq .c-faq-content {
  padding: 0 18px 14px;
}
body.page-template-page-accounting-php .c-acct-faq .c-faq-content p {
  font-size: 14px;
  line-height: 1.7;
}
body.page-template-page-accounting-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

body.page-template-page-accounting-php main.c-accounting-page {
  background: var(--biz-slate-50, #f8fafc);
}
body.page-template-page-accounting-php .c-cta-section {
  margin-top: 0;
}

/* 关于港信页 — 紧凑布局 */
body.page-template-page-about-conson-php .c-about-conson-page .c-offshore-global.c-about-body {
  padding: 28px 20px 36px;
}
body.page-template-page-about-conson-php .c-about-section-head .c-section-title {
  font-size: clamp(22px, 3vw, 28px);
}
body.page-template-page-about-conson-php .c-about-hero .c-home-hero-lead {
  font-size: clamp(15px, 2vw, 17px);
  max-width: 36em;
}
body.page-template-page-about-conson-php .c-about-hero .c-home-hero-stat-num {
  font-size: clamp(20px, 3vw, 26px);
}
body.page-template-page-about-conson-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-top: 0;
}

/* 联络方式页 — 紧凑布局 */
body.page-template-page-contact-locations-php .c-contact-locations-page .c-offshore-global.c-contact-body {
  padding: 28px 20px 36px;
}
body.page-template-page-contact-locations-php .c-contact-section-head .c-section-title {
  font-size: clamp(22px, 3vw, 28px);
}
body.page-template-page-contact-locations-php .c-contact-hero .c-home-hero-lead {
  font-size: clamp(15px, 2vw, 17px);
  max-width: 36em;
}
body.page-template-page-contact-locations-php .c-contact-hero .c-home-hero-stat-num {
  font-size: clamp(20px, 3vw, 26px);
}
body.page-template-page-contact-locations-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-top: 0;
}

/* 服务式办公室页 — 紧凑布局 */
body.page-template-page-serviced-office-php .c-so-section-head .c-section-title {
  font-size: clamp(22px, 3vw, 28px);
}
body.page-template-page-serviced-office-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-top: 0;
}

/* 服务式办公室子页 — 首页风格紧凑布局 */
.c-so-loc-page.c-offshore-page {
  background: var(--biz-slate-50, #f8fafc);
  max-width: none;
  margin: 0;
}
/* 子页顶部 — 浅色双栏（左图右文，参考原版式） */
.c-so-loc-page.c-offshore-page .c-so-loc-intro {
  padding: 24px 20px 8px;
  background: var(--biz-slate-50, #f8fafc);
}
.c-so-loc-page.c-offshore-page .c-so-loc-intro .c-so-content {
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-so-loc-page.c-offshore-page .c-so-loc-breadcrumb {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--biz-slate-500, #64748b);
}
.c-so-loc-page.c-offshore-page .c-so-loc-breadcrumb a {
  color: var(--biz-navy-800, #1e293b);
  font-weight: 500;
}
.c-so-loc-page-head {
  text-align: center;
  margin-bottom: 20px;
}
.c-so-loc-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--biz-slate-500, #64748b);
}
.c-so-loc-page-title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--biz-navy-900, #0f172a);
}
.c-so-loc-page.c-offshore-page .c-so-loc-hero {
  margin: 0 0 4px;
  gap: 22px;
  align-items: center;
}
.c-so-loc-page.c-offshore-page .c-so-loc-hero-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
.c-so-loc-page.c-offshore-page .c-so-loc-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.c-so-loc-page.c-offshore-page .c-so-loc-hero-lead {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--biz-slate-700, #334155);
  text-align: left;
}
.c-so-loc-page.c-offshore-page .c-so-loc-hero-actions {
  gap: 10px;
}
.c-so-loc-page.c-offshore-page .c-so-loc-hero-actions .c-so-hk-btn {
  padding: 10px 16px;
  font-size: 14px;
}
.c-so-loc-page.c-offshore-page .c-so-loc-hero-copy:only-child {
  grid-column: 1 / -1;
}
@media (max-width: 768px) {
  .c-so-loc-page.c-offshore-page .c-so-loc-intro {
    padding-top: 20px;
  }
  .c-so-loc-page.c-offshore-page .c-so-loc-hero {
    gap: 16px;
  }
}
.c-so-locations-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .c-so-locations-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .c-so-locations-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.c-so-loc-card--compact .c-so-loc-card-body {
  padding: 10px 12px 12px;
}
/* 子页底部「其他分行」卡片 — 略突出 + 详情链接按钮化 */
.c-so-loc-page.c-offshore-page .c-so-loc-card--compact {
  background: #fff;
  border-color: var(--biz-slate-200, #e2e8f0);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.c-so-loc-page.c-offshore-page .c-so-loc-card--compact:hover {
  border-color: rgba(0, 97, 255, 0.28);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}
.c-so-loc-page.c-offshore-page .c-so-loc-card--compact .c-so-loc-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 14px;
}
.c-so-loc-page.c-offshore-page .c-so-loc-card--compact .c-so-loc-card-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}
.c-so-loc-page.c-offshore-page .c-so-loc-card--compact .c-so-loc-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  width: 100%;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--sleek-blue, #0061ff);
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--sleek-blue, #0061ff);
  border-radius: 8px;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-so-loc-page.c-offshore-page .c-so-loc-card--compact .c-so-loc-card-link:hover {
  color: var(--sleek-blue, #0061ff);
  text-decoration: none;
  background: rgba(0, 97, 255, 0.06);
  border-color: var(--biz-link, #0052d9);
  box-shadow: 0 2px 10px rgba(0, 97, 255, 0.14);
}
.c-so-loc-page.c-offshore-page .c-so-loc-card--compact .c-so-loc-card-link:focus-visible {
  outline: 2px solid var(--sleek-blue, #0061ff);
  outline-offset: 2px;
}
.c-so-loc-page.c-offshore-page .c-so-loc-card--compact:hover .c-so-loc-card-media img {
  transform: scale(1.04);
}
.c-so-loc-fac-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.c-so-loc-fac-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .c-so-loc-fac-grid,
  .c-so-loc-fac-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.c-so-loc-fac-block {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
}
.c-so-loc-fac-block h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-so-loc-fac-block ul {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--biz-slate-600, #475569);
}
.c-so-loc-fac-block li {
  margin: 3px 0;
}
.c-so-loc-visit-block {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: linear-gradient(135deg, #fffbeb 0%, #fff 60%);
}
.c-so-loc-visit-block .c-so-section-head {
  margin-bottom: 10px;
}
.c-so-loc-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
@media (max-width: 640px) {
  .c-so-loc-visit-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.c-so-loc-visit-item h3 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.c-so-loc-visit-item p {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--biz-slate-700, #334155);
}
.c-so-loc-visit-item p:last-child {
  margin-bottom: 0;
}
.c-so-loc-visit-item a {
  color: var(--biz-navy-800, #1e293b);
  font-weight: 500;
  text-decoration: none;
}
.c-so-loc-visit-item a:hover {
  color: #b45309;
  text-decoration: underline;
}
.c-so-loc-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 900px) {
  .c-so-loc-quotes {
    grid-template-columns: minmax(0, 1fr);
  }
}
.c-so-loc-page.c-offshore-page .c-so-loc-quote {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
  font-size: 13px;
  line-height: 1.6;
  color: var(--biz-slate-700, #334155);
}
.c-so-loc-page.c-offshore-page .c-so-loc-quote p {
  margin: 0 0 8px;
}
.c-so-loc-page.c-offshore-page .c-so-loc-quote footer {
  font-size: 12px;
  font-weight: 600;
  color: var(--biz-slate-500, #64748b);
}
.c-so-loc-back {
  margin: 14px 0 0;
}
.c-so-loc-back-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--biz-navy-800, #1e293b);
  text-decoration: none;
}
.c-so-loc-back-link:hover {
  color: #b45309;
  text-decoration: underline;
}
.c-so-loc-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.c-so-loc-pillar-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .c-so-loc-pillar-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .c-so-loc-pillar-grid,
  .c-so-loc-pillar-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.c-so-loc-pillar {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
}
.c-so-loc-pillar h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-so-loc-pillar p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--biz-slate-600, #475569);
}
.c-so-loc-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.c-so-loc-sites-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .c-so-loc-sites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .c-so-loc-sites-grid,
  .c-so-loc-sites-grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.c-so-loc-site-card {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  background: var(--biz-slate-50, #f8fafc);
}
.c-so-loc-site-district {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b45309;
}
.c-so-loc-site-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
.c-so-loc-site-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--biz-slate-600, #475569);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.page-template-page-serviced-office-location-php .c-so-loc-page.c-offshore-page .c-offshore-global.c-so-body,
body.page-template-page-serviced-office-tst-php .c-so-loc-page.c-offshore-page .c-offshore-global.c-so-body,
body.page-template-page-taipei-office-php .c-so-loc-page.c-offshore-page .c-offshore-global.c-so-body,
body.page-template-page-korea-office-php .c-so-loc-page.c-offshore-page .c-offshore-global.c-so-body {
  padding: 20px 20px 36px;
}
body.page-template-page-serviced-office-location-php .c-cta-section,
body.page-template-page-serviced-office-tst-php .c-cta-section,
body.page-template-page-taipei-office-php .c-cta-section,
body.page-template-page-korea-office-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-top: 0;
}

/* 虚拟办公室 — 首页风格 */
.c-vo-page.c-offshore-page {
  background: var(--biz-slate-50, #f8fafc);
  max-width: none;
  margin: 0;
}
body.page-template-page-virtual-office-php .c-vo-page .c-vo-pricing-note,
body.page-template-page-virtual-office-php .c-vo-page .c-vo-footnote {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--biz-slate-600, #475569);
}
body.page-template-page-virtual-office-php .c-vo-page .c-vo-rmb-subtitle {
  margin: 20px 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
}
body.page-template-page-virtual-office-php .c-vo-page .c-vo-table-wrap {
  overflow-x: auto;
  margin-bottom: 12px;
}
body.page-template-page-virtual-office-php .c-vo-page .c-vo-steps {
  margin-top: 4px;
}
body.page-template-page-virtual-office-php .c-vo-page .c-vo-process-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--biz-slate-500, #64748b);
}
body.page-template-page-virtual-office-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-top: 0;
}

/* 香港公司年审 — 与虚拟办公室同版式 */
.c-annual-page.c-offshore-page {
  background: var(--biz-slate-50, #f8fafc);
  max-width: none;
  margin: 0;
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-pricing-note,
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-footnote {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--biz-slate-600, #475569);
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-plan-price-tag {
  margin: 0;
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-plan-branch-fees {
  margin: 0 0 4px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
body.page-template-page-hk-annual-exam-php .c-vo-plan--featured .c-vo-plan-branch-fees {
  background: rgba(0, 97, 255, 0.04);
  border-color: rgba(0, 97, 255, 0.1);
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-plan-branch-fees-title {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--biz-slate-500, #64748b);
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-plan-branch-fees-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-plan-branch-fees-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 8px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--biz-slate-600, #475569);
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-plan-branch-addon {
  font-weight: 700;
  color: var(--biz-navy-900, #0f172a);
  white-space: nowrap;
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-plan-unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--biz-slate-500, #64748b);
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-steps {
  margin-top: 4px;
}
body.page-template-page-hk-annual-exam-php .c-annual-page .c-vo-process-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--biz-slate-500, #64748b);
}
body.page-template-page-hk-annual-exam-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-top: 0;
}

/* 虚拟办公室子页 — 浅色 intro + 紧凑正文（与服务式办公室子页一致） */
.c-vo-loc-page.c-offshore-page.c-so-loc-page {
  background: var(--biz-slate-50, #f8fafc);
  max-width: none;
  margin: 0;
}
.c-vo-loc-page.c-offshore-page .c-so-loc-intro {
  padding: 24px 20px 8px;
  background: var(--biz-slate-50, #f8fafc);
}
.c-vo-loc-page.c-offshore-page .c-so-loc-intro .c-so-content {
  max-width: var(--c-layout-max);
  margin: 0 auto;
}
.c-vo-loc-page.c-offshore-page .c-vo-loc-plans-body {
  margin-top: 8px;
}
.c-vo-loc-page.c-offshore-page .c-vo-loc-plans-body .c-vo-loc-plans-grid {
  gap: 12px;
}
.c-vo-loc-page.c-offshore-page .c-vo-loc-plan-card {
  border-radius: 10px;
  border: 1px solid var(--biz-slate-200, #e2e8f0);
  box-shadow: none;
}
body.page-template-page-virtual-office-location-php .c-vo-loc-page.c-offshore-page .c-offshore-global.c-so-body {
  padding: 20px 20px 36px;
}
body.page-template-page-virtual-office-location-php .c-vo-loc-page.c-offshore-page .c-so-loc-card--compact .c-so-loc-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sleek-blue, #0061ff);
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--sleek-blue, #0061ff);
  border-radius: 8px;
  box-sizing: border-box;
}
body.page-template-page-virtual-office-location-php .c-cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-top: 0;
}
