/* ============================================================
   page-index.css — 首页 · 云朵拟态 (kc-*)
   参考风格：柔雾粉灰渐变 + 漂浮云朵 + 圆角括号描边 + 粗黑无衬线大字
   ============================================================ */

html.theme-pearl-elegance .pe-home {
  --kc-bg: #efe8e5;
  --kc-bg-alt: #e9e2e6;
  --kc-surface: #fffdfb;
  --kc-ink: #1c1a17;
  --kc-muted: #7a736c;
  --kc-border: rgba(28, 26, 23, 0.1);
  --kc-border-strong: rgba(28, 26, 23, 0.2);
  --kc-shadow: 0 26px 60px -30px rgba(28, 26, 23, 0.24);
  --kc-shadow-sm: 0 14px 32px -18px rgba(28, 26, 23, 0.18);
  --kc-clay: #c98f6b;
  --kc-sage: #7f9a76;
  --kc-sky: #7f97b8;
  --kc-sun: #d9a53f;
  --kc-sans: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  font-family: var(--kc-sans);
  /* 全站统一底色：各板块不再各自铺色块，避免出现"一格一格"的割裂感 */
  background: #f6f1ec;
}

/* 首页内容区加宽：大屏下避免板块内容显得又小又居中 */
.pe-home .container {
  max-width: 1360px;
}

/* —— 云朵组件 —— */
.kc-cloud {
  position: absolute;
  width: 76px;
  height: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #eee7e2 100%);
  border-radius: 999px;
  box-shadow: 0 16px 28px -12px rgba(28, 26, 23, 0.22);
  animation: kc-float 8s ease-in-out infinite;
  pointer-events: none;
}

.kc-cloud::before,
.kc-cloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.kc-cloud::before { width: 42px; height: 42px; top: -21px; left: 6px; }
.kc-cloud::after { width: 30px; height: 30px; top: -15px; left: 42px; }

.kc-cloud--sm { width: 44px; height: 18px; }
.kc-cloud--sm::before { width: 24px; height: 24px; top: -12px; left: 4px; }
.kc-cloud--sm::after { width: 17px; height: 17px; top: -8px; left: 24px; }

.kc-cloud--md { width: 62px; height: 24px; }
.kc-cloud--md::before { width: 34px; height: 34px; top: -17px; left: 5px; }
.kc-cloud--md::after { width: 24px; height: 24px; top: -12px; left: 34px; }

.kc-cloud--lg { width: 112px; height: 44px; }
.kc-cloud--lg::before { width: 62px; height: 62px; top: -31px; left: 10px; }
.kc-cloud--lg::after { width: 44px; height: 44px; top: -22px; left: 62px; }

@keyframes kc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* —— 描边角标 —— */
.kc-frame {
  position: absolute;
  inset: -10px;
  pointer-events: none;
}

.kc-frame__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0 solid var(--kc-border-strong);
}

.kc-frame__corner--tl { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; border-radius: 6px 0 0 0; }
.kc-frame__corner--tr { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; border-radius: 0 6px 0 0; }
.kc-frame__corner--bl { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; border-radius: 0 0 0 6px; }
.kc-frame__corner--br { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; border-radius: 0 0 6px 0; }

/* —— 通用：徽标胶囊 / 标题 / 按钮 / 链接 —— */
.kc-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 24px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--kc-ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--kc-border-strong);
}

.kc-head {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto clamp(32px, 5vw, 52px);
}

.kc-head--onlight::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kc-clay), var(--kc-sun));
}

.kc-head__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kc-clay);
}

.kc-head__title {
  margin: 0 0 14px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--kc-ink);
}

.kc-head__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--kc-muted);
}

.kc-head__sub a {
  color: var(--kc-clay);
  font-weight: 700;
}

.kc-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 15px 28px;
  border: none;
  border-radius: 999px;
  font-family: var(--kc-sans);
  font-weight: 700;
  font-size: 15px;
  color: #fffdfb;
  background: #18140f;
  cursor: pointer;
  box-shadow: 0 16px 34px -14px rgba(24, 20, 15, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kc-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(24, 20, 15, 0.55);
}

.kc-btn-dark--onlight {
  color: #1c1a17;
  background: #fffdfb;
  box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.4);
}

.kc-btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--kc-ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--kc-border-strong);
  transition: background 0.2s ease, transform 0.2s ease;
}

.kc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.kc-btn-outline .kc-frame { inset: -7px; }

.kc-link-quiet {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 253, 251, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kc-link-quiet:hover { color: #fffdfb; }

/* —— ① 首屏 · 占满整屏（分栏铺满，不做窄列居中） —— */
.kc-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  padding: clamp(120px, 14vw, 170px) 0 clamp(64px, 9vw, 96px);
  background: radial-gradient(130% 100% at 50% -10%, #f3ebe6 0%, #ece3e2 45%, #ede7e3 75%, #f6f1ec 100%);
}

html.theme-pearl-elegance:has(#page-home) .pe-home .kc-hero {
  margin-top: calc(-1 * var(--nav-height));
}

.kc-hero__clouds { position: absolute; inset: 0; z-index: 0; }
.kc-hero__clouds .kc-cloud:nth-child(1) { top: 10%; left: 3%; animation-delay: 0s; }
.kc-hero__clouds .kc-cloud:nth-child(2) { top: 20%; left: 10%; animation-delay: 1.2s; }
.kc-hero__clouds .kc-cloud:nth-child(3) { top: 6%; right: 5%; animation-delay: 0.6s; }
.kc-hero__clouds .kc-cloud:nth-child(4) { top: 24%; right: 26%; animation-delay: 2s; }
.kc-hero__clouds .kc-cloud:nth-child(5) { top: 44%; right: 2%; animation-delay: 1.6s; }
.kc-hero__clouds .kc-cloud:nth-child(6) { top: 70%; left: 1%; animation-delay: 0.9s; }
.kc-hero__clouds .kc-cloud:nth-child(7) { top: 80%; right: 8%; animation-delay: 1.8s; }

@media (max-width: 720px) {
  .kc-hero__clouds .kc-cloud:nth-child(4),
  .kc-hero__clouds .kc-cloud:nth-child(6) { display: none; }
}

.kc-hero__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding-inline: clamp(24px, 6vw, 88px);
}

.kc-hero__grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.kc-hero__col-text {
  flex: 0 0 auto;
  width: min(920px, 100%);
}

.kc-hero__col-panel {
  flex: 0 0 auto;
  width: 400px;
  max-width: 100%;
}

@media (max-width: 1080px) {
  .kc-hero {
    justify-content: flex-start;
    min-height: auto;
    padding-top: calc(var(--nav-height) + clamp(20px, 5vw, 36px));
    padding-bottom: clamp(48px, 8vw, 72px);
  }

  .kc-hero__wrap {
    width: 100%;
    padding-inline: clamp(16px, 4vw, 28px);
  }

  .kc-hero__grid {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    gap: clamp(36px, 8vw, 56px);
  }

  .kc-hero__col-text { width: 100%; text-align: center; }
  .kc-hero__col-panel { width: 100%; justify-content: center; }
  .kc-hero__title { font-size: clamp(30px, 8vw, 44px); }
}

.kc-hero__col-panel { display: flex; justify-content: flex-start; }

/* —— 首屏右侧：产品卡 —— */
.kc-hero__card {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 28px;
  overflow: hidden;
  background: #fffdfb;
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow);
}

.kc-hero__card-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f6f1ec;
}

.kc-hero__card-photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 56px;
  background: linear-gradient(180deg, transparent 0%, #fffdfb 100%);
  pointer-events: none;
}

.kc-hero__card-photo img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
  object-fit: contain;
}

.kc-hero__card-info {
  padding: clamp(14px, 2vw, 18px) clamp(22px, 2.8vw, 28px) clamp(24px, 3vw, 28px);
}

/* 规格：单行图标短语，逐项分隔 */
.kc-hero__meta-row {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
}

.kc-hero__meta-row li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
  margin-right: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--kc-ink);
  border-right: 1px solid var(--kc-border);
}

.kc-hero__meta-row li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.kc-hero__meta-row i { width: 13px; height: 13px; color: var(--kc-clay); }

.kc-hero__meta-region {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--kc-muted);
}

.kc-hero__meta-region i { width: 13px; height: 13px; color: var(--kc-clay); flex-shrink: 0; }

/* 价格：双档卡片，推荐档高亮 */
.kc-hero__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.kc-hero__tier {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: #f6f2ee;
  border: 1px solid rgba(28, 26, 23, 0.06);
}

.kc-hero__tier--feat {
  background: #1c1a17;
  border-color: #1c1a17;
}

.kc-hero__tier-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.kc-hero__tier-spec {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--kc-muted);
}

.kc-hero__tier--feat .kc-hero__tier-spec { color: rgba(255, 253, 251, 0.62); }

.kc-hero__tier-tag {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #1c1a17;
  background: var(--kc-sun);
}

.kc-hero__tier-amt {
  display: block;
  font-weight: 800;
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.1;
  color: var(--kc-ink);
}

.kc-hero__tier--feat .kc-hero__tier-amt { color: #fffdfb; }

.kc-hero__tier-amt small {
  font-size: 11px;
  font-weight: 600;
  color: var(--kc-muted);
}

.kc-hero__tier--feat .kc-hero__tier-amt small { color: rgba(255, 253, 251, 0.62); }

.kc-hero__card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--kc-clay);
  text-decoration: none;
}

.kc-hero__card-link i { width: 13px; height: 13px; }

@media (max-width: 1080px) {
  .kc-hero__card { max-width: 400px; margin-inline: auto; }
}

.kc-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vh, 40px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kc-muted);
  animation: kc-scroll-bounce 2.2s ease-in-out infinite;
}

.kc-hero__scroll i { width: 16px; height: 16px; }

@keyframes kc-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 640px) {
  .kc-hero__scroll { display: none; }
}

.kc-hero__title {
  margin: 0 0 18px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--kc-ink);
}

.kc-hero__role {
  margin: 0 0 18px;
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 600;
  color: #46413b;
}

.kc-hero__sub {
  margin: 0 0 28px;
  max-width: 50ch;
  font-size: clamp(14.5px, 1.3vw, 16px);
  line-height: 1.8;
  color: var(--kc-muted);
}

@media (max-width: 1080px) {
  .kc-hero__sub { margin-inline: auto; text-align: center; }
}

.kc-hero__points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 1080px) {
  .kc-hero__points { justify-content: center; }
}

.kc-hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--kc-ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--kc-border);
}

.kc-hero__points i { width: 14px; height: 14px; color: var(--kc-sage); }

.kc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px 20px;
}

@media (max-width: 1080px) {
  .kc-hero__actions { justify-content: center; }
}

@media (max-width: 480px) {
  .kc-hero__wrap { padding-inline: 16px; }
  .kc-hero__meta-row li {
    padding-right: 8px;
    margin-right: 8px;
    font-size: 11.5px;
  }
  .kc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .kc-hero__actions .kc-btn-dark,
  .kc-hero__actions .kc-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .kc-hero__actions .kc-btn-outline .kc-frame { inset: -4px; }
}

/* —— ①b 设计 · 轨道统计条 —— */
.kc-orbit {
  padding: clamp(48px, 8vw, 84px) 0;
}

.kc-orbit__visual {
  margin: 0 0 clamp(32px, 5vw, 48px);
  text-align: center;
}

.kc-orbit__visual img {
  display: block;
  width: min(100%, 880px);
  height: auto;
  margin-inline: auto;
  border-radius: 20px;
  box-shadow: var(--kc-shadow-sm);
}

.kc-orbit__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  padding-top: 20px;
}

.kc-orbit__line {
  position: absolute;
  top: 6px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--kc-border-strong) 0 10px, transparent 10px 22px);
}

.kc-orbit__stop {
  position: relative;
  text-align: center;
  padding: 30px 18px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
}

.kc-orbit__stop::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--kc-clay);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--kc-border-strong);
}

.kc-orbit__num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--kc-ink);
}

.kc-orbit__label {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--kc-muted);
}

@media (max-width: 720px) {
  .kc-orbit__track { grid-template-columns: 1fr; gap: 20px; }
  .kc-orbit__line { display: none; }
}

/* —— ② 时间线 · 之字形 —— */
.kc-journey {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-journey::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -60px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  background: radial-gradient(circle, var(--kc-clay) 0%, transparent 70%);
  pointer-events: none;
}

.kc-journey .container { position: relative; z-index: 1; }

.kc-journey__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.kc-journey__visual {
  margin: 0;
}

.kc-journey__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--kc-shadow-sm);
}

.kc-journey__path {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}

.kc-journey__path::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 21px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--kc-border-strong) 0 8px, transparent 8px 16px);
}

.kc-journey__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: clamp(22px, 3.5vw, 32px);
}

.kc-journey__step:last-child { padding-bottom: 0; }

.kc-journey__dot {
  flex-shrink: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: 15px;
  color: #fffdfb;
  background: var(--kc-ink);
}

.kc-journey__card {
  flex: 1;
  min-width: 0;
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 2.5vw, 24px);
  border-radius: 16px;
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
}

.kc-journey__card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--kc-ink);
}

.kc-journey__card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--kc-muted);
}

.kc-journey__foot {
  margin: clamp(24px, 3vw, 32px) 0 0;
  text-align: center;
}

.kc-journey__foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--kc-ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--kc-border-strong);
  padding-bottom: 2px;
}

.kc-journey__foot i { width: 15px; height: 15px; }

@media (max-width: 960px) {
  .kc-journey__layout {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 48px);
  }

  .kc-journey__visual { max-width: 560px; margin-inline: auto; }
  .kc-journey__path { max-width: 560px; margin-inline: auto; }
}

/* —— ②b 方案对比 · 叠放卡片 —— */
.kc-compare {
  padding: clamp(56px, 9vw, 96px) 0 clamp(48px, 8vw, 84px);
}

.kc-compare__stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  max-width: 68rem;
  margin: 0 auto;
}

.kc-compare-card {
  padding: clamp(24px, 3.2vw, 30px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
  transition: transform 0.3s ease;
}

.kc-compare-card--side { opacity: 0.92; }
.kc-compare-card--rotl { transform: rotate(-3deg) translateY(10px); }
.kc-compare-card--rotr { transform: rotate(3deg) translateY(10px); }

.kc-compare-card--lead {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3.6vw, 36px);
  background: linear-gradient(165deg, #fff 0%, #fbf3ec 100%);
  border-color: var(--kc-border-strong);
  box-shadow: var(--kc-shadow);
  transform: scale(1.05);
}

.kc-compare-card__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--kc-muted);
  background: rgba(28, 26, 23, 0.05);
  border: 1px solid var(--kc-border);
}

.kc-compare-card__badge--gold {
  color: #fffdfb;
  background: var(--kc-clay);
  border-color: var(--kc-clay);
}

.kc-compare-card h3 {
  margin: 0 0 16px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: clamp(19px, 2.2vw, 23px);
  color: var(--kc-ink);
}

.kc-compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kc-compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a453f;
}

.kc-compare-card li i { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--kc-sage); }

@media (max-width: 860px) {
  .kc-compare__stack { grid-template-columns: 1fr; max-width: 420px; }
  .kc-compare-card--rotl, .kc-compare-card--rotr { transform: none; }
  .kc-compare-card--lead { transform: none; order: -1; }
}

/* —— ③ 性能支柱 · 拼贴网格 —— */
.kc-pillars {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-pillars::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 8%;
  left: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  background: radial-gradient(circle, var(--kc-sky) 0%, transparent 70%);
  pointer-events: none;
}

.kc-pillars .container { position: relative; z-index: 1; }

.kc-pillars__bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(14px, 2vw, 20px);
}

.kc-pillar {
  padding: clamp(24px, 3vw, 30px);
  border-radius: 20px;
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
}

.kc-pillar--big {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(165deg, #fff 0%, #f5ece2 100%);
  border-color: var(--kc-border-strong);
}

.kc-pillar__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--kc-border);
  color: var(--kc-clay);
}

.kc-pillar--big .kc-pillar__ico { width: 52px; height: 52px; }

.kc-pillar__ico i { width: 22px; height: 22px; }

.kc-pillar h3 {
  margin: 0 0 8px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: 19px;
  color: var(--kc-ink);
}

.kc-pillar--big h3 { font-size: clamp(21px, 2.4vw, 25px); }

.kc-pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--kc-muted);
}

@media (max-width: 760px) {
  .kc-pillars__bento { grid-template-columns: 1fr; }
  .kc-pillar--big { grid-row: auto; }
}

/* —— ③b 本机 + 云端 · 气泡簇 —— */
.kc-audience {
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-audience__cluster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2vw, 20px);
}

.kc-audience-chip {
  flex: 1 1 240px;
  max-width: 270px;
  padding: clamp(20px, 2.6vw, 26px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
  transition: transform 0.25s ease;
}

.kc-audience-chip:hover { transform: translateY(-4px); }

@media (min-width: 900px) {
  .kc-audience-chip--up { margin-top: 22px; }
}

.kc-audience-chip__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #faf3ec;
  border: 1px solid var(--kc-border);
  color: var(--kc-clay);
}

.kc-audience-chip__ico i { width: 20px; height: 20px; }

.kc-audience-chip h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--kc-ink);
}

.kc-audience-chip p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--kc-muted);
}

/* —— ④ 配置对比 + 节点 · 聚光双卡 —— */
.kc-plans {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-plans::before {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: -80px;
  right: -140px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  background: radial-gradient(circle, var(--kc-sun) 0%, transparent 70%);
  pointer-events: none;
}

.kc-plans .container { position: relative; z-index: 1; }

.kc-plans__spotlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 28px);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.kc-plan {
  flex: 1 1 300px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.4vw, 32px);
  border-radius: 22px;
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
  transition: transform 0.25s ease;
}

.kc-plan--highlight {
  border-color: var(--kc-border-strong);
  background: linear-gradient(165deg, #fff 0%, #fbf3ec 100%);
  box-shadow: var(--kc-shadow);
  transform: translateY(-8px);
}

@media (min-width: 640px) {
  .kc-plan--highlight { transform: scale(1.04); }
}

.kc-plan__tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--kc-muted);
  background: var(--kc-bg);
  border: 1px solid var(--kc-border);
}

.kc-plan__tag--gold {
  color: #fffdfb;
  background: var(--kc-clay);
  border-color: var(--kc-clay);
}

.kc-plan__name {
  margin: 0 0 8px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: 20px;
  color: var(--kc-ink);
}

.kc-plan__price {
  margin: 0 0 18px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: 30px;
  color: var(--kc-ink);
}

.kc-plan__price-unit { font-size: 13px; font-weight: 600; color: var(--kc-muted); }

.kc-plan__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a453f;
}

.kc-plan__list li { position: relative; padding: 0 0 10px 16px; }

.kc-plan__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--kc-clay);
}

.kc-plan__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--kc-ink);
  text-decoration: none;
  border: 1px solid var(--kc-border-strong);
  transition: background 0.2s ease;
}

.kc-plan__cta:hover { background: rgba(28, 26, 23, 0.05); }

.kc-plan__cta--solid {
  color: #fffdfb;
  background: var(--kc-ink);
  border-color: var(--kc-ink);
}

.kc-plan__cta--solid:hover { filter: brightness(1.15); }

.kc-plan__cta i { width: 15px; height: 15px; }

.kc-plans__regions {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--kc-border);
}

.kc-plans__regions h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: 17px;
  color: var(--kc-ink);
}

.kc-plans__regions h3 i { width: 18px; height: 18px; color: var(--kc-clay); }

.kc-regions__pills {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.kc-regions__pills li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--kc-ink);
  background: #fff;
  border: 1px solid var(--kc-border);
}

.kc-regions__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--kc-sage); flex-shrink: 0; }

.kc-regions__sub { margin: 0; font-size: 12.5px; color: var(--kc-muted); }

/* —— ④b 加购与计费 · 便利贴散布 —— */
.kc-addons {
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-addons__scatter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
}

.kc-addon-note {
  padding: clamp(22px, 3vw, 28px);
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
  transition: transform 0.25s ease;
}

.kc-addon-note:nth-child(1) { transform: rotate(-1.2deg); }
.kc-addon-note:nth-child(2) { transform: rotate(1deg); }
.kc-addon-note:nth-child(3) { transform: rotate(-0.6deg); }

.kc-addon-note:hover { transform: rotate(0) translateY(-3px); }

.kc-addon-note--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transform: none;
  background: linear-gradient(135deg, #fff 0%, #fbf3ec 100%);
  border-color: var(--kc-border-strong);
}

.kc-addon-note--wide:hover { transform: translateY(-3px); }

.kc-addon-note__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #faf3ec;
  border: 1px solid var(--kc-border);
  color: var(--kc-clay);
}

.kc-addon-note--sage .kc-addon-note__ico { background: rgba(127, 154, 118, 0.12); color: var(--kc-sage); }
.kc-addon-note--sun .kc-addon-note__ico { background: rgba(217, 165, 63, 0.12); color: var(--kc-sun); }
.kc-addon-note--wide .kc-addon-note__ico { margin-bottom: 0; }

.kc-addon-note__ico i { width: 22px; height: 22px; }

.kc-addon-note h3 {
  margin: 0 0 8px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: 17px;
  color: var(--kc-ink);
}

.kc-addon-note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--kc-muted);
}

.kc-addon-note--wide a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--kc-ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--kc-border-strong);
}

.kc-addon-note--wide a i { width: 14px; height: 14px; }

@media (max-width: 860px) {
  .kc-addons__scatter { grid-template-columns: 1fr 1fr; }
  .kc-addon-note--wide { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .kc-addons__scatter { grid-template-columns: 1fr; }
  .kc-addon-note--wide { flex-direction: column; }
}

/* —— ⑤ 工具链 · 滚动传送带 —— */
.kc-stack {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 64px);
}

.kc-stack::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 240px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  background: radial-gradient(circle, var(--kc-clay) 0%, transparent 70%);
  pointer-events: none;
}

.kc-stack .container { position: relative; z-index: 1; }

.kc-stack .container { margin-bottom: clamp(28px, 4vw, 40px); }

.kc-stack__belt {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.kc-stack__track {
  display: flex;
  width: max-content;
  animation: kc-marquee 40s linear infinite;
  will-change: transform;
}

.kc-stack__group {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  padding-right: 12px;
}

@keyframes kc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.kc-stack-chip {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fffdfb;
  background: var(--kc-ink);
  white-space: nowrap;
}

.kc-stack-chip i { width: 16px; height: 16px; color: #e8c88a; }

@media (prefers-reduced-motion: reduce) {
  .kc-stack__belt {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }

  .kc-stack__track {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 960px;
    margin-inline: auto;
    padding-inline: 24px;
    animation: none;
  }

  .kc-stack__group[aria-hidden="true"] { display: none; }

  .kc-stack__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .kc-stack__group .kc-stack-chip[aria-hidden="true"] { display: none; }
}

/* —— ⑥ 开发自由 · 软件网格 —— */
.kc-devgrid {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-devgrid::before {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 260px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
  background: radial-gradient(circle, var(--kc-sky) 0%, transparent 70%);
  pointer-events: none;
}

.kc-devgrid .container { position: relative; z-index: 1; }

.kc-devgrid__grid {
  list-style: none;
  margin: 0 auto clamp(24px, 4vw, 36px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
  max-width: 760px;
}

.kc-devgrid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 104px;
  padding: 18px 12px;
  border-radius: 18px;
  background: #fffdfb;
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kc-devgrid__item:hover {
  transform: translateY(-2px);
  border-color: var(--kc-border-strong);
  box-shadow: var(--kc-shadow);
}

.kc-devgrid__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--kc-border);
}

.kc-devgrid__ico i { width: 20px; height: 20px; }

.kc-devgrid__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--kc-ink);
}

.kc-devgrid__item--xcode .kc-devgrid__ico { color: #0ea5e9; background: #f0f9ff; border-color: rgba(14, 165, 233, 0.2); }
.kc-devgrid__item--docker .kc-devgrid__ico { color: #0284c7; background: #f0f9ff; border-color: rgba(2, 132, 199, 0.2); }
.kc-devgrid__item--brew .kc-devgrid__ico { color: var(--kc-sun); background: #fffbeb; border-color: rgba(217, 165, 63, 0.25); }
.kc-devgrid__item--vscode .kc-devgrid__ico { color: #0369a1; background: #eff6ff; border-color: rgba(3, 105, 161, 0.2); }
.kc-devgrid__item--git .kc-devgrid__ico { color: var(--kc-clay); background: #faf3ec; border-color: rgba(201, 143, 107, 0.25); }
.kc-devgrid__item--node .kc-devgrid__ico { color: var(--kc-sage); background: #f3f7f1; border-color: rgba(127, 154, 118, 0.25); }
.kc-devgrid__item--flutter .kc-devgrid__ico { color: #0284c7; background: #eff6ff; border-color: rgba(2, 132, 199, 0.2); }
.kc-devgrid__item--cursor .kc-devgrid__ico { color: var(--kc-ink); background: #f5f2ed; border-color: var(--kc-border); }

.kc-devgrid__foot {
  margin: 0 auto;
  max-width: 58ch;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--kc-muted);
}

@media (max-width: 640px) {
  .kc-devgrid__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 380px; }
  .kc-devgrid__item { min-height: 92px; }
}

/* —— ⑥c 为何选 Zilmac · 徽章环 —— */
.kc-why {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-why::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  background: radial-gradient(circle, var(--kc-sage) 0%, transparent 70%);
  pointer-events: none;
}

.kc-why .container { position: relative; z-index: 1; }

.kc-why__ring {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 22px);
}

.kc-why-badge {
  flex: 0 1 190px;
  max-width: 200px;
  text-align: center;
  padding: clamp(20px, 2.6vw, 26px) clamp(14px, 2vw, 18px);
  border-radius: 20px;
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
}

@media (min-width: 900px) {
  .kc-why-badge--up { margin-top: 20px; }
}

.kc-why-badge__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f6ede3, #fff);
  border: 1px solid var(--kc-border);
  color: var(--kc-clay);
}

.kc-why-badge__ico i { width: 21px; height: 21px; }

.kc-why-badge h3 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--kc-ink);
}

.kc-why-badge p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--kc-muted);
}

/* —— ⑥d 用户评价 · 便利贴墙 —— */
.kc-voices {
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-voices__wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
}

.kc-voice {
  margin: 0;
  max-width: 260px;
  padding: clamp(20px, 2.6vw, 24px);
  border-radius: 18px;
  background: #fffdfb;
  border: 1px solid var(--kc-border);
  box-shadow: var(--kc-shadow-sm);
}

.kc-voice p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #3f3a34;
}

.kc-voice footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kc-voice img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.kc-voice cite { display: block; font-size: 13px; font-weight: 700; font-style: normal; color: var(--kc-ink); }
.kc-voice span { display: block; font-size: 11.5px; color: var(--kc-muted); }

.kc-voice--tilt-l { transform: rotate(-4deg); }
.kc-voice--tilt-r { transform: rotate(4deg); }

.kc-voice--lead {
  max-width: 320px;
  padding: clamp(26px, 3.4vw, 32px);
  background: linear-gradient(165deg, #fff 0%, #fbf3ec 100%);
  border-color: var(--kc-border-strong);
  box-shadow: var(--kc-shadow);
  z-index: 1;
}

.kc-voice--lead p { font-size: 15.5px; line-height: 1.65; }
.kc-voice--lead img { width: 46px; height: 46px; }

@media (max-width: 720px) {
  .kc-voice--tilt-l, .kc-voice--tilt-r { transform: none; }
}

/* —— ⑥b 常见问题 · 单列清单 —— */
.kc-faq {
  padding: clamp(48px, 8vw, 88px) 0;
}

.kc-faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kc-faq-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 22px) clamp(18px, 2.6vw, 24px);
  border-radius: 16px;
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
}

.kc-faq-row__mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  color: #fffdfb;
  background: var(--kc-clay);
}

.kc-faq-row h3 { margin: 0 0 6px; font-size: 15.5px; font-weight: 700; color: var(--kc-ink); }
.kc-faq-row p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--kc-muted); }
.kc-faq-row p a { color: var(--kc-clay); font-weight: 700; }

/* —— ⑥c 延伸阅读 · 内联胶囊 —— */
.kc-more {
  padding: clamp(28px, 4vw, 40px) 0 clamp(48px, 6vw, 64px);
}

.kc-more__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.kc-more-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--kc-ink);
  text-decoration: none;
  background: var(--kc-surface);
  border: 1px solid var(--kc-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.kc-more-pill:hover { transform: translateY(-2px); border-color: var(--kc-border-strong); }
.kc-more-pill i { width: 16px; height: 16px; color: var(--kc-clay); }

/* —— ⑦ 收束 CTA · 云端谢幕 —— */
.kc-closing {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(16px, 3vw, 24px) clamp(24px, 4vw, 40px);
  padding: clamp(56px, 9vw, 96px) 0;
  border-radius: 36px;
  background: radial-gradient(120% 100% at 50% -10%, #2a2621 0%, #1c1a17 60%);
}

.kc-closing__clouds { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }
.kc-closing__clouds .kc-cloud { background: linear-gradient(180deg, #4a453d, #34302a); box-shadow: none; }
.kc-closing__clouds .kc-cloud::before, .kc-closing__clouds .kc-cloud::after { background: inherit; }
.kc-closing__clouds .kc-cloud:nth-child(1) { top: 14%; left: 10%; }
.kc-closing__clouds .kc-cloud:nth-child(2) { top: 60%; left: 22%; animation-delay: 1s; }
.kc-closing__clouds .kc-cloud:nth-child(3) { top: 20%; right: 12%; animation-delay: 2s; }

.kc-closing__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.kc-closing__title {
  margin: 0 0 14px;
  font-family: var(--kc-sans);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.25;
  color: #fffdfb;
}

.kc-closing__sub {
  margin: 0 auto 30px;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 253, 251, 0.72);
}

.kc-closing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}

@media (max-width: 640px) {
  .kc-closing { margin-inline: 12px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .kc-cloud { animation: none; }
}
