:root {
    --crm-bg: #fffaf6;
    --crm-surface: #ffffff;
    --crm-surface-soft: rgba(255, 255, 255, 0.78);
    --crm-primary: #1d4fff;
    --crm-primary-deep: #142f8f;
    --crm-secondary: #ff7a32;
    --crm-secondary-soft: #ffe6d8;
    --crm-text: #162037;
    --crm-text-soft: #5a6580;
    --crm-border: rgba(22, 32, 55, 0.12);
    --crm-shadow: 0 22px 54px rgba(32, 45, 89, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Alibaba PuHuiTi 3.0", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
    color: var(--crm-text);
    background: radial-gradient(circle at 8% 4%, #ffe5d4 0%, transparent 34%),
    radial-gradient(circle at 92% 3%, #dce4ff 0%, transparent 34%),
    var(--crm-bg);
}

body.crm-modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

.crm-page {
    width: 100%;
    overflow: clip;
}

.crm-shell {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

[data-reveal="true"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.62s ease, transform 0.62s ease;
}

[data-reveal="true"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.crm-btn {
    min-width: 150px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.crm-btn:hover {
    transform: translateY(-1px);
}

.crm-btn--solid {
    color: #fff;
    background: linear-gradient(124deg, #ff7a32 0%, #ff9353 38%, #1c4fff 100%);
    box-shadow: 0 14px 30px rgba(45, 81, 200, 0.24);
}

.crm-btn--ghost {
    color: var(--crm-primary-deep);
    border: 1px solid rgba(28, 79, 255, 0.3);
    background: rgba(255, 255, 255, 0.72);
}

.crm-page--error {
    min-height: 100vh;
    background:
            radial-gradient(circle at 12% 16%, rgba(255, 122, 50, 0.16) 0, rgba(255, 122, 50, 0) 26%),
            radial-gradient(circle at 88% 12%, rgba(28, 79, 255, 0.14) 0, rgba(28, 79, 255, 0) 28%),
            linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 255, 255, 0.98) 46%);
}

.crm-error {
    padding: 116px 0 88px;
}

.crm-error__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    gap: 34px;
    align-items: stretch;
}

.crm-error__content {
    min-height: 430px;
    padding: 46px;
    border: 1px solid rgba(28, 79, 255, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 243, 0.9) 100%);
    box-shadow: var(--crm-shadow);
}

.crm-error__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 14px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    border-radius: 999px;
    color: var(--crm-primary);
    background: rgba(28, 79, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.crm-error__code {
    margin-top: 18px;
    color: rgba(28, 79, 255, 0.14);
    font-size: clamp(78px, 10vw, 148px);
    font-weight: 800;
    line-height: 0.95;
}

.crm-error__content h1 {
    margin-top: 12px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.14;
}

.crm-error__desc {
    max-width: 680px;
    margin-top: 18px;
    color: var(--crm-text-soft);
    font-size: 17px;
    line-height: 1.9;
}

.crm-error__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.crm-error__card {
    position: relative;
    min-height: 430px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 122, 50, 0.18);
    border-radius: 28px;
    background:
            linear-gradient(145deg, rgba(255, 122, 50, 0.14) 0%, rgba(28, 79, 255, 0.12) 100%),
            rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 52px rgba(32, 45, 89, 0.12);
}

.crm-error__card::after {
    content: "";
    position: absolute;
    top: -44px;
    right: -34px;
    width: 168px;
    height: 168px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 122, 50, 0.24) 0%, rgba(28, 79, 255, 0.08) 100%);
    transform: rotate(24deg);
}

.crm-error__card-ring {
    position: absolute;
    left: -74px;
    bottom: 40px;
    width: 206px;
    height: 206px;
    border: 26px solid rgba(28, 79, 255, 0.08);
    border-radius: 50%;
}

.crm-error__card-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 156px;
    margin-bottom: 42px;
}

.crm-error__card-grid span {
    height: 46px;
    border: 1px solid rgba(28, 79, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
}

.crm-error__card-grid span:nth-child(2),
.crm-error__card-grid span:nth-child(3) {
    background: rgba(255, 122, 50, 0.14);
}

.crm-error__card h2,
.crm-error__card a {
    position: relative;
    z-index: 1;
}

.crm-error__card h2 {
    margin-bottom: 16px;
    font-size: 27px;
    line-height: 1.22;
}

.crm-error__card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(28, 79, 255, 0.1);
    color: var(--crm-text);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.crm-error__card a::after {
    content: "→";
    color: var(--crm-secondary);
}

.crm-error__card a:hover {
    color: var(--crm-primary-deep);
    transform: translateX(4px);
}

.crm-error__card a:last-child {
    border-bottom: none;
}

.crm-header {
    position: sticky;
    top: 0;
    z-index: 24;
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 246, 0.82);
    backdrop-filter: blur(12px);
}

.crm-header.is-scrolled {
    border-bottom-color: var(--crm-border);
}

.crm-header__inner {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.crm-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.crm-logo__mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    position: relative;
    background: linear-gradient(145deg, #ff7b39 0%, #1c4fff 100%);
}

.crm-logo__mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
}

.crm-nav {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.crm-nav a {
    color: var(--crm-text-soft);
    font-size: 14px;
    transition: color 0.2s ease;
}

.crm-nav a:hover,
.crm-nav a.active {
    color: var(--crm-primary-deep);
    font-weight: 600;
}

.crm-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.crm-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--crm-text-soft);
    font-size: 13px;
}

.crm-phone img {
    width: 16px;
    height: 16px;
}

.crm-user-menu {
    position: relative;
}

.crm-user-menu[hidden] {
    display: none !important;
}

.crm-user-menu__trigger {
    min-width: 164px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.22);
    background: rgba(255, 255, 255, 0.85);
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--crm-text);
    cursor: pointer;
}

.crm-user-menu__avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e8ecff;
    color: var(--crm-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
    flex-shrink: 0;
}

.crm-user-menu__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crm-user-menu__name {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.crm-user-menu__arrow {
    color: var(--crm-text-soft);
    font-size: 12px;
    line-height: 1;
}

.crm-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 188px;
    border-radius: 14px;
    border: 1px solid var(--crm-border);
    background: #ffffff;
    box-shadow: var(--crm-shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
}

.crm-user-menu.is-open .crm-user-menu__dropdown,
.crm-user-menu:hover .crm-user-menu__dropdown,
.crm-user-menu:focus-within .crm-user-menu__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.crm-user-menu__item {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px;
    font-size: 14px;
    color: var(--crm-text);
    cursor: pointer;
}

.crm-user-menu__item:hover {
    background: #f4f6ff;
}

.crm-user-menu__item--danger {
    color: #e34d59;
}

.crm-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(28, 79, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.crm-nav-toggle span {
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--crm-primary-deep);
}

.crm-hero {
    padding: 80px 0 44px;
}

.crm-hero__inner {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 400px);
    align-items: stretch;
    gap: 30px;
}

.crm-hero__content {
    position: relative;
    border: 1px solid rgba(255, 122, 50, 0.2);
    border-radius: 28px;
    padding: 42px 40px;
    background: linear-gradient(140deg, rgba(255, 245, 237, 0.96) 0%, rgba(235, 241, 255, 0.9) 56%, rgba(223, 230, 255, 0.9) 100%);
    box-shadow: var(--crm-shadow);
    overflow: hidden;
}

.crm-hero__content::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -42px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 50, 0.24) 0%, transparent 65%);
}

.crm-hero__tag,
.crm-subhero span,
.crm-section__head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: #a74a16;
    background: var(--crm-secondary-soft);
    border: 1px solid rgba(255, 122, 50, 0.24);
}

.crm-hero__tag {
    margin-bottom: 16px;
}

.crm-hero h1,
.crm-subhero h1 {
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.crm-hero p,
.crm-subhero p {
    color: var(--crm-text-soft);
    font-size: 16px;
}

.crm-hero__actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.crm-hero__stats {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.crm-hero__stats li {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.74);
}

.crm-hero__stats strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    color: var(--crm-primary-deep);
}

.crm-hero__stats span {
    color: var(--crm-text-soft);
    font-size: 13px;
}

.crm-hero__panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pipeline-card {
    border-radius: 22px;
    border: 1px solid rgba(28, 79, 255, 0.18);
    background: #ffffff;
    box-shadow: var(--crm-shadow);
    padding: 24px;
}

.pipeline-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.pipeline-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pipeline-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(22, 32, 55, 0.15);
    padding-bottom: 10px;
}

.pipeline-card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pipeline-card li span {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.pipeline-card li strong {
    color: var(--crm-primary-deep);
    font-size: 17px;
}

.pipeline-card--accent {
    background: linear-gradient(146deg, #1f327f 0%, #1c4fff 52%, #4f6eff 100%);
    border-color: transparent;
    color: #eaf0ff;
}

.pipeline-card--accent h3 {
    color: #fff;
    margin-bottom: 12px;
}

.pipeline-card--accent p {
    color: rgba(234, 240, 255, 0.9);
    font-size: 15px;
}

.crm-subhero {
    padding: 76px 0 26px;
}

.crm-subhero .crm-shell {
    border-radius: 22px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: linear-gradient(130deg, rgba(255, 248, 240, 0.96) 0%, rgba(231, 238, 255, 0.92) 100%);
    padding: 34px;
    box-shadow: 0 14px 34px rgba(30, 44, 89, 0.1);
}

.crm-subhero span {
    margin-bottom: 12px;
}

.crm-news-hero .crm-subhero__copy > span,
.crm-help-hero .crm-subhero__copy > span,
.crm-pricing-hero > .crm-shell > span {
    margin-bottom: 16px;
}

.crm-news-hero h1,
.crm-help-hero h1,
.crm-pricing-hero h1 {
    font-size: 44px;
    line-height: 1.08;
    margin: 12px 0 16px;
}

/* 新闻动态与帮助中心首屏插图使用 HTML/CSS 绘制，避免新增外部素材依赖。 */
.crm-subhero--illustrated .crm-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 34px;
    align-items: center;
}

.crm-subhero--illustrated .crm-shell::after {
    content: "";
    position: absolute;
    right: -68px;
    bottom: -92px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 79, 255, 0.12) 0%, rgba(28, 79, 255, 0) 68%);
    pointer-events: none;
}

.crm-subhero__copy,
.crm-subhero__visual {
    position: relative;
    z-index: 1;
}

.crm-subhero__copy {
    min-width: 0;
    max-width: 760px;
}

.crm-subhero__visual {
    justify-self: end;
    width: min(100%, 360px);
    min-height: 230px;
    pointer-events: none;
}

.crm-news-illustration,
.crm-help-illustration {
    height: 230px;
}

.crm-news-illustration::before,
.crm-help-illustration::before {
    content: "";
    position: absolute;
    inset: 24px 10px 10px 36px;
    border-radius: 42px;
    background: linear-gradient(138deg, rgba(255, 122, 50, 0.15) 0%, rgba(28, 79, 255, 0.13) 100%);
    transform: rotate(-5deg);
}

.crm-news-illustration__screen {
    position: absolute;
    left: 18px;
    top: 34px;
    width: 238px;
    height: 150px;
    border-radius: 22px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 34px rgba(36, 52, 99, 0.15);
    padding: 18px;
    transform: rotate(-2deg);
}

.crm-news-illustration__toolbar {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}

.crm-news-illustration__toolbar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(28, 79, 255, 0.28);
}

.crm-news-illustration__toolbar i:first-child {
    background: rgba(255, 122, 50, 0.64);
}

.crm-news-illustration__headline,
.crm-news-illustration__row {
    border-radius: 999px;
    background: rgba(28, 79, 255, 0.12);
}

.crm-news-illustration__headline {
    width: 72%;
    height: 16px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, rgba(28, 79, 255, 0.76) 0%, rgba(28, 79, 255, 0.18) 100%);
}

.crm-news-illustration__row {
    width: 62%;
    height: 9px;
    margin-top: 10px;
}

.crm-news-illustration__row--wide {
    width: 88%;
}

.crm-news-illustration__row--short {
    width: 42%;
}

.crm-news-illustration__signal {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 92px;
    height: 92px;
}

.crm-news-illustration__signal i {
    position: absolute;
    border-top: 2px solid rgba(28, 79, 255, 0.34);
    border-right: 2px solid rgba(28, 79, 255, 0.34);
    border-radius: 0 100% 0 0;
    transform: rotate(-12deg);
}

.crm-news-illustration__signal i:nth-child(1) {
    inset: 34px 34px 30px 30px;
}

.crm-news-illustration__signal i:nth-child(2) {
    inset: 20px 20px 16px 16px;
    border-color: rgba(255, 122, 50, 0.46);
}

.crm-news-illustration__signal i:nth-child(3) {
    inset: 6px 6px 2px 2px;
}

.crm-news-illustration__card {
    position: absolute;
    border: 1px solid rgba(28, 79, 255, 0.14);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 28px rgba(36, 52, 99, 0.12);
}

.crm-news-illustration__card--chart {
    right: 28px;
    bottom: 26px;
    width: 118px;
    height: 88px;
    border-radius: 20px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 16px 18px;
}

.crm-news-illustration__card--chart i {
    flex: 1;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, #ff9a5f 0%, #ff7a32 100%);
}

.crm-news-illustration__card--chart i:nth-child(1) {
    height: 38%;
}

.crm-news-illustration__card--chart i:nth-child(2) {
    height: 72%;
    background: linear-gradient(180deg, #6d87ff 0%, #1d4fff 100%);
}

.crm-news-illustration__card--chart i:nth-child(3) {
    height: 54%;
}

.crm-news-illustration__card--tag {
    left: 56px;
    bottom: 14px;
    width: 150px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    gap: 8px;
    padding: 13px 16px;
}

.crm-news-illustration__card--tag i {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 122, 50, 0.26);
}

.crm-news-illustration__card--tag i:nth-child(2) {
    width: 62%;
    background: rgba(28, 79, 255, 0.18);
}

.crm-help-illustration__search {
    position: absolute;
    left: 20px;
    top: 18px;
    width: calc(100% - 44px);
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(36, 52, 99, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
}

.crm-help-illustration__search i {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(28, 79, 255, 0.58);
    border-radius: 50%;
}

.crm-help-illustration__search i::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -5px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: rgba(28, 79, 255, 0.58);
    transform: rotate(45deg);
}

.crm-help-illustration__search span {
    width: 62%;
    height: 10px;
    border-radius: 999px;
    background: rgba(28, 79, 255, 0.12);
}

.crm-help-illustration__tree {
    position: absolute;
    left: 34px;
    top: 92px;
    width: 132px;
    height: 104px;
    border-left: 2px solid rgba(28, 79, 255, 0.2);
}

.crm-help-illustration__tree span {
    position: relative;
    display: block;
    width: 112px;
    height: 28px;
    margin: 0 0 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(28, 79, 255, 0.12);
    box-shadow: 0 10px 20px rgba(36, 52, 99, 0.08);
}

.crm-help-illustration__tree span::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 13px;
    width: 18px;
    height: 2px;
    background: rgba(28, 79, 255, 0.2);
}

.crm-help-illustration__tree span::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    width: 60%;
    height: 8px;
    border-radius: 999px;
    background: rgba(28, 79, 255, 0.16);
}

.crm-help-illustration__tree span:nth-child(2)::after {
    width: 48%;
    background: rgba(255, 122, 50, 0.26);
}

.crm-help-illustration__doc {
    position: absolute;
    right: 24px;
    top: 82px;
    width: 146px;
    height: 118px;
    border-radius: 20px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 34px rgba(36, 52, 99, 0.13);
    padding: 20px 18px;
}

.crm-help-illustration__doc i {
    display: block;
    height: 9px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: rgba(28, 79, 255, 0.14);
}

.crm-help-illustration__doc i:first-child {
    width: 64%;
    height: 14px;
    background: linear-gradient(90deg, rgba(28, 79, 255, 0.72) 0%, rgba(28, 79, 255, 0.2) 100%);
}

.crm-help-illustration__doc i:nth-child(3) {
    width: 78%;
}

.crm-help-illustration__doc i:nth-child(4) {
    width: 52%;
    background: rgba(255, 122, 50, 0.24);
}

.crm-help-illustration__bubble {
    position: absolute;
    left: 144px;
    bottom: 16px;
    width: 130px;
    height: 56px;
    border-radius: 18px 18px 18px 6px;
    background: linear-gradient(135deg, rgba(255, 122, 50, 0.18) 0%, rgba(28, 79, 255, 0.16) 100%);
    border: 1px solid rgba(28, 79, 255, 0.12);
    display: grid;
    gap: 8px;
    padding: 14px 16px;
}

.crm-help-illustration__bubble i {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(28, 79, 255, 0.18);
}

.crm-help-illustration__bubble i:nth-child(2) {
    width: 58%;
    background: rgba(255, 122, 50, 0.3);
}

.crm-section {
    padding: 78px 0;
}

.crm-highlight {
    position: relative;
}

.crm-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 79, 255, 0.06) 0%, rgba(255, 255, 255, 0) 66%);
    pointer-events: none;
}

.crm-section__head {
    max-width: 780px;
    margin-bottom: 30px;
    position: relative;
}

.crm-section__head--wide {
    max-width: 1080px;
}

.crm-section__head span {
    margin-bottom: 10px;
}

.crm-section__head h2 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.24;
}

.crm-grid {
    display: grid;
    gap: 18px;
    position: relative;
}

.crm-grid--capability {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-grid--industry {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.crm-grid--cases {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-grid--detail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-grid--solution-list,
.crm-grid--case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crm-grid--pricing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-grid--resource {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-card {
    border-radius: 18px;
    border: 1px solid var(--crm-border);
    background: var(--crm-surface-soft);
    padding: 24px;
    box-shadow: 0 12px 28px rgba(36, 52, 99, 0.09);
}

.crm-card h3 {
    font-size: 20px;
    line-height: 1.34;
    margin-bottom: 10px;
}

.crm-card p {
    color: var(--crm-text-soft);
    font-size: 15px;
}

.crm-card strong {
    color: var(--crm-text);
}

.crm-card blockquote {
    margin-top: 14px;
    padding: 10px 12px;
    border-left: 3px solid rgba(28, 79, 255, 0.4);
    background: rgba(28, 79, 255, 0.06);
    border-radius: 8px;
    color: #3a4a77;
    font-size: 14px;
}

.crm-card--feature {
    min-height: 236px;
    position: relative;
    overflow: hidden;
}

.crm-card--feature::before {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 79, 255, 0.12) 0%, transparent 70%);
}

.crm-card--solution,
.crm-card--case,
.crm-card--pricing,
.crm-card--resource {
    min-height: 280px;
}

/* 产品能力页的插图均由 HTML/CSS 绘制，便于后续按业务模块继续扩展。 */
.crm-product-hero {
    padding: 78px 0 48px;
    background: linear-gradient(180deg, rgba(255, 247, 239, 0.76) 0%, rgba(255, 255, 255, 0.92) 68%, rgba(255, 255, 255, 0) 100%);
}

.crm-product-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 30px 52px;
    align-items: center;
}

.crm-product-hero__heading {
    grid-column: 1 / -1;
}

.crm-product-hero__heading h1 {
    max-width: none;
    font-size: 44px;
    line-height: 1.08;
    margin: 12px 0 0;
    white-space: nowrap;
}

.crm-product-hero__copy p {
    max-width: 760px;
    color: var(--crm-text-soft);
    font-size: 17px;
}

.crm-product-hero__copy {
    align-self: stretch;
    min-height: 360px;
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.crm-product-hero__copy .crm-hero__actions {
    margin-top: 0;
}

.crm-product-hero__flow {
    width: min(100%, 760px);
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(28, 79, 255, 0.14);
    background: linear-gradient(90deg, rgba(255, 247, 239, 0.72) 0%, rgba(235, 241, 255, 0.78) 100%);
}

.crm-product-hero__flow > span {
    display: block;
    margin-bottom: 12px;
    color: #a74a16;
    font-size: 13px;
    font-weight: 700;
}

.crm-product-hero__flow ol {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.crm-product-hero__flow li {
    position: relative;
    min-width: 0;
    padding-left: 16px;
}

.crm-product-hero__flow li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--crm-secondary);
    box-shadow: 0 0 0 5px rgba(255, 122, 50, 0.12);
}

.crm-product-hero__flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 11px;
    left: 58px;
    right: -8px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 122, 50, 0.34), rgba(28, 79, 255, 0.2));
}

.crm-product-hero__flow strong {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--crm-primary-deep);
    font-size: 16px;
}

.crm-product-hero__flow em {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 3px;
    color: var(--crm-text-soft);
    font-style: normal;
    font-size: 12px;
}

.crm-product-hero__stats {
    margin-top: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.crm-product-hero__stats li {
    min-width: 138px;
    border-left: 3px solid rgba(255, 122, 50, 0.72);
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.62);
}

.crm-product-hero__stats strong {
    display: block;
    color: var(--crm-primary-deep);
    font-size: 24px;
    line-height: 1.15;
}

.crm-product-hero__stats span {
    color: var(--crm-text-soft);
    font-size: 13px;
}

.crm-product-hero__visual {
    min-height: 360px;
    border-radius: 28px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: linear-gradient(145deg, rgba(235, 241, 255, 0.96) 0%, rgba(255, 252, 248, 0.96) 100%);
    box-shadow: var(--crm-shadow);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.crm-product-orbit {
    position: relative;
    width: min(100%, 320px);
    aspect-ratio: 1;
}

.crm-product-orbit__ring,
.crm-product-orbit__ring--outer {
    position: absolute;
    inset: 64px;
    border-radius: 50%;
    border: 1px dashed rgba(28, 79, 255, 0.34);
}

.crm-product-orbit__ring--outer {
    inset: 24px;
    border-color: rgba(255, 122, 50, 0.32);
}

.crm-product-orbit__center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 138px;
    height: 138px;
    transform: translate(-50%, -50%);
    border-radius: 28px;
    background: linear-gradient(145deg, #1d4fff 0%, #142f8f 100%);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 18px 34px rgba(20, 47, 143, 0.24);
}

.crm-product-orbit__center strong {
    font-size: 21px;
    line-height: 1.25;
}

.crm-product-orbit__node {
    position: absolute;
    min-width: 74px;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.18);
    background: rgba(255, 255, 255, 0.94);
    color: var(--crm-primary-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 22px rgba(36, 52, 99, 0.1);
    z-index: 2;
}

.crm-product-orbit__node--marketing {
    left: 28px;
    top: 74px;
}

.crm-product-orbit__node--sales {
    right: 18px;
    top: 84px;
}

.crm-product-orbit__node--service {
    right: 20px;
    bottom: 88px;
}

.crm-product-orbit__node--connect {
    left: 32px;
    bottom: 82px;
}

.crm-product-orbit__node--ai {
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
}

.crm-product-orbit__node--paas {
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
}

.crm-product-orbit__line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 260px;
    height: 1px;
    transform-origin: center;
    background: linear-gradient(90deg, transparent 0%, rgba(28, 79, 255, 0.24) 22%, rgba(255, 122, 50, 0.3) 78%, transparent 100%);
}

.crm-product-orbit__line--a {
    transform: translate(-50%, -50%) rotate(28deg);
}

.crm-product-orbit__line--b {
    transform: translate(-50%, -50%) rotate(92deg);
}

.crm-product-orbit__line--c {
    transform: translate(-50%, -50%) rotate(150deg);
}

.crm-product-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding: 34px 0 8px;
}

.crm-product-map__rail {
    display: none;
}

.crm-product-map a {
    position: relative;
    min-height: 168px;
    padding: 50px 16px 0;
    color: var(--crm-text);
}

.crm-product-map a::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: var(--crm-primary);
    box-shadow: 0 0 0 1px rgba(28, 79, 255, 0.24);
    z-index: 2;
}

.crm-product-map a:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 29px;
    right: -29px;
    top: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 122, 50, 0.42), rgba(28, 79, 255, 0.46));
    z-index: 3;
}

.crm-product-map strong {
    display: block;
    color: var(--crm-secondary);
    font-size: 13px;
    letter-spacing: 0;
}

.crm-product-map span {
    display: block;
    margin: 6px 0;
    font-size: 21px;
    font-weight: 800;
    color: var(--crm-primary-deep);
}

.crm-product-map p {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-product-scenario__inner,
.crm-product-workbench__inner,
.crm-product-service,
.crm-product-connect,
.crm-product-ai__inner,
.crm-product-builder {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 44px;
    align-items: center;
}

.crm-product-scenario__copy span,
.crm-product-workbench__copy span,
.crm-product-service__copy span,
.crm-product-ai__inner span,
.crm-product-builder__copy span {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 122, 50, 0.24);
    background: var(--crm-secondary-soft);
    color: #a74a16;
    font-size: 13px;
    margin-bottom: 10px;
}

.crm-product-scenario__copy h2,
.crm-product-workbench__copy h2,
.crm-product-service__copy h2,
.crm-product-ai__inner h2,
.crm-product-builder__copy h2 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.22;
    margin-bottom: 14px;
}

.crm-product-scenario__copy p,
.crm-product-workbench__copy p,
.crm-product-service__copy p,
.crm-product-ai__inner p,
.crm-product-builder__copy p {
    color: var(--crm-text-soft);
}

.crm-product-checks {
    margin-top: 24px;
    list-style: none;
    display: grid;
    gap: 12px;
}

.crm-product-checks li {
    position: relative;
    padding-left: 24px;
    color: #3d4b71;
    font-size: 15px;
}

.crm-product-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(140deg, #ff7a32 0%, #1d4fff 100%);
}

.crm-product-illustration {
    min-height: 380px;
    border-radius: 26px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(235, 241, 255, 0.92) 100%);
    box-shadow: 0 16px 36px rgba(36, 52, 99, 0.12);
}

.crm-product-illustration--funnel {
    position: relative;
    padding: 34px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
}

.crm-product-funnel__source {
    position: absolute;
    top: 30px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 122, 50, 0.12);
    color: #a34d1f;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.crm-product-funnel__source:nth-child(1) {
    left: 34px;
}

.crm-product-funnel__source:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
}

.crm-product-funnel__source:nth-child(3) {
    right: 34px;
}

.crm-product-funnel__stage {
    height: 48px;
    border-radius: 16px;
    background: rgba(28, 79, 255, 0.1);
    color: var(--crm-primary-deep);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.crm-product-funnel__stage--one {
    width: 88%;
    margin-top: 54px;
}

.crm-product-funnel__stage--two {
    width: 66%;
    background: rgba(28, 79, 255, 0.16);
}

.crm-product-funnel__stage--three {
    width: 44%;
    background: rgba(28, 79, 255, 0.22);
}

.crm-product-funnel__result {
    margin-top: 10px;
    width: 150px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #ff7a32 0%, #1d4fff 100%);
    box-shadow: 0 16px 30px rgba(28, 79, 255, 0.22);
}

.crm-product-workbench__inner {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.crm-product-board {
    border-radius: 26px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: #fff;
    box-shadow: var(--crm-shadow);
    padding: 24px;
}

.crm-product-board__bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.crm-product-board__bar span {
    width: 42px;
    height: 8px;
    border-radius: 999px;
    background: rgba(28, 79, 255, 0.18);
}

.crm-product-board__lane {
    border-radius: 16px;
    border: 1px solid rgba(28, 79, 255, 0.12);
    padding: 16px;
    margin-top: 12px;
    background: rgba(248, 250, 255, 0.9);
}

.crm-product-board__lane strong {
    display: block;
    color: var(--crm-primary-deep);
    margin-bottom: 12px;
}

.crm-product-board__lane em {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: rgba(90, 101, 128, 0.16);
    margin-top: 8px;
}

.crm-product-board__lane--active {
    border-color: rgba(255, 122, 50, 0.3);
    background: rgba(255, 247, 239, 0.9);
}

.crm-product-board__lane--active em {
    background: rgba(255, 122, 50, 0.28);
}

.crm-product-metrics {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}

.crm-product-metrics div {
    border-left: 3px solid rgba(28, 79, 255, 0.55);
    padding: 12px 0 12px 18px;
}

.crm-product-metrics strong {
    display: block;
    color: var(--crm-primary-deep);
    font-size: 18px;
}

.crm-product-metrics span {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-product-service {
    grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
    align-items: start;
}

.crm-product-service__flow ol {
    list-style: none;
    display: grid;
    gap: 14px;
    counter-reset: service-step;
}

.crm-product-service__flow li {
    counter-increment: service-step;
    position: relative;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(28, 79, 255, 0.14);
    box-shadow: 0 10px 24px rgba(36, 52, 99, 0.08);
}

.crm-product-service__flow li::before {
    content: "0" counter(service-step);
    position: absolute;
    right: 20px;
    top: 14px;
    color: rgba(28, 79, 255, 0.18);
    font-size: 26px;
    font-weight: 900;
}

.crm-product-service__flow strong {
    color: var(--crm-primary-deep);
    font-size: 22px;
}

.crm-product-service__flow span {
    color: var(--crm-text-soft);
    font-size: 15px;
}

.crm-product-connect {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.crm-product-connect__mesh {
    position: relative;
    min-height: 360px;
    border-radius: 28px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 239, 0.92) 100%);
    box-shadow: var(--crm-shadow);
}

.crm-product-connect__mesh::before,
.crm-product-connect__mesh::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78%;
    height: 1px;
    transform: translate(-50%, -50%) rotate(28deg);
    background: rgba(28, 79, 255, 0.18);
}

.crm-product-connect__mesh::after {
    transform: translate(-50%, -50%) rotate(-28deg);
}

.crm-product-connect__mesh span {
    position: absolute;
    min-width: 84px;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(28, 79, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--crm-primary-deep);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(36, 52, 99, 0.1);
    z-index: 2;
}

.crm-product-connect__mesh .crm-product-connect__hub {
    left: 50%;
    top: 50%;
    width: 108px;
    height: 108px;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    background: linear-gradient(145deg, #1d4fff 0%, #142f8f 100%);
    color: #fff;
    font-size: 22px;
}

.crm-product-connect__mesh span:nth-child(2) {
    left: 28px;
    top: 48px;
}

.crm-product-connect__mesh span:nth-child(3) {
    right: 34px;
    top: 46px;
}

.crm-product-connect__mesh span:nth-child(4) {
    left: 26px;
    bottom: 58px;
}

.crm-product-connect__mesh span:nth-child(5) {
    right: 34px;
    bottom: 58px;
}

.crm-product-connect__mesh span:nth-child(6) {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.crm-product-connect__mesh span:nth-child(7) {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

.crm-product-connect__content dl {
    display: grid;
    gap: 18px;
}

.crm-product-connect__content div {
    border-bottom: 1px solid rgba(28, 79, 255, 0.14);
    padding-bottom: 18px;
}

.crm-product-connect__content div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.crm-product-connect__content dt {
    color: var(--crm-primary-deep);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.crm-product-connect__content dd {
    color: var(--crm-text-soft);
}

.crm-product-ai {
    background: linear-gradient(135deg, #142f8f 0%, #1d4fff 62%, #2b4aa8 100%);
    color: #fff;
}

.crm-product-ai__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.crm-product-ai__inner span {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.crm-product-ai__inner p {
    color: rgba(236, 242, 255, 0.88);
}

.crm-product-ai__panel {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    padding: 26px;
    box-shadow: 0 20px 40px rgba(8, 18, 66, 0.22);
}

.crm-product-ai__panel strong {
    display: inline-flex;
    height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    margin-bottom: 16px;
}

.crm-product-ai__panel ul {
    margin-top: 20px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.crm-product-ai__panel li {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.92);
}

.crm-product-paas {
    padding-bottom: 86px;
}

.crm-product-builder {
    border-radius: 30px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: linear-gradient(145deg, rgba(255, 247, 239, 0.95) 0%, rgba(235, 241, 255, 0.95) 100%);
    box-shadow: var(--crm-shadow);
    padding: 38px;
}

.crm-product-builder__copy .crm-btn {
    margin-top: 24px;
}

.crm-product-builder__canvas {
    min-height: 310px;
    border-radius: 24px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    overflow: hidden;
}

.crm-product-builder__sidebar {
    background: rgba(20, 47, 143, 0.08);
    padding: 22px 16px;
    display: grid;
    align-content: start;
    gap: 14px;
}

.crm-product-builder__sidebar span {
    height: 38px;
    border-radius: 12px;
    background: rgba(28, 79, 255, 0.16);
}

.crm-product-builder__area {
    position: relative;
    padding: 34px;
    display: grid;
    align-content: center;
    gap: 12px;
}

.crm-product-builder__area i {
    height: 46px;
    border-radius: 16px;
    background: rgba(28, 79, 255, 0.08);
}

.crm-product-builder__area i:nth-child(2) {
    width: 76%;
    background: rgba(255, 122, 50, 0.12);
}

.crm-product-builder__area i:nth-child(3) {
    width: 58%;
}

.crm-product-builder__area strong {
    color: var(--crm-primary-deep);
    font-size: 24px;
}

.crm-product-builder__area em {
    color: var(--crm-text-soft);
    font-style: normal;
}

.crm-solution-hero,
.crm-solution-detail-hero {
    padding: 78px 0 34px;
}

.crm-solution-hero__inner,
.crm-solution-detail-hero__inner {
    display: block;
}

.crm-solution-hero__copy,
.crm-solution-detail-hero__copy {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(255, 122, 50, 0.22);
    background: linear-gradient(138deg, rgba(255, 247, 239, 0.97) 0%, rgba(235, 241, 255, 0.94) 58%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: var(--crm-shadow);
    padding: 42px 40px;
}

.crm-solution-hero__copy--with-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 26px 34px;
    align-items: center;
}

.crm-solution-hero__heading {
    grid-column: 1 / -1;
}

.crm-solution-hero__text {
    min-width: 0;
    max-width: 760px;
}

.crm-solution-hero__copy h1,
.crm-solution-detail-hero__copy h1 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.crm-solution-hero__heading h1 {
    /* 行业方案首屏标题单独占一行，避免插图列挤压造成桌面端换行。 */
    font-size: 44px;
    line-height: 1.08;
    margin: 12px 0 0;
    white-space: nowrap;
}

.crm-solution-hero__copy p,
.crm-solution-detail-hero__copy p {
    color: var(--crm-text-soft);
    font-size: 16px;
}

.crm-solution-hero__metrics {
    margin-top: 32px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.crm-solution-hero__metrics li {
    border-radius: 14px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.76);
    padding: 14px;
}

.crm-solution-hero__metrics strong {
    display: block;
    color: var(--crm-primary-deep);
    font-size: 26px;
    line-height: 1.1;
}

.crm-solution-hero__metrics span {
    color: var(--crm-text-soft);
    font-size: 13px;
}

.crm-solution-hero__illustration {
    width: min(100%, 300px);
    justify-self: end;
    align-self: center;
    margin-top: 0;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(36, 52, 99, 0.12);
}

.crm-grid--solution-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-solution-card {
    min-height: 360px;
    border-radius: 18px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(36, 52, 99, 0.09);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.crm-solution-card--active {
    cursor: pointer;
    border-color: rgba(255, 122, 50, 0.34);
}

.crm-solution-card--active:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(36, 52, 99, 0.14);
}

.crm-solution-card__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.crm-solution-card__head span,
.crm-solution-card__head strong {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
}

.crm-solution-card__head span {
    color: #a74a16;
    background: var(--crm-secondary-soft);
}

.crm-solution-card__head strong {
    color: var(--crm-primary-deep);
    background: rgba(28, 79, 255, 0.08);
    white-space: nowrap;
}

.crm-solution-card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.crm-solution-card p {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-solution-card p b {
    display: block;
    color: var(--crm-text);
    margin-bottom: 4px;
}

.crm-solution-card__divider {
    height: 1px;
    margin: 18px 0;
    background: linear-gradient(90deg, rgba(28, 79, 255, 0.18) 0%, rgba(255, 122, 50, 0.16) 100%);
}

.crm-solution-card .crm-tags {
    margin-top: auto;
    padding-top: 18px;
    flex-wrap: nowrap;
    gap: 6px;
}

.crm-solution-card .crm-tags li {
    padding: 5px 8px;
    white-space: nowrap;
}

.crm-solution-layer span {
    display: inline-flex;
    color: var(--crm-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.crm-journey__list.crm-journey__list--solution {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.crm-solution-detail-hero__copy--single {
    padding-top: 48px;
}

.crm-solution-detail-hero__copy .crm-solution-detail-hero__back {
    display: flex;
    min-height: 35px;
    margin-top: -14px;
    margin-bottom: 40px;
}

.crm-solution-detail-hero__tag {
    position: absolute;
    top: 34px;
    right: 40px;
    margin-bottom: 0;
    white-space: nowrap;
}

.crm-solution-detail-hero__metrics {
    margin-top: 30px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 860px;
}

.crm-solution-detail-hero__metrics li {
    border-radius: 14px;
    border: 1px solid rgba(28, 79, 255, 0.14);
    background: rgba(255, 255, 255, 0.82);
    padding: 14px 16px;
}

.crm-solution-detail-hero__metrics strong {
    display: block;
    color: var(--crm-primary-deep);
    font-size: 15px;
}

.crm-solution-detail-hero__metrics span {
    color: var(--crm-text-soft);
    font-size: 13px;
}

.crm-solution-blueprint,
.crm-education-blueprint {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.crm-solution-blueprint article,
.crm-education-blueprint article {
    border-radius: 18px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: #fff;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(36, 52, 99, 0.09);
}

.crm-solution-blueprint strong,
.crm-education-blueprint strong {
    display: inline-flex;
    margin-bottom: 10px;
    color: #a74a16;
    font-size: 13px;
}

.crm-solution-blueprint h3,
.crm-education-blueprint h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.crm-solution-blueprint p,
.crm-education-blueprint p {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-solution-flow,
.crm-education-flow {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.crm-solution-flow li,
.crm-education-flow li {
    border-radius: 16px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.84);
    padding: 20px 18px;
    box-shadow: 0 10px 24px rgba(35, 48, 91, 0.09);
}

.crm-solution-flow strong,
.crm-education-flow strong {
    color: var(--crm-primary);
    font-size: 14px;
}

.crm-solution-flow h3,
.crm-education-flow h3 {
    font-size: 19px;
    margin: 8px 0;
}

.crm-solution-flow p,
.crm-education-flow p {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-emphasis {
    color: var(--crm-primary-deep) !important;
    font-weight: 600;
    margin-bottom: 10px;
}

.crm-meta {
    color: #7a86a5;
    font-size: 13px;
    margin-bottom: 10px;
}

.crm-tags {
    margin-top: 14px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crm-tags li {
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.2);
    background: rgba(28, 79, 255, 0.08);
    color: #2c448c;
    font-size: 12px;
}

.crm-link,
.crm-link-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    color: var(--crm-primary-deep);
    font-size: 14px;
    font-weight: 600;
}

.crm-link-btn {
    cursor: pointer;
}

.crm-center-action {
    margin-top: 26px;
    text-align: center;
}

.crm-price {
    margin: 14px 0 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.crm-price strong {
    font-size: 34px;
    line-height: 1;
    color: var(--crm-primary-deep);
}

.crm-price span {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-feature-list {
    margin: 16px 0 22px;
    list-style: none;
    display: grid;
    gap: 9px;
}

.crm-feature-list li {
    position: relative;
    padding-left: 18px;
    color: #3d4b71;
    font-size: 14px;
}

.crm-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(140deg, #ff7a32 0%, #1c4fff 100%);
}

.crm-chip {
    display: inline-flex;
    height: 24px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.18);
    background: rgba(28, 79, 255, 0.08);
    color: #2c448c;
    font-size: 12px;
    margin-bottom: 10px;
}

.crm-journey__list {
    position: relative;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.crm-journey__list li {
    border-radius: 16px;
    border: 1px solid rgba(28, 79, 255, 0.18);
    background: #fff;
    padding: 20px 18px;
    box-shadow: 0 10px 24px rgba(35, 48, 91, 0.09);
}

.crm-journey__list strong {
    font-size: 14px;
    color: var(--crm-primary);
}

.crm-journey__list h3 {
    font-size: 20px;
    margin: 8px 0;
}

.crm-journey__list p {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-ai-banner {
    padding-top: 12px;
}

.crm-ai__inner {
    border-radius: 28px;
    padding: 36px 38px;
    border: 1px solid rgba(21, 47, 143, 0.2);
    background: linear-gradient(132deg, #1d2d6d 0%, #1c4fff 58%, #2640a1 100%);
    color: #ecf2ff;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    box-shadow: var(--crm-shadow);
}

.crm-ai__inner span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 13px;
    margin-bottom: 10px;
    color: #fff;
}

.crm-ai__inner h2 {
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.25;
    margin-bottom: 12px;
}

.crm-ai__inner p {
    color: rgba(236, 242, 255, 0.88);
}

.crm-ai__inner ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.crm-ai__inner li {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.crm-faq-list {
    display: grid;
    gap: 14px;
}

.crm-faq-item {
    border-radius: 14px;
    border: 1px solid var(--crm-border);
    background: #fff;
    padding: 18px 20px;
}

.crm-faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.crm-faq-item p {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-timeline {
    list-style: none;
    position: relative;
    margin-left: 8px;
    padding-left: 20px;
    display: grid;
    gap: 14px;
}

.crm-timeline::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: linear-gradient(180deg, #1c4fff 0%, #ff7a32 100%);
}

.crm-timeline li {
    position: relative;
    border-radius: 14px;
    border: 1px solid var(--crm-border);
    background: #fff;
    padding: 14px 16px;
}

.crm-timeline li::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1d4fff;
    box-shadow: 0 0 0 4px rgba(29, 79, 255, 0.14);
}

.crm-timeline strong {
    display: inline-block;
    color: var(--crm-primary-deep);
    font-size: 14px;
    margin-bottom: 4px;
}

.crm-timeline p {
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-contact {
    padding-top: 48px;
    padding-bottom: 94px;
}

.crm-contact__inner {
    text-align: center;
    border-radius: 26px;
    border: 1px solid rgba(255, 122, 50, 0.28);
    background: linear-gradient(130deg, rgba(255, 247, 238, 0.96) 0%, rgba(227, 235, 255, 0.9) 100%);
    box-shadow: var(--crm-shadow);
    padding: 54px 24px;
}

.crm-contact__inner h2 {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.2;
}

.crm-contact__inner p {
    margin: 14px auto 26px;
    color: var(--crm-text-soft);
    max-width: 760px;
}

.crm-footer {
    border-top: 1px solid rgba(28, 79, 255, 0.14);
    padding: 34px 0 42px;
    background: rgba(255, 255, 255, 0.84);
}

.crm-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 36px;
}

.crm-footer__brand {
    flex: 1 1 auto;
    min-width: 0;
}

.crm-footer__description {
    margin-top: 10px;
    color: var(--crm-text-soft);
    max-width: 760px;
    white-space: nowrap;
}

.crm-footer__meta {
    flex: 0 0 auto;
    text-align: right;
}

.crm-footer__meta p {
    margin-top: 0;
    color: var(--crm-text-soft);
}

.crm-footer__friends {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(28, 79, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--crm-text-soft);
    font-size: 13px;
}

.crm-footer__friends span {
    color: var(--crm-text);
    font-weight: 600;
}

.crm-footer__friends a {
    transition: color 0.2s ease;
}

.crm-footer__friends a:hover {
    color: var(--crm-primary-deep);
}

.crm-news-section,
.crm-help-section {
    padding-top: 44px;
}

.crm-news-layout,
.crm-help-layout {
    display: grid;
    gap: 24px;
    align-items: start;
}

.crm-news-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.crm-help-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 32px;
}

.crm-news-list,
.crm-news-sidebar,
.crm-help-sidebar {
    display: grid;
    gap: 18px;
}

.crm-news-card h2 {
    font-size: 22px;
    line-height: 1.35;
    margin: 10px 0;
}

.crm-news-card__meta,
.crm-news-card__footer,
.crm-news-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    color: var(--crm-text-soft);
    font-size: 13px;
}

.crm-news-card__meta span {
    color: var(--crm-primary);
    font-style: normal;
    font-weight: 600;
}

.crm-news-detail__tags em {
    color: var(--crm-primary-deep);
    font-style: normal;
    font-weight: 600;
}

.crm-news-card__footer {
    justify-content: flex-end;
    margin-top: 18px;
    gap: 10px;
}

.crm-news-sidebar a,
.crm-help-sidebar a {
    color: var(--crm-primary-deep);
    font-weight: 600;
}

.crm-news-card__footer span {
    color: var(--crm-text-soft);
}

.crm-news-card__footer a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 14px;
    border-radius: 999px;
    color: var(--crm-primary);
    font-weight: 700;
    background: rgba(28, 79, 255, 0.08);
}

.crm-news-card__footer a:hover {
    background: rgba(28, 79, 255, 0.14);
}

.crm-news-sidebar .crm-card {
    display: grid;
    gap: 12px;
}

.crm-news-sidebar .crm-card h3 {
    margin-bottom: 2px;
}

.crm-news-featured {
    position: relative;
}

.crm-news-featured__item {
    display: none;
}

.crm-news-featured__item.is-active {
    display: block;
}

.crm-news-featured__cover {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(28, 79, 255, 0.12), rgba(255, 122, 50, 0.1));
}

.crm-news-featured__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crm-news-featured__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--crm-primary);
    font-size: 18px;
    font-weight: 700;
}

.crm-news-featured__dots {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.crm-news-featured__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(28, 79, 255, 0.18);
    cursor: pointer;
}

.crm-news-featured__dot.is-active {
    background: var(--crm-primary);
}

/* 阅读模块文章标题保持缩进层级；置顶轮播仅改变图片切换，不放大标题。 */
.crm-news-sidebar-block > a:not(.crm-news-featured),
.crm-news-sidebar-block .crm-news-featured__item strong {
    color: #151923;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.crm-news-sidebar-block > a:not(.crm-news-featured) {
    padding-left: 2em;
}

.crm-news-sidebar-block .crm-news-featured__item strong {
    display: block;
    margin-top: 10px;
    padding-left: 2em;
}

.crm-news-sidebar-block > a:not(.crm-news-featured):hover,
.crm-news-sidebar-block .crm-news-featured__item:hover strong {
    color: var(--crm-primary);
}

.crm-news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crm-news-filters a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.18);
    padding: 6px 10px;
    color: var(--crm-text-soft);
    font-size: 13px;
}

.crm-news-filters--category a:nth-child(6n + 1) {
    border-color: rgba(28, 79, 255, 0.18);
    background: rgba(28, 79, 255, 0.08);
}

.crm-news-filters--category a:nth-child(6n + 2) {
    border-color: rgba(255, 122, 50, 0.2);
    background: rgba(255, 122, 50, 0.1);
}

.crm-news-filters--category a:nth-child(6n + 3) {
    border-color: rgba(18, 163, 111, 0.2);
    background: rgba(18, 163, 111, 0.09);
}

.crm-news-filters--category a:nth-child(6n + 4) {
    border-color: rgba(123, 75, 216, 0.2);
    background: rgba(123, 75, 216, 0.09);
}

.crm-news-filters--category a:nth-child(6n + 5) {
    border-color: rgba(0, 136, 168, 0.2);
    background: rgba(0, 136, 168, 0.09);
}

.crm-news-filters--category a:nth-child(6n) {
    border-color: rgba(193, 66, 122, 0.2);
    background: rgba(193, 66, 122, 0.09);
}

.crm-news-filters a span {
    font-weight: 600;
}

.crm-news-filters a:nth-child(6n + 1) span {
    color: var(--crm-primary);
}

.crm-news-filters a:nth-child(6n + 2) span {
    color: #12a36f;
}

.crm-news-filters a:nth-child(6n + 3) span {
    color: #cf5d15;
}

.crm-news-filters a:nth-child(6n + 4) span {
    color: #7b4bd8;
}

.crm-news-filters a:nth-child(6n + 5) span {
    color: #0088a8;
}

.crm-news-filters a:nth-child(6n) span {
    color: #c1427a;
}

.crm-news-filters--tag a:nth-child(6n + 1) span {
    color: #12a36f;
}

.crm-news-filters--tag a:nth-child(6n + 1) {
    border-color: rgba(18, 163, 111, 0.22);
    background: rgba(18, 163, 111, 0.1);
}

.crm-news-filters--tag a:nth-child(6n + 2) span {
    color: #7b4bd8;
}

.crm-news-filters--tag a:nth-child(6n + 2) {
    border-color: rgba(123, 75, 216, 0.22);
    background: rgba(123, 75, 216, 0.1);
}

.crm-news-filters--tag a:nth-child(6n + 3) span {
    color: #0088a8;
}

.crm-news-filters--tag a:nth-child(6n + 3) {
    border-color: rgba(0, 136, 168, 0.22);
    background: rgba(0, 136, 168, 0.1);
}

.crm-news-filters--tag a:nth-child(6n + 4) span {
    color: #cf5d15;
}

.crm-news-filters--tag a:nth-child(6n + 4) {
    border-color: rgba(207, 93, 21, 0.22);
    background: rgba(207, 93, 21, 0.1);
}

.crm-news-filters--tag a:nth-child(6n + 5) span {
    color: #c1427a;
}

.crm-news-filters--tag a:nth-child(6n + 5) {
    border-color: rgba(193, 66, 122, 0.22);
    background: rgba(193, 66, 122, 0.1);
}

.crm-news-filters--tag a:nth-child(6n) span {
    color: var(--crm-primary);
}

.crm-news-filters--tag a:nth-child(6n) {
    border-color: rgba(28, 79, 255, 0.22);
    background: rgba(28, 79, 255, 0.1);
}

.crm-news-filters a.active {
    color: var(--crm-primary-deep);
    box-shadow: inset 0 0 0 1px rgba(28, 79, 255, 0.26);
}

.crm-help-sidebar a.active {
    color: var(--crm-primary-deep);
    background: rgba(28, 79, 255, 0.08);
}

.crm-news-filters em {
    font-style: normal;
    color: var(--crm-secondary);
}

.crm-news-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.crm-news-pagination a,
.crm-news-pagination span {
    min-width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--crm-text-soft);
    background: rgba(255, 255, 255, 0.76);
}

.crm-news-pagination a.active {
    color: #ffffff;
    border-color: transparent;
    background: var(--crm-primary);
}

.crm-news-pagination .is-disabled {
    opacity: 0.46;
}

.crm-news-empty {
    border: 1px dashed rgba(28, 79, 255, 0.22);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    color: var(--crm-text-soft);
    background: rgba(255, 255, 255, 0.7);
}

.crm-news-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #6a748d;
    font-size: 14px;
}

.crm-news-detail-breadcrumb a {
    color: var(--crm-primary);
    font-weight: 600;
}

.crm-news-detail-breadcrumb em {
    color: rgba(106, 116, 141, 0.62);
    font-style: normal;
}

.crm-news-detail-breadcrumb strong {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 122, 50, 0.24);
    background: var(--crm-secondary-soft);
    color: #a74a16;
    font-size: 13px;
    font-weight: 600;
}

.crm-news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
}

.crm-news-detail-meta a,
.crm-news-detail-meta time,
.crm-news-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    line-height: 1.35;
}

.crm-news-detail-meta a {
    color: var(--crm-primary);
    font-weight: 700;
}

.crm-news-detail-meta time,
.crm-news-detail-meta span {
    color: var(--crm-text-soft);
    font-size: 15px;
}

.crm-news-detail-meta span {
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.crm-news-detail,
.crm-help-article {
    border: 1px solid var(--crm-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(36, 52, 99, 0.09);
    padding: 30px;
}

.crm-news-detail > img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 22px;
}

.crm-news-detail__body,
.crm-help-article__body {
    margin-top: 18px;
    color: #2d3856;
    font-size: 16px;
    line-height: 1.9;
}

.crm-news-detail__body img,
.crm-help-article__body img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
}

.crm-help-article__body img {
    box-shadow: 0 5px 14px rgba(22, 32, 55, 0.2), 0 18px 42px rgba(28, 79, 255, 0.16);
}

.crm-news-detail__body p,
.crm-help-article__body p {
    margin: 0 0 16px;
}

/* 后台 Markdown 生成的列表需要恢复缩进，避免序号和圆点受全局 reset 影响溢出正文边界。 */
.crm-help-article__body ol,
.crm-help-article__body ul {
    margin: 0 0 18px;
    padding-left: 1.55em;
    list-style-position: outside;
}

.crm-help-article__body li {
    margin: 6px 0;
    padding-left: 0.2em;
}

.crm-news-detail__body h1,
.crm-news-detail__body h2,
.crm-news-detail__body h3,
.crm-help-article__body h1,
.crm-help-article__body h2,
.crm-help-article__body h3 {
    margin: 26px 0 12px;
    line-height: 1.34;
}

.crm-news-detail__pager,
.crm-help-article__pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.crm-news-detail__pager a,
.crm-news-detail__pager div,
.crm-help-article__pager a,
.crm-help-article__pager div {
    border: 1px solid rgba(28, 79, 255, 0.14);
    border-radius: 16px;
    padding: 14px;
    background: rgba(28, 79, 255, 0.05);
}

.crm-news-detail__pager span,
.crm-help-article__pager span {
    display: block;
    color: var(--crm-text-soft);
    font-size: 13px;
    margin-bottom: 6px;
}

.crm-news-detail__pager strong,
.crm-help-article__pager strong {
    display: block;
    line-height: 1.45;
}

.crm-help-sidebar {
    position: sticky;
    top: 96px;
}

.crm-help-sidebar__panel {
    max-height: calc(100vh - 120px);
    overflow: auto;
    padding: 18px 16px;
    border: 1px solid rgba(28, 79, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    box-shadow: 0 14px 28px rgba(36, 52, 99, 0.07);
}

.crm-help-tree {
    display: grid;
    gap: 10px;
}

.crm-help-tree__group {
    overflow: hidden;
    border: 1px solid rgba(28, 79, 255, 0.1);
    border-radius: 14px;
    background: #ffffff;
}

.crm-help-tree__group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 0;
    background: transparent;
    color: var(--crm-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.crm-help-tree__arrow {
    color: var(--crm-text-soft);
    transition: transform 0.2s ease;
}

.crm-help-tree__group.is-expanded .crm-help-tree__arrow {
    transform: rotate(0deg);
}

.crm-help-tree__group:not(.is-expanded) .crm-help-tree__arrow {
    transform: rotate(-90deg);
}

.crm-help-tree__pages {
    display: grid;
    gap: 6px;
    padding: 0 10px 10px;
}

.crm-help-tree__group:not(.is-expanded) .crm-help-tree__pages {
    display: none;
}

.crm-help-tree__page {
    display: block;
    border-radius: 10px;
    padding: 9px 12px 9px 20px;
    color: var(--crm-text-soft);
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.crm-help-tree__page::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(28, 79, 255, 0.32);
    transform: translateY(-50%);
}

.crm-help-tree__page:hover {
    color: var(--crm-primary-deep);
    background: rgba(28, 79, 255, 0.06);
    transform: translateX(3px);
}

.crm-help-tree__page.is-active {
    color: var(--crm-primary-deep);
    background: rgba(28, 79, 255, 0.09);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(28, 79, 255, 0.08);
}

.crm-help-article header span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 14px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    border-radius: 999px;
    color: var(--crm-primary);
    background: rgba(28, 79, 255, 0.08);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.crm-help-article header h2 {
    margin: 14px 0 8px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.25;
}

.crm-float {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 26;
    width: 52px;
    height: 132px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(180deg, #ff7a32 0%, #ff9052 44%, #1c4fff 100%);
    box-shadow: 0 16px 34px rgba(35, 60, 150, 0.33);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
}

.crm-modal-shell {
    position: fixed;
    inset: 0;
    z-index: 48;
    display: none;
}

.crm-modal-shell.is-visible {
    display: block;
}

.crm-modal-shell__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 12, 33, 0.6);
}

.crm-modal {
    position: relative;
    width: min(520px, calc(100% - 32px));
    margin: 8vh auto 0;
    border-radius: 18px;
    border: 1px solid rgba(28, 79, 255, 0.2);
    background: #fff;
    box-shadow: 0 22px 58px rgba(18, 27, 63, 0.3);
    padding: 28px;
}

.crm-modal__close {
    position: absolute;
    right: 14px;
    top: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #8390ad;
    background: #f3f5ff;
    cursor: pointer;
}

.crm-modal h2 {
    font-size: 28px;
}

.crm-modal__subtitle {
    margin-top: 8px;
    color: var(--crm-text-soft);
    font-size: 14px;
}

.crm-form {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.crm-form__field {
    display: grid;
    gap: 7px;
    color: var(--crm-text);
    font-size: 14px;
}

.crm-form__field input {
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(28, 79, 255, 0.22);
    padding: 0 12px;
    outline: none;
}

.crm-form__field input:focus {
    border-color: rgba(28, 79, 255, 0.58);
    box-shadow: 0 0 0 3px rgba(28, 79, 255, 0.15);
}

.crm-form__error {
    min-height: 18px;
    color: #dd3a49;
    font-size: 12px;
}

.crm-form__feedback {
    min-height: 20px;
    font-size: 13px;
    color: var(--crm-text-soft);
}

.crm-form__feedback.success {
    color: #18884b;
}

.crm-form__feedback.error {
    color: #dd3a49;
}

.crm-form__submit {
    width: 100%;
}

@media (max-width: 1180px) {
    .crm-grid--industry,
    .crm-grid--detail,
    .crm-grid--pricing,
    .crm-grid--resource,
    .crm-grid--solution-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-grid--capability,
    .crm-grid--cases {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-error__layout {
        grid-template-columns: 1fr;
    }

    .crm-journey__list,
    .crm-solution-flow,
    .crm-education-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-journey__list.crm-journey__list--solution {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-product-hero__inner,
    .crm-product-scenario__inner,
    .crm-product-workbench__inner,
    .crm-product-service,
    .crm-product-connect,
    .crm-product-ai__inner,
    .crm-product-builder {
        grid-template-columns: 1fr;
    }

    .crm-product-map {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .crm-product-map__rail,
    .crm-product-map a:not(:last-child)::after {
        display: none;
    }

    .crm-product-workbench__visual {
        order: 2;
    }

    .crm-product-hero__copy {
        min-height: 0;
        gap: 24px;
        padding: 0;
    }

    .crm-solution-hero__copy--with-visual {
        grid-template-columns: 1fr;
    }

    .crm-solution-hero__illustration {
        width: min(100%, 300px);
        justify-self: start;
        margin-top: 18px;
    }
}

@media (max-width: 980px) {
    .crm-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .crm-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        border-radius: 14px;
        border: 1px solid rgba(28, 79, 255, 0.2);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--crm-shadow);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        margin-left: 0;
    }

    .crm-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
    }

    .crm-nav.is-open {
        max-height: 440px;
        padding: 8px 0;
    }

    .crm-header__actions {
        display: none;
    }

    .crm-hero,
    .crm-subhero {
        padding-top: 44px;
    }

    .crm-hero__inner,
    .crm-ai__inner {
        grid-template-columns: 1fr;
    }

    .crm-subhero--illustrated .crm-shell {
        grid-template-columns: 1fr;
    }

    .crm-subhero__visual {
        justify-self: start;
    }

    .crm-product-hero__visual,
    .crm-product-illustration,
    .crm-product-connect__mesh {
        min-height: 340px;
    }

    .crm-product-orbit {
        width: min(100%, 340px);
    }

    .crm-solution-hero__copy--with-visual {
        grid-template-columns: 1fr;
    }

    .crm-solution-hero__illustration {
        width: min(100%, 300px);
        justify-self: start;
        margin-top: 18px;
    }

    .crm-solution-detail-hero__tag {
        position: static;
        margin: 14px 0 16px;
    }

    .crm-solution-detail-hero__copy .crm-solution-detail-hero__back {
        min-height: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .crm-grid--solution-list,
    .crm-grid--case-list {
        grid-template-columns: 1fr;
    }

    .crm-news-layout,
    .crm-help-layout {
        grid-template-columns: 1fr;
    }

    .crm-help-sidebar {
        position: static;
    }

    .crm-footer__inner {
        flex-direction: column;
    }

    .crm-footer__meta {
        text-align: left;
    }

    .crm-footer__description {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .crm-shell {
        width: min(1180px, calc(100% - 28px));
    }

    .crm-section {
        padding: 62px 0;
    }

    .crm-hero__content,
    .crm-subhero .crm-shell {
        padding: 30px 22px;
    }

    .crm-subhero__visual {
        width: min(100%, 320px);
        min-height: 198px;
    }

    .crm-news-illustration,
    .crm-help-illustration {
        height: 198px;
    }

    .crm-news-illustration::before,
    .crm-help-illustration::before {
        inset: 22px 6px 8px 26px;
    }

    .crm-news-illustration__screen {
        left: 10px;
        top: 28px;
        width: 218px;
        height: 138px;
        padding: 16px;
    }

    .crm-news-illustration__signal {
        right: 8px;
        top: 12px;
    }

    .crm-news-illustration__card--chart {
        right: 8px;
        bottom: 20px;
        width: 106px;
        height: 76px;
        padding: 14px 16px;
    }

    .crm-news-illustration__card--tag {
        left: 36px;
        bottom: 8px;
        width: 130px;
        height: 50px;
        padding: 12px 14px;
    }

    .crm-help-illustration__search {
        left: 10px;
        width: calc(100% - 20px);
    }

    .crm-help-illustration__tree {
        left: 20px;
        top: 86px;
    }

    .crm-help-illustration__doc {
        right: 8px;
        top: 76px;
        width: 132px;
        height: 112px;
        padding: 18px 16px;
    }

    .crm-help-illustration__bubble {
        left: 122px;
        bottom: 12px;
        width: 118px;
        height: 52px;
        padding: 13px 14px;
    }

    .crm-grid--industry,
    .crm-grid--detail,
    .crm-grid--pricing,
    .crm-grid--resource,
    .crm-grid--solution-cards,
    .crm-grid--capability,
    .crm-grid--cases,
    .crm-solution-blueprint,
    .crm-education-blueprint,
    .crm-solution-flow,
    .crm-education-flow,
    .crm-journey__list,
    .crm-hero__stats {
        grid-template-columns: 1fr;
    }

    .crm-hero__actions {
        flex-wrap: wrap;
    }

    .crm-product-hero {
        padding-top: 48px;
    }

    .crm-product-hero__inner {
        gap: 30px;
    }

    .crm-product-hero__heading h1,
    .crm-solution-hero__heading h1,
    .crm-news-hero h1,
    .crm-help-hero h1,
    .crm-pricing-hero h1 {
        font-size: 34px;
        white-space: normal;
    }

    .crm-product-hero__flow ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-product-hero__flow li:not(:last-child)::after {
        display: none;
    }

    .crm-product-map {
        grid-template-columns: 1fr;
        padding-top: 8px;
    }

    .crm-product-map a {
        min-height: 0;
        padding: 18px 0 18px 46px;
        border-bottom: 1px solid rgba(28, 79, 255, 0.12);
    }

    .crm-product-map a::before {
        top: 21px;
        left: 10px;
    }

    .crm-product-service__flow li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .crm-product-builder {
        padding: 24px;
    }

    .crm-product-builder__canvas {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .crm-news-detail,
    .crm-help-article {
        padding: 22px;
    }

    .crm-news-detail__pager,
    .crm-help-article__pager {
        grid-template-columns: 1fr;
    }

    .crm-solution-hero__copy,
    .crm-solution-detail-hero__copy {
        padding: 30px 22px;
    }

    .crm-solution-hero__metrics,
    .crm-solution-detail-hero__metrics,
    .crm-journey__list.crm-journey__list--solution {
        grid-template-columns: 1fr;
    }

    .crm-solution-card .crm-tags {
        flex-wrap: wrap;
    }

    .crm-float {
        right: 12px;
        bottom: 16px;
        width: 46px;
        height: 114px;
        font-size: 13px;
    }

    .crm-error {
        padding: 64px 0;
    }

    .crm-error__content,
    .crm-error__card {
        min-height: 0;
        padding: 28px 22px;
    }

    .crm-error__actions {
        flex-direction: column;
    }

    .crm-error__actions .crm-btn {
        width: 100%;
    }

    .crm-error__card-grid {
        margin-bottom: 28px;
    }
}

@media (max-width: 560px) {
    .crm-product-hero__heading h1,
    .crm-solution-hero__heading h1 {
        white-space: normal;
    }
}
