/* ═══════════════════════════════════════════
   Service Detail — CheckNow 咨询服务详情页
   深蓝 · 金色强调 · 高端商务
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.cn-sd-hero {
  position: relative;
  overflow: hidden;
  padding: 100px var(--cn-page-gutter);
  background: linear-gradient(135deg, var(--checknow-primary-dark) 0%, var(--checknow-primary) 60%, #0d1b2a 100%);
}

.cn-sd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cn-sd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cn-sd-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(10,36,99,0.92) 0%, rgba(10,36,99,0.7) 50%, rgba(10,36,99,0.4) 100%);
}

/* 企业出海：与首页/Hub 一致的深 Navy 层次，避免纯蓝色块。 */
.cn-sd-hero--business {
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 175, 55, 0.10) 0%, transparent 34%),
    linear-gradient(135deg, #0a192f 0%, #0d1c32 55%, #132a46 100%);
}

.cn-sd-hero--has-highlights {
  padding-bottom: 190px;
}

.cn-sd-hero--has-highlights .cn-immigration-single__highlights {
  z-index: 2;
}

.cn-sd-hero--business .cn-sd-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(10, 25, 46, 0.92) 0%,
    rgba(13, 28, 50, 0.78) 50%,
    rgba(19, 42, 70, 0.48) 100%
  );
}

.cn-sd-hero--business .cn-sd-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 46, 0.72) 0%, transparent 52%);
  pointer-events: none;
}

/* ponytail: 企业出海/商务落地 — Hero 垂直方向更舒展 */
.cn-sd-hero--business {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cn-sd-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding-left: calc(var(--cn-hero-content-inset) - var(--cn-page-gutter));
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 60px;
}

.cn-sd-hero__text {
  flex: 1;
  max-width: 640px;
}

.cn-sd-hero__eye {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--checknow-accent);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 14px;
  margin-bottom: 20px;
}

.cn-sd-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.cn-sd-hero__desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 540px;
}

/* ── Section base ── */
.cn-sd-section {
  padding: 80px 24px;
}

.cn-sd-section--light {
  background: var(--checknow-bg);
}

.cn-sd-section--dark {
  background: var(--checknow-primary-dark);
  color: #fff;
}

.cn-sd-section--muted {
  background: var(--checknow-primary-light);
}

.cn-sd-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cn-sd-section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--checknow-accent);
  margin-bottom: 8px;
}

.cn-sd-section__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: inherit;
}

.cn-sd-section__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--checknow-text-light);
  max-width: 720px;
}

.cn-sd-section--dark .cn-sd-section__desc {
  color: rgba(255,255,255,0.75);
}

/* ── Service Content Grid ── */
.cn-sd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.cn-sd-grid__card {
  padding: 28px 24px;
  background: var(--checknow-bg);
  border: 1px solid var(--checknow-border);
  border-top: 3px solid var(--checknow-accent);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cn-sd-grid__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(10, 36, 99, 0.1);
}

.cn-sd-grid__icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.cn-sd-grid__icon .cn-icon {
  display: block;
  color: var(--checknow-primary);
}

.cn-sd-grid__title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--checknow-text);
}

.cn-sd-grid__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--checknow-text-light);
  margin: 0;
}




/* ── cn-sd-hero 内的面包屑（深蓝底） ── */
.cn-sd-hero .cn-breadcrumb a {
    color: rgba(255,255,255,.65);
}
.cn-sd-hero .cn-breadcrumb a:hover {
    color: #e4b62d;
}
.cn-sd-hero .cn-breadcrumb li {
    color: rgba(255,255,255,.65);
}
.cn-sd-hero .cn-breadcrumb li::after {
    color: rgba(255,255,255,.25);
}
.cn-sd-hero .cn-breadcrumb__current {
    color: #E4B642;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cn-sd-hero {
    padding: 60px var(--cn-page-gutter);
  }

  .cn-sd-hero--has-highlights {
    padding-bottom: 0;
  }

  .cn-sd-hero--has-highlights .cn-immigration-single__highlights {
    margin: 40px calc(var(--cn-page-gutter) * -1) -60px;
  }

  .cn-sd-hero__inner {
    flex-direction: column;
    gap: 0;
    padding-left: 0;
  }

  .cn-sd-hero__text {
    max-width: 100%;
  }


  .cn-sd-section {
    padding: 48px 20px;
  }

  .cn-sd-grid {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  .cn-sd-hero {
    padding: 80px 24px;
  }

  .cn-sd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ponytail: biz-summary 已迁移到 cn-sd-biz-detail 新布局 */

/* ═══════════════════════════════════════════
   Business Detail — 企业出海子服务细则
   深色背景 · 左右两栏 · 咨询指引 · 合规说明
   ═══════════════════════════════════════════ */
.cn-sd-biz-detail {
  background: #0a192f;
}

.cn-sd-biz-detail .cn-sd-inner > * + * {
  margin-top: 0;
}

/* ── 左右两栏 ── */
.cn-sd-biz-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--cn-space-xl);
  align-items: start;
}

.cn-sd-biz-detail__col {
  border-radius: var(--cn-radius-md);
  padding: var(--cn-space-xl);
}

.cn-sd-biz-detail__col--light {
  background: rgba(255, 255, 255, .06);
}

.cn-sd-biz-detail__col-title {
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 var(--cn-space-md);
  padding-bottom: var(--cn-space-sm);
  border-bottom: 2px solid #D4AF37;
}

/* ── 核心细则列表 ── */
.cn-sd-biz-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--cn-space-md);
}

.cn-sd-biz-detail__item {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  padding-left: 18px;
  position: relative;
}

.cn-sd-biz-detail__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #D4AF37;
  border-radius: 50%;
}

.cn-sd-biz-detail__item strong {
  color: #F0D495;
  font-weight: 600;
}

/* ── 服务细则步骤 ── */
.cn-sd-biz-detail__steps {
  list-style: none;
  counter-reset: sd-biz-step;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--cn-space-lg);
}

.cn-sd-biz-detail__step {
  counter-increment: sd-biz-step;
  padding-left: 40px;
  position: relative;
}

.cn-sd-biz-detail__step::before {
  content: counter(sd-biz-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #D4AF37;
  color: #0a192f;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cn-sd-biz-detail__step-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #F0D495;
  margin-bottom: 4px;
}

.cn-sd-biz-detail__step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

/* ── 中间咨询指引 ── */
.cn-sd-biz-detail__cta-bar {
  text-align: center;
  padding: var(--cn-space-xl) 0;
  margin-top: var(--cn-space-lg);
}

.cn-sd-biz-detail__cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  margin: 0 0 var(--cn-space-md);
}

.cn-sd-biz-detail__cta-link {
  display: inline-block;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #0a192f;
  background: #D4AF37;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s;
}

.cn-sd-biz-detail__cta-link:hover {
  background: #B89326;
}

/* ── 企业出海流程 — 浅色版 ── */
.cn-sd-process--light {
  background: #fff;
}

@media (max-width: 768px) {
  .cn-sd-biz-detail__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   Current generic consulting service detail
   ═══════════════════════════════════════════ */
.cn-sd-v2-section {
  padding: 88px var(--cn-page-gutter, 24px);
  overflow: hidden;
  background: #fff;
}

.cn-sd-v2-section--muted,
.cn-sd-v2-faq {
  background: #f7f8fa;
}

.cn-sd-v2-section--navy {
  background: #0a192f;
  color: #fff;
}

.cn-sd-v2-inner,
.cn-sd-v2-faq .hub-section__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.cn-sd-v2-eyebrow {
  margin: 0 0 8px;
  color: #b8902f;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cn-sd-v2-title,
.cn-sd-v2-faq .hub-section__heading {
  margin: 0 0 32px;
  color: #17283a;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}

.cn-sd-v2-section--navy .cn-sd-v2-title {
  color: #fff;
}

/* 业务概览与服务范围：同一 section、相同顶部基线。 */
.cn-sd-v2-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
}

.cn-sd-v2-overview__intro,
.cn-sd-v2-overview__scope {
  min-width: 0;
}

.cn-sd-v2-overview__scope {
  padding-left: clamp(32px, 4vw, 56px);
  border-left: 1px solid #dfe3e8;
}

.cn-sd-v2-richtext {
  color: #4d5d6c;
  font-size: 16px;
  line-height: 1.85;
}

.cn-sd-v2-richtext p {
  margin: 0 0 16px;
}

.cn-sd-v2-richtext p:last-child {
  margin-bottom: 0;
}

.cn-sd-v2-audience {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}

.cn-sd-v2-audience h3,
.cn-sd-v2-audience p {
  margin: 0;
}

.cn-sd-v2-audience h3 {
  margin-bottom: 7px;
  color: #17283a;
  font-size: 14px;
  font-weight: 700;
}

.cn-sd-v2-audience p {
  color: #647180;
  font-size: 14px;
  line-height: 1.7;
}

.cn-sd-v2-scope-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cn-sd-v2-scope-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #e5e7eb;
}

.cn-sd-v2-scope-list li:first-child {
  padding-top: 0;
}

.cn-sd-v2-scope-list__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(184, 144, 47, .45);
  border-radius: 50%;
  color: #a77e22;
  font-size: 12px;
  font-weight: 700;
}

.cn-sd-v2-scope-list h3,
.cn-sd-v2-scope-list p {
  margin: 0;
}

.cn-sd-v2-scope-list h3 {
  color: #17283a;
  font-size: 16px;
  line-height: 1.45;
}

.cn-sd-v2-scope-list p {
  margin-top: 5px;
  color: #6b7785;
  font-size: 13px;
  line-height: 1.6;
}

/* 项目优势：auto-fit + justify-content 使卡片在不足整行时保持居中 */
.cn-sd-v2-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 300px));
  gap: 18px;
  justify-content: center;
}

.cn-sd-v2-advantage {
  padding: 26px 24px;
  border: 1px solid #e0e4e9;
  border-top-width: 1px;
  border-radius: 4px;
  background: #fff;
}

.cn-sd-v2-advantage__icon {
  display: inline-flex;
  margin-bottom: 17px;
  color: #b8902f;
}

.cn-sd-v2-advantage h3,
.cn-sd-v2-advantage p {
  margin: 0;
}

.cn-sd-v2-advantage h3 {
  color: #17283a;
  font-size: 17px;
  line-height: 1.4;
}

.cn-sd-v2-advantage p {
  margin-top: 9px;
  color: #667382;
  font-size: 14px;
  line-height: 1.7;
}

/* 企业出海与商务落地：项目优势使用深色区块与深色卡片。 */
.cn-sd-v2-advantages--dark {
  background: #0a192f;
  color: #fff;
}

.cn-sd-v2-advantages--dark .cn-sd-v2-eyebrow {
  color: #d4af37;
}

.cn-sd-v2-advantages--dark .cn-sd-v2-title {
  color: #fff;
}

.cn-sd-v2-advantages--dark .cn-sd-v2-advantage {
  background: #10243f;
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.cn-sd-v2-advantages--dark .cn-sd-v2-advantage h3 {
  color: #fff;
}

.cn-sd-v2-advantages--dark .cn-sd-v2-advantage p {
  color: rgba(255, 255, 255, .72);
}

.cn-sd-v2-advantages--dark .cn-sd-v2-advantage__icon {
  color: #d4af37;
}

/* 动态服务流程 */
.cn-sd-v2-process__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.cn-sd-v2-process__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 0 24px 0 0;
}

.cn-sd-v2-process__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 42px;
  right: 0;
  height: 1px;
  background: #d9dee5;
  z-index: 0;
}

.cn-sd-v2-process__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0a192f;
  color: #f0d495;
  font-size: 12px;
  font-weight: 700;
}

.cn-sd-v2-process__item h3,
.cn-sd-v2-process__item p {
  position: relative;
  z-index: 1;
  margin: 0;
  background: #fff;
}

.cn-sd-v2-process__item h3 {
  min-height: 40px;
  padding: 8px 4px 0 0;
  color: #17283a;
  font-size: 15px;
  line-height: 1.45;
}

.cn-sd-v2-process__item p {
  padding: 13px 12px 0 0;
  color: #6b7785;
  font-size: 13px;
  line-height: 1.65;
}

/* 核心服务：连续编号列表，避免密集表格与厚重卡片。 */
.cn-sd-v2-core {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.cn-sd-v2-core__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.cn-sd-v2-core__number {
  color: #d4af37;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .08em;
}

.cn-sd-v2-core h3,
.cn-sd-v2-core p {
  margin: 0;
}

.cn-sd-v2-core h3 {
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
}

.cn-sd-v2-core p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .67);
  font-size: 14px;
  line-height: 1.7;
}

/* 公共 FAQ 组件在详情页的局部样式。 */
.cn-sd-v2-faq {
  padding: 88px var(--cn-page-gutter, 24px);
}

.cn-sd-v2-faq .hub-faq__list {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  gap: 12px;
}

.cn-sd-v2-faq .hub-faq__item {
  overflow: hidden;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background: #fff;
}

.cn-sd-v2-faq .hub-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: #17283a;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.cn-sd-v2-faq .hub-faq__question::-webkit-details-marker {
  display: none;
}

.cn-sd-v2-faq .hub-faq__icon {
  flex: 0 0 auto;
  color: #b8902f;
  transition: transform .2s ease;
}

.cn-sd-v2-faq .hub-faq__item[open] .hub-faq__icon {
  transform: rotate(180deg);
}

.cn-sd-v2-faq .hub-faq__answer {
  padding: 0 20px 18px;
  color: #657281;
  font-size: 14px;
  line-height: 1.75;
}

.cn-sd-v2-faq .hub-faq__answer p {
  margin: 0 0 10px;
}

.cn-sd-v2-faq .hub-faq__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .cn-sd-v2-section,
  .cn-sd-v2-faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .cn-sd-v2-overview__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cn-sd-v2-overview__scope {
    padding: 0;
    border-left: 0;
    border-top: 1px solid #dfe3e8;
    padding-top: 42px;
  }

  .cn-sd-v2-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .cn-sd-v2-process__item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .cn-sd-v2-section,
  .cn-sd-v2-faq {
    padding: 54px 20px;
  }

  .cn-sd-v2-title,
  .cn-sd-v2-faq .hub-section__heading {
    margin-bottom: 24px;
  }

  .cn-sd-v2-overview__grid {
    gap: 38px;
  }

  .cn-sd-v2-overview__scope {
    padding-top: 34px;
  }

  .cn-sd-v2-advantages,
  .cn-sd-v2-process__list,
  .cn-sd-v2-core {
    grid-template-columns: 1fr;
  }

  .cn-sd-v2-process__list {
    gap: 0;
    padding-left: 2px;
  }

  .cn-sd-v2-process__item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 0 0 30px;
  }

  .cn-sd-v2-process__item:not(:last-child)::after,
  .cn-sd-v2-process__item:nth-child(2n)::after {
    display: block;
    top: 40px;
    bottom: 0;
    left: 19px;
    width: 1px;
    height: auto;
  }

  .cn-sd-v2-process__item h3 {
    min-height: 0;
    padding-top: 7px;
  }

  .cn-sd-v2-process__item p {
    padding-top: 8px;
  }

  .cn-sd-v2-core {
    gap: 0;
  }

  .cn-sd-v2-core__item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
  }
}
