:root {
  --ks-blue: #2f6bff;
  --ks-blue-hover: #1f57ef;
  --ks-blue-soft: #eaf2ff;
  --ks-blue-line: #d7e6ff;
  --ks-ink: #1a2333;
  --ks-muted: #6b778c;
  --ks-line: #e8eef7;
  --ks-bg: #f5f8fc;
  --ks-white: #ffffff;
  --ks-wrap: 1180px;
  --ks-header: 64px;
  --ks-font: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --ks-shadow: 0 8px 24px rgba(31, 87, 239, 0.08);
  --ks-radius: 14px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ks-font);
  color: var(--ks-ink);
  background: var(--ks-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }

.ks-wrap {
  width: min(100% - 48px, var(--ks-wrap));
  margin-inline: auto;
}

/* Buttons — pill style like design */
.ks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.ks-btn--sm { height: 34px; padding: 0 16px; font-size: 13px; }
.ks-btn--lg { height: 44px; padding: 0 28px; font-size: 15px; }

.ks-btn--primary {
  background: var(--ks-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 107, 255, .28);
}
.ks-btn--primary:hover { background: var(--ks-blue-hover); }

.ks-btn--outline {
  background: #fff;
  border-color: #c9d7ef;
  color: var(--ks-blue);
}
.ks-btn--outline:hover {
  background: var(--ks-blue-soft);
  border-color: var(--ks-blue);
}

.ks-btn--white {
  background: #fff;
  color: var(--ks-blue);
  box-shadow: 0 8px 18px rgba(20, 40, 80, .12);
}
.ks-btn--white:hover {
  background: #f7faff;
  color: var(--ks-blue-hover);
}

/* Logo */
.ks-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ks-logo__mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
}
.ks-logo__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ks-logo__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ks-ink);
}

/* Header */
.ks-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--ks-header);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--ks-line);
  backdrop-filter: blur(10px);
}
.ks-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
.ks-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.ks-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 8px;
  border-radius: 8px;
  color: #3f4d66;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.ks-nav__link:hover,
.ks-nav__link.is-active {
  color: var(--ks-blue);
}
.ks-nav__caret {
  opacity: .65;
  margin-top: 1px;
}
.ks-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ks-icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #607087;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ks-icon-btn:hover { background: var(--ks-bg); color: var(--ks-blue); }
.ks-header__login {
  color: #4d5b73;
  font-size: 14px;
  font-weight: 500;
}
.ks-header__login:hover { color: var(--ks-blue); }
.ks-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  margin-right: -6px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 10px;
}
.ks-menu-btn:hover { background: var(--ks-bg); }
.ks-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ks-ink);
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}
.ks-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ks-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.ks-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ks-nav__mobile-actions {
  display: none;
}

.ks-nav-mask {
  display: none;
}

/* Hero */
.ks-hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 480px;
  padding: 72px 0 72px;
  background-color: #eaf4ff;
  background-image: url(/banner.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.ks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(234, 244, 255, 0.96) 0%,
    rgba(234, 244, 255, 0.82) 34%,
    rgba(234, 244, 255, 0.28) 58%,
    rgba(234, 244, 255, 0.04) 78%,
    transparent 100%
  );
  pointer-events: none;
}

.ks-hero__grid {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 360px;
}

.ks-hero__copy {
  max-width: 520px;
  padding: 24px 0;
}

.ks-hero__title {
  margin: 0 0 18px;
  font-size: clamp(40px, 4.8vw, 56px);
  line-height: 1.2;
  font-weight: 700;
  color: #15233a;
  letter-spacing: .01em;
}
.ks-hero__title-accent { color: var(--ks-blue); }
.ks-hero__desc {
  margin: 0 0 28px;
  max-width: 460px;
  color: var(--ks-muted);
  font-size: 15px;
  line-height: 1.85;
}
.ks-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Intro: floating news + props */
.ks-intro {
  position: relative;
  z-index: 5;
  padding: 0 0 28px;
  margin-top: -30px;
  background: transparent;
}
.ks-news {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  margin-bottom: 44px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 10px 28px rgba(31, 87, 239, .1),
    0 2px 8px rgba(20, 40, 80, .04);
}
.ks-news__main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.ks-news__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ks-blue-soft);
  color: var(--ks-blue);
}
.ks-news__label {
  flex-shrink: 0;
  color: var(--ks-blue);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.ks-news__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333a48;
  font-size: 14px;
  font-weight: 400;
}
.ks-news__cta {
  flex-shrink: 0;
  color: var(--ks-blue);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.ks-news__cta:hover { color: var(--ks-blue-hover); }
.ks-news__date {
  flex-shrink: 0;
  margin-left: auto;
  color: #999;
  font-size: 13px;
  white-space: nowrap;
}

.ks-props {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.ks-prop { text-align: center; padding: 8px 10px; }
.ks-prop__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  position: relative;
  background: linear-gradient(145deg, #7aa4ff, #2f6bff);
  box-shadow: 0 12px 22px rgba(47,107,255,.28);
  transform: perspective(200px) rotateX(12deg) rotateY(-16deg);
}
.ks-prop__icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: inset 0 0 0 1px rgba(47,107,255,.15);
}
.ks-prop__icon--model { background: linear-gradient(145deg, #8eb4ff, #3a74ff); }
.ks-prop__icon--app { background: linear-gradient(145deg, #9ac0ff, #457cff); }
.ks-prop__icon--secure { background: linear-gradient(145deg, #6d9bff, #255ef5); }
.ks-prop__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1a2333;
}
.ks-prop__desc {
  margin: 0;
  color: var(--ks-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Section heads */
.ks-section-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 28px;
  min-height: 64px;
}
.ks-section-head--solo {
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: auto;
}
.ks-section-head__center { text-align: center; }
.ks-section-title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: #15233a;
}
.ks-section-desc {
  margin: 0;
  color: var(--ks-muted);
  font-size: 14px;
}
.ks-section-more {
  position: absolute;
  right: 0;
  bottom: 4px;
  color: var(--ks-blue);
  font-size: 14px;
  font-weight: 500;
}
.ks-section-more:hover { color: var(--ks-blue-hover); }

/* Models */
.ks-models {
  padding: 56px 0 64px;
  background: #fff;
}
.ks-models__box { position: relative; }
.ks-models__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 10px;
  scrollbar-width: none;
}
.ks-models__track::-webkit-scrollbar { display: none; }

.ks-models__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 16px;
  text-align: center;
  color: var(--ks-muted, #6b7280);
  font-size: 14px;
}

.ks-model {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 16px;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(234,242,255,.9) 0%, rgba(255,255,255,0) 42%),
    #fff;
  box-shadow: var(--ks-shadow);
  scroll-snap-align: start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ks-model:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(31,87,239,.12);
}
.ks-model__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff1e6;
  color: #e67a2e;
  font-size: 12px;
  font-weight: 600;
}
.ks-model__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 48px;
}
.ks-model__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--ks-line);
  background: #fff;
  object-fit: contain;
  padding: 4px;
}
.ks-model__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.ks-model__code {
  margin: 2px 0 0;
  color: #98a4b8;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.ks-model__vendor {
  margin: 0;
  color: var(--ks-muted);
  font-size: 12px;
}
.ks-model__desc {
  margin: 0;
  color: #5d6b82;
  font-size: 13px;
  line-height: 1.7;
}
.ks-model__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ks-model__tags span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #f2f5fa;
  color: #6b778c;
  font-size: 12px;
}

.ks-models__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ks-blue-line);
  border-radius: 50%;
  background: #fff;
  color: var(--ks-blue);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(31,87,239,.1);
}
.ks-models__arrow:hover { background: var(--ks-blue-soft); }
.ks-models__arrow--prev { left: -10px; }
.ks-models__arrow--next { right: -10px; }

/* Advantages */
.ks-adv {
  padding: 72px 0 64px;
  background: #fff;
}
.ks-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.ks-adv__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ks-stat { text-align: center; padding: 8px 0 4px; }
.ks-stat__value {
  color: var(--ks-blue);
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}
.ks-stat__label {
  margin-top: 6px;
  color: var(--ks-muted);
  font-size: 14px;
}
.ks-adv-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px 14px;
  border: 1px solid var(--ks-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31,87,239,.06);
}
.ks-adv-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #6d9bff, #2f6bff);
  position: relative;
  box-shadow: 0 8px 16px rgba(47,107,255,.22);
}
.ks-adv-card__icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 4px;
}
.ks-adv-card__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}
.ks-adv-card__desc {
  margin: 0;
  color: var(--ks-muted);
  font-size: 12px;
}

/* Clients — single logo row */
.ks-clients {
  padding: 80px 0 56px;
  background: #fff;
}
.ks-clients .ks-section-head {
  margin-bottom: 40px;
}
.ks-clients__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ks-clients__row::-webkit-scrollbar { display: none; }
.ks-clients__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: 52px;
  padding: 8px 12px;
  border: 1px solid var(--ks-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ks-clients__item:hover {
  border-color: var(--ks-blue-line);
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.08);
}
.ks-clients__logo {
  display: block;
  width: auto;
  height: 24px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
}
/* CTA */
.ks-cta { padding: 24px 0 72px; background: #fff; }
.ks-cta__panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 220px;
  padding: 40px 48px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #e8f2ff;
  background-image: url(/cta-banner.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  border: 1px solid rgba(47,107,255,.1);
}
.ks-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(232, 242, 255, 0.96) 0%,
    rgba(232, 242, 255, 0.85) 36%,
    rgba(232, 242, 255, 0.35) 58%,
    rgba(232, 242, 255, 0.08) 78%,
    transparent 100%
  );
  pointer-events: none;
}
.ks-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.ks-cta__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #15233a;
}
.ks-cta__desc {
  margin: 0 0 22px;
  color: var(--ks-muted);
  font-size: 14px;
}

/* Footer */
.ks-footer {
  padding: 40px 0 20px;
  background: #f3f6fb;
  border-top: 1px solid var(--ks-line);
  color: #5d6b82;
}
.ks-footer__main {
  display: grid;
  grid-template-columns: minmax(200px, 1.15fr) minmax(0, 2.4fr) auto;
  gap: 32px 40px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ks-line);
}
.ks-footer__brand {
  min-width: 0;
}
.ks-footer__desc {
  margin: 12px 0 0;
  max-width: 260px;
  color: var(--ks-muted);
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}
.ks-footer__contact {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.ks-footer__contact li {
  display: grid;
  grid-template-columns: 2em 1fr;
  gap: 8px;
  align-items: baseline;
  font-size: 12px;
  line-height: 1.5;
}
.ks-footer__contact li > span:first-child {
  color: #8a97ad;
}
.ks-footer__contact li > span:last-child,
.ks-footer__contact a {
  color: #5a687c;
  word-break: keep-all;
}
.ks-footer__contact a:hover {
  color: var(--ks-blue);
}
.ks-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 28px;
  min-width: 0;
}
.ks-footer__col {
  min-width: 0;
}
.ks-footer__title {
  margin: 0 0 12px;
  color: #1a2333;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  cursor: default;
}
.ks-footer__title::-webkit-details-marker,
.ks-footer__title::marker {
  display: none;
  content: '';
}
.ks-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ks-footer__links li + li {
  margin-top: 8px;
}
.ks-footer__links a {
  color: var(--ks-muted);
  font-size: 13px;
  line-height: 1.4;
}
.ks-footer__links a:hover {
  color: var(--ks-blue);
}
.ks-footer__follow {
  min-width: 148px;
}
.ks-footer__follow-title {
  margin: 0 0 12px;
  color: #1a2333;
  font-size: 13px;
  font-weight: 700;
}
.ks-footer__qrcodes {
  display: flex;
  gap: 12px;
}
.ks-footer__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.ks-footer__qr-img {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--ks-line);
  background: #fff;
  padding: 3px;
  box-sizing: border-box;
}
.ks-footer__qr-caption {
  color: #70809a;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}
.ks-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  padding-top: 16px;
}
.ks-footer__copy-line {
  margin: 0;
  color: #8a97ad;
  font-size: 12px;
  line-height: 1.5;
}
.ks-footer__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.ks-footer__beian {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8a97ad;
  font-size: 12px;
  line-height: 1.5;
}
.ks-footer__beian:hover,
.ks-footer__legal-link:hover {
  color: var(--ks-blue);
}
.ks-footer__beian-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
}
.ks-footer__meta-sep {
  color: #c0c8d6;
  font-size: 12px;
  line-height: 1;
}
.ks-footer__legal-link {
  color: #8a97ad;
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* —— Tablet —— */
@media (max-width: 1100px) {
  .ks-wrap { width: min(100% - 36px, var(--ks-wrap)); }

  body.ks-nav-open {
    overflow: hidden;
  }

  .ks-nav {
    display: none;
    position: absolute;
    top: var(--ks-header);
    left: 0;
    right: 0;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: min(72vh, calc(100dvh - var(--ks-header)));
    overflow-y: auto;
    padding: 12px 16px 20px;
    background: #fff;
    border-bottom: 1px solid var(--ks-line);
    box-shadow: 0 16px 36px rgba(20, 40, 80, .12);
  }
  .ks-nav.is-open { display: flex; }
  .ks-nav__link {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
  }
  .ks-nav__link:hover,
  .ks-nav__link.is-active {
    background: var(--ks-blue-soft);
  }
  .ks-nav__mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--ks-line);
  }
  .ks-nav__mobile-actions .ks-btn {
    width: 100%;
    height: 40px;
  }

  .ks-nav-mask {
    display: block;
    position: fixed;
    inset: var(--ks-header) 0 0;
    z-index: 110;
    background: rgba(16, 24, 40, 0.36);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .ks-nav-mask.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .ks-menu-btn { display: inline-flex; }
  .ks-header__inner { position: relative; }
  .ks-header__register { display: none; }
  .ks-header__login { display: none; }
  .ks-icon-btn { display: none; }
  .ks-header__right { gap: 0; }

  .ks-hero {
    min-height: 420px;
    padding: 56px 0 48px;
    background-position: 62% center;
  }
  .ks-hero::before {
    background: linear-gradient(
      90deg,
      rgba(234, 244, 255, 0.97) 0%,
      rgba(234, 244, 255, 0.9) 42%,
      rgba(234, 244, 255, 0.45) 68%,
      rgba(234, 244, 255, 0.12) 100%
    );
  }
  .ks-hero__grid { min-height: auto; }
  .ks-hero__copy { max-width: 520px; }

  .ks-props { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 16px; }
  .ks-stats,
  .ks-adv__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ks-models__track { grid-auto-columns: calc((100% - 16px) / 2); }
  .ks-clients__row { gap: 18px; }

  .ks-section-head {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .ks-section-more { position: static; margin-top: 4px; }

  .ks-cta__panel {
    min-height: 200px;
    padding: 32px 28px;
    background-position: 68% center;
  }

  .ks-footer__main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px 32px;
  }
  .ks-footer__nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ks-footer__follow {
    grid-column: 2;
    grid-row: 1;
  }
}

/* —— Mobile —— */
@media (max-width: 720px) {
  body { overflow-x: hidden; }

  .ks-wrap { width: min(100% - 32px, var(--ks-wrap)); }

  .ks-header { height: 56px; }
  :root { --ks-header: 56px; }

  .ks-logo { gap: 6px; }
  .ks-logo__text { font-size: 16px; }
  .ks-logo__mark,
  .ks-logo__mark img {
    width: 26px;
    height: 26px;
  }

  .ks-header__inner {
    gap: 12px;
    justify-content: space-between;
  }

  .ks-hero {
    min-height: 0;
    padding: 28px 0 8px;
    background-position: 70% 35%;
    background-size: 160% auto;
    text-align: center;
  }
  .ks-hero::before {
    background:
      radial-gradient(ellipse 90% 70% at 50% 0%, rgba(47, 107, 255, 0.12), transparent 58%),
      linear-gradient(
        180deg,
        rgba(245, 249, 255, 0.88) 0%,
        rgba(234, 244, 255, 0.72) 42%,
        rgba(255, 255, 255, 0.94) 88%,
        #ffffff 100%
      );
  }
  .ks-hero__grid {
    min-height: 0;
  }
  .ks-hero__copy {
    max-width: none;
    margin: 0 auto;
    padding: 4px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ks-hero__title {
    font-size: 30px;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .ks-hero__desc {
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 20px;
    max-width: 22em;
    color: #5a687c;
  }
  .ks-hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    width: auto;
  }
  .ks-hero__actions .ks-btn {
    width: auto;
    min-width: 124px;
    height: 42px;
    padding: 0 20px;
    font-size: 14px;
    box-shadow: none;
  }
  .ks-hero__actions .ks-btn--primary {
    box-shadow: 0 8px 16px rgba(47, 107, 255, 0.22);
  }

  .ks-intro {
    position: relative;
    z-index: 5;
    padding: 12px 0 20px;
    margin-top: 0;
  }

  .ks-news {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    min-height: 0;
    margin-bottom: 28px;
    padding: 12px 14px;
  }
  .ks-news__main {
    flex: 1 1 100%;
    flex-wrap: wrap;
    gap: 8px 10px;
  }
  .ks-news__text {
    flex: 1 1 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
  }
  .ks-news__date {
    display: none;
  }

  .ks-props {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }
  .ks-prop { padding: 4px 2px; }
  .ks-prop__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
  .ks-prop__title { font-size: 15px; }
  .ks-prop__desc { font-size: 12px; line-height: 1.6; }

  .ks-models { padding: 36px 0 40px; }
  .ks-section-title { font-size: 24px; }
  .ks-section-desc { font-size: 13px; padding: 0 8px; }

  .ks-models__track {
    grid-auto-columns: min(86vw, 300px);
    gap: 12px;
    margin: 0 -16px;
    padding: 4px 16px 12px;
  }
  .ks-models__arrow { display: none; }
  .ks-model {
    padding: 16px 14px 14px;
  }

  .ks-adv { padding: 40px 0; }
  .ks-stats,
  .ks-adv__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .ks-stats { margin-bottom: 16px; }
  .ks-stat__value { font-size: 26px; }
  .ks-stat__label { font-size: 12px; }
  .ks-adv-card {
    min-height: 76px;
    padding: 12px 10px;
    gap: 10px;
  }
  .ks-adv-card__icon { width: 34px; height: 34px; }
  .ks-adv-card__title { font-size: 14px; }
  .ks-adv-card__desc { font-size: 11px; }

  .ks-clients { padding: 48px 0 32px; }
  .ks-clients .ks-section-head { margin-bottom: 28px; }
  .ks-clients__row {
    gap: 16px 20px;
    max-width: none;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .ks-clients__item {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
    height: 48px;
    padding: 6px 10px;
  }
  .ks-clients__logo {
    height: 22px;
  }
  .ks-cta { padding: 12px 0 48px; }
  .ks-cta__panel {
    min-height: 0;
    padding: 28px 20px;
    border-radius: 16px;
    background-position: right center;
    background-size: cover;
  }
  .ks-cta__panel::before {
    background: linear-gradient(
      180deg,
      rgba(232, 242, 255, 0.94) 0%,
      rgba(232, 242, 255, 0.88) 60%,
      rgba(232, 242, 255, 0.78) 100%
    );
  }
  .ks-cta__copy { max-width: none; }
  .ks-cta__title {
    font-size: 22px;
    line-height: 1.4;
  }
  .ks-cta__desc {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .ks-cta__copy .ks-btn {
    width: 100%;
  }

  .ks-footer {
    padding: 28px 0 18px;
    background: #f5f7fb;
  }
  .ks-footer__main {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding-bottom: 4px;
    border-bottom: 1px solid #e6ebf3;
  }
  /* 打散品牌块，便于重排：Logo → 简介 → 二维码 → 联系方式 → 导航 */
  .ks-footer__brand {
    display: contents;
  }
  .ks-footer__brand .ks-logo {
    order: 1;
    justify-content: flex-start;
  }
  .ks-footer__desc {
    order: 2;
    max-width: none;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.65;
    color: #7a8699;
    word-break: break-word;
  }
  .ks-footer__follow {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 16px 12px;
    border: 1px solid #e6ebf3;
    border-radius: 14px;
    background: #fff;
  }
  .ks-footer__follow-title {
    display: block;
    margin: 0;
    font-size: 13px;
    font-weight: 650;
    color: #1a2333;
  }
  .ks-footer__qrcodes {
    justify-content: center;
    gap: 20px;
  }
  .ks-footer__qr-img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    padding: 4px;
  }
  .ks-footer__qr-caption {
    font-size: 12px;
    color: #70809a;
  }
  .ks-footer__contact {
    order: 4;
    margin-top: 16px;
    gap: 10px;
  }
  .ks-footer__contact li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1.55;
  }
  .ks-footer__contact li > span:first-child {
    color: #9aa6b8;
    font-size: 12px;
  }
  .ks-footer__contact li > span:last-child,
  .ks-footer__contact a {
    color: #3d4a5c;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .ks-footer__contact a {
    font-size: 14px;
    letter-spacing: 0;
  }
  .ks-footer__nav {
    order: 5;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
  }
  .ks-footer__col {
    border-top: 1px solid #e6ebf3;
  }
  .ks-footer__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 650;
    color: #1a2333;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .ks-footer__title::after {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-right: 2px;
    border-right: 1.5px solid #9aa6b8;
    border-bottom: 1.5px solid #9aa6b8;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }
  .ks-footer__col[open] > .ks-footer__title::after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }
  .ks-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0 0 10px 2px;
  }
  .ks-footer__links li + li {
    margin-top: 0;
  }
  .ks-footer__links a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    line-height: 1.4;
    color: #66758c;
  }
  .ks-footer__links a:active,
  .ks-footer__links a:hover {
    color: var(--ks-blue);
  }
  .ks-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    text-align: center;
  }
  .ks-footer__copy-line {
    font-size: 11px;
    color: #8a97ad;
  }
  .ks-footer__meta-row {
    justify-content: center;
    gap: 4px 8px;
  }
  .ks-footer__beian,
  .ks-footer__legal-link {
    font-size: 11px;
  }
  .ks-footer__beian-icon {
    width: 12px;
    height: 12px;
    opacity: 0.7;
  }
  .ks-footer__meta-sep {
    font-size: 11px;
  }
}

/* —— Small phones —— */
@media (max-width: 480px) {
  .ks-wrap { width: min(100% - 28px, var(--ks-wrap)); }
  .ks-hero {
    padding: 24px 0 4px;
    background-size: 180% auto;
    background-position: 68% 28%;
  }
  .ks-hero__title { font-size: 28px; }
  .ks-hero__desc {
    font-size: 12.5px;
    max-width: 20em;
    margin-bottom: 18px;
  }
  .ks-hero__actions .ks-btn {
    min-width: 0;
    flex: 1 1 0;
    max-width: 148px;
    padding: 0 14px;
  }

  .ks-props { gap: 16px 10px; }
  .ks-prop__title { font-size: 14px; }

  .ks-adv__grid { grid-template-columns: 1fr; }
  .ks-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ks-stat { padding: 4px 0; }
}

@media (max-width: 360px) {
  .ks-props { grid-template-columns: 1fr; }
  .ks-stats { grid-template-columns: 1fr; }
}

/* —— Help docs —— */
.ks-page-help {
  background: var(--ks-white);
}

.ks-help-hero {
  --ks-help-hero-bg: #e8f1ff;
  position: relative;
  overflow: hidden;
  background: var(--ks-help-hero-bg);
}

.ks-help-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.ks-help-hero__media img {
  width: min(100%, 1400px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.ks-help-hero__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(380px, 36vw, 480px);
  padding: 56px 0 64px;
}

.ks-help-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.ks-about-hero .ks-help-hero__copy {
  max-width: 520px;
}

.ks-about-hero .ks-help-hero__desc {
  max-width: 480px;
}

.ks-news-hero .ks-help-hero__copy {
  max-width: 520px;
}

.ks-news-hero .ks-help-hero__desc {
  max-width: 480px;
}

.ks-help-article-hero {
  position: relative;
  padding: 48px 0 36px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 82% 18%, rgba(47, 107, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 50% at 8% 90%, rgba(91, 140, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #eef4ff 0%, #f7faff 48%, #ffffff 100%);
}

.ks-help-hero__eyebrow,
.ks-help-article-hero .ks-help-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ks-blue);
}

.ks-help-hero__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.28;
  color: #1a2333;
}

.ks-help-hero__desc {
  margin: 14px 0 0;
  max-width: 400px;
  font-size: 15px;
  line-height: 1.75;
  color: #5b6b82;
}

.ks-help-search {
  margin-top: 28px;
  max-width: 440px;
}

.ks-help-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ks-help-search__box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 20px;
  background: #fff;
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: 999px;
  box-shadow:
    0 12px 30px rgba(31, 87, 239, 0.12),
    0 2px 8px rgba(26, 35, 51, 0.04);
  color: var(--ks-muted);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ks-help-search__box:focus-within {
  border-color: rgba(47, 107, 255, 0.42);
  box-shadow:
    0 14px 32px rgba(31, 87, 239, 0.14),
    0 2px 8px rgba(26, 35, 51, 0.04);
}

.ks-help-search__input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--ks-ink);
}

.ks-help-search__input::placeholder {
  color: #9aa6b8;
}

.ks-help-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ks-blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(47, 107, 255, 0.28);
  transition: background-color .2s ease, transform .2s ease;
}

.ks-help-search__btn:hover {
  background: var(--ks-blue-hover);
  transform: translateY(-1px);
}

.ks-help-topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: 16px;
}

.ks-help-topics__label {
  font-size: 13px;
  color: #6b778c;
}

.ks-help-topics__chip {
  font-size: 13px;
  color: #4b5a73;
  transition: color .2s ease;
}

.ks-help-topics__chip:hover {
  color: var(--ks-blue);
}

.ks-help-section {
  padding: 64px 0;
}

.ks-help-section--muted {
  background: linear-gradient(180deg, #f7f9fc 0%, #f5f8fc 100%);
}

.ks-help-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
}

.ks-help-section__head--compact {
  align-items: center;
  margin-bottom: 18px;
}

.ks-help-section__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ks-ink);
}

.ks-help-section__desc {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ks-muted);
}

.ks-help-section__more {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ks-blue);
  white-space: nowrap;
}

.ks-help-section__more:hover {
  color: var(--ks-blue-hover);
}

.ks-help-quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ks-help-quick__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 188px;
  padding: 20px 18px 18px;
  background: #fff;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26, 35, 51, 0.04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ks-help-quick__card:hover {
  border-color: var(--ks-blue-line);
  box-shadow: 0 14px 30px rgba(47, 107, 255, 0.1);
  transform: translateY(-2px);
}

.ks-help-quick__icon {
  width: 48px;
  height: 48px;
}

.ks-help-quick__icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.ks-help-quick__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ks-help-quick__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ks-ink);
}

.ks-help-quick__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ks-muted);
}

.ks-help-quick__arrow {
  font-size: 16px;
  color: var(--ks-blue);
  transition: transform .2s ease;
}

.ks-help-quick__card:hover .ks-help-quick__arrow {
  transform: translateX(3px);
}

.ks-help-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ks-help-cat-card {
  position: relative;
  display: flex;
  min-height: 188px;
  padding: 22px 18px 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26, 35, 51, 0.04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ks-help-cat-card:hover {
  border-color: var(--ks-blue-line);
  box-shadow: 0 14px 30px rgba(47, 107, 255, 0.1);
  transform: translateY(-2px);
}

.ks-help-cat-card__main {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
  padding-right: 48px;
}

.ks-help-cat-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.ks-help-cat-card__title a:hover {
  color: var(--ks-blue);
}

.ks-help-cat-card__desc {
  margin: 8px 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ks-muted);
}

.ks-help-cat-card__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.ks-help-cat-card__links a {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  font-size: 13px;
  color: #4b5a73;
}

.ks-help-cat-card__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b7c4d8;
}

.ks-help-cat-card__links a:hover {
  color: var(--ks-blue);
}

.ks-help-cat-card__icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 72px;
  height: 72px;
  opacity: 0.92;
  pointer-events: none;
}

.ks-help-cat-card__icon svg {
  width: 72px;
  height: 72px;
  display: block;
}

.ks-help-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.ks-help-featured__list {
  display: grid;
  gap: 14px;
}

.ks-help-featured__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--ks-line);
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ks-help-featured__item:hover {
  border-color: var(--ks-blue-line);
  box-shadow: 0 10px 24px rgba(47, 107, 255, 0.08);
}

.ks-help-featured__thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.75), transparent 45%),
    linear-gradient(145deg, #6f9bff, #2f6bff);
}

.ks-help-featured__thumb--1 {
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.75), transparent 45%),
    linear-gradient(145deg, #8b78ff, #5b4dff);
}

.ks-help-featured__thumb--2 {
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.75), transparent 45%),
    linear-gradient(145deg, #55c2a0, #2f9e78);
}

.ks-help-featured__title {
  display: block;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  color: var(--ks-ink);
}

.ks-help-featured__item:hover .ks-help-featured__title {
  color: var(--ks-blue);
}

.ks-help-featured__meta {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ks-muted);
}

.ks-help-news__list {
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  display: grid;
  gap: 2px;
}

.ks-help-news__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--ks-line);
}

.ks-help-news__list li:last-child .ks-help-news__item {
  border-bottom: 0;
}

.ks-help-news__title {
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ks-ink);
  transition: color .2s ease;
}

.ks-help-news__item:hover .ks-help-news__title {
  color: var(--ks-blue);
}

.ks-help-news__date {
  flex-shrink: 0;
  font-size: 13px;
  color: #98a4b8;
}

.ks-help-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.ks-help-faq__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--ks-line);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(26, 35, 51, 0.03);
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.ks-help-faq__item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ks-ink);
}

.ks-help-faq__item em {
  font-style: normal;
  color: #b3bdcc;
  font-size: 20px;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}

.ks-help-faq__item:hover {
  border-color: var(--ks-blue-line);
  box-shadow: 0 10px 22px rgba(47, 107, 255, 0.08);
}

.ks-help-faq__item:hover span {
  color: var(--ks-blue);
}

.ks-help-faq__item:hover em {
  color: var(--ks-blue);
  transform: translateX(2px);
}

.ks-help-support {
  padding: 8px 0 72px;
}

.ks-help-support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ks-help-support__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px 22px 18px;
  background: linear-gradient(135deg, #eef4ff 0%, #f7faff 100%);
  border: 1px solid var(--ks-blue-line);
  border-radius: 16px;
}

.ks-help-support__card--alt {
  background: linear-gradient(135deg, #f5f8fc 0%, #eef3fa 100%);
  border-color: var(--ks-line);
}

.ks-help-support__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.ks-help-support__icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.ks-help-support__copy {
  flex: 1;
  min-width: 0;
}

.ks-help-support__copy h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.ks-help-support__copy p {
  margin: 0;
  font-size: 13px;
  color: var(--ks-muted);
}

.ks-help-body {
  padding: 24px 0 72px;
  background: linear-gradient(180deg, #f5f8fc 0%, #f7f9fc 100%);
}

.ks-help-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 18px;
}

.ks-help-toolbar__title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ks-ink);
}

.ks-help-toolbar__count {
  margin: 0;
  font-size: 13px;
  color: var(--ks-muted);
}

.ks-help-toolbar__reset {
  font-size: 13px;
  font-weight: 600;
  color: var(--ks-blue);
}

.ks-help-toolbar__reset:hover {
  color: var(--ks-blue-hover);
}

.ks-help-group + .ks-help-group {
  margin-top: 28px;
}

.ks-help-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ks-help-group__title {
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  color: var(--ks-ink);
}

.ks-help-group__meta {
  font-size: 12px;
  color: #8a96a8;
}

.ks-help-list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(26, 35, 51, 0.03);
}

.ks-help-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ks-line);
  transition: background-color .2s ease;
}

.ks-help-item:last-child {
  border-bottom: 0;
}

.ks-help-item:hover {
  background: #f8fbff;
}

.ks-help-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ks-blue-soft);
  color: var(--ks-blue);
}

.ks-help-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ks-help-item__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ks-help-item__title {
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
  color: var(--ks-ink);
}

.ks-help-item:hover .ks-help-item__title {
  color: var(--ks-blue);
}

.ks-help-item__badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ks-blue-soft);
  color: var(--ks-blue);
  font-size: 11px;
  font-weight: 600;
}

.ks-help-item__summary {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ks-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ks-help-item__arrow {
  color: #b3bdcc;
  transition: color .2s ease, transform .2s ease;
}

.ks-help-item:hover .ks-help-item__arrow {
  color: var(--ks-blue);
  transform: translateX(2px);
}

.ks-help-empty,
.ks-help-empty-page {
  text-align: center;
  padding: 56px 24px;
  background: #fff;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
}

.ks-help-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: var(--ks-blue-soft);
  color: var(--ks-blue);
}

.ks-help-empty h2,
.ks-help-empty-page h1 {
  margin: 0 0 10px;
  font-size: 22px;
}

.ks-help-empty p,
.ks-help-empty-page p {
  margin: 0 0 20px;
  color: var(--ks-muted);
}

.ks-help-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--ks-muted);
}

.ks-help-breadcrumb a:hover {
  color: var(--ks-blue);
}

.ks-help-article__title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ks-ink);
}

.ks-help-article__summary {
  margin: 14px 0 0;
  max-width: 640px;
  font-size: 16px;
  color: var(--ks-muted);
}

.ks-help-article__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: #8a96a8;
}

.ks-help-article__meta-row a {
  font-weight: 600;
  color: var(--ks-blue);
}

.ks-help-article-body {
  padding: 8px 0 72px;
  background: var(--ks-bg);
}

.ks-help-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
}

.ks-help-prose {
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(26, 35, 51, 0.03);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ks-ink);
}

.ks-help-prose > *:first-child {
  margin-top: 0;
}

.ks-help-prose > *:last-child {
  margin-bottom: 0;
}

.ks-help-prose h2,
.ks-help-prose h3,
.ks-help-prose h4 {
  margin: 1.6em 0 0.6em;
  line-height: 1.35;
  font-weight: 650;
}

.ks-help-prose h2 { font-size: 22px; }
.ks-help-prose h3 { font-size: 18px; }
.ks-help-prose p,
.ks-help-prose ul,
.ks-help-prose ol {
  margin: 0 0 1em;
}

.ks-help-prose ul,
.ks-help-prose ol {
  padding-left: 1.35em;
}

.ks-help-prose a {
  color: var(--ks-blue);
}

.ks-help-prose code {
  padding: 0.12em 0.4em;
  border-radius: 6px;
  background: var(--ks-blue-soft);
  font-size: 0.92em;
}

.ks-help-prose pre {
  overflow: auto;
  padding: 14px 16px;
  border-radius: 10px;
  background: #0f172a;
  color: #e2e8f0;
}

.ks-help-prose pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.ks-help-prose img {
  border-radius: 10px;
}

.ks-help-aside-card {
  position: sticky;
  top: calc(var(--ks-header) + 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(26, 35, 51, 0.03);
}

.ks-help-aside-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 650;
}

.ks-help-aside-card__desc {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--ks-muted);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .ks-help-quick,
  .ks-help-cats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .ks-help-split,
  .ks-help-article-layout,
  .ks-help-support__grid,
  .ks-help-faq {
    grid-template-columns: 1fr;
  }

  .ks-help-hero__stage {
    min-height: 340px;
    padding: 40px 0 48px;
  }

  .ks-help-hero__media img {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%
    );
  }

  .ks-help-hero__copy {
    max-width: 380px;
  }

  .ks-about-hero .ks-help-hero__copy,
  .ks-news-hero .ks-help-hero__copy {
    max-width: 420px;
  }

  .ks-help-aside-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .ks-help-hero__stage {
    display: block;
    min-height: 0;
    padding: 8px 0 28px;
  }

  .ks-help-hero__media {
    position: relative;
    inset: auto;
    height: 168px;
  }

  .ks-help-hero__media img {
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
    object-position: 70% center;
  }

  .ks-help-hero__copy {
    max-width: none;
    padding-top: 12px;
  }

  .ks-help-hero__title {
    font-size: 26px;
    line-height: 1.3;
  }

  .ks-help-hero__desc {
    margin-top: 10px;
    font-size: 14px;
  }

  .ks-help-search {
    margin-top: 18px;
    max-width: none;
  }

  .ks-help-search__box {
    padding: 5px 5px 5px 14px;
  }

  .ks-help-search__input {
    height: 42px;
    font-size: 14px;
  }

  .ks-help-search__btn {
    width: 42px;
    height: 42px;
  }

  .ks-help-topics {
    gap: 6px 10px;
    margin-top: 12px;
  }

  .ks-help-article-hero {
    padding: 28px 0 22px;
  }

  .ks-help-section {
    padding: 40px 0;
  }

  .ks-help-section__title {
    font-size: 22px;
  }

  .ks-help-section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
  }

  .ks-help-quick,
  .ks-help-cats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ks-help-quick__card {
    min-height: 0;
    padding: 16px;
  }

  .ks-help-cat-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .ks-help-cat-card__main {
    padding-right: 40px;
  }

  .ks-help-cat-card__icon {
    width: 56px;
    height: 56px;
  }

  .ks-help-cat-card__icon svg {
    width: 56px;
    height: 56px;
  }

  .ks-help-featured__item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .ks-help-featured__thumb {
    width: 56px;
    height: 56px;
  }

  .ks-help-support {
    padding: 0 0 48px;
  }

  .ks-help-support__card {
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px;
  }

  .ks-help-support__icon {
    width: 48px;
    height: 48px;
  }

  .ks-help-support__icon svg {
    width: 48px;
    height: 48px;
  }

  .ks-help-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .ks-help-item__arrow {
    display: none;
  }

  .ks-help-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .ks-help-prose {
    padding: 20px 16px;
  }

  .ks-help-article__title {
    font-size: 26px;
  }
}


/* —— About / News shared page hero —— */
.ks-page-about,
.ks-page-news {
  background: var(--ks-white);
}

.ks-page-hero {
  --ks-page-hero-bg: #e8f1ff;
  position: relative;
  overflow: hidden;
  background: var(--ks-page-hero-bg);
}

.ks-page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.9fr);
  gap: 24px 40px;
  align-items: center;
  min-height: 360px;
  padding: 48px 0 56px;
}

.ks-page-hero__copy {
  max-width: 520px;
}

.ks-page-hero__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ks-ink);
}

.ks-page-hero__desc {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ks-muted);
}

.ks-page-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.ks-page-hero__media img {
  width: min(100%, 420px);
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
}

/* —— About —— */
.ks-about-section {
  padding: 72px 0;
}

.ks-about-section--muted {
  background: #f7f9fc;
}

.ks-about-section__title {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ks-ink);
}

.ks-about-missions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ks-about-mission {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26, 35, 51, 0.04);
}

.ks-about-mission__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
}

.ks-about-mission__icon svg {
  width: 40px;
  height: 40px;
}

.ks-about-mission__title {
  margin: 16px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ks-ink);
}

.ks-about-mission__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ks-muted);
}

.ks-about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ks-about-stat {
  text-align: center;
  padding: 12px 8px;
}

.ks-about-stat__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}

.ks-about-stat__icon svg {
  width: 28px;
  height: 28px;
}

.ks-about-stat__value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ks-ink);
}

.ks-about-stat__label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ks-muted);
}

.ks-about-timeline {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.ks-about-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 2px;
  background: #d7e6ff;
}

.ks-about-timeline__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding-top: 4px;
}

.ks-about-timeline__year {
  font-size: 16px;
  font-weight: 700;
  color: var(--ks-blue);
}

.ks-about-timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ks-blue);
  box-shadow: 0 0 0 4px #eaf2ff;
  z-index: 1;
}

.ks-about-timeline__desc {
  max-width: 160px;
  font-size: 13px;
  line-height: 1.6;
  color: #4b5a73;
}

.ks-about-team {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  min-height: 220px;
  padding: 36px 40px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 88% 50%, rgba(91, 140, 255, 0.35), transparent 60%),
    linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 55%, #172554 100%);
  color: #fff;
}

.ks-about-team__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}

.ks-about-team__desc {
  margin: 0 0 20px;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.ks-about-team__art {
  min-height: 160px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(147, 197, 253, 0.35), transparent 45%),
    linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  position: relative;
}

.ks-about-team__art::before,
.ks-about-team__art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.ks-about-team__art::before {
  width: 88px;
  height: 88px;
  left: 18%;
  top: 28%;
}

.ks-about-team__art::after {
  width: 64px;
  height: 64px;
  right: 22%;
  bottom: 22%;
}

.ks-about-partners {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.ks-about-partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 12px 16px;
  border: 1px solid var(--ks-line);
  border-radius: 12px;
  background: #fff;
}

.ks-about-partners__item img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* —— News list —— */
.ks-news-body {
  padding: 28px 0 80px;
}

.ks-news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.ks-news-tabs__item {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5a73;
  transition: background-color .2s ease, color .2s ease;
}

.ks-news-tabs__item:hover {
  color: var(--ks-blue);
  background: var(--ks-blue-soft);
}

.ks-news-tabs__item.is-active {
  background: var(--ks-blue);
  color: #fff;
}

.ks-news-list {
  display: flex;
  flex-direction: column;
}

.ks-news-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 22px 0;
  border-bottom: 1px solid var(--ks-line);
}

.ks-news-card--featured {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 28px;
  margin-bottom: 8px;
}

.ks-news-card__cover {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #e8eef7;
  min-height: 112px;
}

.ks-news-card--featured .ks-news-card__cover {
  min-height: 220px;
}

.ks-news-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.ks-news-card:hover .ks-news-card__cover img {
  transform: scale(1.03);
}

.ks-news-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ks-news-card__tag {
  display: inline-flex;
  align-self: flex-start;
  height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--ks-blue-soft);
  color: var(--ks-blue);
  font-size: 12px;
  font-weight: 600;
}

.ks-news-card__title {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ks-ink);
}

.ks-news-card--featured .ks-news-card__title {
  font-size: 24px;
}

.ks-news-card__title a:hover {
  color: var(--ks-blue);
}

.ks-news-card__summary {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ks-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ks-news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  color: #98a4b8;
}

.ks-news-card__more {
  font-weight: 600;
  color: var(--ks-blue);
  white-space: nowrap;
}

.ks-news-card__more:hover {
  color: var(--ks-blue-hover);
}

.ks-news-empty {
  text-align: center;
  padding: 64px 24px;
  border: 1px solid var(--ks-line);
  border-radius: 16px;
  background: #fff;
}

.ks-news-empty h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.ks-news-empty p {
  margin: 0 0 20px;
  color: var(--ks-muted);
}

.ks-news-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.ks-news-pager__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--ks-line);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #4b5a73;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.ks-news-pager__item:hover {
  border-color: var(--ks-blue-line);
  color: var(--ks-blue);
}

.ks-news-pager__item.is-active {
  background: var(--ks-blue);
  border-color: var(--ks-blue);
  color: #fff;
}

.ks-news-pager__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  color: #98a4b8;
}

.ks-news-pager__next {
  font-size: 18px;
}

@media (max-width: 960px) {
  .ks-page-hero__inner,
  .ks-about-missions,
  .ks-about-team {
    grid-template-columns: 1fr 1fr;
  }

  .ks-about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .ks-about-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 8px;
  }

  .ks-about-timeline::before {
    left: 21px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 2px;
    height: auto;
  }

  .ks-about-timeline__item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    text-align: left;
    padding: 14px 0;
  }

  .ks-about-timeline__year {
    grid-column: 2;
    grid-row: 1;
  }

  .ks-about-timeline__dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 4px;
  }

  .ks-about-timeline__desc {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
  }

  .ks-about-partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ks-about-section__title {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .ks-news-body {
    padding: 20px 0 64px;
  }

  .ks-news-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin: 0 -18px 22px;
    padding: 0 18px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .ks-news-tabs::-webkit-scrollbar {
    display: none;
  }

  .ks-news-tabs__item {
    flex: 0 0 auto;
  }

  .ks-news-card,
  .ks-news-card--featured {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .ks-news-card__cover {
    min-height: 96px;
  }

  .ks-news-card--featured .ks-news-card__cover {
    min-height: 112px;
  }

  .ks-news-card__title {
    font-size: 16px;
  }

  .ks-news-card--featured .ks-news-card__title {
    font-size: 17px;
  }

  .ks-news-card__summary {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 720px) {
  .ks-page-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 0 32px;
    gap: 8px;
  }

  .ks-page-hero__media {
    order: -1;
  }

  .ks-page-hero__media img {
    max-height: 200px;
  }

  .ks-about-section {
    padding: 40px 0;
  }

  .ks-about-section__title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .ks-about-missions,
  .ks-about-team {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ks-about-mission {
    padding: 20px 18px;
  }

  .ks-about-mission__title {
    margin-top: 12px;
    font-size: 16px;
  }

  .ks-about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ks-about-stat {
    padding: 14px 10px;
    border: 1px solid var(--ks-line);
    border-radius: 12px;
    background: #fff;
  }

  .ks-about-stat__value {
    font-size: 24px;
  }

  .ks-about-stat__label {
    font-size: 13px;
  }

  .ks-about-team {
    padding: 24px 18px;
    min-height: 0;
  }

  .ks-about-team__title {
    font-size: 22px;
  }

  .ks-about-team__art {
    min-height: 110px;
  }

  .ks-about-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ks-about-partners__item {
    height: 60px;
    padding: 10px 12px;
  }

  .ks-about-partners__item img {
    max-height: 28px;
  }

  .ks-news-body {
    padding: 12px 0 56px;
  }

  .ks-news-tabs {
    margin: 0 -16px 18px;
    padding: 0 16px 4px;
  }

  .ks-news-tabs__item {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .ks-news-card,
  .ks-news-card--featured {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .ks-news-card__cover,
  .ks-news-card--featured .ks-news-card__cover {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .ks-news-card__title,
  .ks-news-card--featured .ks-news-card__title {
    font-size: 17px;
  }

  .ks-news-card__meta {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-top: 12px;
  }

  .ks-news-pager {
    margin-top: 24px;
    gap: 6px;
  }

  .ks-news-pager__item {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .ks-help-hero__media {
    height: 140px;
  }

  .ks-help-hero__title {
    font-size: 24px;
  }

  .ks-about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .ks-about-stat__value {
    font-size: 22px;
  }

  .ks-news-card__summary {
    -webkit-line-clamp: 3;
  }
}
