.catalog-page {
  background: #ffffff;
}

.catalog-hero {
  padding: 42px 0 38px;
  background:
    linear-gradient(90deg, rgba(0, 32, 77, .96), rgba(0, 75, 160, .92)),
    #00356f;
  color: #ffffff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: #ffffff;
}

.catalog-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 900;
}

.catalog-hero p {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.45;
}

.catalog-search {
  width: min(680px, 100%);
  height: 58px;
  display: grid;
  grid-template-columns: 1fr 116px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}

.catalog-search input {
  border: 0;
  outline: none;
  padding: 0 22px;
  font-size: 16px;
}

.catalog-search button {
  border: 0;
  background: #0065da;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.catalog-content {
  padding: 38px 0 56px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 18px;
  padding: 20px;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  background: #ffffff;
}

.catalog-sidebar h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.side-category {
  min-height: 42px;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #172234;
  font-weight: 800;
}

.side-category:last-child {
  border-bottom: 0;
}

.side-category b {
  color: #0a63d5;
}

.side-category.is-active {
  color: #0065da;
}

.catalog-result-head {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-result-head h2 {
  margin: 0 0 5px;
  font-size: 28px;
  font-weight: 900;
}

.catalog-result-head span {
  color: #526173;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 100%;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__image {
  height: 155px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  max-width: 145px;
  max-height: 120px;
  object-fit: contain;
}

.product-card__body {
  padding: 16px;
  border-top: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__title {
  min-height: 44px;
  margin-bottom: 10px;
  color: #172234;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.product-card__article {
  margin-bottom: 12px;
  color: #526173;
  font-size: 14px;
}

.product-card__meta {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card__meta span,
.is-stock,
.is-order {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.is-stock {
  background: #e9f8ef;
  color: #11833a;
}

.is-order {
  background: #fff3df;
  color: #9b6200;
}

.product-card__meta small {
  color: #526173;
  font-weight: 700;
}

.product-card__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__bottom strong {
  font-size: 18px;
  font-weight: 900;
}

.product-card__bottom a,
.catalog-btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 5px;
  background: #0065da;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid #0065da;
}

.catalog-btn--light {
  background: #ffffff;
  color: #0065da;
}

.empty-box {
  padding: 34px;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  background: #f7faff;
}

.empty-box h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.empty-box p {
  margin: 0 0 18px;
  color: #526173;
  font-size: 16px;
  line-height: 1.45;
}

.pagination {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a {
  width: 38px;
  height: 38px;
  border: 1px solid #dce5ef;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.pagination a.is-active {
  background: #0065da;
  color: #ffffff;
  border-color: #0065da;
}

.product-page-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  padding: 28px;
  border: 1px solid #dce5ef;
  border-radius: 12px;
  background: #ffffff;
}

.product-page-card__image {
  min-height: 320px;
  border-radius: 10px;
  background: #f7faff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-card__image img {
  max-width: 260px;
  max-height: 240px;
  object-fit: contain;
}

.product-page-card__brand {
  margin-bottom: 10px;
  color: #0065da;
  font-weight: 900;
}

.product-page-card h2 {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.15;
}

.product-specs {
  margin-bottom: 24px;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  overflow: hidden;
}

.product-specs div {
  min-height: 50px;
  padding: 12px 16px;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.product-specs div:last-child {
  border-bottom: 0;
}

.product-specs span {
  color: #526173;
  font-weight: 700;
}

.product-page-card__price {
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 900;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-footer {
  padding: 28px 0;
  border-top: 1px solid #dce5ef;
  background: #f7faff;
}

.catalog-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.catalog-footer strong,
.catalog-footer span,
.catalog-footer a {
  display: block;
}

.catalog-footer span {
  margin-top: 6px;
  color: #526173;
}

.catalog-footer a {
  margin-top: 6px;
  font-weight: 800;
  color: #0065da;
}

@media (max-width: 1100px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page-card {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 700px) {
  .catalog-search {
    height: auto;
    grid-template-columns: 1fr;
  }

  .catalog-search input,
  .catalog-search button {
    height: 52px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-page-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .catalog-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* PRODUCT DETAIL MOCKUP START */

.product-detail-page {
  background: #f7faff;
}

.pd-section {
  padding: clamp(22px, 1.8vw, 34px) 0 clamp(42px, 3vw, 70px);
}

.pd-breadcrumbs {
  margin-bottom: clamp(18px, 1.4vw, 26px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #6a7a91;
  font-size: clamp(13px, .82vw, 15px);
  font-weight: 700;
}

.pd-breadcrumbs a {
  color: #0a63d5;
}

.pd-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) minmax(350px, .96fr) minmax(280px, .64fr);
  gap: clamp(20px, 1.8vw, 34px);
  align-items: start;
}

.pd-left,
.pd-center,
.pd-right {
  min-width: 0;
}

.pd-card,
.pd-gallery,
.pd-buy-card {
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
}

.pd-gallery {
  padding: clamp(18px, 1.35vw, 26px);
  margin-bottom: clamp(16px, 1.2vw, 22px);
}

.pd-gallery__main {
  height: clamp(330px, 26vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-gallery__main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pd-gallery__thumbs {
  margin-top: clamp(16px, 1.2vw, 24px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, .8vw, 16px);
}

.pd-gallery__thumbs button {
  position: relative;
  height: clamp(64px, 5vw, 86px);
  border: 1px solid #dce5ef;
  border-radius: 9px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-gallery__thumbs button.is-active {
  border: 2px solid #0065da;
}

.pd-gallery__thumbs img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.pd-gallery__more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, .32);
}

.pd-gallery__more span {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.pd-title-block {
  margin-bottom: clamp(18px, 1.3vw, 24px);
}

.pd-title-block h1 {
  margin: 0 0 clamp(10px, .75vw, 14px);
  color: #111827;
  font-size: clamp(24px, 1.45vw, 30px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -.25px;
}

.pd-title-block p {
  max-width: 680px;
  margin: 0;
  color: #617087;
  font-size: clamp(15px, .95vw, 18px);
  line-height: 1.45;
  font-weight: 700;
}

.pd-buy-card {
  padding: clamp(18px, 1.35vw, 24px);
  margin-bottom: clamp(16px, 1.2vw, 22px);
}

.pd-buy-card__top {
  margin-bottom: clamp(16px, 1.2vw, 22px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 1.2vw, 24px);
  align-items: center;
}

.pd-status {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: clamp(15px, .95vw, 17px);
  white-space: nowrap;
}

.pd-buy-card__top strong {
  display: block;
  color: #111827;
  font-size: clamp(28px, 2vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}

.pd-buy-card__top small {
  display: block;
  margin-top: 5px;
  color: #617087;
  font-size: clamp(13px, .8vw, 15px);
  font-weight: 700;
}

.pd-main-btn {
  width: 100%;
  min-height: clamp(54px, 3.4vw, 64px);
  border-radius: 8px;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 900;
}

.pd-contact-buttons {
  margin-top: clamp(14px, 1vw, 20px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, .8vw, 14px);
}

.pd-contact-buttons a {
  min-height: 78px;
  border: 1px solid #d5dfec;
  border-radius: 7px;
  background: #ffffff;
  color: #0065da;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}


.pd-contact-buttons a img {
  width: 150px;
  height: 71px;
  object-fit: contain;
  display: block;
}


.pd-contact-buttons .pd-max {
  background: #ffffff;
  color: #111827;
  border-color: #d5dfec;
}

.pd-description {
  padding: clamp(20px, 1.5vw, 28px);
}

.pd-description h2,
.pd-specs h2,
.pd-form-card h2 {
  margin: 0 0 clamp(14px, 1vw, 20px);
  color: #111827;
  font-size: clamp(22px, 1.45vw, 28px);
  line-height: 1.15;
  font-weight: 900;
}

.pd-description p {
  margin: 0 0 12px;
  color: #4f5d70;
  font-size: clamp(15px, .95vw, 17px);
  line-height: 1.55;
  font-weight: 600;
}

.pd-description p:last-child {
  margin-bottom: 0;
}

.pd-specs {
  padding: clamp(20px, 1.5vw, 28px);
}

.pd-specs__row {
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid #e5edf5;
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 18px;
  align-items: center;
}

.pd-specs__row:last-child {
  border-bottom: 0;
}

.pd-specs__row span {
  color: #617087;
  font-size: clamp(14px, .85vw, 16px);
  font-weight: 700;
}

.pd-specs__row b {
  color: #1f2937;
  font-size: clamp(14px, .85vw, 16px);
  font-weight: 900;
}

.pd-benefits {
  padding: clamp(22px, 1.5vw, 30px);
  margin-bottom: clamp(16px, 1.2vw, 22px);
}

.pd-benefit {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: clamp(13px, 1vw, 18px) 0;
  align-items: start;
}

.pd-benefit:first-child {
  padding-top: 0;
}

.pd-benefit:last-child {
  padding-bottom: 0;
}

.pd-benefit + .pd-benefit {
  border-top: 1px solid #e5edf5;
}

.pd-benefit span {
  width: 34px;
  height: 34px;
  color: #0065da;
  font-size: 24px;
  display: grid;
  place-items: center;
}

.pd-benefit strong {
  display: block;
  margin-bottom: 5px;
  color: #1f2937;
  font-size: clamp(15px, .92vw, 17px);
  line-height: 1.25;
  font-weight: 900;
}

.pd-benefit small {
  color: #617087;
  font-size: clamp(13px, .82vw, 15px);
  font-weight: 700;
}

.pd-form-card {
  padding: clamp(20px, 1.5vw, 28px);
}

.pd-form-card p {
  margin: 0 0 18px;
  color: #617087;
  font-size: clamp(14px, .88vw, 16px);
  line-height: 1.45;
  font-weight: 700;
}

.pd-form-card form {
  display: grid;
  gap: 12px;
}

.pd-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pd-form-card input,
.pd-form-card textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dce5ef;
  border-radius: 7px;
  outline: none;
  padding: 0 14px;
  color: #111827;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.pd-form-card textarea {
  min-height: 84px;
  resize: vertical;
  padding-top: 13px;
}

.pd-form-card button {
  min-height: 50px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.pd-form-card form small {
  color: #617087;
  font-size: 12px;
  line-height: 1.35;
}

.pd-similar {
  margin-top: clamp(28px, 2.2vw, 42px);
  padding: clamp(20px, 1.5vw, 28px);
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
}

.pd-similar__head {
  margin-bottom: clamp(18px, 1.3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pd-similar__head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 1.5vw, 30px);
  font-weight: 900;
}

.pd-similar__head a {
  color: #0065da;
  font-weight: 900;
}

.pd-similar-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1vw, 20px);
}

.pd-similar-card {
  min-width: 0;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  background: #ffffff;
  padding: clamp(14px, 1vw, 18px);
}

.pd-similar-card__image {
  height: clamp(110px, 7vw, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-similar-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pd-similar-card__title {
  min-height: 40px;
  margin: 12px 0 8px;
  color: #1f2937;
  display: block;
  font-size: clamp(14px, .85vw, 16px);
  line-height: 1.25;
  font-weight: 900;
}

.pd-similar-card strong {
  display: block;
  margin-top: 8px;
  color: #111827;
  font-size: clamp(14px, .9vw, 17px);
  font-weight: 900;
}


.pd-title-meta {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}

.pd-title-meta div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: baseline;
}

.pd-title-meta span {
  color: #617087;
  font-size: clamp(14px, .86vw, 16px);
  line-height: 1.35;
  font-weight: 700;
}

.pd-title-meta b {
  color: #1f2937;
  font-size: clamp(15px, .92vw, 17px);
  line-height: 1.35;
  font-weight: 900;
}

@media (max-width: 640px) {
  .pd-title-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* RESPONSIVE PRODUCT DETAIL */

@media (min-width: 1600px) {
  .pd-layout {
    grid-template-columns: minmax(420px, 1.05fr) minmax(440px, .95fr) minmax(330px, .62fr);
  }
}

@media (max-width: 1280px) {
  .pd-layout {
    grid-template-columns: minmax(320px, .9fr) minmax(360px, 1fr);
  }

  .pd-right {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 20px;
  }

  .pd-benefits {
    margin-bottom: 0;
  }

  .pd-similar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }

  .pd-right {
    display: block;
  }

  .pd-benefits {
    margin-bottom: 18px;
  }

  .pd-gallery__main {
    height: clamp(260px, 48vw, 420px);
  }

  .pd-similar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pd-section {
    padding-top: 18px;
  }

  .pd-breadcrumbs {
    font-size: 12px;
  }

  .pd-title-block h1 {
  margin: 0 0 clamp(10px, .75vw, 14px);
  color: #111827;
  font-size: clamp(24px, 1.45vw, 30px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -.25px;
}

  .pd-title-block p {
  max-width: 680px;
  margin: 0;
  color: #617087;
  font-size: clamp(15px, .95vw, 18px);
  line-height: 1.45;
  font-weight: 700;
}

  .pd-buy-card__top {
    grid-template-columns: 1fr;
  }

  .pd-contact-buttons,
  .pd-form-grid,
  .pd-specs__row {
    grid-template-columns: 1fr;
  }

  .pd-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pd-gallery__thumbs button {
    height: 58px;
  }

  .pd-similar-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT DETAIL MOCKUP END */


/* PRODUCT SEO BLOCK START */

.pd-seo-block {
  margin-top: clamp(28px, 2.2vw, 42px);
  padding: clamp(22px, 1.7vw, 34px);
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(0, 101, 218, .055) 0%, rgba(255,255,255,0) 42%),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
  overflow: hidden;
  position: relative;
}

.pd-seo-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 0 10px 10px 0;
  background: #0065da;
}

.pd-seo-block__top {
  margin-bottom: clamp(18px, 1.3vw, 26px);
  padding-left: clamp(0px, .4vw, 8px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.pd-seo-block__label {
  margin-bottom: 8px;
  color: #0065da;
  display: block;
  font-size: clamp(12px, .78vw, 14px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pd-seo-block h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 1.55vw, 31px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.25px;
}


.pd-seo-status {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: clamp(14px, .85vw, 16px);
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.pd-seo-status--stock {
  background: #e8f8ee;
  color: #11833a;
  border: 1px solid #bfe8cc;
}

.pd-seo-status--stock::before {
  content: "●";
  margin-right: 8px;
  font-size: 12px;
}

.pd-seo-status--order {
  background: #fff3df;
  color: #9b6200;
  border: 1px solid #f3d39b;
}

.pd-seo-status--order::before {
  content: "↗";
  margin-right: 8px;
  font-size: 16px;
}

.pd-seo-block__top > a {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  background: #0065da;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: clamp(14px, .85vw, 16px);
  font-weight: 900;
}

.pd-seo-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .34fr);
  gap: clamp(20px, 1.7vw, 34px);
  align-items: start;
}

.pd-seo-block__text {
  padding-left: clamp(0px, .4vw, 8px);
}

.pd-seo-block__text p {
  margin: 0 0 14px;
  color: #445266;
  font-size: clamp(15px, .92vw, 17px);
  line-height: 1.62;
  font-weight: 600;
}

.pd-seo-block__text p:last-child {
  margin-bottom: 0;
}

.pd-seo-block__text strong {
  color: #111827;
  font-weight: 900;
}

.pd-seo-block__side {
  border: 1px solid #e3ebf4;
  border-radius: 12px;
  background: #f8fbff;
  overflow: hidden;
}

.pd-seo-block__side div {
  min-height: 52px;
  padding: 13px 16px;
  border-bottom: 1px solid #e3ebf4;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
}

.pd-seo-block__side div:last-child {
  border-bottom: 0;
}

.pd-seo-block__side span {
  color: #617087;
  font-size: 14px;
  font-weight: 800;
}

.pd-seo-block__side b {
  color: #111827;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

@media (max-width: 900px) {
  .pd-seo-block__top {
    flex-direction: column;
  }

  .pd-seo-block__grid {
    grid-template-columns: 1fr;
  }

  
.pd-seo-status {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: clamp(14px, .85vw, 16px);
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.pd-seo-status--stock {
  background: #e8f8ee;
  color: #11833a;
  border: 1px solid #bfe8cc;
}

.pd-seo-status--stock::before {
  content: "●";
  margin-right: 8px;
  font-size: 12px;
}

.pd-seo-status--order {
  background: #fff3df;
  color: #9b6200;
  border: 1px solid #f3d39b;
}

.pd-seo-status--order::before {
  content: "↗";
  margin-right: 8px;
  font-size: 16px;
}

.pd-seo-block__top > a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pd-seo-block {
    padding: 22px 18px;
  }

  .pd-seo-block__side div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* PRODUCT SEO BLOCK END */



.pd-gallery__thumbs {
  display: none;
}


/* CATALOG INFINITE SCROLL START */

.catalog-autoload {
  min-height: 74px;
  margin-top: 26px;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  background: #f7faff;
  color: #526173;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
}

.catalog-autoload.is-visible {
  display: flex;
}

.catalog-autoload.is-done {
  display: none;
}

.catalog-autoload__loader {
  width: 22px;
  height: 22px;
  border: 3px solid #c7d6ea;
  border-top-color: #0065da;
  border-radius: 50%;
  animation: catalogSpin .75s linear infinite;
}

@keyframes catalogSpin {
  to {
    transform: rotate(360deg);
  }
}

.pagination--fallback {
  display: none;
}

html.no-js .pagination--fallback {
  display: flex;
}

/* CATALOG INFINITE SCROLL END */


/* CATALOG SCROLL TOP START */

.catalog-scroll-top {
  position: fixed;
  right: clamp(18px, 2vw, 34px);
  bottom: clamp(18px, 2vw, 34px);
  z-index: 80;
  width: clamp(46px, 3vw, 58px);
  height: clamp(46px, 3vw, 58px);
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 75, 170, .32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 1.6vw, 32px);
  line-height: 1;
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity .2s ease,
    visibility .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.catalog-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.catalog-scroll-top:hover {
  box-shadow: 0 16px 34px rgba(0, 75, 170, .42);
  transform: translateY(-2px);
}

.catalog-scroll-top:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .catalog-scroll-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 26px;
  }
}

/* CATALOG SCROLL TOP END */


/* CATALOG HERO VISUAL START */

.catalog-hero--visual {
  padding: 0;
  background:
    radial-gradient(circle at 82% 50%, rgba(82, 158, 255, .32) 0%, rgba(82, 158, 255, 0) 34%),
    linear-gradient(90deg, #002c67 0%, #004da9 100%);
  color: #ffffff;
  overflow: hidden;
}

.catalog-hero__inner {
  min-height: clamp(250px, 19vw, 340px);
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(330px, .72fr);
  gap: clamp(30px, 3vw, 64px);
  align-items: center;
}

.catalog-hero__content {
  padding: clamp(34px, 3vw, 58px) 0;
  max-width: 860px;
}

.catalog-hero__breadcrumbs {
  margin: 0 0 clamp(16px, 1.2vw, 24px);
  color: rgba(255,255,255,.86);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: clamp(13px, .82vw, 15px);
  font-weight: 800;
}

.catalog-hero__breadcrumbs a {
  color: #ffffff;
}

.catalog-hero--visual h1 {
  margin: 0 0 clamp(16px, 1.25vw, 22px);
  color: #ffffff;
  font-size: clamp(40px, 3.25vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.9px;
}

.catalog-hero--visual p {
  max-width: 900px;
  margin: 0 0 clamp(24px, 1.8vw, 34px);
  color: rgba(255,255,255,.9);
  font-size: clamp(17px, 1.13vw, 22px);
  line-height: 1.45;
  font-weight: 650;
}

.catalog-hero--visual .catalog-search {
  width: min(760px, 100%);
  max-width: 100%;
  height: clamp(58px, 3.4vw, 66px);
  display: grid;
  grid-template-columns: 1fr clamp(110px, 7vw, 135px);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.catalog-hero--visual .catalog-search input {
  border: 0;
  outline: none;
  padding: 0 clamp(18px, 1.4vw, 28px);
  font-size: clamp(15px, .95vw, 18px);
  color: #111827;
}

.catalog-hero--visual .catalog-search button {
  border: 0;
  background: #0065da;
  color: #ffffff;
  font-size: clamp(15px, .95vw, 18px);
  font-weight: 900;
}

.catalog-hero__visual {
  position: relative;
  min-height: 230px;
  display: grid;
  gap: 14px;
  align-content: center;
}

.catalog-hero__glow {
  position: absolute;
  right: -80px;
  top: 50%;
  width: clamp(260px, 20vw, 390px);
  height: clamp(260px, 20vw, 390px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.20) 0%, rgba(255,255,255,.08) 38%, rgba(255,255,255,0) 72%);
  transform: translateY(-50%);
  pointer-events: none;
}

.catalog-hero__card {
  position: relative;
  z-index: 2;
  min-height: clamp(70px, 4.5vw, 86px);
  padding: clamp(14px, 1vw, 18px) clamp(16px, 1.2vw, 22px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: rgba(255,255,255,.095);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: clamp(42px, 2.8vw, 52px) 1fr;
  gap: clamp(13px, 1vw, 18px);
  align-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

.catalog-hero__card:nth-child(3) {
  transform: translateX(28px);
}

.catalog-hero__icon {
  width: clamp(42px, 2.8vw, 52px);
  height: clamp(42px, 2.8vw, 52px);
  border-radius: 13px;
  background: rgba(255,255,255,.17);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: clamp(22px, 1.5vw, 28px);
  font-weight: 900;
}

.catalog-hero__card strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.2;
  font-weight: 900;
}

.catalog-hero__card span {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: clamp(13px, .82vw, 15px);
  line-height: 1.28;
  font-weight: 700;
}

@media (max-width: 980px) {
  .catalog-hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .catalog-hero__visual {
    min-height: auto;
    padding-bottom: 28px;
  }

  .catalog-hero__card:nth-child(3) {
    transform: none;
  }

  .catalog-hero__glow {
    display: none;
  }
}

@media (max-width: 640px) {
  .catalog-hero__inner {
    min-height: auto;
  }

  .catalog-hero--visual h1 {
    font-size: 34px;
  }

  .catalog-hero--visual p {
    font-size: 16px;
  }

  .catalog-hero--visual .catalog-search {
    grid-template-columns: 1fr;
    height: auto;
  }

  .catalog-hero--visual .catalog-search input,
  .catalog-hero--visual .catalog-search button {
    height: 52px;
  }

  .catalog-hero__card {
    grid-template-columns: 40px 1fr;
    min-height: 66px;
    padding: 12px 14px;
  }

  .catalog-hero__icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }
}

/* CATALOG HERO VISUAL END */


/* CATALOG HERO CARDS ANIMATION START */

.catalog-hero__card {
  text-decoration: none;
  cursor: default;
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.catalog-hero__card--link {
  cursor: pointer;
}

.catalog-hero__card:hover {
  background: rgba(255,255,255,.145);
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .20);
  transform: translateY(-4px) scale(1.015);
}

.catalog-hero__card:nth-child(3):hover {
  transform: translateX(28px) translateY(-4px) scale(1.015);
}

.catalog-hero__card:hover .catalog-hero__icon {
  background: rgba(255,255,255,.26);
  transform: scale(1.08);
}

.catalog-hero__icon {
  transition:
    transform .22s ease,
    background .22s ease;
}

.catalog-hero__card--link:hover .catalog-hero__icon {
  animation: priceDownloadPulse .78s ease-in-out infinite alternate;
}

@keyframes priceDownloadPulse {
  from {
    transform: translateY(0) scale(1.05);
  }

  to {
    transform: translateY(3px) scale(1.12);
  }
}

@media (max-width: 980px) {
  .catalog-hero__card:nth-child(3):hover {
    transform: translateY(-4px) scale(1.015);
  }
}

/* CATALOG HERO CARDS ANIMATION END */


/* INFO PAGES START */

.info-page {
  background: #f7faff;
}

.info-hero {
  background:
    radial-gradient(circle at 84% 44%, rgba(82, 158, 255, .28) 0%, rgba(82, 158, 255, 0) 34%),
    linear-gradient(90deg, #002c67 0%, #004da9 100%);
  color: #ffffff;
  overflow: hidden;
}

.info-hero__inner {
  min-height: clamp(230px, 18vw, 320px);
  padding: clamp(34px, 3vw, 58px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
  gap: clamp(24px, 2.4vw, 46px);
  align-items: center;
}

.info-breadcrumbs {
  margin-bottom: 18px;
  color: rgba(255,255,255,.84);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
}

.info-breadcrumbs a {
  color: #ffffff;
}

.info-hero h1 {
  max-width: 940px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 3vw, 60px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.8px;
}

.info-hero p {
  max-width: 860px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(17px, 1.12vw, 22px);
  line-height: 1.48;
  font-weight: 650;
}

.info-hero__badge {
  min-height: clamp(150px, 12vw, 220px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.095);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 36px rgba(0,0,0,.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-hero__badge strong {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.info-hero__badge span {
  margin-top: 10px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.info-content {
  padding: clamp(32px, 2.4vw, 54px) 0 clamp(46px, 3.4vw, 76px);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .32fr);
  gap: clamp(22px, 2vw, 38px);
  align-items: start;
}

.info-main {
  display: grid;
  gap: clamp(18px, 1.4vw, 26px);
}

.info-card,
.info-seo-text,
.info-contact-card,
.info-side-card {
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
}

.info-card,
.info-seo-text {
  padding: clamp(22px, 1.7vw, 34px);
}

.info-card h2,
.info-seo-text h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(24px, 1.55vw, 32px);
  line-height: 1.15;
  font-weight: 900;
}

.info-card p,
.info-seo-text p {
  margin: 0 0 14px;
  color: #445266;
  font-size: clamp(15px, .92vw, 17px);
  line-height: 1.62;
  font-weight: 600;
}

.info-card p:last-child,
.info-seo-text p:last-child {
  margin-bottom: 0;
}

.info-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-feature-grid div {
  padding: 18px;
  border: 1px solid #e3ebf4;
  border-radius: 12px;
  background: #f8fbff;
}

.info-feature-grid b,
.info-feature-grid span {
  display: block;
}

.info-feature-grid b {
  margin-bottom: 7px;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.info-feature-grid span {
  color: #617087;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.info-steps {
  display: grid;
  gap: 12px;
}

.info-steps div {
  padding: 16px;
  border: 1px solid #e3ebf4;
  border-radius: 12px;
  background: #f8fbff;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.info-steps b {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #0065da;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}

.info-steps span {
  color: #445266;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.info-side {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
}

.info-side-card {
  padding: 22px;
}

.info-side-card h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 21px;
  font-weight: 900;
}

.info-side-card a,
.info-side-card span {
  display: block;
}

.info-side-card a {
  margin-top: 10px;
  color: #0065da;
  font-weight: 900;
}

.info-side-card span,
.info-side-card p {
  margin: 0 0 8px;
  color: #617087;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.info-side-card--accent {
  background:
    linear-gradient(135deg, rgba(0,101,218,.08) 0%, rgba(255,255,255,0) 58%),
    #ffffff;
}

.info-contact-card {
  padding: clamp(22px, 1.7vw, 34px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.info-contact-card__main span {
  display: block;
  margin-bottom: 8px;
  color: #617087;
  font-size: 14px;
  font-weight: 800;
}

.info-contact-card__main a {
  color: #111827;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1;
  font-weight: 900;
}

.info-contact-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-contact-card__links a {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  background: #0065da;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.info-schedule {
  display: grid;
  gap: 12px;
}

.info-schedule div {
  padding: 16px;
  border: 1px solid #e3ebf4;
  border-radius: 12px;
  background: #f8fbff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.info-schedule b {
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.info-schedule span {
  color: #0065da;
  font-size: 17px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .info-hero__inner,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .info-hero__badge {
    min-height: 130px;
  }

  .info-side {
    position: static;
  }

  .info-contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .info-hero h1 {
    font-size: 32px;
  }

  .info-hero p {
    font-size: 16px;
  }

  .info-feature-grid {
    grid-template-columns: 1fr;
  }

  .info-schedule div {
    align-items: flex-start;
    flex-direction: column;
  }

  .info-contact-card__main a {
    font-size: 26px;
  }
}

/* INFO PAGES END */


/* CONTACT ICON LINKS START */

.info-contact-card__links--icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 12px;
  align-items: center;
}

.info-contact-card__links--icons a {
  min-height: 78px;
  padding: 0;
  border: 1px solid #d5dfec;
  border-radius: 9px;
  background: #ffffff;
  color: #0065da;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.info-contact-card__links--icons a:hover {
  transform: translateY(-2px);
  border-color: #0065da;
  box-shadow: 0 12px 26px rgba(0, 75, 170, .13);
}

.info-contact-card__links--icons img {
  width: 150px;
  height: 71px;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .info-contact-card__links--icons {
    grid-template-columns: 1fr;
  }
}

/* CONTACT ICON LINKS END */


/* CATEGORY SEO BLOCKS START */

.category-seo-section {
  padding: clamp(34px, 2.7vw, 58px) 0 clamp(46px, 3.2vw, 72px);
  background: #f7faff;
}

.category-seo-card {
  border: 1px solid #dce5ef;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(0,101,218,.055) 0%, rgba(255,255,255,0) 44%),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
  padding: clamp(22px, 1.8vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .34fr);
  gap: clamp(24px, 2vw, 42px);
  position: relative;
  overflow: hidden;
}

.category-seo-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 10px 10px 0;
  background: #0065da;
}

.category-seo-card__content {
  padding-left: clamp(0px, .5vw, 10px);
}

.category-seo-card__label {
  display: block;
  margin-bottom: 10px;
  color: #0065da;
  font-size: clamp(12px, .78vw, 14px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.category-seo-card h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -.35px;
}

.category-seo-card p {
  margin: 0 0 14px;
  color: #445266;
  font-size: clamp(15px, .94vw, 17px);
  line-height: 1.64;
  font-weight: 600;
}

.category-seo-card p:last-child {
  margin-bottom: 0;
}

.category-seo-card__lead {
  color: #1f2937 !important;
  font-size: clamp(16px, 1vw, 18px) !important;
  font-weight: 800 !important;
}

.category-seo-card__side {
  border: 1px solid #e3ebf4;
  border-radius: 14px;
  background: #f8fbff;
  padding: clamp(18px, 1.4vw, 24px);
}

.category-seo-card__side h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(19px, 1.18vw, 23px);
  line-height: 1.2;
  font-weight: 900;
}

.category-seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.category-seo-tags a {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #d5dfec;
  border-radius: 999px;
  background: #ffffff;
  color: #0065da;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.category-seo-tags a:hover {
  transform: translateY(-2px);
  border-color: #0065da;
  box-shadow: 0 8px 18px rgba(0, 75, 170, .12);
}

.category-faq {
  margin-top: clamp(22px, 1.8vw, 34px);
  border: 1px solid #dce5ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
  padding: clamp(22px, 1.8vw, 36px);
}

.category-faq > h2 {
  margin: 0 0 clamp(18px, 1.4vw, 26px);
  color: #111827;
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 1.15;
  font-weight: 900;
}

.category-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.1vw, 20px);
}

.category-faq article {
  padding: clamp(17px, 1.3vw, 22px);
  border: 1px solid #e3ebf4;
  border-radius: 13px;
  background: #f8fbff;
}

.category-faq h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.25;
  font-weight: 900;
}

.category-faq p {
  margin: 0;
  color: #526173;
  font-size: clamp(14px, .88vw, 16px);
  line-height: 1.5;
  font-weight: 650;
}

@media (max-width: 980px) {
  .category-seo-card {
    grid-template-columns: 1fr;
  }

  .category-faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .category-seo-card,
  .category-faq {
    padding: 20px 18px;
  }
}

/* CATEGORY SEO BLOCKS END */


/* CATALOG LOAD MORE START */

.catalog-autoload {
  display: none !important;
}

.catalog-load-more {
  width: 100%;
  min-height: 82px;
  margin-top: 28px;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(0,101,218,.07) 0%, rgba(255,255,255,0) 48%),
    #ffffff;
  color: #111827;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 16px 22px;
  cursor: pointer;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.catalog-load-more:hover {
  transform: translateY(-3px);
  border-color: #0065da;
  box-shadow: 0 16px 36px rgba(0, 75, 170, .14);
}

.catalog-load-more:active {
  transform: translateY(0);
}

.catalog-load-more__icon {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.catalog-load-more:hover .catalog-load-more__icon {
  transform: translateY(2px) scale(1.05);
  box-shadow: 0 10px 22px rgba(0, 75, 170, .26);
}

.catalog-load-more strong {
  display: block;
  color: #111827;
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.2;
  font-weight: 900;
}

.catalog-load-more small {
  display: block;
  margin-top: 4px;
  color: #617087;
  font-size: clamp(13px, .82vw, 15px);
  line-height: 1.25;
  font-weight: 700;
}

.catalog-load-more.is-loading {
  pointer-events: none;
  opacity: .82;
}

.catalog-load-more.is-loading .catalog-load-more__icon {
  animation: catalogLoadPulse .72s ease-in-out infinite alternate;
}

.catalog-load-more.is-error {
  border-color: #f3d39b;
  background: #fff8ed;
}

.catalog-load-more.is-done {
  border-color: #bfe8cc;
  background: #f0fbf4;
}

@keyframes catalogLoadPulse {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(4px) scale(1.08);
  }
}

@media (max-width: 640px) {
  .catalog-load-more {
    grid-template-columns: 46px 1fr;
    column-gap: 13px;
    min-height: 74px;
    padding: 14px 16px;
  }

  .catalog-load-more__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 23px;
  }
}

/* CATALOG LOAD MORE END */


/* CATALOG FILTERS START */

.catalog-filter-panel {
  margin-bottom: 22px;
  padding: clamp(16px, 1.25vw, 22px);
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(0,101,218,.045) 0%, rgba(255,255,255,0) 48%),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 1.4vw, 26px);
}

.catalog-filter-panel__left,
.catalog-filter-panel__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-filter-check {
  position: relative;
  cursor: pointer;
}

.catalog-filter-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.catalog-filter-check span {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid #d5dfec;
  border-radius: 999px;
  background: #ffffff;
  color: #445266;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.catalog-filter-check:hover span {
  transform: translateY(-2px);
  border-color: #0065da;
  box-shadow: 0 8px 18px rgba(0, 75, 170, .10);
}

.catalog-filter-check input:checked + span {
  border-color: #0065da;
  background: #0065da;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 75, 170, .18);
}

.catalog-filter-panel__right label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-filter-panel__right label > span {
  color: #617087;
  font-size: 14px;
  font-weight: 800;
}

.catalog-filter-panel select {
  height: 40px;
  min-width: 190px;
  border: 1px solid #d5dfec;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  outline: none;
  padding: 0 38px 0 12px;
  font-size: 14px;
  font-weight: 800;
}

.catalog-filter-panel button,
.catalog-filter-panel__right > a {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.catalog-filter-panel button {
  border: 0;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
}

.catalog-filter-panel__right > a {
  border: 1px solid #d5dfec;
  background: #ffffff;
  color: #0065da;
}

@media (max-width: 980px) {
  .catalog-filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-filter-panel__left,
  .catalog-filter-panel__right {
    width: 100%;
  }

  .catalog-filter-panel__right label {
    flex: 1 1 240px;
  }

  .catalog-filter-panel select {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .catalog-filter-check span,
  .catalog-filter-panel button,
  .catalog-filter-panel__right > a {
    width: 100%;
  }

  .catalog-filter-check {
    flex: 1 1 100%;
  }

  .catalog-filter-panel__right label {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-filter-panel__right {
    align-items: stretch;
    flex-direction: column;
  }
}

/* CATALOG FILTERS END */


/* PRODUCT CONTACT BUTTONS ANIMATION START */

.pd-contact-buttons a {
  position: relative;
  overflow: hidden;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.pd-contact-buttons a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,101,218,0) 0%, rgba(0,101,218,.10) 48%, rgba(0,101,218,0) 100%);
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity .2s ease,
    transform .42s ease;
  pointer-events: none;
}

.pd-contact-buttons a:hover {
  transform: translateY(-3px);
  border-color: #0065da;
  box-shadow: 0 14px 28px rgba(0, 75, 170, .16);
  background: #ffffff;
}

.pd-contact-buttons a:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.pd-contact-buttons a:active {
  transform: translateY(-1px);
}

.pd-contact-buttons a img {
  position: relative;
  z-index: 1;
  transition:
    transform .2s ease,
    filter .2s ease;
}

.pd-contact-buttons a:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.pd-contact-buttons a:nth-child(1):hover img {
  animation: contactPhonePulse .75s ease-in-out infinite alternate;
}

.pd-contact-buttons a:nth-child(2):hover img,
.pd-contact-buttons a:nth-child(3):hover img {
  animation: contactIconFloat .75s ease-in-out infinite alternate;
}

@keyframes contactPhonePulse {
  from {
    transform: scale(1.035) rotate(0deg);
  }

  to {
    transform: scale(1.065) rotate(-1.2deg);
  }
}

@keyframes contactIconFloat {
  from {
    transform: scale(1.035) translateY(0);
  }

  to {
    transform: scale(1.065) translateY(-2px);
  }
}

/* PRODUCT CONTACT BUTTONS ANIMATION END */


/* REQUEST PAGE START */

.request-page {
  background: #f7faff;
}

.request-section {
  padding: clamp(34px, 2.5vw, 56px) 0 clamp(48px, 3.4vw, 76px);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .32fr);
  gap: clamp(22px, 2vw, 38px);
  align-items: start;
}

.request-main {
  min-width: 0;
}

.request-form,
.request-success,
.request-error {
  border: 1px solid #dce5ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
}

.request-form {
  padding: clamp(22px, 1.8vw, 36px);
  display: grid;
  gap: 16px;
}

.request-form h2,
.request-success h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 1.15;
  font-weight: 900;
}

.request-product {
  padding: 18px;
  border: 1px solid #e3ebf4;
  border-radius: 13px;
  background: #f8fbff;
}

.request-product span,
.request-product strong,
.request-product small {
  display: block;
}

.request-product span {
  margin-bottom: 7px;
  color: #617087;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.request-product strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.request-product small {
  margin-top: 6px;
  color: #617087;
  font-size: 14px;
  font-weight: 800;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label > span {
  color: #445266;
  font-size: 14px;
  font-weight: 900;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid #d5dfec;
  border-radius: 9px;
  background: #ffffff;
  color: #111827;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 700;
}

.request-form input {
  height: 52px;
}

.request-form textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: #0065da;
  box-shadow: 0 0 0 3px rgba(0, 101, 218, .10);
}

.request-form button {
  min-height: 56px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.request-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 75, 170, .18);
}

.request-side {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
}

.request-success {
  padding: clamp(24px, 2vw, 38px);
}

.request-success p {
  margin: 0 0 18px;
  color: #526173;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.request-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-success__actions a {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: #0065da;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.request-error {
  margin-bottom: 16px;
  padding: 16px 18px;
  border-color: #f3c7c7;
  background: #fff3f3;
  color: #b42318;
  font-weight: 900;
}

.category-faq__grid--single {
  grid-template-columns: 1fr;
}

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

  .request-side {
    position: static;
  }
}

/* REQUEST PAGE END */


/* 404 PAGE START */

.not-found-page {
  background: #f7faff;
}

.not-found-hero {
  background:
    radial-gradient(circle at 82% 46%, rgba(82, 158, 255, .30) 0%, rgba(82, 158, 255, 0) 34%),
    linear-gradient(90deg, #002c67 0%, #004da9 100%);
  color: #ffffff;
  overflow: hidden;
}

.not-found-hero__inner {
  min-height: clamp(470px, 34vw, 680px);
  padding: clamp(40px, 4vw, 78px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
  gap: clamp(26px, 3vw, 58px);
  align-items: center;
}

.not-found-code {
  display: inline-flex;
  margin-bottom: 16px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #ffffff;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.not-found-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 4.4vw, 86px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.not-found-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1.5;
  font-weight: 650;
}

.not-found-search {
  max-width: 760px;
  margin-top: clamp(22px, 2vw, 34px);
  padding: 8px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 13px;
  background: rgba(255,255,255,.13);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.not-found-search input {
  min-width: 0;
  height: 54px;
  border: 0;
  border-radius: 9px;
  background: #ffffff;
  color: #111827;
  outline: none;
  padding: 0 17px;
  font-size: 16px;
  font-weight: 800;
}

.not-found-search button {
  min-width: 132px;
  height: 54px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(180deg, #ffffff 0%, #eaf3ff 100%);
  color: #004da9;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.not-found-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.not-found-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.not-found-actions a {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease;
}

.not-found-actions a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.18);
}

.not-found-card {
  min-height: clamp(300px, 22vw, 420px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  padding: clamp(24px, 2vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found-card strong {
  color: #ffffff;
  font-size: clamp(42px, 3.2vw, 66px);
  line-height: 1;
  font-weight: 900;
}

.not-found-card span {
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.not-found-card__items {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.not-found-card__items a {
  min-height: 48px;
  padding: 0 15px;
  border-radius: 9px;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease;
}

.not-found-card__items a:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,.20);
}

.not-found-help {
  padding: clamp(34px, 2.8vw, 60px) 0 clamp(48px, 3.4vw, 76px);
}

.not-found-help__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 24px);
}

.not-found-help article {
  border: 1px solid #dce5ef;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
  padding: clamp(20px, 1.6vw, 30px);
}

.not-found-help h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(21px, 1.35vw, 28px);
  line-height: 1.18;
  font-weight: 900;
}

.not-found-help p {
  margin: 0;
  color: #526173;
  font-size: clamp(15px, .9vw, 17px);
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 980px) {
  .not-found-hero__inner {
    grid-template-columns: 1fr;
  }

  .not-found-card {
    min-height: 220px;
  }

  .not-found-help__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .not-found-search {
    grid-template-columns: 1fr;
  }

  .not-found-search button {
    width: 100%;
  }

  .not-found-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* 404 PAGE END */


/* KNORR WORDMARK START */
.knorr-wordmark{
  display:inline-block;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  line-height: .88;
  color: #0b4ea2;
  white-space: nowrap;
  transform: scaleY(1.02);
}

.knorr-wordmark--hero{
  font-size: clamp(38px, 5vw, 96px);
}

.knorr-wordmark--title{
  font-size: clamp(28px, 3.1vw, 64px);
}

.knorr-wordmark--medium{
  font-size: clamp(22px, 2.2vw, 42px);
}

.knorr-wordmark--small{
  font-size: clamp(16px, 1.4vw, 24px);
}

.knorr-wordmark--white{
  color: #ffffff;
}

.knorr-wordmark--dark{
  color: #111827;
}

.knorr-wordmark--tight{
  letter-spacing: -0.07em;
}
/* KNORR WORDMARK END */


/* REQUEST ANTISPAM START */

.request-hp {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* REQUEST ANTISPAM END */


/* REQUEST SOURCE NOTE START */

.request-source-note {
  margin: -4px 0 4px;
  padding: 10px 12px;
  border: 1px solid #dce5ef;
  border-radius: 9px;
  background: #f8fbff;
  color: #617087;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

/* REQUEST SOURCE NOTE END */


/* REQUEST THANKS PAGE START */

.thanks-page {
  background: #f7faff;
}

.thanks-hero {
  min-height: clamp(520px, 38vw, 720px);
  background:
    radial-gradient(circle at 82% 42%, rgba(82, 158, 255, .26) 0%, rgba(82, 158, 255, 0) 34%),
    linear-gradient(90deg, #002c67 0%, #004da9 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
}

.thanks-hero__inner {
  width: 100%;
  padding: clamp(42px, 4vw, 76px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, .36fr);
  gap: clamp(22px, 3vw, 52px);
  align-items: stretch;
}

.thanks-card,
.thanks-side {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.11);
  box-shadow: 0 18px 52px rgba(0,0,0,.18);
  backdrop-filter: blur(9px);
}

.thanks-card {
  padding: clamp(28px, 3vw, 54px);
}

.thanks-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #20b15a;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(32,177,90,.28);
}

.thanks-card h1 {
  max-width: 820px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(38px, 4.1vw, 78px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.thanks-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1.5;
  font-weight: 650;
}

.thanks-article {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(255,255,255,.10);
  display: inline-grid;
  gap: 4px;
}

.thanks-article span {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.thanks-article strong {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.thanks-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thanks-actions a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease;
}

.thanks-actions a:first-child {
  background: #ffffff;
  color: #004da9;
}

.thanks-actions a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.20);
}

.thanks-actions a:first-child:hover {
  background: #eaf3ff;
}

.thanks-side {
  padding: clamp(22px, 2vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thanks-side h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.15;
  font-weight: 900;
}

.thanks-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.thanks-step:first-of-type {
  border-top: 0;
}

.thanks-step b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
}

.thanks-step span {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 750;
}

.thanks-contact {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
}

.thanks-contact span,
.thanks-contact a {
  display: block;
}

.thanks-contact span {
  margin-bottom: 7px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.thanks-contact a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

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

@media (max-width: 640px) {
  .thanks-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* REQUEST THANKS PAGE END */


/* LEADS PAGE START */

.leads-page {
  background: #f7faff;
}

.leads-hero {
  background:
    radial-gradient(circle at 82% 46%, rgba(82, 158, 255, .26) 0%, rgba(82, 158, 255, 0) 34%),
    linear-gradient(90deg, #002c67 0%, #004da9 100%);
  color: #ffffff;
}

.leads-hero__inner {
  padding: clamp(34px, 3.2vw, 62px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.leads-hero h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(36px, 3.8vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.leads-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.5;
  font-weight: 700;
}

.leads-hero__stats {
  min-width: 180px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.11);
  box-shadow: 0 14px 36px rgba(0,0,0,.16);
  text-align: center;
}

.leads-hero__stats strong,
.leads-hero__stats span {
  display: block;
}

.leads-hero__stats strong {
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.leads-hero__stats span {
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.leads-section {
  padding: clamp(28px, 2.6vw, 54px) 0 clamp(52px, 4vw, 82px);
}

.leads-toolbar {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15,23,42,.035);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.leads-toolbar__left,
.leads-toolbar__right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leads-btn,
.leads-toolbar__right a {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: #0065da;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.leads-btn--dark,
.leads-toolbar__right a {
  background: #111827;
}

.leads-list {
  display: grid;
  gap: 16px;
}

.lead-card,
.leads-empty {
  border: 1px solid #dce5ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15,23,42,.035);
}

.lead-card {
  padding: clamp(18px, 1.6vw, 28px);
}

.lead-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.lead-card__date {
  display: block;
  margin-bottom: 7px;
  color: #617087;
  font-size: 13px;
  font-weight: 900;
}

.lead-card h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(20px, 1.4vw, 28px);
  line-height: 1.2;
  font-weight: 900;
}

.lead-card__article {
  min-width: 170px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #e3ebf4;
}

.lead-card__article span,
.lead-card__article strong {
  display: block;
}

.lead-card__article span,
.lead-card__grid span,
.lead-card__comment span,
.lead-card__source span {
  margin-bottom: 5px;
  color: #617087;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.lead-card__article strong {
  color: #004da9;
  font-size: 20px;
  font-weight: 900;
}

.lead-card__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.lead-card__grid > div {
  padding: 12px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #e3ebf4;
}

.lead-card__grid strong,
.lead-card__grid a {
  color: #111827;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  word-break: break-word;
}

.lead-card__grid a {
  color: #004da9;
}

.lead-card__comment,
.lead-card__source {
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #e3ebf4;
}

.lead-card__comment p,
.lead-card__source p {
  margin: 0;
  color: #263244;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  word-break: break-word;
}

.lead-card__bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5edf5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-card__bottom a {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  background: #0065da;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
}

.lead-card__bottom span {
  color: #617087;
  font-size: 13px;
  font-weight: 800;
}

.leads-empty {
  padding: clamp(24px, 2vw, 38px);
}

.leads-empty h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 26px;
  font-weight: 900;
}

.leads-empty p {
  margin: 0;
  color: #617087;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .leads-hero__inner,
  .lead-card__top {
    grid-template-columns: 1fr;
  }

  .leads-hero__stats {
    width: 100%;
  }

  .lead-card__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lead-card__grid {
    grid-template-columns: 1fr;
  }

  .leads-toolbar,
  .leads-toolbar__left,
  .leads-toolbar__right,
  .leads-btn,
  .leads-toolbar__right a {
    width: 100%;
  }

  .leads-btn,
  .leads-toolbar__right a {
    justify-content: center;
  }
}

/* LEADS PAGE END */


/* LEADS COMPACT STATUS START */

.leads-page--compact .leads-hero__inner {
  padding: 24px 0;
}

.leads-page--compact .leads-hero h1 {
  font-size: clamp(28px, 2.6vw, 46px);
  margin-bottom: 6px;
}

.leads-page--compact .leads-hero p {
  font-size: 14px;
}

.leads-page--compact .leads-hero__stats {
  min-width: 120px;
  padding: 13px 16px;
  border-radius: 14px;
}

.leads-page--compact .leads-hero__stats strong {
  font-size: 30px;
}

.leads-page--compact .leads-section {
  padding: 20px 0 48px;
}

.leads-filters {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #dce5ef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15,23,42,.035);
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px;
}

.leads-filters label {
  display: grid;
  gap: 4px;
}

.leads-filters label span {
  color: #617087;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.leads-filters select,
.leads-filters input,
.leads-filters button,
.leads-filters .leads-btn {
  height: 36px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.leads-filters select,
.leads-filters input {
  border: 1px solid #d5dfec;
  background: #fff;
  color: #111827;
  padding: 0 10px;
  outline: none;
}

.leads-filters button {
  border: 0;
  background: #0065da;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
}

.leads-filters .leads-btn {
  min-height: 36px;
  padding: 0 12px;
}

.leads-btn--ghost {
  background: #eef4fb !important;
  color: #263244 !important;
}

.leads-summary {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.leads-summary span {
  padding: 7px 10px;
  border: 1px solid #dce5ef;
  border-radius: 999px;
  background: #ffffff;
  color: #617087;
  font-size: 12px;
  font-weight: 850;
}

.leads-summary b {
  color: #111827;
}

.leads-page--compact .leads-list {
  gap: 10px;
}

.leads-page--compact .lead-card {
  padding: 12px;
  border-radius: 12px;
}

.leads-page--compact .lead-card__top {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 12px;
  margin-bottom: 10px;
}

.lead-card__meta {
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.leads-page--compact .lead-card__date {
  margin: 0;
  font-size: 12px;
}

.leads-page--compact .lead-card h2 {
  font-size: 16px;
  line-height: 1.22;
}

.lead-card__line {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #617087;
  font-size: 13px;
  font-weight: 800;
}

.lead-card__line b {
  color: #004da9;
}

.lead-card__line strong {
  color: #111827;
}

.lead-status {
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.lead-status--new {
  background: #e9f3ff;
  color: #0057b8;
}

.lead-status--work {
  background: #fff3df;
  color: #9b6200;
}

.lead-status--done {
  background: #e8f8ee;
  color: #11833a;
}

.lead-status--reject {
  background: #ffe9e9;
  color: #b42318;
}

.lead-status--spam {
  background: #f1f3f6;
  color: #4b5563;
}

.lead-card--status-new {
  border-left: 4px solid #0065da;
}

.lead-card--status-work {
  border-left: 4px solid #f59e0b;
}

.lead-card--status-done {
  border-left: 4px solid #22c55e;
  opacity: .76;
}

.lead-card--status-reject {
  border-left: 4px solid #ef4444;
  opacity: .82;
}

.lead-card--status-spam {
  border-left: 4px solid #94a3b8;
  opacity: .65;
}

.lead-status-form {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 44px;
  gap: 6px;
  align-items: center;
}

.lead-status-form select,
.lead-status-form input,
.lead-status-form button {
  height: 34px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.lead-status-form select,
.lead-status-form input {
  border: 1px solid #d5dfec;
  background: #ffffff;
  color: #111827;
  padding: 0 9px;
  outline: none;
}

.lead-status-form button {
  border: 0;
  background: #111827;
  color: #ffffff;
  cursor: pointer;
}

.leads-page--compact .lead-card__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 8px;
}

.leads-page--compact .lead-card__grid > div {
  padding: 8px;
  border-radius: 9px;
}

.leads-page--compact .lead-card__grid span,
.leads-page--compact .lead-card__comment span,
.leads-page--compact .lead-card__source span {
  margin-bottom: 3px;
  font-size: 10px;
}

.leads-page--compact .lead-card__grid strong,
.leads-page--compact .lead-card__grid a {
  font-size: 13px;
}

.leads-page--compact .lead-card__comment,
.leads-page--compact .lead-card__source {
  margin-top: 8px;
  padding: 9px;
  border-radius: 9px;
}

.leads-page--compact .lead-card__comment p,
.leads-page--compact .lead-card__source p {
  font-size: 13px;
  line-height: 1.35;
}

.leads-page--compact .lead-card__bottom {
  margin-top: 8px;
  padding-top: 8px;
}

.leads-page--compact .lead-card__bottom a {
  min-height: 32px;
  padding: 0 11px;
  font-size: 12px;
}

.leads-page--compact .lead-card__bottom span {
  font-size: 12px;
}

@media (max-width: 980px) {
  .leads-page--compact .lead-card__top {
    grid-template-columns: 1fr;
  }

  .lead-status-form {
    grid-template-columns: 1fr;
  }

  .leads-page--compact .lead-card__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .leads-filters,
  .leads-filters label,
  .leads-filters select,
  .leads-filters button,
  .leads-filters .leads-btn {
    width: 100%;
  }

  .leads-page--compact .lead-card__grid {
    grid-template-columns: 1fr;
  }
}

/* LEADS COMPACT STATUS END */


/* LEADS IP GEO START */

.lead-geo {
  display: block;
  margin-top: 4px;
  color: #617087;
  font-size: 11px;
  line-height: 1.28;
  font-weight: 750;
}

/* LEADS IP GEO END */


/* PRODUCT TRUST START */

.product-trust {
  margin: clamp(24px, 2vw, 38px) 0;
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 101, 218, .10) 0%, rgba(0, 101, 218, 0) 34%),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
  padding: clamp(20px, 2vw, 34px);
}

.product-trust__head {
  margin-bottom: clamp(16px, 1.6vw, 26px);
}

.product-trust__head span {
  display: inline-flex;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e9f3ff;
  color: #0057b8;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.product-trust__head h2 {
  margin: 10px 0 0;
  color: #111827;
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.02em;
}

.product-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
}

.product-trust__grid article {
  min-height: 178px;
  padding: clamp(16px, 1.3vw, 22px);
  border: 1px solid #e3ebf4;
  border-radius: 14px;
  background: #f8fbff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-trust__grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 101, 218, .28);
  box-shadow: 0 14px 28px rgba(0, 75, 170, .08);
}

.product-trust__grid b {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.product-trust__grid strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: clamp(15px, .95vw, 18px);
  line-height: 1.22;
  font-weight: 900;
}

.product-trust__grid p {
  margin: 0;
  color: #526173;
  font-size: clamp(13px, .82vw, 15px);
  line-height: 1.45;
  font-weight: 650;
}

@media (max-width: 1100px) {
  .product-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .product-trust {
    border-radius: 15px;
    padding: 18px;
  }

  .product-trust__grid {
    grid-template-columns: 1fr;
  }

  .product-trust__grid article {
    min-height: auto;
  }
}

/* PRODUCT TRUST END */


/* LEADS SEARCH UX START */

.leads-hero__stats--multi {
  min-width: 310px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.leads-hero__stats--multi div {
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
}

.leads-hero__stats--multi strong {
  font-size: 28px;
}

.leads-hero__stats--multi span {
  font-size: 11px;
}

.leads-quick {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.leads-quick a {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #dce5ef;
  border-radius: 999px;
  background: #ffffff;
  color: #263244;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15,23,42,.03);
}

.leads-quick a:hover {
  border-color: rgba(0,101,218,.28);
  color: #004da9;
}

.leads-filters--search {
  align-items: end;
}

.leads-search-field {
  min-width: min(420px, 100%);
  flex: 1 1 360px;
}

.leads-filters--search input[type="search"] {
  width: 100%;
  min-width: 0;
  height: 36px;
  border: 1px solid #d5dfec;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  padding: 0 11px;
  outline: none;
  font-size: 13px;
  font-weight: 800;
}

.leads-filters--search input[type="search"]:focus {
  border-color: #0065da;
  box-shadow: 0 0 0 3px rgba(0,101,218,.08);
}

.leads-search-note {
  margin: 0 0 10px;
  padding: 9px 11px;
  border: 1px solid #dce5ef;
  border-radius: 10px;
  background: #ffffff;
  color: #617087;
  font-size: 13px;
  font-weight: 800;
}

.leads-search-note strong {
  color: #111827;
}

@media (max-width: 980px) {
  .leads-hero__stats--multi {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .leads-hero__stats--multi {
    grid-template-columns: 1fr;
  }

  .leads-quick a,
  .leads-search-field {
    width: 100%;
  }
}

/* LEADS SEARCH UX END */


/* LEADS DIRECT REPORT START */

.leads-quick__direct {
  background: linear-gradient(180deg, #fff7d6 0%, #ffe58f 100%) !important;
  border-color: #ffd24d !important;
  color: #654100 !important;
}

.leads-quick__direct:hover {
  color: #3d2800 !important;
  border-color: #f4b400 !important;
}

.leads-hero__stats--multi {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .leads-hero__stats--multi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .leads-hero__stats--multi {
    grid-template-columns: 1fr;
  }
}

/* LEADS DIRECT REPORT END */


/* LEADS SOURCE RAW START */

.lead-source-raw {
  margin-top: 8px;
}

.lead-source-raw summary {
  cursor: pointer;
  color: #617087;
  font-size: 12px;
  font-weight: 900;
}

.lead-source-raw code {
  display: block;
  margin-top: 6px;
  padding: 8px;
  border-radius: 8px;
  background: #eef4fb;
  color: #263244;
  font-size: 12px;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
}

/* LEADS SOURCE RAW END */


/* PODBOR Knorr Bremse PAGE START */

.podbor-page {
  background: #f4f8fd;
}

.podbor-hero {
  padding: clamp(34px, 4vw, 70px) 0;
  background:
    radial-gradient(circle at 86% 22%, rgba(0,101,218,.16) 0%, rgba(0,101,218,0) 36%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.podbor-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.podbor-label {
  display: inline-flex;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e7f1ff;
  color: #0057b8;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.podbor-hero h1 {
  margin: 16px 0 14px;
  color: #111827;
  font-size: clamp(36px, 4.1vw, 68px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.045em;
}

.podbor-hero p {
  max-width: 760px;
  margin: 0;
  color: #526173;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.55;
  font-weight: 700;
}

.podbor-form {
  max-width: 760px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 8px;
  padding: 8px;
  border: 1px solid #d7e2ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15,23,42,.06);
}

.podbor-form input {
  width: 100%;
  min-width: 0;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: #f6f9fd;
  color: #111827;
  padding: 0 16px;
  outline: none;
  font-size: 15px;
  font-weight: 800;
}

.podbor-form button {
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
}

.podbor-hero__links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.podbor-hero__links a {
  color: #0057b8;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.podbor-hero__card {
  padding: clamp(20px, 2vw, 30px);
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.podbor-hero__card strong {
  display: block;
  margin-bottom: 14px;
  color: #111827;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
}

.podbor-hero__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.podbor-hero__card li {
  position: relative;
  padding-left: 24px;
  color: #526173;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 750;
}

.podbor-hero__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0065da;
  font-weight: 950;
}

.podbor-section {
  padding: clamp(30px, 4vw, 62px) 0;
}

.podbor-section--light {
  background: #ffffff;
}

.podbor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.podbor-grid article,
.podbor-text,
.podbor-faq {
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: #ffffff;
  padding: clamp(20px, 2vw, 32px);
  box-shadow: 0 12px 30px rgba(15,23,42,.04);
}

.podbor-grid b {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
}

.podbor-grid h2,
.podbor-text h2,
.podbor-faq h2,
.podbor-cta h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.025em;
}

.podbor-grid p,
.podbor-text p,
.podbor-faq p,
.podbor-cta p {
  margin: 0;
  color: #526173;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.podbor-cats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.podbor-cats a {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #dce5ef;
  border-radius: 999px;
  background: #f8fbff;
  color: #263244;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.podbor-cats a:hover {
  border-color: rgba(0,101,218,.28);
  color: #004da9;
}

.podbor-faq {
  display: grid;
  gap: 10px;
}

.podbor-faq details {
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #f8fbff;
  padding: 16px;
}

.podbor-faq summary {
  cursor: pointer;
  color: #111827;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
}

.podbor-faq details p {
  margin-top: 10px;
}

.podbor-cta {
  padding: clamp(28px, 4vw, 58px) 0;
  background: #002c67;
}

.podbor-cta__box {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.podbor-cta h2 {
  color: #ffffff;
}

.podbor-cta p {
  color: rgba(255,255,255,.78);
}

.podbor-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .podbor-hero__inner,
  .podbor-grid {
    grid-template-columns: 1fr;
  }

  .podbor-form {
    grid-template-columns: 1fr;
  }

  .podbor-cta__box {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .podbor-hero h1 {
    font-size: 34px;
  }

  .podbor-form {
    padding: 6px;
  }

  .podbor-form button,
  .podbor-form input {
    height: 46px;
  }
}

/* PODBOR Knorr Bremse PAGE END */

/* SEO LANDING PAGES START */

.seo-landing {
  background: #f4f8fd;
}

.seo-landing-hero {
  padding: clamp(34px, 4vw, 70px) 0;
  background:
    radial-gradient(circle at 86% 22%, rgba(0,101,218,.16) 0%, rgba(0,101,218,0) 36%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.seo-landing-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.seo-landing-label {
  display: inline-flex;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e7f1ff;
  color: #0057b8;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.seo-landing-hero h1 {
  margin: 16px 0 14px;
  color: #111827;
  font-size: clamp(36px, 4.1vw, 68px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.045em;
}

.seo-landing-hero p {
  max-width: 760px;
  margin: 0;
  color: #526173;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.55;
  font-weight: 700;
}

.seo-landing-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-landing-search {
  max-width: 760px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 8px;
  padding: 8px;
  border: 1px solid #d7e2ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15,23,42,.06);
}

.seo-landing-search input {
  width: 100%;
  min-width: 0;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: #f6f9fd;
  color: #111827;
  padding: 0 16px;
  outline: none;
  font-size: 15px;
  font-weight: 800;
}

.seo-landing-search button {
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
}

.seo-landing-card {
  padding: clamp(20px, 2vw, 30px);
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.seo-landing-card strong {
  display: block;
  margin-bottom: 14px;
  color: #111827;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
}

.seo-landing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.seo-landing-card li {
  position: relative;
  padding-left: 24px;
  color: #526173;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 750;
}

.seo-landing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0065da;
  font-weight: 950;
}

.seo-landing-section {
  padding: clamp(30px, 4vw, 62px) 0;
}

.seo-landing-section--light {
  background: #ffffff;
}

.seo-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.seo-landing-grid article,
.seo-landing-text,
.seo-landing-faq {
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: #ffffff;
  padding: clamp(20px, 2vw, 32px);
  box-shadow: 0 12px 30px rgba(15,23,42,.04);
}

.seo-landing-grid b {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
}

.seo-landing-grid h2,
.seo-landing-text h2,
.seo-landing-faq h2,
.seo-landing-cta h2,
.seo-landing-head h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.025em;
}

.seo-landing-grid p,
.seo-landing-text p,
.seo-landing-faq p,
.seo-landing-cta p,
.seo-landing-head p {
  margin: 0;
  color: #526173;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.seo-landing-text p + p {
  margin-top: 14px;
}

.seo-landing-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.seo-landing-links a {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #dce5ef;
  border-radius: 999px;
  background: #f8fbff;
  color: #263244;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.seo-landing-links a:hover {
  border-color: rgba(0,101,218,.28);
  color: #004da9;
}

.seo-landing-head {
  margin-bottom: 18px;
}

.seo-landing-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seo-product-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #dce5ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15,23,42,.04);
}

.seo-product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.seo-product-card__top span {
  color: #0065da;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .06em;
}

.seo-product-card__top strong {
  color: #111827;
  font-size: 13px;
  font-weight: 950;
}

.seo-product-card h3 {
  min-height: 58px;
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
}

.seo-product-card h3 a {
  color: #111827;
  text-decoration: none;
}

.seo-product-card h3 a:hover {
  color: #0057b8;
}

.seo-product-card__meta {
  display: grid;
  gap: 8px;
}

.seo-stock {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
}

.seo-stock--yes {
  background: #dcfce7;
  color: #166534;
}

.seo-stock--order {
  background: #fff7ed;
  color: #9a3412;
}

.seo-product-card__meta b {
  color: #111827;
  font-size: 16px;
  font-weight: 950;
}

.seo-product-card__request {
  min-height: 38px;
  border-radius: 9px;
  background: #e7f1ff;
  color: #0057b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
}

.seo-product-card__request:hover {
  background: #d7e9ff;
}

.seo-landing-more {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.seo-landing-faq {
  display: grid;
  gap: 10px;
}

.seo-landing-faq details {
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #f8fbff;
  padding: 16px;
}

.seo-landing-faq summary {
  cursor: pointer;
  color: #111827;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
}

.seo-landing-faq details p {
  margin-top: 10px;
}

.seo-landing-cta {
  padding: clamp(28px, 4vw, 58px) 0;
  background: #002c67;
}

.seo-landing-cta__box {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.seo-landing-cta h2 {
  color: #ffffff;
}

.seo-landing-cta p {
  color: rgba(255,255,255,.78);
}

.seo-landing-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .seo-landing-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .seo-landing-hero__inner,
  .seo-landing-grid {
    grid-template-columns: 1fr;
  }

  .seo-landing-search {
    grid-template-columns: 1fr;
  }

  .seo-landing-cta__box {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .seo-landing-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .seo-landing-hero h1 {
    font-size: 34px;
  }

  .seo-landing-search {
    padding: 6px;
  }

  .seo-landing-search button,
  .seo-landing-search input {
    height: 46px;
  }

  .seo-landing-products {
    grid-template-columns: 1fr;
  }
}

/* SEO LANDING PAGES END */

/* SEO LANDING REQUEST BUTTON BLUE FIX START */

.seo-landing-actions .btn-border {
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%) !important;
  border-color: #0057c8 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(0, 79, 189, .18) !important;
}

.seo-landing-actions .btn-border:hover {
  background: linear-gradient(180deg, #0075f5 0%, #0057c8 100%) !important;
  border-color: #0065da !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* SEO LANDING REQUEST BUTTON BLUE FIX END */

/* PRODUCT SIMILAR REQUEST BUTTON START */

.pd-similar-card__request {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border-radius: 9px;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(0, 79, 189, .16);
}

.pd-similar-card__request:hover {
  background: linear-gradient(180deg, #0075f5 0%, #0057c8 100%);
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* PRODUCT SIMILAR REQUEST BUTTON END */

/* PRODUCT SIMILAR ALIGN FIX START */

.pd-similar-grid {
  align-items: stretch !important;
}

.pd-similar-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.pd-similar-card__image {
  flex: 0 0 auto !important;
}

.pd-similar-card__title {
  min-height: 112px !important;
  display: block !important;
  margin-bottom: 10px !important;

  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical !important;
}

.pd-similar-card .stock-badge,
.pd-similar-card .status-badge,
.pd-similar-card span[class*="stock"],
.pd-similar-card span[class*="status"] {
  flex: 0 0 auto !important;
  width: fit-content !important;
  margin-top: auto !important;
  margin-bottom: 8px !important;
}

.pd-similar-card strong {
  flex: 0 0 auto !important;
  min-height: 22px !important;
  margin-bottom: 10px !important;
}

.pd-similar-card__request {
  flex: 0 0 auto !important;
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .pd-similar-card__title {
    min-height: 92px !important;
    -webkit-line-clamp: 4 !important;
  }
}

/* PRODUCT SIMILAR ALIGN FIX END */

/* PRICE PAGE START */

.price-page {
  background: #f4f8fd;
}

.price-hero {
  padding: clamp(34px, 4vw, 70px) 0;
  background:
    radial-gradient(circle at 86% 22%, rgba(0,101,218,.16) 0%, rgba(0,101,218,0) 36%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.price-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.price-label {
  display: inline-flex;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e7f1ff;
  color: #0057b8;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.price-hero h1 {
  margin: 16px 0 14px;
  color: #111827;
  font-size: clamp(36px, 4.1vw, 68px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.045em;
}

.price-hero p {
  max-width: 760px;
  margin: 0;
  color: #526173;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.55;
  font-weight: 700;
}

.price-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-actions__request {
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%) !important;
  border-color: #0057c8 !important;
  color: #ffffff !important;
}

.price-search {
  max-width: 760px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 8px;
  padding: 8px;
  border: 1px solid #d7e2ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15,23,42,.06);
}

.price-search input {
  width: 100%;
  min-width: 0;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: #f6f9fd;
  color: #111827;
  padding: 0 16px;
  outline: none;
  font-size: 15px;
  font-weight: 800;
}

.price-search button {
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
}

.price-card {
  padding: clamp(20px, 2vw, 30px);
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.price-card strong {
  display: block;
  margin-bottom: 16px;
  color: #111827;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
}

.price-card__stats {
  display: grid;
  gap: 10px;
}

.price-card__stats div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  background: #f7fbff;
}

.price-card__stats span {
  color: #617087;
  font-size: 13px;
  font-weight: 800;
}

.price-card__stats b {
  color: #111827;
  font-size: 16px;
  font-weight: 950;
  text-align: right;
}

.price-section {
  padding: clamp(30px, 4vw, 62px) 0;
}

.price-section--light {
  background: #ffffff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.price-grid article,
.price-text,
.price-faq {
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: #ffffff;
  padding: clamp(20px, 2vw, 32px);
  box-shadow: 0 12px 30px rgba(15,23,42,.04);
}

.price-grid b {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0068df 0%, #004fbd 100%);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
}

.price-grid h2,
.price-text h2,
.price-faq h2,
.price-cta h2,
.price-head h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(24px, 1.8vw, 36px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.025em;
}

.price-grid p,
.price-text p,
.price-faq p,
.price-cta p,
.price-head p {
  margin: 0;
  color: #526173;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.price-text p + p {
  margin-top: 14px;
}

.price-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.price-links a {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #dce5ef;
  border-radius: 999px;
  background: #f8fbff;
  color: #263244;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.price-links a:hover {
  border-color: rgba(0,101,218,.28);
  color: #004da9;
}

.price-head {
  margin-bottom: 18px;
}

.price-more {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.price-faq {
  display: grid;
  gap: 10px;
}

.price-faq details {
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #f8fbff;
  padding: 16px;
}

.price-faq summary {
  cursor: pointer;
  color: #111827;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
}

.price-faq details p {
  margin-top: 10px;
}

.price-cta {
  padding: clamp(28px, 4vw, 58px) 0;
  background: #002c67;
}

.price-cta__box {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.price-cta h2 {
  color: #ffffff;
}

.price-cta p {
  color: rgba(255,255,255,.78);
}

.price-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .price-hero__inner,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-search {
    grid-template-columns: 1fr;
  }

  .price-cta__box {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .price-hero h1 {
    font-size: 34px;
  }

  .price-search {
    padding: 6px;
  }

  .price-search button,
  .price-search input {
    height: 46px;
  }
}

/* PRICE PAGE END */

/* =========================================================
   KNORR CATALOG BUTTON COLOR v76
   ========================================================= */

:root {
  --color-cyan-knorr: #21b8e7;
  --color-cyan-knorr-dark: #1597c5;
}

.btn--red,
.btn--blue,
.catalog-btn,
.product-card__btn,
.pd-button,
.pd-request,
button[type="submit"],
input[type="submit"],
a[href*="/request/"] {
  color: #ffffff !important;
  background: linear-gradient(180deg, var(--color-cyan-knorr), var(--color-cyan-knorr-dark)) !important;
  border-color: var(--color-cyan-knorr) !important;
  box-shadow: 0 14px 28px rgba(33, 184, 231, .22) !important;
}

.btn--red:hover,
.btn--blue:hover,
.catalog-btn:hover,
.product-card__btn:hover,
.pd-button:hover,
.pd-request:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
a[href*="/request/"]:hover {
  background: linear-gradient(180deg, #32c7f3, #118bb8) !important;
  border-color: #32c7f3 !important;
}


/* =========================================================
   KNORR CATALOG/PRODUCT BUTTON COLOR v77
   ========================================================= */

:root {
  --color-cyan-knorr: #21b8e7;
  --color-cyan-knorr-dark: #1597c5;
}

.btn--red,
.btn--blue,
.catalog-btn,
.product-card__btn,
.pd-button,
.pd-request,
button[type="submit"],
input[type="submit"],
a[href*="/request/"] {
  color: #ffffff !important;
  background: linear-gradient(180deg, var(--color-cyan-knorr), var(--color-cyan-knorr-dark)) !important;
  border-color: var(--color-cyan-knorr) !important;
  box-shadow: 0 14px 28px rgba(33, 184, 231, .22) !important;
}

.btn--red:hover,
.btn--blue:hover,
.catalog-btn:hover,
.product-card__btn:hover,
.pd-button:hover,
.pd-request:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
a[href*="/request/"]:hover {
  background: linear-gradient(180deg, #32c7f3, #118bb8) !important;
  border-color: #32c7f3 !important;
}


/* =========================================================
   KNORR PRODUCT FINAL COLOR v78
   cyan brand accent for product card
   ========================================================= */

.product-detail-page {
  background: #f4f9fd !important;
}

.pd-breadcrumbs a,
.pd-benefit span,
.pd-contact-buttons a,
.pd-card a,
.pd-similar-card__title:hover {
  color: #1597c5 !important;
}

.pd-gallery__thumbs button.is-active,
.pd-form-card input:focus,
.pd-form-card textarea:focus {
  border-color: #21b8e7 !important;
}

.pd-main-btn,
.pd-form-card button,
.pd-similar-card__request {
  color: #ffffff !important;
  background: linear-gradient(180deg, #21b8e7, #1597c5) !important;
  border-color: #21b8e7 !important;
  box-shadow: 0 14px 28px rgba(33, 184, 231, .24) !important;
}

.pd-main-btn:hover,
.pd-form-card button:hover,
.pd-similar-card__request:hover {
  background: linear-gradient(180deg, #34c9f4, #118bb8) !important;
  box-shadow: 0 18px 34px rgba(33, 184, 231, .32) !important;
}

.pd-status.is-stock,
.is-stock,
.pd-seo-status--stock {
  color: #047857 !important;
  background: #e8fff6 !important;
  border-color: #9ee7c8 !important;
}

.pd-status.is-order,
.is-order,
.pd-seo-status--order {
  color: #0f6090 !important;
  background: #eaf8ff !important;
  border-color: #a9e5f7 !important;
}

.pd-card,
.pd-gallery,
.pd-buy-card {
  border-color: #d8eaf5 !important;
  box-shadow: 0 14px 32px rgba(11, 57, 104, .055) !important;
}

.pd-title-block h1,
.pd-description h2,
.pd-specs h2,
.pd-form-card h2,
.product-trust h2,
.pd-similar h2 {
  color: #103b84 !important;
}

.pd-contact-buttons a {
  border-color: #d8eaf5 !important;
}

.pd-contact-buttons a:hover {
  border-color: #21b8e7 !important;
  box-shadow: 0 10px 24px rgba(33, 184, 231, .18) !important;
}



/* =========================================
   PRODUCT SEO CARDS
========================================= */

.product-seo-extended{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin:40px 0;
}

.product-seo-card{
    display:flex;
    gap:24px;
    align-items:flex-start;
    background:#fff;
    border:1px solid #e4ebf5;
    border-radius:24px;
    padding:28px 32px;
    box-shadow:0 10px 30px rgba(15,45,90,.04);
}

.product-seo-card__icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:18px;
    background:linear-gradient(135deg,#0d5bd7,#1aa7ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
}

.product-seo-card__content{
    flex:1;
}

.product-seo-card__content h2{
    margin:0 0 16px;
    font-size:28px;
    line-height:1.2;
    color:#123c7a;
}

.product-seo-card__content p{
    margin:0 0 14px;
    font-size:16px;
    line-height:1.75;
    color:#44556f;
}

.product-seo-card__list{
    margin:18px 0 0;
    padding-left:18px;
}

.product-seo-card__list li{
    margin-bottom:10px;
    color:#1f3350;
    font-size:15px;
    line-height:1.6;
}

.product-faq-item{
    border-top:1px solid #e7edf6;
    padding:16px 0;
}

.product-faq-item:first-child{
    border-top:none;
    padding-top:0;
}

.product-faq-item strong{
    display:block;
    margin-bottom:8px;
    font-size:17px;
    color:#163d7a;
}

.product-faq-item p{
    margin:0;
}

@media (max-width:768px){

    .product-seo-card{
        flex-direction:column;
        padding:22px;
        border-radius:20px;
    }

    .product-seo-card__icon{
        width:56px;
        height:56px;
        min-width:56px;
        font-size:24px;
    }

    .product-seo-card__content h2{
        font-size:22px;
    }

    .product-seo-card__content p{
        font-size:15px;
    }
}

/* =========================================
   KNORR PRODUCT SEO CARDS FINAL
========================================= */

.knorr-seo-cards{
  width:100%;
  max-width:1180px;
  margin:42px auto 34px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:18px !important;
}

.knorr-seo-card{
  display:grid !important;
  grid-template-columns:72px 1fr !important;
  gap:24px !important;
  align-items:flex-start !important;
  background:#ffffff !important;
  border:1px solid #dfe9f5 !important;
  border-radius:22px !important;
  padding:26px 30px !important;
  box-shadow:0 14px 34px rgba(13,45,85,.055) !important;
}

.knorr-seo-card__icon{
  width:58px !important;
  height:58px !important;
  border-radius:18px !important;
  background:linear-gradient(180deg,#0758b8 0%,#0b8fe8 100%) !important;
  color:#ffffff !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:26px !important;
  font-weight:900 !important;
  box-shadow:0 10px 22px rgba(0,100,200,.20) !important;
}

.knorr-seo-card__content h2{
  margin:0 0 12px !important;
  color:#0f3a83 !important;
  font-size:24px !important;
  line-height:1.22 !important;
  font-weight:900 !important;
}

.knorr-seo-card__content p{
  margin:0 0 10px !important;
  color:#233953 !important;
  font-size:16px !important;
  line-height:1.7 !important;
  font-weight:600 !important;
}

.knorr-seo-card__content p:last-child{
  margin-bottom:0 !important;
}

.knorr-seo-card__content ul{
  margin:12px 0 0 !important;
  padding-left:20px !important;
}

.knorr-seo-card__content li{
  margin:0 0 8px !important;
  color:#233953 !important;
  font-size:15px !important;
  line-height:1.55 !important;
  font-weight:700 !important;
}

.knorr-seo-card details{
  border:1px solid #e1eaf4 !important;
  border-radius:10px !important;
  background:#ffffff !important;
  margin:0 0 10px !important;
  padding:0 !important;
  overflow:hidden !important;
}

.knorr-seo-card summary{
  cursor:pointer !important;
  padding:14px 16px !important;
  color:#102b57 !important;
  font-size:15px !important;
  font-weight:900 !important;
  list-style:none !important;
}

.knorr-seo-card summary::-webkit-details-marker{
  display:none !important;
}

.knorr-seo-card details p{
  padding:0 16px 14px !important;
  font-size:14px !important;
  color:#526277 !important;
}

@media (max-width:760px){
  .knorr-seo-card{
    grid-template-columns:1fr !important;
    padding:22px !important;
  }

  .knorr-seo-card__icon{
    width:54px !important;
    height:54px !important;
  }

  .knorr-seo-card__content h2{
    font-size:21px !important;
  }
}

/* =========================================
   KNORR PRODUCT SEO CARDS VISUAL FIX
========================================= */

.knorr-seo-cards{
  width:100% !important;
  max-width:1260px !important;
  margin:48px auto 42px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:16px !important;
}

.knorr-seo-card{
  display:grid !important;
  grid-template-columns:86px 1fr !important;
  gap:26px !important;
  align-items:flex-start !important;
  background:#ffffff !important;
  border:1px solid #dbe7f4 !important;
  border-radius:22px !important;
  padding:30px 36px !important;
  box-shadow:0 16px 42px rgba(12,43,80,.055) !important;
}

.knorr-seo-card__icon{
  width:64px !important;
  height:64px !important;
  min-width:64px !important;
  border-radius:50% !important;
  background:linear-gradient(180deg,#064fbd 0%,#0f95e8 100%) !important;
  color:#ffffff !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:26px !important;
  font-weight:900 !important;
  box-shadow:0 12px 28px rgba(0,91,200,.24) !important;
}

.knorr-seo-card__content h2{
  margin:0 0 12px !important;
  color:#0f3a83 !important;
  font-size:27px !important;
  line-height:1.16 !important;
  font-weight:900 !important;
  letter-spacing:-.2px !important;
}

.knorr-seo-card__content p{
  max-width:980px !important;
  margin:0 0 10px !important;
  color:#213851 !important;
  font-size:16px !important;
  line-height:1.68 !important;
  font-weight:650 !important;
}

.knorr-seo-card__content strong{
  color:#0c2f69 !important;
  font-weight:900 !important;
}

.knorr-seo-card__content ul{
  margin:14px 0 0 !important;
  padding:0 !important;
  list-style:none !important;
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:10px 22px !important;
}

.knorr-seo-card__content li{
  position:relative !important;
  margin:0 !important;
  padding-left:22px !important;
  color:#1f3350 !important;
  font-size:15px !important;
  line-height:1.5 !important;
  font-weight:800 !important;
}

.knorr-seo-card__content li::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:8px !important;
  width:8px !important;
  height:8px !important;
  border-radius:50% !important;
  background:#21b8e7 !important;
}

.knorr-seo-card--faq .knorr-seo-card__content{
  display:grid !important;
  gap:10px !important;
}

.knorr-seo-card--faq .knorr-seo-card__content h2{
  margin-bottom:8px !important;
}

.knorr-seo-card details{
  border:1px solid #dfe8f3 !important;
  border-radius:10px !important;
  background:#fff !important;
  margin:0 !important;
  padding:0 !important;
  overflow:hidden !important;
}

.knorr-seo-card summary{
  position:relative !important;
  cursor:pointer !important;
  padding:15px 48px 15px 18px !important;
  color:#102b57 !important;
  font-size:15px !important;
  font-weight:900 !important;
  list-style:none !important;
}

.knorr-seo-card summary::after{
  content:"⌄" !important;
  position:absolute !important;
  right:18px !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  color:#0f3a83 !important;
  font-size:18px !important;
  font-weight:900 !important;
}

.knorr-seo-card summary::-webkit-details-marker{
  display:none !important;
}

.knorr-seo-card details p{
  padding:0 18px 15px !important;
  margin:0 !important;
  font-size:14px !important;
  color:#526277 !important;
  line-height:1.55 !important;
}

@media (max-width:900px){
  .knorr-seo-cards{
    max-width:100% !important;
    margin:34px auto !important;
  }

  .knorr-seo-card{
    grid-template-columns:1fr !important;
    padding:24px !important;
  }

  .knorr-seo-card__content ul{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:640px){
  .knorr-seo-card__content h2{
    font-size:22px !important;
  }

  .knorr-seo-card__content p{
    font-size:15px !important;
  }
}
