

/* Start:/landings/style.css?17750377086938*/
html {
  scroll-behavior: smooth;
}

.landings-page {
  padding-bottom: 24px;
}

.landings-head {
  margin-bottom: 28px;
}

.landings-lead {
  max-width: 900px;
  color: #526174;
  font-size: 16px;
  line-height: 1.65;
}

.landings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.landings-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(20, 51, 92, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landings-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(20, 51, 92, 0.12);
}

.landings-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #f5fbff 0%, #edf5fb 100%);
}

.landings-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landings-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.landings-card__title {
  margin: 0 0 10px;
  color: #13345f;
  font-size: 24px;
  line-height: 1.15;
}

.landings-card__title a {
  color: inherit;
  text-decoration: none;
}

.landings-card__title a:hover {
  text-decoration: underline;
}

.landings-card__text {
  color: #5a6a7d;
  font-size: 15px;
  line-height: 1.6;
}

.landings-card__meta {
  margin-top: auto;
  padding-top: 16px;
  color: #2b79c2;
  font-size: 14px;
  font-weight: 700;
}

.landing-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

.landing-detail__content {
  min-width: 0;
}

.landing-detail__eyebrow {
  margin: 0 0 12px;
  color: #2a82c7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-detail__title {
  margin: 0 0 16px;
  color: #102f58;
  font-size: 42px;
  line-height: 1.08;
}

.landing-detail__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: #fff;
  color: #2a79c2;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #c5ddf0;
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.landing-detail__cta:hover {
  background: #f0f7ff;
  border-color: #2a79c2;
  color: #2a79c2;
}

.landing-detail__cta-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #eef4ff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #2a79c2;
}

.landing-detail__cta-arrow {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-detail__cta:hover .landing-detail__cta-arrow {
  transform: translateY(2px);
  opacity: 1;
}

.landing-detail__announce,
.landing-detail__description {
  max-width: 760px;
  color: #435468;
  font-size: 17px;
  line-height: 1.78;
}

.landing-detail__announce {
  margin-bottom: 20px;
}

.landing-detail__description {
  margin-top: 20px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #e2ecf5;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(19, 54, 98, 0.08);
}

.landing-detail__announce > :first-child,
.landing-detail__description > :first-child {
  margin-top: 0;
}

.landing-detail__announce > :last-child,
.landing-detail__description > :last-child {
  margin-bottom: 0;
}

.landing-detail__announce p,
.landing-detail__description p {
  margin: 0 0 18px;
}

.landing-detail__announce h2,
.landing-detail__announce h3,
.landing-detail__description h2,
.landing-detail__description h3 {
  margin: 34px 0 14px;
  color: #123a67;
  font-weight: 700;
  line-height: 1.22;
}

.landing-detail__announce h2,
.landing-detail__description h2 {
  font-size: 28px;
}

.landing-detail__announce h3,
.landing-detail__description h3 {
  font-size: 22px;
}

.landing-detail__announce ul,
.landing-detail__announce ol,
.landing-detail__description ul,
.landing-detail__description ol {
  margin: 0 0 22px;
  padding: 0 0 0 24px;
}

.landing-detail__announce li,
.landing-detail__description li {
  margin: 0 0 12px;
  padding-left: 4px;
}

.landing-detail__announce li:last-child,
.landing-detail__description li:last-child {
  margin-bottom: 0;
}

.landing-detail__announce strong,
.landing-detail__description strong {
  color: #173b67;
  font-weight: 700;
}

.landing-detail__announce a,
.landing-detail__description a {
  color: #2b79c2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-detail__announce a:hover,
.landing-detail__description a:hover {
  color: #1e5f9d;
}

.landing-detail__side {
  min-width: 0;
}

.landing-detail__hero {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #f4fbff 0%, #eaf3fb 100%);
  box-shadow: 0 20px 42px rgba(18, 57, 102, 0.12);
}

.landing-detail__hero img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-detail__stats {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.landing-detail__stat {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef7ff;
  color: #2a79c2;
  font-size: 14px;
  font-weight: 700;
}

.landing-gallery {
  margin: 6px 0 34px;
}

.landing-gallery__title,
.landing-products__title {
  margin: 0 0 16px;
  color: #10355e;
  font-size: 28px;
  line-height: 1.2;
}

.landing-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.landing-gallery__item {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f7fb;
  box-shadow: 0 12px 28px rgba(23, 56, 101, 0.08);
}

.landing-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.landing-products__empty {
  padding: 18px 20px;
  border: 1px solid #ddebf7;
  border-radius: 16px;
  background: #f8fbff;
  color: #516276;
}

.landing-products__catalog {
  position: relative;
}

@media screen and (max-width: 991px) {
  .landing-detail__announce,
  .landing-detail__description {
    max-width: none;
    font-size: 16px;
  }

  .landing-detail__description {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .landing-detail__announce h2,
  .landing-detail__description h2 {
    font-size: 24px;
  }

  .landing-detail__announce h3,
  .landing-detail__description h3 {
    font-size: 20px;
  }
}

.landing-products__catalog .view_showcase {
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .landing-detail {
    grid-template-columns: 1fr;
  }

  .landing-detail__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 640px) {
  .landings-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .landings-card__title {
    font-size: 21px;
  }

  .landing-detail__title {
    font-size: 28px;
  }
}
/* End */
/* /landings/style.css?17750377086938 */
