/* 解决方案页 — 对齐销售易瀑布版式 */
.xsy-sol {
  --xsy-blue: #2c7af2;
  --xsy-ink: #222222;
  --xsy-muted: #6c6c6c;
  --xsy-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--xsy-font);
}

.xsy-sol .container {
  width: min(1200px, calc(100% - 2.5rem));
}


.xsy-hero {
  position: relative;
  overflow: hidden;
  height: 528px;
  min-height: 528px;
  background-color: #fff;
  box-sizing: border-box;
}

.xsy-hero__soft {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #fff;
  background-image: var(--hero-soft, none);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.xsy-hero__stage {
  position: relative;
  z-index: 1;
  height: 528px;
  width: 100%;
  overflow: hidden;
}

.xsy-hero__grid {
  position: relative;
  z-index: 2;
  width: 1200px;
  max-width: none;
  height: 528px;
  margin: 0 auto;
}

/* 插画：统一画布 1681×528（脚本 normalize_hero_banners.py 预处理）
 * 相对 1200 栅格 xo:171，与销售易电力设备插画层一致；后台只换图后重跑脚本
 */
.xsy-hero__art {
  position: absolute;
  left: calc(50% - 600px + 171px);
  top: 0;
  width: 1681px;
  height: 528px;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 1681px 528px;
}

.xsy-hero h1 {
  position: absolute;
  left: 0;
  top: 136px;
  z-index: 3;
  margin: 0;
  max-width: 640px;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: #222222;
  letter-spacing: 0;
  white-space: nowrap;
}

.xsy-hero p {
  position: absolute;
  left: 5px;
  top: 236px;
  z-index: 3;
  margin: 0;
  max-width: 520px;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 34px;
  color: #6c6c6c;
}

.xsy-hero__lead {
  position: absolute;
  left: 0;
  top: 346px;
  z-index: 3;
  display: flex;
  align-items: stretch;
  width: 479px;
  height: 55px;
  margin: 0;
  padding: 0;
}

.xsy-hero__input {
  width: 299px;
  height: 55px;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0 20px 0 20px;
  font-size: 15px;
  line-height: 52px;
  font-family: Roboto, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #222;
  background: #fff;
  border-radius: 5px 0 0 5px;
}

.xsy-hero__input::placeholder {
  color: #b0b0b0;
}

.xsy-hero__btn {
  width: 180px;
  height: 55px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 55px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-family: Roboto, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  background-image: linear-gradient(to right, #1b65ff, #235fff);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 高科技制造：安防 / LED / IT硬件 / 半导体 三级 Tab（对齐销售易） */
.xsy-l3 {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.xsy-l3__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.xsy-l3__item {
  flex: 1 1 0;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 96px;
  padding: 18px 12px 16px;
  text-decoration: none;
  color: #666;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.xsy-l3__item:hover {
  color: var(--xsy-blue);
}

.xsy-l3__item.is-active {
  color: var(--xsy-blue);
  border-bottom-color: var(--xsy-blue);
}

.xsy-l3__icon {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}

.xsy-l3__icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xsy-l3__icon-on {
  opacity: 0;
}

.xsy-l3__item.is-active .xsy-l3__icon-off {
  opacity: 0;
}

.xsy-l3__item.is-active .xsy-l3__icon-on {
  opacity: 1;
}

.xsy-l3__name {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
}

.xsy-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.xsy-section--cust {
  padding-bottom: 2.5rem;
}

.xsy-h2 {
  text-align: center;
  font-family: var(--xsy-font);
  font-size: 34px;
  font-weight: 700;
  color: var(--xsy-ink);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.85rem;
  line-height: 1.35;
}

.xsy-h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--xsy-blue);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* 客户案例 — 全宽轮播（对齐销售易 solution_customers / mySwiper1） */
.xsy-cust {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.xsy-cust--full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-bottom: 60px;
}

.xsy-cust.is-single,
.xsy-pain.is-single {
  padding-bottom: 0;
}

/* 注意：勿用 background 简写，会盖掉 Swiper 的箭头 SVG */
.xsy-cust__arrow {
  position: absolute;
  top: 50%;
  z-index: 12;
  width: 68px;
  height: 68px;
  margin-top: -64px; /* 相对内容区垂直居中（扣除底部分页） */
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.28);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 24px;
  box-shadow: 0 2px 6px rgba(0, 89, 224, 0.55);
  cursor: pointer;
  outline: none;
}

.xsy-cust__arrow:hover {
  background-color: rgba(178, 209, 255, 0.95);
}

.xsy-cust__arrow:after {
  display: none;
}

.xsy-cust__arrow--prev,
.xsy-cust .swiper-button-prev {
  left: 24px;
  right: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.xsy-cust__arrow--next,
.xsy-cust .swiper-button-next {
  right: 24px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.xsy-cust__arrow--prev:hover,
.xsy-cust .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%230564f5'/%3E%3C/svg%3E");
}

.xsy-cust__arrow--next:hover,
.xsy-cust .swiper-button-next:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%230564f5'/%3E%3C/svg%3E");
}

.xsy-cust__slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  height: auto;
  background: #fff;
  box-sizing: border-box;
}

.xsy-cust__media {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.xsy-cust__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 101, 216, 0.22);
  pointer-events: none;
}

.xsy-cust__logos {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.xsy-cust__logos img {
  max-width: min(72%, 500px);
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}

.xsy-cust__body {
  background: var(--xsy-blue);
  color: #fff;
  padding: 88px 80px 66px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  min-height: 360px;
  box-sizing: border-box;
  background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 50%);
}

.xsy-cust__body::before {
  content: "”";
  position: absolute;
  top: 1.25rem;
  right: 2.5rem;
  font-size: 6rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.xsy-cust__body h3 {
  font-family: var(--xsy-font);
  font-size: 26px;
  font-weight: 700;
  line-height: 37px;
  margin-bottom: 8px;
  position: relative;
  max-width: 500px;
}

.xsy-cust__body p {
  font-family: var(--xsy-font);
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.95;
  position: relative;
  min-height: 88px;
  max-width: 460px;
}

.xsy-cust__body .btn-ghost {
  align-self: flex-start;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  width: 112px;
  height: 36px;
  padding: 0;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  position: relative;
  background: transparent;
}

.xsy-cust__body .btn-ghost:hover {
  background: #fff;
  color: var(--xsy-blue);
}

.xsy-cust__pager {
  bottom: 18px !important;
}

.xsy-cust__pager .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c9d7ef;
  opacity: 1;
  margin: 0 4px !important;
  border-radius: 50%;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.xsy-cust__pager .swiper-pagination-bullet-active {
  background: var(--xsy-blue);
  width: 22px;
  border-radius: 999px;
}

/* 行业痛点 — 对齐销售易 mySwiper2（横向从右滑入 speed:1000 / autoplay:5000） */
.xsy-pain-sec {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.xsy-pain {
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}

.xsy-pain__slide {
  box-sizing: border-box;
  height: auto;
}

.xsy-pain__wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 0 0 71px;
  box-sizing: border-box;
}

.xsy-pain__inner {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 71px;
  background-color: #f4fbfe;
  border-radius: 25px 82px 25px 25px;
  box-sizing: border-box;
}

.xsy-pain__box {
  box-sizing: border-box;
  position: relative;
}

.xsy-pain__box--1 {
  width: 300px;
  height: 363px;
  padding: 73px 30px;
  border-radius: 25px;
  margin: -48px 0 0 -71px;
  background-color: #546e94;
}

.xsy-pain__box--2 {
  width: 300px;
  height: 363px;
  padding: 73px 30px 0;
  margin: -48px 10px 0 10px;
  border-radius: 25px 82px 25px 25px;
  background-color: #116cf8;
}

.xsy-pain__box--3 {
  flex: 1;
  min-width: 280px;
  padding: 45px 20px 0 50px;
  background-color: #f4fbfe;
  position: relative;
}

.xsy-pain__icon {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px auto;
}

.xsy-pain__icon--1,
.xsy-pain__icon--2 {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-color: #fff;
}

.xsy-pain__icon--3 {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background-color: #0564f5;
  box-shadow: 0 20px 33px rgba(22, 89, 167, 0.22);
  background-image: var(--compose-icon, none);
  background-size: 28px auto;
}

.xsy-pain__num {
  display: block;
  width: 160px;
  height: 160px;
  position: absolute;
  top: 36px;
  right: 25px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  pointer-events: none;
}

.xsy-pain__title {
  margin: 32px 0 24px;
  line-height: 33px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.xsy-pain__title--dark {
  color: #2c2e30;
}

.xsy-pain__desc {
  margin: 0;
  line-height: 22px;
  font-size: 16px;
  color: #fff;
  text-align: justify;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.xsy-pain__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xsy-pain__list li {
  min-height: 32px;
  line-height: 22px;
  color: #7c8087;
  font-size: 16px;
  text-align: justify;
  max-width: 450px;
  margin-bottom: 6px;
  padding-left: 41px;
  background: var(--check-icon, none) 0 5px / 22px auto no-repeat;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.xsy-pain__list li:last-of-type {
  margin-bottom: 0;
}

.xsy-pain__pager {
  bottom: 8px !important;
}

.xsy-pain__pager .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c9d7ef;
  opacity: 1;
  margin: 0 4px !important;
  border-radius: 50%;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.xsy-pain__pager .swiper-pagination-bullet-active {
  background: #0564f5;
  width: 22px;
  border-radius: 999px;
}

/* 解决方案 — 对齐销售易 solution_wrap / solution14.js */
.xsy-mod-sec {
  position: relative;
  background: #e7f6fd;
  padding: 71px 0 90px;
  overflow: hidden;
}

/* animal_container:before — 浮动光晕 */
.xsy-mod-sec::before {
  content: "";
  position: absolute;
  bottom: -75px;
  left: 59px;
  width: 508px;
  height: 300px;
  background: url("/storage/solutions/equip/circle2.png") no-repeat center / 100% auto;
  animation: xsy-float 6s 3s linear infinite forwards;
  pointer-events: none;
  z-index: 0;
}

.xsy-h2--mod {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 48px;
  color: #2c2e30;
  position: relative;
  z-index: 1;
}

.xsy-h2--mod::after {
  display: none;
}

.xsy-mod-sec__lead {
  text-align: center;
  line-height: 22px;
  color: #666;
  font-size: 16px;
  margin: 8px 0 50px;
  position: relative;
  z-index: 1;
}

.xsy-mod {
  position: relative;
  z-index: 1;
  display: flex;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 480px;
  background-color: #fff;
  background-image: url("/storage/solutions/equip/bg_sdnl.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(45, 75, 120, 0.14);
  box-sizing: border-box;
  list-style: none;
}

/* solution_wrap:before 点阵 */
.xsy-mod::before {
  content: "";
  display: block;
  width: 159px;
  height: 159px;
  background-image: radial-gradient(rgba(27, 139, 200, 0.13) 1px 1px, transparent 2px 2px);
  background-size: 10px 10px;
  background-repeat: repeat;
  position: absolute;
  left: -95px;
  top: 89px;
  z-index: -1;
}

/* solution_wrap:after 浅蓝块 */
.xsy-mod::after {
  content: "";
  display: block;
  width: 159px;
  height: 159px;
  background-color: rgba(212, 234, 245, 0.32);
  position: absolute;
  left: -64px;
  top: 44px;
  z-index: -2;
}

.xsy-mod__nav {
  flex: 0 0 210px;
  min-width: 210px;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: transparent;
}

/* ways_four：最小行高 120px；勿用 line-height=height，长标题换行会叠字 */
.xsy-mod__nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  padding: 12px;
  line-height: 1.45;
  text-align: center;
  color: #666;
  font-size: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.xsy-mod__nav button.is-active {
  background-color: #0564f5;
  color: #fff;
  font-size: 20px;
}

.xsy-mod__main {
  position: relative;
  flex: 1;
  min-width: 0;
}

/* ul.solutions:after 橙色点阵 */
.xsy-mod__main::after {
  content: "";
  display: block;
  width: 156px;
  height: 120px;
  background-image: radial-gradient(rgba(252, 92, 66, 0.3) 1px 1px, transparent 2px 2px);
  background-size: 10px 10px;
  background-repeat: repeat;
  position: absolute;
  right: -74px;
  bottom: 120px;
  z-index: -1;
  transform: rotate(28deg);
  pointer-events: none;
}

.xsy-mod__panel {
  display: none;
  height: 100%;
  min-height: 480px;
  border-left: 1px solid #e5f4ff;
  box-sizing: border-box;
}

.xsy-mod__panel.is-active {
  display: flex;
}

.xsy-mod__content {
  flex: 1;
  padding: 91px 0 48px 61px;
  box-sizing: border-box;
  min-width: 0;
}

/* short_infos：容器不占高，由 short_info_box.min-height 锁住 */
.xsy-mod__infos {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* short_info_box — 标题+说明整块，min-height 防标签跳动 */
.xsy-mod__info {
  display: none;
  line-height: 22px;
  color: #333;
  font-size: 14px;
  text-align: justify;
  min-height: 130px;
}

.xsy-mod__info.is-on {
  display: block;
}

.xsy-mod__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  line-height: 30px;
  color: #333;
  font-size: 22px;
  font-weight: 600;
}

.xsy-mod__title img {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: 0;
  flex-shrink: 0;
  object-fit: contain;
}

.xsy-mod__title span {
  flex: 1;
  min-width: 0;
}

.xsy-mod__desc {
  margin: 0;
  line-height: 22px;
  color: #333;
  font-size: 14px;
  text-align: justify;
}

.xsy-mod__subs {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 132px;
  align-content: flex-start;
}

.xsy-mod__subs button {
  color: #666;
  font-size: 16px;
  text-align: center;
  width: 160px;
  line-height: 50px;
  height: 50px;
  border-radius: 4px;
  margin: 0 16px 16px 0;
  background-color: #f4fbfe;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.xsy-mod__subs button.is-active {
  color: #0564f5;
  background-color: #fff;
  box-shadow: 0 4px 40px -4px rgba(69, 82, 102, 0.2);
}

.xsy-mod__subs--tags {
  min-height: auto;
  gap: 0;
}

.xsy-mod__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0 18px;
  height: 44px;
  line-height: 44px;
  margin: 0 12px 12px 0;
  border-radius: 4px;
  font-size: 15px;
  color: #666;
  background-color: #f4fbfe;
  cursor: default;
  user-select: none;
  box-sizing: border-box;
}

.xsy-mod__cta {
  display: block;
  margin-top: 42px;
  color: #0564f5;
  font-size: 16px;
  text-decoration: none;
  width: fit-content;
}

.xsy-mod__cta:hover {
  opacity: 0.85;
}

/* img_box：固定比例叠图，切换不改高度 */
.xsy-mod__visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 24px 40px 12px;
  box-sizing: border-box;
  min-width: 0;
}

.xsy-mod__visual-frame {
  position: relative;
  width: 100%;
  /* 对齐多数 leq 图 2278×1470 */
  padding-top: 64.53%;
}

.xsy-mod__visual img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  display: block;
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
}

.xsy-mod__visual img.is-on {
  opacity: 1;
}

@keyframes xsy-float {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-40px, -40px);
  }
  50% {
    transform: translate(60px, -60px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* 为什么选择 — 对齐销售易 crm_content_boxes */
.xsy-why-sec {
  background: #f5f8fc;
  padding: 71px 0 80px;
}

/* 对齐销售易：桌面一排 2 个，共 2×2 */
.xsy-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.xsy-why__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(204, 211, 214, 0.35);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.xsy-why__head {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 18px 30px 19px;
  /* 对齐销售易 crm_content_boxes .heading：蓝底纹理 solution_why_bc.png */
  background-color: #0564f5;
  background-image: var(--why-head-bg, url('/storage/solutions/equip/solution_why_bc.png'));
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  border-radius: 16px 16px 0 0;
  box-sizing: border-box;
  width: 100%;
}

.xsy-why__icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  margin-right: 20px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xsy-why__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.xsy-why__head h4 {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-left: 0;
  color: #fff;
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}

.xsy-why__body {
  flex: 1;
  min-height: 111px;
  margin: 0;
  padding: 30px 30px 35px 61px;
  border-radius: 0 0 16px 16px;
  background-color: #fff;
  background-image: var(--why-check, none);
  background-repeat: no-repeat;
  background-position: 30px 35px;
  background-size: 21px;
  box-sizing: border-box;
  text-align: justify;
}

.xsy-why__body p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}

.xsy-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(120deg, #1a4fb8, #2c7af2);
  color: #fff;
}

.xsy-cta h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.xsy-cta p {
  opacity: 0.9;
}

.xsy-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.xsy-cta .btn-primary {
  background: #fff;
  color: var(--xsy-blue);
}

.xsy-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

@media (max-width: 1200px) {
  .xsy-hero,
  .xsy-hero__stage,
  .xsy-hero__grid {
    height: auto;
    min-height: 0;
  }

  .xsy-hero__stage {
    overflow: visible;
  }

  .xsy-hero__grid {
    width: min(1200px, calc(100% - 2rem));
    height: auto;
    padding: 4.5rem 0 3rem;
    box-sizing: border-box;
  }

  .xsy-hero__art {
    position: absolute;
    left: auto;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    width: min(58vw, 780px);
    height: min(42vw, 420px);
    background-size: contain;
    background-position: right center;
    opacity: 0.95;
  }

  .xsy-hero h1,
  .xsy-hero p,
  .xsy-hero__lead {
    position: relative;
    left: auto;
    top: auto;
  }

  .xsy-hero h1 {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 1rem;
    white-space: normal;
    max-width: 100%;
  }

  .xsy-hero p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 48%;
  }

  .xsy-hero__lead {
    width: 479px;
    max-width: 90%;
  }

  .xsy-cust__body {
    padding: 56px 48px 48px;
  }
}

@media (max-width: 1100px) {
  .xsy-why {
    gap: 24px 20px;
  }

  .xsy-why__icon {
    flex-basis: 55px;
    width: 55px;
    height: 55px;
    min-width: 55px;
    margin-right: 12px;
  }

  .xsy-why__icon img {
    width: 28px;
    height: 28px;
  }

  .xsy-why__head h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .xsy-why__head {
    padding: 16px 20px;
  }

  .xsy-why__body {
    padding: 24px 24px 28px 54px;
    background-position: 24px 28px;
  }
}

@media (max-width: 980px) {
  .xsy-cust__slide {
    grid-template-columns: 1fr;
  }

  .xsy-mod {
    flex-direction: column;
    width: min(1200px, calc(100% - 1.5rem));
    margin: 24px auto 0;
  }

  .xsy-mod::before,
  .xsy-mod::after,
  .xsy-mod__main::after,
  .xsy-mod-sec::before {
    display: none;
  }

  .xsy-mod__nav {
    flex: none;
    width: 100%;
    min-width: 0;
    flex-direction: row;
    overflow-x: auto;
    border-radius: 14px 14px 0 0;
  }

  .xsy-mod__nav button {
    flex: 0 0 auto;
    white-space: nowrap;
    line-height: 1.3;
    height: auto;
    padding: 0.85rem 1rem;
    border-bottom: 3px solid transparent;
    border-right: 1px solid #eef5fb;
    font-size: 15px;
  }

  .xsy-mod__nav button.is-active {
    border-bottom-color: #0564f5;
    font-size: 15px;
  }

  .xsy-mod__panel {
    border-left: 0;
    min-height: 0;
  }

  .xsy-mod__panel.is-active {
    flex-direction: column;
  }

  .xsy-mod__content {
    padding: 1.75rem 1.25rem 1rem;
    max-width: none;
  }

  .xsy-mod__visual {
    justify-content: center;
    padding: 0 1.25rem 1.75rem;
  }

  .xsy-mod__visual-frame {
    padding-top: 64.53%;
  }

  .xsy-mod__subs button {
    width: auto;
    min-width: 120px;
    padding: 0 1rem;
  }

  .xsy-pain__wrap {
    padding: 2rem 1rem 0;
    width: min(1200px, calc(100% - 1.5rem));
  }

  .xsy-pain__inner {
    flex-direction: column;
    border-radius: 25px;
    padding: 1.5rem 1rem 2rem;
  }

  .xsy-pain__box--1,
  .xsy-pain__box--2 {
    width: 100%;
    height: auto;
    min-height: 220px;
    margin: 0 0 1rem;
    border-radius: 25px;
    padding: 2rem 1.5rem;
  }

  .xsy-pain__box--2 {
    border-radius: 25px 82px 25px 25px;
  }

  .xsy-pain__box--3 {
    padding: 1.5rem 1rem 0;
  }

  .xsy-pain__num {
    width: 100px;
    height: 100px;
    top: 16px;
    right: 12px;
  }

  .xsy-hero__grid {
    padding: 1.5rem 0 2rem;
  }

  .xsy-hero__art {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 220px;
    margin: 0 auto 1rem;
    background-position: center center;
    background-size: contain;
  }

  .xsy-hero h1 {
    font-size: 28px;
    max-width: none;
    white-space: normal;
  }

  .xsy-hero p {
    font-size: 16px;
    max-width: none;
  }

  .xsy-hero__lead {
    width: 100%;
    max-width: 479px;
  }

  .xsy-h2 {
    font-size: 24px;
  }

  .xsy-cust__media,
  .xsy-cust__slide,
  .xsy-cust__body {
    min-height: 280px;
  }

  .xsy-cust__body {
    padding: 2rem 1.5rem;
  }

  .xsy-cust__arrow {
    width: 44px;
    height: 44px;
    margin-top: -52px;
    background-size: 10px 18px;
  }

  .xsy-cust__arrow--prev {
    left: 10px;
  }

  .xsy-cust__arrow--next {
    right: 10px;
  }
}

@media (max-width: 700px) {
  .xsy-why {
    grid-template-columns: 1fr;
  }

  .xsy-hero__art {
    height: 180px;
  }

  .xsy-hero__lead {
    flex-direction: column;
    height: auto;
    max-width: none;
  }

  .xsy-hero__input,
  .xsy-hero__btn {
    width: 100%;
    border-radius: 5px;
  }

  .xsy-l3__inner {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .xsy-l3__item {
    flex: 1 1 45%;
    max-width: none;
    min-height: 84px;
    padding: 14px 8px 12px;
  }

  .xsy-l3__name {
    font-size: 14px;
  }

  .xsy-cust__body h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  .xsy-cust__body p {
    min-height: 0;
  }

  .xsy-mod__subs {
    flex-direction: column;
  }

  .xsy-mod__subs button {
    width: 100%;
    margin-right: 0;
  }
}
