:root {
  color-scheme: light;
  --primary-red: #d7000f;
  --primary-red-hover: #b9000d;
  --primary-red-soft: #faeeee;
  --surface-white: #ffffff;
  --surface-soft: #fbfbfb;
  --surface-filter: #fdf2f2;
  --text-main: #101010;
  --text-heading: #0e232d;
  --text-body: #666666;
  --text-muted: #999999;
  --line-soft: #f8f8f8;
  --card-shadow: 0 18px 36px rgba(0, 0, 0, 0.03);
  --font-base: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  --font-english: "Outfit", "Microsoft YaHei", Arial, sans-serif;
  --container-wide: min(1640px, calc(100vw - 280px));
}


.service-support-page {
  min-width: 320px;
  overflow-x: hidden;
  color: #121010;
  background: rgba(255, 255, 255, 0.96);
}

.service-support-page *,
.service-support-page *::before,
.service-support-page *::after {
  box-sizing: border-box;
}

.service-support-page a {
  color: inherit;
  text-decoration: none;
}

.service-support-page img {
  display: block;
  width: 100%;
  height: auto;
}

.ssp-shell {
  width: min(1640px, calc(100% - 120px));
  margin: 0 auto;
}

.ssp-section {
  position: relative;
}

/* new */
.outlet-container {
  width: var(--container-wide);
  margin: 0 auto;
}

.support-hero {
  height: 546px;
  background: var(--surface-soft);
}

.support-hero__inner {
  position: relative;
  height: 100%;
}

.support-hero__heading {
  position: absolute;
  top: 104px;
  left: 19px;
}

.section-kicker {
  margin: 0 0 25px;
  color: var(--primary-red);
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.support-hero h1 {
  margin: 0;
  color: var(--text-main);
  font-size: 68px;
  line-height: 1.32;
  font-weight: 400;
  letter-spacing: 0;
}

.support-hero__copy {
  position: absolute;
  top: 177px;
  right: -19px;
  width: 668px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 33px;
  font-weight: 400;
  letter-spacing: 0;
}

.support-hero__copy p {
  margin: 0;
}

.support-tabs {
  position: absolute;
  left: 19px;
  bottom: 85px;
  display: inline-flex;
  align-items: center;
  height: 51px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--primary-red-soft);
}

.support-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 79px;
  height: 33px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-main);
  font-size: 14px;
  line-height: 33px;
  font-weight: 700;
  letter-spacing: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.support-tab + .support-tab {
  margin-left: 6px;
}

.support-tab.is-active,
.support-tab:hover,
.support-tab:focus {
  background: var(--primary-red);
  color: #ffffff;
}

/*  */



.ssp-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 14px;
}

.ssp-title--center {
  text-align: center;
}

.ssp-title--light {
  color: #ffffff;
}

.ssp-kicker,
.ssp-kicker--plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #fbfbfb;
  background: linear-gradient(90deg, #9e9e9e 0%, #d7000f 100%);
}

.ssp-kicker--plain {
  min-height: auto;
  padding: 0;
  font-size: 18px;
  line-height: 42px;
  font-weight: 700;
  color: #d7000f;
  background: none;
}

.ssp-kicker--wide {
  padding-inline: 16px;
}

.ssp-hero {
  min-height: 563px;
  padding: 92px 0 0;
}

.ssp-hero__shell {
  display: grid;
  grid-template-columns: 700px 667px;
  justify-content: space-between;
  align-items: start;
  gap: 56px;
}

.ssp-hero__title {
  margin: 30px 0 0;
  font-size: 68px;
  line-height: 1.32;
  font-weight: 400;
  color: #101010;
}

.ssp-hero__summary {
  max-width: 667px;
  padding-top: 85px;
}

.ssp-hero__summary p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 32px;
  color: #666666;
}

.ssp-hero__tabs {
  display: inline-flex;
  margin-top: 90px;
  padding: 8px;
  gap: 6px;
  border-radius: 999px;
  background: #f8eded;
}

.ssp-pill-tab {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background-color: transparent;
  background-image: linear-gradient(#d7000f, #d7000f);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #101010;
  transition: background-size 0.35s ease, color 0.35s ease;
}

.ssp-pill-tab.is-active {
  color: #ffffff;
  background-color: #d7000f;
  background-size: 100% 100%;
}

.ssp-pill-tab:hover,
.ssp-pill-tab:focus {
  color: #ffffff;
  background-size: 100% 100%;
}



.ssp-impact {
  min-height: 736px;
  padding: 36px 0 0;
  overflow: hidden;
}

.ssp-impact .ssp-title {
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.ssp-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  margin-bottom: 28px;
  color: #d7000f;
}

.ssp-brand-row__mark {
  display: inline-flex;
  width: 52px;
  height: 36px;
}

.ssp-brand-row__mark svg {
  width: 100%;
  height: 100%;
}

.ssp-brand-row__text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-support-page .ssp-brand-row__logo {
  width: auto;
  max-width: 220px;
  height: 48px;
  object-fit: contain;
}

.ssp-impact__copy {
  max-width: 1402px;
  margin: 30px auto 0;
  text-align: center;
}

.ssp-impact__copy p {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 38px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.05em;
}

.ssp-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  margin: 38px auto 0;
  padding: 0 10px 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: #d7000f;
  border: 1px solid #d7000f;
  overflow: hidden;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: color 260ms ease;
  isolation: isolate;
}

.service-support-page .ssp-cta {
  color: #ffffff;
}

.ssp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms ease;
}

.service-support-page .ssp-cta:hover,
.service-support-page .ssp-cta:focus-visible {
  color: #d7000f;
}

.ssp-cta:hover::before,
.ssp-cta:focus-visible::before {
  transform: scaleX(1);
}

.ssp-cta span:first-child {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.1em;
}

.ssp-cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  color: #d7000f;
  background: rgba(255, 255, 255, 0.96);
  transition: color 260ms ease, background-color 260ms ease;
  position: relative;
  z-index: 1;
}

.ssp-cta:hover .ssp-cta__arrow,
.ssp-cta:focus-visible .ssp-cta__arrow {
  color: #ffffff;
  background: #d7000f;
}

.ssp-impact__stats-wrap {
  position: relative;
  margin-top: 6px;
  padding-top: 126px;
  min-height: 332px;
}

.ssp-impact__map {
  position: absolute;
  inset: 2px 50% auto;
  width: min(1666px, 100%);
  max-width: none;
  transform: translateX(-50%);
  opacity: 0.2;
  pointer-events: none;
}

.ssp-impact__stats {
  position: relative;
  z-index: 1;
  width: 1566px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 328px 401px 382px 367px 88px;
  gap: 0;
}

.ssp-stat {
  min-width: 0;
}

.ssp-stat__label,
.ssp-stat__meta {
  display: block;
  font-size: 16px;
  line-height: 32px;
  color: #333333;
  letter-spacing: 0.05em;
}

.ssp-stat__meta {
  margin-top: 6px;
  color: #999999;
}

.ssp-stat__value {
  display: inline-flex;
  align-items: flex-start;
  margin-top: 12px;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 500;
  color: #d7000f;
}

.ssp-stat__suffix {
  font-size: 32px;
  line-height: 1;
}

.ssp-contact {
  min-height: 684px;
  padding-bottom: 0;
}

.ssp-contact__hero {
  height: 504px;
  overflow: hidden;
}

.ssp-contact__hero img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ssp-contact .ssp-title {
  margin-top: -166px;
  position: relative;
  top: -130px;
  left: 8px;
  z-index: 2;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ssp-contact__cards {
  position: relative;
  top: -124px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 146px;
}

.ssp-contact-card {
  min-height: 247px;
  padding: 23px 28px 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(24, 16, 16, 0.045);
}

.ssp-contact-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: #e4000f;
}

.ssp-contact-card__icon svg,
.ssp-contact-card__icon img {
  width: 100%;
  height: 100%;
}

.ssp-contact-card__icon img {
  position: relative;
  top: -6px;
  left: -6px;
}

.ssp-contact-card h3 {
  margin: 21px 0 18px;
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  color: #1a0404;
}

.ssp-contact-card p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #999999;
}

.ssp-contact-card__accent {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #d7000f;
}

.ssp-contact-card__muted {
  margin-top: 0;
  font-size: 20px;
  line-height: 28px;
}

.ssp-contact-card p + p {
  margin-top: 9px;
}

.ssp-contact-card--qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 24px;
  text-align: center;
}

.ssp-contact-card__qr-wrap {
  width: 154px;
  height: 154px;
  position: relative;
  left: -6px;
}

.ssp-contact-card--qr p {
  position: relative;
  left: 0;
  margin-top: 2px;
}

.ssp-split {
  padding: 88px 0 96px;
}

.ssp-split__shell {
  display: grid;
  grid-template-columns: 680px 808px;
  justify-content: space-between;
  align-items: start;
  gap: 72px;
}

.ssp-copy-block__text {
  max-width: 680px;
  margin-top: 18px;
}

.ssp-copy-block__text p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}

.ssp-media-card {
  margin-top: 52px;
  border-radius: 16px;
  overflow: hidden;
}

.ssp-media-card--large {
  align-self: center;
  margin-top: 0;
}

.ssp-panel-card {
  padding: 24px 24px 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(29, 17, 17, 0.038);
}

.ssp-accordion__item {
  border-bottom: 1px solid #efefef;
}

.ssp-accordion__item:first-child {
  padding-top: 0;
}

.ssp-accordion__trigger {
  width: 100%;
  padding: 24px 2px 24px 26px;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.ssp-accordion__trigger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 4px;
  height: 28px;
  background: #d7000f;
}

.ssp-accordion__trigger span:first-child {
  font-size: 24px;
  line-height: 32px;
  color: #333333;
}

.ssp-accordion__item.is-open .ssp-accordion__trigger span:first-child {
  color: #d7000f;
}

.ssp-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid #efdfdf;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  color: #ec636a;
  transform: rotate(90deg);
}

.ssp-accordion__item.is-open .ssp-accordion__icon {
  transform: rotate(-90deg);
}

.ssp-accordion__body {
  display: none;
  padding: 0 6px 26px 26px;
}

.ssp-accordion__item.is-open .ssp-accordion__body {
  display: block;
}

.ssp-accordion__body p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}

.ssp-split__shell--network {
  align-items: center;
}

.ssp-split--warranty .ssp-split__shell,
.ssp-split--tech .ssp-split__shell,
.ssp-split--academy .ssp-split__shell,
.ssp-split--materials .ssp-split__shell {
  align-items: center;
}

.ssp-split__shell--network .ssp-copy-block__text {
  max-width: 654px;
}

.ssp-network {
  display: grid;
  grid-template-columns: 1fr 1fr 0fr;
  gap: 24px;
  overflow: visible;
  align-self: center;
  position: relative;
}

.ssp-network.swiper-container {
  display: block;
  width: 948px;
  gap: 0;
  overflow: hidden;
}

.ssp-network__track {
  align-items: flex-start;
}

.ssp-network.swiper-container .ssp-network__slide {
  width: 380px;
  flex: 0 0 380px;
}

.ssp-network.swiper-container .ssp-network__card {
  width: 100%;
}

.ssp-network__card img {
  height: 228px;
  object-fit: cover;
  border-radius: 16px;
}

.ssp-network__card h3 {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  color: #666666;
}

.ssp-split--warranty {
  min-height: 674px;
  padding: 102px 0 0;
}

.ssp-warranty {
  display: grid;
  gap: 28px;
  padding-top: 0;
  align-self: center;
}

.ssp-warranty__item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.ssp-warranty__icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #df020f;
}

.ssp-warranty__icon svg {
  width: 48px;
  height: 48px;
}

.ssp-warranty__item p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #1a0404;
}

.ssp-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 0.38fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  align-self: center;
}

.ssp-photo-strip.swiper-container {
  display: block;
  gap: 0;
}

.ssp-photo-strip__track {
  align-items: center;
}

.ssp-photo-strip.swiper-container .swiper-slide {
  width: 391px;
  flex: 0 0 391px;
}

.ssp-photo-strip img {
  height: 232px;
  object-fit: cover;
  border-radius: 16px;
}

.ssp-photo-strip--service img {
  height: 274px;
}

.ssp-photo-strip--service {
  position: relative;
  top: 18px;
  left: 1px;
  width: 947px;
  grid-template-columns: 391px 391px 113px;
  gap: 26px;
}

.ssp-logistics {
  position: relative;
  margin-top: -92px;
  min-height: 687px;
  padding: 72px 0 0;
  overflow: hidden;
}

.ssp-logistics__bg {
  position: absolute;
  inset: 0;
}

.ssp-logistics__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.ssp-logistics__bg img {
  height: 100%;
  object-fit: cover;
}

.ssp-logistics__shell {
  position: relative;
  top: 92px;
  z-index: 1;
  width: min(1774px, calc(100% - 56px));
}

.ssp-logistics__heading {
  position: relative;
  top: -21px;
  max-width: 1110px;
  margin: 0 auto 46px;
  text-align: center;
}

.ssp-logistics__heading .ssp-kicker {
  margin-bottom: 24px;
}

.ssp-logistics__heading p {
  position: relative;
  top: 13px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #dddddd;
}

.ssp-logistics__rail {
  position: relative;
  top: 10px;
  left: 50px;
  width: 1740px;
  display: flex;
  gap: 28px;
  margin-top: 0;
  overflow: hidden;
}

.ssp-logistics__rail.swiper-container {
  display: block;
  gap: 0;
}

.ssp-logistics-card {
  flex: 0 0 390px;
  width: 390px;
  min-height: 200px;
  padding: 29px 24px 26px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  position: relative;
}

.ssp-logistics-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 4px;
  height: 30px;
  background: #d7000f;
}

.ssp-logistics-card h3 {
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #3f1414;
}

.ssp-logistics-card p {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
}

#warehouse-service {
  min-height: 738px;
  padding: 74px 0 0;
}

#warehouse-service .ssp-split__shell {
  position: relative;
  top: -130px;
}

#warehouse-service .ssp-panel-card {
  position: relative;
  top: 16px;
  width: 803px;
  justify-self: end;
}

#warehouse-service .ssp-copy-block {
  position: relative;
  top: 54px;
}

#warehouse-service .ssp-media-card {
  margin-top: 86px;
}

#service-network {
  min-height: 565px;
  padding: 84px 0 0;
}

.ssp-split--tech {
  min-height: 592px;
  padding: 66px 0 0;
}

.ssp-split--tech .ssp-copy-block {
  position: relative;
  top: 10px;
}

.ssp-split--tech .ssp-title {
  margin-top: 14px;
}

.ssp-split--tech .ssp-copy-block__text {
  max-width: 672px;
  margin-top: 13px;
}

.ssp-split--academy {
  min-height: 596px;
  padding: 70px 0 0;
}

.ssp-split--academy .ssp-split__shell {
  position: relative;
  top: -68px;
}

.ssp-split--academy .ssp-copy-block {
  position: relative;
  top: 7px;
}

.ssp-split--academy .ssp-title {
  margin-top: 14px;
}

.ssp-split--academy .ssp-media-card {
  position: relative;
  top: -2px;
  left: 1px;
}

.ssp-split--materials {
  min-height: 532px;
  padding: 50px 0 0;
}

.ssp-split--materials .ssp-copy-block {
  position: relative;
  top: 12px;
}

.ssp-split--materials .ssp-title {
  margin-top: 20px;
}

.ssp-split--materials .ssp-photo-strip {
  position: relative;
  top: 21px;
  left: 1px;
  width: 947px;
  grid-template-columns: 391px 391px 113px;
  gap: 26px;
}

.ssp-split--materials .ssp-photo-strip img {
  height: 245px;
}

.ssp-logistics-card--active {
  background: #e70012;
}

.ssp-logistics-card--active::before {
  background: #ffffff;
}

.ssp-logistics-card--active h3,
.ssp-logistics-card--active p {
  color: #ffffff;
}
@media (max-width: 1500px) {
  :root {
    --container-wide: calc(100vw - 80px);
  }

  .support-hero__copy {
    right: 0;
    width: 45%;
  }

  .support-hero h1 {
    font-size: 58px;
    line-height: 78px;
  }
}

@media (max-width: 1440px) {
  .ssp-shell {
    width: min(1640px, calc(100% - 72px));
  }

  .ssp-hero__shell,
  .ssp-split__shell {
    gap: 48px;
  }

  .ssp-hero__shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  }

  .ssp-hero__lead,
  .ssp-hero__summary {
    min-width: 0;
  }

  .ssp-split__shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .ssp-hero__title {
    font-size: 48px;
    line-height: 1.42;
  }

  .ssp-contact__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ssp-impact__stats {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
  }

  .ssp-network,
  .ssp-photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .ssp-panel-card {
    width: 100%;
  }

  .ssp-network.swiper-container,
  .ssp-photo-strip--service,
  .ssp-split--materials .ssp-photo-strip {
    width: 100%;
  }

  .ssp-network.swiper-container .ssp-network__slide {
    width: clamp(300px, 27vw, 380px);
    flex-basis: clamp(300px, 27vw, 380px);
  }

  .ssp-photo-strip.swiper-container .swiper-slide {
    width: clamp(308px, 28vw, 391px);
    flex-basis: clamp(308px, 28vw, 391px);
  }

  .ssp-warranty__item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .ssp-logistics__rail {
    left: 0;
    width: 100%;
    overflow: hidden;
  }

}

@media (max-width: 1280px) {
  .ssp-hero,
  .ssp-impact,
  .ssp-contact,
  .ssp-split,
  .ssp-split--warranty,
  .ssp-split--tech,
  .ssp-split--academy,
  .ssp-split--materials,
  .ssp-logistics,
  #warehouse-service,
  #service-network {
    min-height: auto;
  }

  .ssp-hero {
    padding-bottom: 54px;
  }

  .ssp-hero__shell {
    grid-template-columns: 1fr;
  }

  .ssp-hero__summary {
    padding-top: 24px;
    max-width: 100%;
  }

  .ssp-hero__tabs {
    margin-top: 56px;
  }

  .ssp-split {
    padding: 56px 0;
  }

  #warehouse-service,
  #service-network,
  .ssp-split--tech,
  .ssp-split--academy,
  .ssp-split--materials,
  .ssp-split--warranty {
    padding-top: 56px;
  }

  .ssp-logistics {
    margin-top: 0;
    padding: 56px 0 68px;
  }

  .ssp-logistics__shell,
  .ssp-logistics__heading,
  .ssp-logistics__rail {
    top: 0;
  }

  .ssp-logistics__heading {
    margin-bottom: 34px;
  }
}

@media (max-width: 1200px) {
  .ssp-hero__title {
    font-size: 42px;
    line-height: 1.34;
  }
  :root {
    --container-wide: calc(100vw - 64px);
  }

  .support-hero {
    height: auto;
    padding: 76px 0 70px;
  }

  .support-hero__inner,
  .support-hero__heading,
  .support-hero__copy,
  .support-tabs {
    position: static;
  }

  .support-hero__inner {
    display: grid;
    gap: 30px;
  }

  .support-hero h1 {
    font-size: 48px;
    line-height: 1.35;
  }

  .support-hero__copy {
    width: 100%;
    max-width: 760px;
  }

  .support-tabs {
    width: max-content;
  }

  .service-outlet,
  .sales-outlet {
    min-height: 0;
  }
}

@media (max-width: 1080px) {
  .ssp-shell {
    width: min(1640px, calc(100% - 40px));
  }

  .ssp-hero {
    padding: 38px 0 24px;
  }

  .ssp-hero__shell,
  .ssp-split__shell,
  .ssp-split__shell--network {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ssp-hero__summary {
    padding-top: 24px;
    max-width: 100%;
  }

  #warehouse-service .ssp-split__shell,
  .ssp-split--academy .ssp-split__shell {
    top: 0;
  }

  #warehouse-service .ssp-panel-card,
  #warehouse-service .ssp-copy-block,
  .ssp-split--academy .ssp-copy-block,
  .ssp-split--academy .ssp-media-card,
  .ssp-split--materials .ssp-copy-block,
  .ssp-split--materials .ssp-photo-strip,
  .ssp-photo-strip--service {
    top: 0;
    left: 0;
  }

  #warehouse-service .ssp-panel-card {
    width: 100%;
  }

  #warehouse-service .ssp-media-card {
    margin-top: 32px;
  }

  .ssp-network.swiper-container {
    width: 100%;
  }

  .ssp-impact__copy p {
    font-size: 16px;
    line-height: 30px;
  }

  .ssp-title,
  .ssp-title--center,
  .ssp-title--light {
    font-size: 42px;
    line-height: 1.34;
    letter-spacing: 0.04em;
  }

  .ssp-impact .ssp-title,
  .ssp-contact .ssp-title {
    font-size: 48px;
    line-height: 58px;
  }

  .ssp-hero__title {
    font-size: 42px;
    line-height: 1.34;
  }

  .ssp-kicker,
  .ssp-kicker--plain,
  .ssp-kicker--wide {
    font-size: 16px;
  }

  .ssp-impact {
    padding-bottom: 14px;
  }

  .ssp-brand-row {
    margin-top: 12px;
    margin-bottom: 18px;
  }

  .ssp-impact__copy {
    margin-top: 20px;
  }

  .ssp-cta {
    margin-top: 26px;
  }

  .ssp-impact__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .ssp-impact__stats .ssp-stat {
    width: 100%;
    text-align: center;
  }

  .ssp-impact__stats .ssp-stat:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }

  .ssp-impact__stats-wrap {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 10px;
  }

  .ssp-contact__hero {
    height: 380px;
  }

  .ssp-contact .ssp-title {
    top: 0;
    margin-top: -230px;
  }

  .ssp-logistics__shell {
    width: min(1774px, calc(100% - 32px));
  }

  .ssp-logistics__rail {
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  .ssp-logistics-card {
    flex-basis: 100%;
    width: 100%;
    padding-inline: 20px;
  }

  .ssp-contact__cards {
    top: 0;
    margin-top: 24px;
  }

  .ssp-split {
    padding: 32px 0;
  }

  #warehouse-service,
  #service-network,
  .ssp-split--tech,
    .ssp-split--academy,
    .ssp-split--materials,
    .ssp-split--warranty {
    padding-top: 32px;
  }

  .ssp-logistics {
    padding: 32px 0 42px;
  }

  .ssp-contact-card {
    padding: 24px 20px;
  }

  .ssp-contact-card h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .ssp-panel-card {
    padding-inline: 20px;
  }

  .ssp-accordion__trigger {
    padding-left: 20px;
  }

  .ssp-accordion__trigger span:first-child,
  .ssp-logistics-card h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .ssp-accordion__body {
    padding-left: 20px;
    padding-right: 0;
  }

  .ssp-network.swiper-container .ssp-network__slide,
  .ssp-photo-strip.swiper-container .swiper-slide {
    width: 100%;
    flex-basis: 100%;
  }

  .ssp-photo-strip img,
  .ssp-photo-strip--service img,
  .ssp-split--materials .ssp-photo-strip img {
    height: clamp(210px, 34vw, 274px);
  }

  .ssp-warranty__item {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

@media (min-width: 721px) and (max-width: 1080px) {
  :root {
    --container-wide: calc(100vw - 30px);
  }

  .support-hero {
    padding: 52px 0 48px;
  }

  .section-kicker {
    margin-bottom: 18px;
  }

  .support-hero h1 {
    font-size: 34px;
  }

  .support-hero__copy {
    font-size: 14px;
    line-height: 24px;
  }

  .support-tabs {
    display: flex;
    width: 100%;
    padding: 8px;
  }

  .support-tab {
    flex: 1;
    min-width: 0;
    padding: 0 8px;
    font-size: 13px;
  }

  .service-outlet,
  .sales-outlet {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .section-heading {
    padding-left: 31px;
  }

  .section-heading__mark {
    width: 44px;
    height: 44px;
  }

  .section-heading h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .section-heading p {
    margin-top: 6px;
    font-size: 15px;
    line-height: 18px;
  }

  .ssp-impact {
    padding-bottom: 28px;
  }

  .ssp-impact__stats-wrap {
    padding-top: 46px;
    padding-bottom: 20px;
  }

  .ssp-impact__stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0 14px;
    align-items: start;
  }

  .ssp-impact__stats .ssp-stat:last-child {
    grid-column: auto;
    justify-self: stretch;
  }

  .ssp-stat__label,
  .ssp-stat__meta {
    font-size: 14px;
    line-height: 22px;
  }

  .ssp-stat__value {
    margin-top: 8px;
    font-size: 42px;
  }

  .ssp-stat__suffix {
    font-size: 24px;
  }

  .ssp-impact__map {
    width: 132%;
    top: 16px;
    opacity: 0.36;
  }

  .ssp-contact__hero {
    height: 340px;
  }

  .ssp-contact .ssp-title {
    margin-top: -206px;
  }

  .ssp-contact__cards {
    gap: 18px;
  }

  .ssp-contact-card {
    min-height: 220px;
    padding: 22px;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .ssp-split__shell,
  .ssp-split__shell--network {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
  }

  #warehouse-service .ssp-split__shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  #warehouse-service .ssp-media-card,
  .ssp-media-card {
    margin-top: 28px;
  }

  .ssp-panel-card {
    padding: 20px 18px;
  }

  .ssp-accordion__trigger {
    padding-block: 20px;
  }

  .ssp-accordion__trigger::before {
    top: 22px;
  }

  .ssp-accordion__trigger span:first-child,
  .ssp-logistics-card h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .ssp-accordion__body p,
  .ssp-logistics-card p {
    font-size: 14px;
    line-height: 24px;
  }

  .ssp-network.swiper-container .ssp-network__slide,
  .ssp-photo-strip.swiper-container .swiper-slide {
    width: clamp(284px, 42vw, 360px);
    flex-basis: clamp(284px, 42vw, 360px);
  }

  .ssp-logistics-card {
    width: clamp(300px, 42vw, 390px);
    flex-basis: clamp(300px, 42vw, 390px);
  }
}

@media (max-width: 900px) {
  .ssp-title,
  .ssp-title--center,
  .ssp-title--light,
  .ssp-impact .ssp-title,
  .ssp-contact .ssp-title {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: 0.03em;
  }

  .ssp-hero__title {
    font-size: 38px;
    line-height: 1.32;
  }

  .ssp-copy-block__text p,
  .ssp-hero__summary p,
  .ssp-accordion__body p,
  .ssp-logistics-card p,
  .ssp-contact-card p,
  .ssp-logistics__heading p {
    font-size: 15px;
    line-height: 26px;
  }

  .ssp-impact__copy p {
    font-size: 15px;
    line-height: 26px;
  }

  .ssp-contact-card h3,
  .ssp-accordion__trigger span:first-child,
  .ssp-logistics-card h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  .ssp-title,
  .ssp-title--center,
  .ssp-title--light,
  .ssp-impact .ssp-title,
  .ssp-contact .ssp-title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.02em;
  }

  .ssp-hero__title {
    font-size: 34px;
    line-height: 1.34;
  }

  .ssp-copy-block__text p,
  .ssp-hero__summary p,
  .ssp-accordion__body p,
  .ssp-logistics-card p,
  .ssp-contact-card p,
  .ssp-logistics__heading p,
  .ssp-impact__copy p {
    font-size: 14px;
    line-height: 23px;
  }

  .ssp-pill-tab,
  .ssp-cta span:first-child {
    font-size: 15px;
  }
}

@media (max-width: 720px) {
  .ssp-shell {
    width: calc(100% - 28px);
  }

  .ssp-hero {
    padding: 22px 0 8px;
  }

  .ssp-title,
  .ssp-title--center,
  .ssp-title--light,
  .ssp-impact .ssp-title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.02em;
  }

  .ssp-hero__title {
    font-size: 34px;
    line-height: 1.34;
  }

  .ssp-hero__tabs {
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .ssp-impact {
    padding-top: 0;
    padding-bottom: 6px;
  }

  .ssp-brand-row {
    margin-top: 6px;
    margin-bottom: 12px;
  }

  .ssp-impact__copy {
    margin-top: 12px;
  }

  .ssp-cta {
    margin-top: 16px;
  }

  .ssp-copy-block__text p,
  .ssp-hero__summary p,
  .ssp-accordion__body p,
  .ssp-logistics-card p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .ssp-kicker,
  .ssp-kicker--plain,
  .ssp-kicker--wide {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .ssp-impact__stats-wrap {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .ssp-stat__label,
  .ssp-stat__meta {
    font-size: 15px;
    line-height: 23px;
  }

  .ssp-stat__value {
    margin-top: 8px;
    font-size: 38px;
  }

  .ssp-stat__suffix {
    font-size: 24px;
  }

  .ssp-impact__map {
    width: 155%;
    top: 120px;
    opacity: 0.32;
  }

  .ssp-contact {
    padding-bottom: 12px;
  }

  .ssp-contact__hero {
    height: 224px;
  }

  .ssp-contact .ssp-title {
    top: 0;
    margin-top: -184px;
    font-size: 32px;
    line-height: 36px;
  }

  .ssp-contact__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    top: 0;
    margin-top: 18px;
  }

  .ssp-contact-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .ssp-split {
    padding: 20px 0;
  }

  .ssp-hero__shell,
    .ssp-split__shell,
    .ssp-split__shell--network {
    gap: 14px;
  }

  #warehouse-service,
  #service-network,
  .ssp-split--tech,
    .ssp-split--academy,
    .ssp-split--materials,
    .ssp-split--warranty {
    padding-top: 20px;
  }

  .ssp-media-card {
    margin-top: 16px;
  }

  .ssp-photo-strip,
  .ssp-network {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ssp-network.swiper-container .ssp-network__slide,
  .ssp-photo-strip.swiper-container .swiper-slide {
    width: 100%;
    flex-basis: 100%;
  }

  .ssp-network__card img,
  .ssp-photo-strip img,
  .ssp-photo-strip--service img,
  .ssp-split--materials .ssp-photo-strip img {
    height: clamp(188px, 52vw, 232px);
  }

  .ssp-warranty {
    gap: 22px;
  }

  .ssp-warranty__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ssp-warranty__icon {
    width: 78px;
    height: 78px;
  }

  .ssp-accordion__trigger {
    padding-right: 0;
  }

  .ssp-accordion__trigger span:first-child {
    font-size: 24px;
    line-height: 32px;
  }

  .ssp-logistics {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .ssp-logistics__shell {
    width: calc(100% - 14px);
  }

  .ssp-logistics__rail {
    left: 0;
    width: 100%;
    overflow: hidden;
    padding-bottom: 6px;
  }

  .ssp-logistics-card {
    flex-basis: 100%;
    width: 100%;
    padding: 22px 20px 24px;
  }

  .ssp-logistics-card h3,
  .ssp-logistics-card p {
    padding-left: 14px;
  }
}

@media (max-width: 640px) {
  .ssp-contact-card h3,
  .ssp-accordion__trigger span:first-child,
  .ssp-logistics-card h3 {
    font-size: 21px;
    line-height: 29px;
  }

  .ssp-stat__label,
  .ssp-stat__meta {
    font-size: 15px;
    line-height: 23px;
  }
}

@media (max-width: 520px) {
  .ssp-title,
  .ssp-title--center,
  .ssp-title--light,
  .ssp-impact .ssp-title,
  .ssp-contact .ssp-title {
    font-size: 27px;
    line-height: 1.32;
  }

  .ssp-hero__title {
    font-size: 27px;
    line-height: 1.32;
  }

  .ssp-copy-block__text p,
  .ssp-hero__summary p,
  .ssp-impact__copy p,
  .ssp-accordion__body p,
  .ssp-logistics__heading p,
  .ssp-logistics-card p,
  .ssp-contact-card p {
    font-size: 13px;
    line-height: 22px;
  }

  .ssp-pill-tab,
  .ssp-cta span:first-child {
    font-size: 14px;
  }

  .ssp-contact-card h3,
  .ssp-accordion__trigger span:first-child,
  .ssp-logistics-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .ssp-stat__label,
  .ssp-stat__meta {
    font-size: 15px;
    line-height: 22px;
  }

  .ssp-stat__value {
    font-size: 34px;
  }

  .ssp-stat__suffix {
    font-size: 20px;
  }

  :root {
    --container-wide: calc(100vw - 24px);
  }

  .support-hero h1 {
    font-size: 30px;
  }

  .support-tab {
    font-size: 12px;
  }

  .outlet-card {
    padding: 26px 22px;
  }

  .outlet-card p {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 12px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .ssp-title,
  .ssp-title--center,
  .ssp-title--light,
  .ssp-impact .ssp-title,
  .ssp-contact .ssp-title,
  .ssp-hero__title {
    font-size: 26px;
    line-height: 1.32;
    letter-spacing: 0.01em;
  }
}
