:root {
  --color-black: #222;
  --color-gray-light: #d8d8db;
  --color-red-accent: #ea0437;
  --color-white: #fff;
  --color-gray-copy: #b9bdbe;
  --color-gray-dark: #484b4c;
  --color-teal: #277a80;
  --bg-color-gray-dark: #171b1e;
}

/* ---------- base ---------- */
body {
  min-width: 1200px;
  color: var(--color-black);
}

/* ---------- common ---------- */
.u-text-gradient {
  background: linear-gradient(90deg, #00c24a 0%, #2da8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.lp-title {
  margin-bottom: 16px;
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.lp-title--small {
  font-size: 4.8rem;
}

.lp-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
}

.lp-text-large {
  display: inline-block;
  margin-left: 8px;
  font-size: 2.6rem;
  font-weight: 700;
  vertical-align: text-top;
  line-height: 1;
}

/* ---------- header ---------- */
.lp-layout-header {
  z-index: 10;
  position: relative;
  width: 100%;
  margin-inline: auto;
  border-bottom: 1px solid var(--color-gray-light);
}

.lp-layout-header__content {
  display: flex;
  align-items: center;
  max-width: 1300px;
  padding: 16px 10px;
  margin: 0 auto;
  justify-content: space-between;
}

.lp-layout-header__content > *:last-child {
  margin-bottom: 0;
}

.lp-layout-header__logo {
  margin: 0;
  line-height: 1;
  text-align: center;
}

.lp-layout-header__link {
  display: block;
}

.lp-layout-header__logoImg {
  max-width: 184px;
  height: 32px;
}

.lp-layout-header__utilityGroup {
  display: flex;
  justify-content: flex-end;
}

.lp-layout-header__utilityGroup > *:last-child {
  margin-bottom: 0;
}

.lp-layout-header__utilityList {
  display: flex;
  align-items: center;
}

.lp-layout-header__utilityList > *:last-child {
  margin-bottom: 0;
}

.lp-layout-header__utilityList > li {
  width: 100%;
}

.lp-layout-header__utilityList > li > *:last-child {
  margin-bottom: 0;
}

/* ---------- footer ---------- */
.lp-layout-footer {
  padding: 16px 0;
  background-color: var(--color-gray-dark);
}

.lp-layout-footer__content {
  max-width: 1300px;
  margin-inline: auto;
  padding: 0 30px;
}

.lp-layout-footer__body {
  width: 100%;
}

.lp-layout-footer__body > *:last-child {
  margin-bottom: 0;
}

.lp-layout-footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  text-align: center;
}

.lp-layout-footer__list > li {
  display: flex;
  justify-content: center;
}

.lp-layout-footer__list > li > a {
  color: var(--color-white);
  text-decoration: none;
}

.lp-layout-footer__list > li + li {
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
}

.lp-layout-footer__list > li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 14px;
  transform: translateY(-50%);
  border-left: 1px solid var(--color-white);
  content: "";
}

.lp-layout-footer__list > li > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-layout-footer__list > li > ul > li > a {
  color: var(--color-white);
  text-decoration: none;
}

.lp-layout-footer__list > li > ul > li + li {
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
}

.lp-layout-footer__list > li > ul > li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 14px;
  transform: translateY(-50%);
  border-left: 1px solid var(--color-white);
  content: "";
}

.lp-layout-footer__copyright {
  color: var(--color-gray-copy);
}

/* ---------- textPhoneLink ---------- */
.lp-textPhoneLink > *:last-child {
  margin-bottom: 0;
}

.lp-textPhoneLink__numberGroup {
  display: flex;
  align-items: flex-end;
}

.lp-textPhoneLink__number {
  font-size: 2rem;
  font-weight: 700;
}

.lp-textPhoneLink__number > a {
  cursor: default;
}

.lp-textPhoneLink__icon {
  fill: var(--color-teal);
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

.lp-textPhoneLink__number .AutoPhoneCall {
  color: var(--color-black);
  text-decoration: none;
}

/* ---------- button ---------- */
.lp-button__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-button__wrapper.of-center {
  justify-content: center;
}

.lp-button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-width: 302px;
  padding: 19px 24px;
  padding-right: 56px;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.lp-button__text {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.lp-button--catalog {
  background: linear-gradient(90deg, #ff4010 0%, var(--color-red-accent) 100%);
}

.lp-button--prices {
  background: linear-gradient(90deg, #00b6aa 0%, #228e96 100%);
}

.lp-button--prices.of-color-pattern-02 {
  background: linear-gradient(90deg, #00aa80 0%, #228e96 100%);
}

.lp-button--catalog::before,
.lp-button--prices::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.lp-button--catalog::before {
  background: linear-gradient(90deg, var(--color-red-accent) 0%, #c6002a 100%);
}

.lp-button--prices::before {
  background: linear-gradient(90deg, #228e96 0%, #0a757d 100%);
}

@media (hover: hover) {
  .lp-button--catalog:hover::before,
  .lp-button--prices:hover::before {
    opacity: 1;
  }
}

.lp-button__icon {
  position: absolute;
  right: 16px;
  margin-top: -1rem;
  margin-bottom: -1rem;
  color: inherit;
  fill: var(--color-white);
}

.lp-button--catalog .lp-button__icon {
  width: 40px;
  height: 40px;
}

.lp-button--prices .lp-button__icon {
  width: 45px;
  height: 45px;
}

/* =====================================
  main
===================================== */

/* ---------- hero ---------- */
.lp-hero {
  padding: 64px 0;
  background: url(/img/products/sr-x/190020001/190020001_bg_img_01.jpg) center /
    cover no-repeat;
}

.lp-hero__container {
  max-width: 1300px;
  margin-inline: auto;
  padding: 0 10px;
}

.lp-hero__container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.lp-hero__image-wrapper {
  max-width: 620px;
}

.lp-hero__content {
  flex: 1;
}

.lp-hero__text {
  margin-bottom: 48px;
}

.lp-hero__features {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 64px;
}

.lp-hero__feature-item {
  position: relative;
  padding-left: 16px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
.lp-hero__feature-item.of-layout-pattern-02 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-hero__feature-item.of-text-size-small {
  font-size: 2.4rem;
}

.lp-hero__feature-item > *:last-child {
  margin-bottom: 0;
}

.lp-hero__feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #06e7a0 0%, #2da8ff 100%);
}
.lp-hero__feature-item.of-color-pattern-02::before {
  background: #00aa80;
}

.lp-hero__feature-badge {
  display: inline-flex;
  width: fit-content;
  margin-right: 16px;
  padding: 1px 3px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  vertical-align: top;
  border: 1px solid;
  border-image: linear-gradient(90deg, #00c24a, #2da8ff) 1;
}
.lp-hero__feature-badge.of-text-size-small {
  font-size: 1.8rem;
}
.lp-hero__feature-badge.of-color-pattern-02 {
  border: 1px solid var(--color-black);
}

.lp-hero__feature-description {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}
.lp-hero__feature-item.of-layout-pattern-02 .lp-hero__feature-description {
  margin: 0;
}

/* ---------- section ---------- */
.lp-main {
  overflow: hidden;
}

.lp-section {
  padding: 100px 0;
}

.lp-section--narrow {
  padding: 48px 0;
}

.lp-section--bg-navy {
  position: relative;
  background: url(/img/products/sr-x/190020001/190020001_bg_img_02.jpg) center /
    cover no-repeat;
  max-width: 2240px;
  margin-inline: auto;
}

.lp-section--bg-navy::after {
  content: "";
  position: absolute;
  top: 0;
  margin: 0 calc(50% - 50vw);
  display: inline-block;
  width: 100vw;
  height: 100%;
  background-color: #252f4c;
  z-index: -10;
}

.lp-section--bg-gray {
  background: url(/img/products/sr-x/190020001/190020001_bg_img_03.jpg) center /
    cover no-repeat;
}

.lp-section__inner {
  max-width: 1300px;
  margin-inline: auto;
  padding: 0 10px;
}

.lp-section__inner > *:last-child {
  margin-bottom: 0;
}

.lp-section__title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  font-size: clamp(44px, 0.57vw + 37.14px, 48px);
  font-weight: 700;
  line-height: 0.9;
}

.lp-section__title--white {
  color: var(--color-white);
}
.lp-section__title.lp-section__title--center::before,
.lp-section__title::after {
  content: "";
  display: inline-block;
  max-width: 389px;
  width: 100%;
  height: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}

.lp-section__title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='389' height='5' viewBox='0 0 389 5' fill='none'%3E%3Cpath d='M0 2.5H389' stroke='url(%23paint0_linear_10107_1139)' stroke-width='4'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_10107_1139' x1='0' y1='3' x2='389' y2='3' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232DA8FF'/%3E%3Cstop offset='1' stop-color='%2300E558' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.lp-section__title.of-color-pattern-02 {
  color: var(--color-white);
}
.lp-section__title.of-no-border::before,
.lp-section__title.of-no-border::after {
  content: none;
}

.lp-section__title--center {
  justify-content: center;
}

.lp-section__title--center::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='5' viewBox='0 0 400 5' fill='none'%3E%3Cpath d='M0 2.5H400' stroke='url(%23paint0_linear_10107_1493)' stroke-width='4'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_10107_1493' x1='0' y1='3' x2='400' y2='3' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2300E558' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%232DA8FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.lp-section__title--small {
  font-size: 4rem;
}

/* ---------- card ---------- */
.lp-card {
  display: grid;
  grid-template-columns: repeat(2, 410px);
  gap: 24px;
}

.lp-card__content {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 230px;
  padding: 24px 16px;
  border-radius: 16px;
  backdrop-filter: blur(3px);
  color: var(--color-white);
  overflow: hidden;
}
.lp-card.of-layout-pattern-02 .lp-card__content {
  padding: 215px 16px 24px;
  background: var(--bg-color-gray-dark);
  align-items: flex-start;
}
.lp-card__img {
  position: absolute;
  inset: 0;
}

.lp-card__body {
  position: relative;
  flex: 1;
  z-index: 1;
}

.lp-card__badge {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 12px;
  padding: 2px 4px;
  background: linear-gradient(90deg, #00ff62 0%, #4dd8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  border: 1px solid;
  border-image: linear-gradient(90deg, #00ff62, #4dd8ff) 1;
}
.lp-card__badge.of-color-pattern-02 {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
}

.lp-card__title {
  margin-bottom: 12px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.lp-card__text {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.lp-card__note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  color: #cbcbcb;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 1rem;
}
.lp-card.of-layout-pattern-02 .lp-card__note {
  display: flex;
  justify-content: flex-end;
  position: static;
}

/* ---------- case ---------- */
.lp-case-study {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.lp-case-study__item {
  border-radius: 16px;
  background-color: var(--color-white);
  overflow: hidden;
}

.lp-case-study__img-wrapper {
  margin-bottom: 16px;
}

.lp-case-study__body {
  padding: 0 16px 24px;
}

.lp-case-study__title {
  margin-bottom: 8px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.lp-case-study__text {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

/* ---------- media ---------- */
.lp-media {
  display: flex;
  align-items: center;
  column-gap: 40px;
}

.lp-media__text {
  margin-bottom: 40px;
}


/* ---------- responsive ---------- */

body.responsive {
  min-width: auto;
}

@media (max-width: 1024px) {
  body.responsive {
   
    & .lp-layout-header__utilityGroup {
      display: none;
    }

    & .lp-layout-header__content {
      justify-content: center;
    }

    & .lp-layout-header__logoImg {
      max-width: 110px;
    }

    & .lp-section {
      padding: 50px 0;
    }

    & .lp-section__title--small {
      font-size: 3.2rem;
    }

    & .lp-section__inner {
      max-width: 600px;
      padding: 0 25px;
    }

    & .lp-hero {
      padding: 32px 0;
    }

    & .lp-hero__text {
      margin-bottom: 32px;
    }

    & .lp-title {
      font-size: 4.2rem;
    }

    & .lp-section__title {
      margin-bottom: 32px;
    }

    & .lp-section__title::after {
      content: none;
    }

    & .lp-section--bg-navy {
      background: none;
    }

    & .lp-hero__container {
      max-width: 600px;
      flex-direction: column;
      padding: 0 25px;
    }

    & .lp-hero__features {
      margin-bottom: 32px;
    }

    & .lp-button__wrapper {
      justify-content: center;
      flex-wrap: wrap;
    }

    & .lp-card {
      grid-template-columns: auto;
    }

    & .lp-case-study {
      grid-template-columns: auto;
    }

    & .lp-media {
      flex-direction: column;
      row-gap: 24px;
    }

    & .lp-layout-footer__list {
      gap: 8px;
    }

    & .lp-layout-footer__copyright {
      margin-left: 0;
      padding-left: 0;
    }

    & .lp-textPhoneLink__number {
      padding: 0;
    }

    & .lp-layout-footer__list > li + .lp-layout-footer__copyright::before {
      content: none;
    }
  }
}
