/**
 * itsm-solution.css — itsm-solution 页面专属样式
 * 从 itsm-solution.html 内联 <style> 提取（2026-06-17）
 *
 * 选择器前缀：body.itsm-solution-page（限制作用域，避免污染其他页面）
 * 加载顺序：product-detail-fix.css → itsm-solution.css → mobile.css
 */

body.itsm-solution-page {
    overflow-x: hidden;
}

/* ====== 页眉与首屏背景融合 ====== */
body.itsm-solution-page .header:not(.header-active) {
            background-color: transparent !important;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }
        body.itsm-solution-page .header.header-active {
            background-color: #FFFFFF !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        /* ====== 首屏 Hero ====== */
body.itsm-solution-page .product-hero {
            background-image: url('/frontStatic/cn/image/newIndex/Header.png'),
                              linear-gradient(90deg, #F5F4FF 0%, #E1DBFF 100%);
            background-color: #F5F4FF;
            background-position: center center, center center;
            background-repeat: no-repeat, no-repeat;
            background-size: cover, cover;
            height: 640px;
            padding-top: 160px;
            padding-bottom: 0;
            align-items: flex-start;
        }

        body.itsm-solution-page .product-hero .product-hero-title {
            color: #6246E8;
            font-size: var(--title-hero);
            font-weight: 700;
            line-height: 68px;
            margin: 0 0 16px;
        }

        body.itsm-solution-page .product-hero .product-hero-description {
            color: #1E293B;
            font-size: 20px;
            line-height: 28px;
            max-width: 680px;
            margin: 0 0 44px;
        }

        body.itsm-solution-page .product-hero .product-btn-primary {
            border-radius: 12px;
            height: 62px;
            min-width: 233px;
            font-size: 18px;
            font-weight: 600;
            line-height: 21px;
            box-shadow: none;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            border-left: none;
            border-right: none;
            background: linear-gradient(180deg, #6246E8 0%, #6246E8 100%);
            transition: opacity 0.25s ease, box-shadow 0.25s ease;
            gap: 12px;
        }
        body.itsm-solution-page .product-hero .product-btn-primary svg {
            transition: transform 0.25s ease;
        }
        body.itsm-solution-page .product-hero .product-btn-primary:hover,

        body.itsm-solution-page .product-hero .product-btn-primary:focus {
            opacity: 0.9;
            box-shadow: 0 8px 24px rgba(98, 70, 232, 0.45);
        }
        body.itsm-solution-page .product-hero .product-btn-primary:hover svg,

        body.itsm-solution-page .product-hero .product-btn-primary:focus svg {
            transform: translateX(4px);
        }

        body.itsm-solution-page .product-hero .product-hero-image-wrapper img {
            width: 600px;
            height: 335px;
            border-radius: 8px;
            object-fit: cover;
        }

        /* ====== 通用区块样式 ====== */
body.itsm-solution-page .itsm-section-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        body.itsm-solution-page .itsm-section-title {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: var(--title-section);
            font-weight: 600;
            line-height: 56px;
            color: #1F2A28;
            text-align: center;
            margin: 0 0 60px;
        }

        /* ====== 第2屏：业务挑战 ====== */
body.itsm-solution-page .itsm-challenges {
            background: #FFFFFF;
            padding: 120px 24px;
        }

        body.itsm-solution-page .itsm-challenges-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        body.itsm-solution-page .itsm-challenge-card {
            background: #F2F0FD;
            border-radius: 12px;
            padding: 44px 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        body.itsm-solution-page .itsm-challenge-card-title {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 28px;
            font-weight: 600;
            line-height: 40px;
            color: #6246E8;
            margin: 0;
        }

        body.itsm-solution-page .itsm-challenge-card-desc {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #1E293B;
            margin: 0;
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .itsm-challenges { padding: 80px 20px; }
            body.itsm-solution-page .itsm-section-title { font-size: 36px; line-height: 44px; margin-bottom: 48px; }
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .itsm-challenges { padding: 64px 16px; }
            body.itsm-solution-page .itsm-challenges-grid { grid-template-columns: 1fr; }
            body.itsm-solution-page .itsm-challenge-card-title { font-size: 22px; line-height: 32px; }
        }

        /* ====== 第3屏：方案介绍 ====== */
body.itsm-solution-page .itsm-intro {
            background: #FFFFFF;
            padding: 0 24px 120px;
        }

        body.itsm-solution-page .itsm-intro-row {
            display: flex;
            gap: 0;
            align-items: stretch;
        }

        /* 左侧：Tab 导航栏 */
body.itsm-solution-page .itsm-tab-nav {
            flex: 0 0 174px;
            width: 174px;
            display: flex;
            flex-direction: column;
            border-radius: 12px 0 0 12px;
            overflow: hidden;
        }

        body.itsm-solution-page .itsm-tab-item {
            flex: 1;
            background: #F2F0FD;
            border: none;
            cursor: pointer;
            padding: 16px 24px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2px;
            transition: background 0.2s, color 0.2s;
        }

        body.itsm-solution-page .itsm-tab-item:not(:last-child) {
            border-bottom: 1px solid rgba(98, 70, 232, 0.1);
        }

        body.itsm-solution-page .itsm-tab-item-label {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 26px;
            color: #6246E8;
            white-space: nowrap;
        }

        body.itsm-solution-page .itsm-tab-item.is-active {
            background: #6246E8;
        }

        body.itsm-solution-page .itsm-tab-item.is-active .itsm-tab-item-label {
            color: #FFFFFF;
        }

        /* 中间：Tab 内容面板 */
body.itsm-solution-page .itsm-tab-panels {
            flex: 0 0 320px;
            width: 320px;
            border: 1px solid #D5D8D6;
            border-left: none;
            border-radius: 0 12px 12px 0;
            background: #F9F8FB;
            overflow: hidden;
            position: relative;
        }

        body.itsm-solution-page .itsm-tab-panel {
            display: none;
            padding: 24px 20px 20px;
            height: 100%;
            box-sizing: border-box;
        }

        body.itsm-solution-page .itsm-tab-panel.is-active {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        body.itsm-solution-page .itsm-tab-panel-intro {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            color: #252250;
            margin: 0;
        }

        body.itsm-solution-page .itsm-tab-panel-list {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 14px;
            line-height: 25px;
            color: #252250;
            margin: 0;
            padding-left: 21px;
            list-style: disc outside none;
        }

        body.itsm-solution-page .itsm-tab-panel-list li {
            margin-bottom: 19px;
            display: list-item;
            list-style: disc outside none;
        }

        body.itsm-solution-page .itsm-tab-panel-list li:last-child {
            margin-bottom: 0;
        }

        body.itsm-solution-page .itsm-tab-panel-list li strong {
            font-weight: 700;
        }

        body.itsm-solution-page .itsm-tab-panel-placeholder {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 14px;
            color: #9CA3AF;
            line-height: 24px;
            font-style: italic;
        }

        /* 右侧：产品截图区 */
body.itsm-solution-page .itsm-intro-image-wrap {
            flex: 1;
            min-width: 0;
            height: 534px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            background: #EAE7FF;
            margin-left: 32px;
        }

        body.itsm-solution-page .itsm-intro-image-wrap img {
            position: absolute;
            top: 49px;
            left: 30px;
            width: calc(100% - 60px);
            height: calc(100% - 120px);
            object-fit: cover;
            display: block;
            border-radius: 8px 8px 0 0;
            z-index: 1;
        }

        body.itsm-solution-page .itsm-intro-image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 232px;
            padding: 20px 24px 24px;
            background: linear-gradient(to top,
                rgba(36, 5, 104, 1) 0%,
                rgba(47, 21, 164, 0.95) 10%,
                rgba(57, 20, 168, 0.80) 22%,
                rgba(57, 20, 168, 0.50) 38%,
                rgba(57, 20, 168, 0.20) 55%,
                rgba(57, 20, 168, 0) 72%);
            border-radius: 0 0 12px 12px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            z-index: 2;
        }

        body.itsm-solution-page .itsm-intro-image-caption .caption-name {
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 4px;
        }

        body.itsm-solution-page .itsm-intro-image-caption .caption-desc {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 16px;
            color: rgba(229, 231, 235, 0.9);
            line-height: 24px;
            margin: 0;
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .itsm-intro { padding: 0 20px 80px; }
            body.itsm-solution-page .itsm-intro-row { flex-direction: column; gap: 24px; }
            body.itsm-solution-page .itsm-tab-nav { flex-direction: row; flex: none; width: 100%; border-radius: 12px 12px 0 0; }
            body.itsm-solution-page .itsm-tab-item:not(:last-child) { border-bottom: none; border-right: 1px solid rgba(98, 70, 232, 0.1); }
            body.itsm-solution-page .itsm-tab-panels {
                flex: none;
                width: 100%;
                border-left: 1px solid #D5D8D6;
                border-radius: 0 0 12px 12px;
                min-height: 260px;
            }
            body.itsm-solution-page .itsm-intro-image-wrap {
                flex: none;
                width: 100%;
                height: auto;
                aspect-ratio: 704 / 534;
                margin-left: 0;
            }
            body.itsm-solution-page .itsm-intro-image-wrap img {
                top: 9%;
                left: 5%;
                width: 90%;
                height: 65%;
            }
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .itsm-intro { padding: 0 16px 64px; }
            body.itsm-solution-page .itsm-tab-nav { flex-direction: column; border-radius: 12px 12px 0 0; }
            body.itsm-solution-page .itsm-tab-item { border-right: none; border-bottom: 1px solid rgba(98, 70, 232, 0.1); }
            body.itsm-solution-page .itsm-tab-item-label { font-size: 15px; }
            /* H5 方案介绍图片 caption 修复 */
body.itsm-solution-page .itsm-intro-image-caption {
                height: 30%;
                padding: 12px 14px 14px;
            }
            body.itsm-solution-page .itsm-intro-image-caption .caption-name {
                font-size: 13px;
                font-weight: 700;
                line-height: 1.3;
                margin: 0 0 3px;
            }
            body.itsm-solution-page .itsm-intro-image-caption .caption-desc {
                font-size: 12px;
                line-height: 1.4;
                margin: 0;
            }
        }

        /* ====== 第4屏：方案价值 ====== */
body.itsm-solution-page .itsm-value {
            background: linear-gradient(135deg, #EBF0FF 0%, #FFFFFF 47%, #EBF0FF 100%);
            padding: 80px 24px;
        }

        body.itsm-solution-page .itsm-value .itsm-section-title {
            margin-bottom: 60px;
        }

        body.itsm-solution-page .itsm-value-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        body.itsm-solution-page .itsm-value-item {
            background: #FFFFFF;
            border-left: 12px solid #6246E8;
            border-radius: 12px;
            box-shadow: 0 8px 20px 0 rgba(59, 39, 81, 0.1);
            padding: 16px 20px 16px 32px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        body.itsm-solution-page .itsm-value-item-title {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 30px;
            font-weight: 600;
            line-height: 48px;
            color: #1F2A28;
            margin: 0;
        }

        body.itsm-solution-page .itsm-value-item-desc {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            color: #4C415B;
            margin: 0;
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .itsm-value { padding: 64px 20px 100px; }
            body.itsm-solution-page .itsm-value-item-title { font-size: 24px; line-height: 36px; }
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .itsm-value { padding: 48px 16px 80px; }
            body.itsm-solution-page .itsm-value-item { padding: 16px 16px 16px 20px; }
            body.itsm-solution-page .itsm-value-item-title { font-size: 20px; line-height: 30px; }
        }

        /* ====== 第5屏：建设成果与价值 ====== */
body.itsm-solution-page .itsm-roi {
            background: #FFFFFF;
            padding: 120px 24px;
        }

        body.itsm-solution-page .itsm-roi-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        body.itsm-solution-page .itsm-roi-card {
            border: 1px solid #6246E8;
            border-top: none;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        body.itsm-solution-page .itsm-roi-card-header {
            background-image: url('/frontStatic/cn/page/image/solution/ITSM-Solution/itsm-values.png');
            background-size: cover;
            background-position: center;
            padding: 28px 24px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 12px 12px 0 0;
        }

        body.itsm-solution-page .itsm-roi-card-header-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        body.itsm-solution-page .itsm-roi-card-header-title {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 24px;
            font-weight: 600;
            line-height: 1;
            color: #FFFFFF;
            margin: 0;
        }

        body.itsm-solution-page .itsm-roi-card-body {
            background: #FFFFFF;
            padding: 40px 24px 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        body.itsm-solution-page .itsm-roi-card-number-row {
            display: flex;
            align-items: baseline;
            gap: 2px;
        }

        body.itsm-solution-page .itsm-roi-card-number {
            font-family: "Inter", sans-serif;
            font-size: 64px;
            font-weight: 800;
            color: #382355;
            line-height: 1;
        }

        body.itsm-solution-page .itsm-roi-card-unit {
            font-family: "Inter", sans-serif;
            font-size: 64px;
            font-weight: 600;
            color: #6246E8;
            line-height: 1;
        }

        body.itsm-solution-page .itsm-roi-card-badge {
            display: inline-flex;
            align-items: center;
            background: #E5E3FF;
            border-radius: 19px;
            padding: 4px 8px;
            align-self: flex-start;
            margin-top: 8px;
        }

        body.itsm-solution-page .itsm-roi-card-badge-text {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #6246E8;
        }

        body.itsm-solution-page .itsm-roi-card-desc {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #5D5568;
            margin: 0;
            margin-top: 25px;
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .itsm-roi { padding: 80px 20px; }
            body.itsm-solution-page .itsm-roi-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            body.itsm-solution-page .itsm-roi-card-number { font-size: 48px; }
            body.itsm-solution-page .itsm-roi-card-unit { font-size: 48px; }
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .itsm-roi { padding: 64px 16px; }
            body.itsm-solution-page .itsm-roi-cards { grid-template-columns: 1fr; margin-top: 40px; }
            /* H5 卡片头部修复 */
body.itsm-solution-page .itsm-roi-card-header {
                padding: 20px 16px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;
            }
            body.itsm-solution-page .itsm-roi-card-header-icon {
                width: 28px;
                height: 28px;
                flex-shrink: 0;
            }
            body.itsm-solution-page .itsm-roi-card-header-title {
                font-size: 18px;
                line-height: 1.3;
                color: #FFFFFF;
                margin: 0;
            }
            /* H5 badge 修复 */
body.itsm-solution-page .itsm-roi-card-badge {
                width: fit-content;
                max-width: fit-content;
                align-self: flex-start;
            }
            body.itsm-solution-page .itsm-roi-card-body {
                padding: 24px 16px;
            }
            /* H5 数值行修复 */
body.itsm-solution-page .itsm-roi-card-number-row {
                display: block;
                line-height: 1;
                letter-spacing: -0.02em;
            }
            body.itsm-solution-page .itsm-roi-card-number {
                display: inline;
                font-size: 40px;
                line-height: 1;
                letter-spacing: -0.02em;
            }
            body.itsm-solution-page .itsm-roi-card-unit {
                display: inline;
                font-size: 36px;
                line-height: 1;
                margin-left: -2px;
            }
        }

        /* ====== 第6屏：CTA ====== */
body.itsm-solution-page .product-cta {
            background: #FFFFFF;
            padding: 0 24px 120px;
        }

        body.itsm-solution-page .product-cta .product-cta-content {
            width: 1280px;
            max-width: 1280px;
            height: 310px;
            margin: 0 auto;
            background: linear-gradient(89.89deg, #6246E8 0%, #411CF5 100%);
            border-radius: 16px;
            box-sizing: border-box;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }

        body.itsm-solution-page .product-cta .product-cta-content::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                repeating-linear-gradient(
                    rgba(255,255,255,0.08) 0 1px,
                    transparent 1px 36px,
                    rgba(255,255,255,0.08) 36px 37px,
                    transparent 37px 72px
                ),
                repeating-linear-gradient(
                    90deg,
                    rgba(255,255,255,0.08) 0 1px,
                    transparent 1px 36px,
                    rgba(255,255,255,0.08) 36px 37px,
                    transparent 37px 72px
                );
            pointer-events: none;
            border-radius: 16px;
        }

@keyframes itsm-cta-gradient-shift {
            from { background-position: 0% 50%; }
            to   { background-position: 100% 50%; }
        }


        body.itsm-solution-page .product-cta .product-cta-title {
            margin: 0;
                        /* 渐变光流文字 */
            background: linear-gradient(to right, #fff, #ede9fe, #c4b5fd, #a78bfa, #c4b5fd, #ede9fe, #fff);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            animation: itsm-cta-gradient-shift 5s linear infinite alternate;
            text-align: center;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: var(--title-section);
            font-weight: 600;
            line-height: 48px;
            white-space: nowrap;
        }

        body.itsm-solution-page .product-cta .product-cta-buttons {
            width: 200px;
            height: 62px;
            margin: 40px auto 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.itsm-solution-page .product-cta .product-cta-buttons .product-btn-secondary {
            width: 200px;
            height: 62px;
            min-height: 62px;
            padding: 0 20px;
            box-sizing: border-box;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            font-size: 18px;
            font-weight: 600;
            line-height: 21px;
            box-shadow: none;
            border-top: 1px solid rgba(98, 70, 232, 0.2);
            border-bottom: 1px solid rgba(98, 70, 232, 0.2);
            border-left: none;
            border-right: none;
            background: #FFFFFF;
            color: #6246E8;
            transition: opacity 0.2s ease, box-shadow 0.2s ease;
        }
        body.itsm-solution-page .product-cta .product-cta-buttons .product-btn-secondary:hover,

        body.itsm-solution-page .product-cta .product-cta-buttons .product-btn-secondary:focus {
            opacity: 0.9;
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
        }
        body.itsm-solution-page .product-cta .product-cta-buttons .product-btn-secondary svg {
            transition: transform 0.2s ease;
        }
        body.itsm-solution-page .product-cta .product-cta-buttons .product-btn-secondary:hover svg,

        body.itsm-solution-page .product-cta .product-cta-buttons .product-btn-secondary:focus svg {
            transform: translateX(4px);
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .product-cta { padding: 0 20px 88px; }
            body.itsm-solution-page .product-cta .product-cta-content {
                width: 100%;
                max-width: 100%;
                height: auto;
                min-height: 310px;
                padding: 64px 32px;
            }
            body.itsm-solution-page .product-cta .product-cta-title { font-size: 40px; line-height: 44px; white-space: normal; }
        }

        @media (max-width: 767px) {
            body.itsm-solution-page .product-cta { padding: 0 16px 64px; }
            body.itsm-solution-page .product-cta .product-cta-content {
                height: auto;
                min-height: 0;
                padding: 44px 20px;
            }
            body.itsm-solution-page .product-cta .product-cta-title { font-size: 28px; line-height: 34px; }
            body.itsm-solution-page .product-cta .product-cta-buttons { margin-top: 28px; }
            body.itsm-solution-page .product-cta .product-cta-buttons .product-btn-secondary { height: 54px; min-height: 54px; font-size: 16px; }
        }

/* ====== 迁移后响应式间距基线 ======
   解决方案页统一：H5 模块外边框间距 64px，模块标题到内容 30px。 */
@media (min-width: 1280px) and (max-width: 1439px) {
    body.itsm-solution-page .itsm-challenges {
        padding: 80px var(--page-gutter);
    }

    body.itsm-solution-page .itsm-section-title {
        margin-bottom: 48px;
    }

    body.itsm-solution-page .product-cta {
        padding: 0 var(--page-gutter) 80px;
    }

    body.itsm-solution-page .product-cta .product-cta-content {
        width: 100%;
        max-width: var(--content-max-w);
    }
}


@media (max-width: 767px) {
    body.itsm-solution-page .product-hero {
        height: auto;
        min-height: 0;
        padding-top: 80px;
        padding-bottom: 32px;
    }

    body.itsm-solution-page .product-hero-grid {
        gap: 24px;
    }

    body.itsm-solution-page .itsm-section-title,
    body.itsm-solution-page .itsm-value .itsm-section-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    body.itsm-solution-page .itsm-challenges {
        margin-top: 0;
        padding: 64px var(--page-gutter) 0;
    }

    body.itsm-solution-page .itsm-intro {
        margin-top: 0;
        padding: 64px var(--page-gutter) 0;
    }

    body.itsm-solution-page .itsm-value {
        margin-top: 64px;
        padding: 32px var(--page-gutter);
    }

    body.itsm-solution-page .itsm-roi {
        margin-top: 0;
        padding: 64px var(--page-gutter) 0;
    }

    body.itsm-solution-page .itsm-roi-cards {
        margin-top: 0;
    }

    body.itsm-solution-page .product-cta {
        margin-top: 64px;
        padding: 0 var(--page-gutter) 64px;
    }

    body.itsm-solution-page .product-cta .product-cta-content {
        width: 100%;
        max-width: var(--content-max-w);
    }
}
    
