:root {
  --ink: #151a22;
  --muted: #657080;
  --line: #d9e0ea;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --blue: #2f6ecb;
  --cyan: #39d5ff;
  --blue-dark: #173d78;
  --blue-soft: #e9f1ff;
  --yellow: #f2c94c;
  --green: #2fa66a;
  --page-left: max(72px, calc((100vw - 1360px) / 2));
  --header-height: 148px;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(21, 26, 34, 0.16);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(21, 26, 34, 0.06);
}

.delivery-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 3px 16px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.header-main {
  display: grid;
  grid-template-columns: 150px 300px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  padding: 6px 0;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: 128px;
  height: 58px;
  object-fit: contain;
}

.header-place {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.header-place strong {
  font-size: 1.18rem;
  line-height: 1.2;
}

.header-place span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  justify-self: end;
}

.contact-message {
  display: grid;
  gap: 4px;
  justify-items: end;
  min-width: max-content;
  padding: 7px 12px;
  border: 1px solid #d7e4f4;
  border-radius: 12px;
  background: #f5f9ff;
  color: #5f7088;
  box-shadow: 0 10px 24px rgba(30, 78, 142, 0.08);
}

.contact-message span {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.header-email {
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-card .header-phone {
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-card {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 168px;
}

.contact-card--primary {
  min-width: 168px;
}

.contact-card--primary .header-phone {
  font-size: 1.16rem;
  line-height: 1.1;
}

.messengers {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.messenger {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  border: 1px solid #c8d9f5;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-card--secondary .messenger {
  width: 28px;
  height: 28px;
}

.messenger:hover {
  transform: translateY(-1px);
}

.messenger img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.contact-card--secondary .messenger img {
  width: 18px;
  height: 18px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.primary-nav {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(240px, 300px) minmax(120px, 180px);
  justify-content: center;
  gap: 12px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 8px;
}

.primary-nav > a,
.catalog-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.primary-nav > a:hover,
.catalog-trigger:hover,
.catalog-menu:hover .catalog-trigger,
.catalog-menu.is-open .catalog-trigger {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.catalog-menu {
  position: relative;
}

.catalog-trigger {
  width: 100%;
  gap: 14px;
}

.catalog-icon {
  position: relative;
  width: 24px;
  height: 16px;
}

.catalog-icon::before,
.catalog-icon::after,
.catalog-icon {
  border-top: 3px solid currentColor;
}

.catalog-icon::before,
.catalog-icon::after {
  position: absolute;
  left: 0;
  width: 24px;
  content: "";
}

.catalog-icon::before {
  top: 6px;
}

.catalog-icon::after {
  top: 15px;
}

.chevron {
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
}

.chevron--right {
  margin-left: 14px;
  transform: rotate(-45deg);
}

.catalog-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  display: none;
  width: 760px;
  min-height: 424px;
  overflow: visible;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.catalog-menu.is-open .catalog-panel {
  display: flex;
}

.catalog-list {
  display: grid;
  align-content: start;
  gap: 2px;
  width: 360px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  padding: 14px;
  border-right: 1px solid var(--line);
}

.catalog-list a,
.catalog-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}

.catalog-list a:hover,
.catalog-item > button:hover,
.catalog-item.is-active > button {
  border-color: #b6cff5;
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.catalog-item {
  position: static;
}

.submenu {
  position: absolute;
  left: 360px;
  top: 0;
  display: none;
  align-content: start;
  width: 400px;
  min-height: 100%;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  margin: 0;
  padding: 26px 30px;
  background: var(--surface);
  border: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: none;
}

.submenu a {
  justify-content: flex-start;
  min-height: 46px;
  padding: 10px 18px;
  background: transparent;
  color: var(--ink);
  font-size: 1.08rem;
}

.catalog-item:hover .submenu,
.catalog-item:focus-within .submenu,
.catalog-item.is-active .submenu {
  display: grid;
  gap: 12px;
}

@media (min-width: 761px) {
  .catalog-menu:hover .catalog-panel,
  .catalog-menu:focus-within .catalog-panel {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #111924;
  color: #ffffff;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.95) 0%, rgba(10, 16, 24, 0.8) 38%, rgba(10, 16, 24, 0.28) 70%, rgba(10, 16, 24, 0.14) 100%),
    linear-gradient(180deg, rgba(10, 16, 24, 0.24) 0%, rgba(10, 16, 24, 0.7) 100%);
}

.hero__content,
.hero-cards {
  position: relative;
  z-index: 1;
  width: min(1296px, calc(100% - 144px));
  margin-left: var(--page-left);
  margin-right: auto;
}

.hero__content {
  max-width: 760px;
  padding: 84px 0 36px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff4cf;
  color: #152033;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: 3.4rem;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.hero__lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.32rem;
  font-weight: 650;
  overflow-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 170px;
  max-width: 100%;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(47, 110, 203, 0.28);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.button--dark {
  background: var(--ink);
  color: #ffffff;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 42px;
}

.hero-cards article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 142px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(78, 201, 255, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 213, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(13, 25, 43, 0.95), rgba(23, 61, 120, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.card-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.95;
  filter: invert(89%) sepia(28%) saturate(1267%) hue-rotate(156deg) brightness(107%) contrast(102%)
    drop-shadow(0 0 14px rgba(57, 213, 255, 0.36));
}

.hero-cards article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--cyan);
  content: "";
}

.advantage-card--region {
  border-color: rgba(132, 118, 255, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(132, 118, 255, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(13, 25, 43, 0.96), rgba(35, 51, 115, 0.9));
}

.advantage-card--region::before {
  background: #8a7cff;
}

.advantage-card--stock {
  border-color: rgba(48, 211, 139, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(48, 211, 139, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(13, 25, 43, 0.96), rgba(17, 83, 92, 0.88));
}

.advantage-card--stock::before {
  background: #30d38b;
}

.hero-cards strong,
.hero-cards span {
  display: block;
}

.hero-cards strong {
  margin-bottom: 8px;
  font-size: 1.32rem;
  line-height: 1.2;
}

.hero-cards span {
  color: rgba(232, 244, 255, 0.88);
  font-weight: 650;
}

.section-inner {
  width: min(1296px, calc(100% - 144px));
  margin-left: var(--page-left);
  margin-right: auto;
}

.work-section {
  padding: 72px 0;
}

.work-section {
  background: linear-gradient(180deg, #f5f8fd 0%, #ffffff 100%);
}

.section-copy h2,
.section-heading h2,
.split-layout h2,
.delivery-layout h2,
.work-head h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.12;
}

.section-copy p:not(.section-kicker),
.delivery-layout p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.work-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 30px;
}

.work-head p:not(.section-kicker) {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.1rem;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d8e2ef;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(21, 26, 34, 0.08);
}

.work-steps article {
  position: relative;
  min-height: 280px;
  padding: 34px 28px 30px;
  border-right: 1px solid #d8e2ef;
}

.work-steps article:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  color: var(--blue);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.8;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.step-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  opacity: 0.82;
}

.step-icon--color {
  width: 54px;
  height: 54px;
  opacity: 1;
}

.work-steps h3 {
  margin: 0 0 18px;
  font-size: 1.38rem;
  line-height: 1.18;
}

.work-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.filter-card,
.service-grid article,
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(21, 26, 34, 0.07);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.text-link {
  color: var(--blue-dark);
  font-weight: 900;
}

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

.category-card {
  overflow: hidden;
  min-height: 292px;
}

.category-card h3 {
  margin: 18px 18px 6px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.category-card p {
  margin: 0 18px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-art {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #f4f6f9;
}

.category-art::before,
.category-art::after {
  position: absolute;
  content: "";
}

.art-sheet .category-art {
  background: #fff7df;
}

.art-sheet .category-art::before {
  right: -26px;
  bottom: -46px;
  width: 190px;
  height: 140px;
  border-radius: 64px 8px 8px 64px;
  background: linear-gradient(135deg, #ffe369, #f5b300);
  transform: rotate(-21deg);
}

.art-sheet .category-art::after {
  right: 34px;
  bottom: 28px;
  width: 92px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(-21deg);
}

.art-fabric .category-art {
  background: #f7f1e8;
}

.art-fabric .category-art::before {
  right: -34px;
  bottom: -52px;
  width: 200px;
  height: 150px;
  border-radius: 70px 8px 8px 70px;
  background: linear-gradient(135deg, #fffdf7, #d9c7b8);
  transform: rotate(-21deg);
}

.art-profile .category-art {
  background: #eef2f6;
}

.art-profile .category-art::before {
  right: -8px;
  bottom: 26px;
  width: 190px;
  height: 32px;
  background: linear-gradient(180deg, #ffffff, #b8c0ca);
  box-shadow: 0 18px 0 #d9dee4, 0 36px 0 #a5afbb;
  transform: rotate(28deg);
}

.art-insert .category-art::before {
  left: 24px;
  right: 24px;
  bottom: 48px;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 0 #d9e0e8, 0 36px 0 #aab5c2;
  transform: rotate(-11deg);
}

.art-mount .category-art {
  background: #f1f8f4;
}

.art-mount .category-art::before {
  left: 52px;
  top: 34px;
  width: 82px;
  height: 82px;
  border-radius: 8px;
  border: 15px solid var(--green);
  background: #ffffff;
}

.art-mount .category-art::after {
  right: 38px;
  bottom: 32px;
  width: 82px;
  height: 22px;
  background: #bfd9c8;
  transform: rotate(-18deg);
}

.art-vent .category-art::before {
  left: 52px;
  top: 28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 18px solid #dfe5eb;
  background: #ffffff;
}

.art-vent .category-art::after {
  right: 34px;
  top: 36px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 12px solid #aeb9c4;
}

.art-light .category-art {
  background: #111924;
}

.art-light .category-art::before {
  left: 26px;
  right: 26px;
  top: 58px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 24px #5aa4ff, 0 0 46px #2f6ecb;
}

.art-light .category-art::after {
  right: 44px;
  top: 34px;
  width: 42px;
  height: 68px;
  border-radius: 999px;
  background: #222b36;
  box-shadow: inset 0 -14px 0 #f8e29b;
}

.art-track .category-art {
  background: #eef2f6;
}

.art-track .category-art::before {
  left: 18px;
  right: 18px;
  top: 52px;
  height: 26px;
  border-radius: 999px;
  background: #151a22;
  box-shadow: inset 80px 0 0 #303946;
  transform: rotate(-13deg);
}

.art-track .category-art::after {
  right: 48px;
  top: 64px;
  width: 34px;
  height: 54px;
  border-radius: 999px;
  background: #202833;
  box-shadow: inset 0 -12px 0 #f4d36b;
  transform: rotate(-13deg);
}

.art-cornice .category-art::before {
  left: 24px;
  right: 24px;
  top: 68px;
  height: 18px;
  background: #ffffff;
  box-shadow: 0 17px 0 #dce2e8, 0 34px 0 #ffffff;
  transform: rotate(-8deg);
}

.art-consumables .category-art {
  background: #f8f4ef;
}

.art-consumables .category-art::before {
  left: 52px;
  top: 32px;
  width: 18px;
  height: 92px;
  border-radius: 999px;
  background: #202020;
  box-shadow: 22px 12px 0 #202020, 44px -2px 0 #202020, 66px 16px 0 #202020, 88px 3px 0 #202020;
  transform: rotate(70deg);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.filter-card {
  padding: 22px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-chip {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

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

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.price-list strong {
  white-space: nowrap;
}

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

.service-grid article {
  padding: 24px;
}

.service-grid h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.delivery-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(47, 110, 203, 0.1), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.delivery-section {
  scroll-margin-top: 160px;
}

.delivery-conditions {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 16px;
  min-width: min(560px, 100%);
}

.delivery-conditions article {
  min-height: 146px;
  padding: 22px;
  border: 1px solid #d9e4f3;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(21, 26, 34, 0.07);
}

.delivery-conditions strong,
.delivery-conditions span {
  display: block;
}

.delivery-conditions strong {
  margin-bottom: 10px;
  color: #182233;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.15;
}

.delivery-conditions span {
  color: #657286;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
}

.site-footer {
  padding: 34px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-layout p {
  margin: 0;
  color: var(--muted);
}

.footer-logo {
  width: 128px;
  height: 72px;
  object-fit: contain;
}

.catalog-page .catalog-trigger,
.catalog-all-link {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.catalog-main {
  min-height: 72vh;
  background: #ffffff;
}

.catalog-section {
  padding: 62px 0 86px;
}

.catalog-container {
  width: min(1520px, calc(100% - 40px));
  margin: 0 auto;
}

.catalog-container h1 {
  margin: 0 0 44px;
  color: #20242b;
  font-size: 3.2rem;
  font-weight: 850;
  line-height: 1;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  --card-accent: rgba(47, 110, 203, 0.13);
  --card-line: #2f6ecb;
  position: relative;
  display: block;
  min-height: 392px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #edf1f7;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(21, 26, 34, 0.045);
  scroll-margin-top: 170px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.32) 47%, rgba(255, 255, 255, 0) 66%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.12) 54%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.catalog-card::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 4px;
  background: var(--card-line);
  content: "";
  opacity: 0.28;
  transition: opacity 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-2px);
  border-color: #d7e3f3;
  box-shadow: 0 18px 42px rgba(21, 26, 34, 0.1);
}

.catalog-card:hover::after {
  opacity: 0.72;
}

.catalog-card:nth-child(1) {
  --card-accent: rgba(47, 110, 203, 0.13);
  --card-line: #2f6ecb;
}

.catalog-card:nth-child(2) {
  --card-accent: rgba(197, 171, 112, 0.16);
  --card-line: #c5a561;
}

.catalog-card:nth-child(3),
.catalog-card:nth-child(4),
.catalog-card:nth-child(14),
.catalog-card:nth-child(15) {
  --card-accent: rgba(90, 115, 145, 0.14);
  --card-line: #617895;
}

.catalog-card:nth-child(5),
.catalog-card:nth-child(12),
.catalog-card:nth-child(16) {
  --card-accent: rgba(47, 166, 106, 0.13);
  --card-line: #2fa66a;
}

.catalog-card:nth-child(6),
.catalog-card:nth-child(7),
.catalog-card:nth-child(9) {
  --card-accent: rgba(57, 213, 255, 0.12);
  --card-line: #39d5ff;
}

.catalog-card:nth-child(8),
.catalog-card:nth-child(10) {
  --card-accent: rgba(242, 201, 76, 0.16);
  --card-line: #f2c94c;
}

.catalog-card:nth-child(11),
.catalog-card:nth-child(13) {
  --card-accent: rgba(28, 42, 58, 0.13);
  --card-line: #202a38;
}

.catalog-card__title,
.catalog-card__meta {
  position: relative;
  z-index: 3;
  display: block;
}

.catalog-card__title {
  max-width: 86%;
  padding: 30px 30px 0;
  font-size: 1.54rem;
  font-weight: 900;
  line-height: 1.16;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.catalog-card__meta {
  max-width: 80%;
  margin-top: 0;
  padding: 14px 30px 0;
  color: #566579;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.28;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.catalog-card__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 1;
  filter: none;
  transform: none;
}

.catalog-card:hover .catalog-card__image {
  transform: none;
}

.product-main {
  min-height: 72vh;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.product-section {
  padding: 58px 0 84px;
}

.product-container {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 850;
}

.product-back::before {
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.product-container h1 {
  margin: 0 0 34px;
  color: #20242b;
  font-size: 3.2rem;
  font-weight: 850;
  line-height: 1;
}

.product-table-wrap {
  overflow: hidden;
  border: 1px solid #d9e4f3;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(21, 26, 34, 0.08);
}

.product-subtitle {
  margin: 44px 0 18px;
  color: var(--blue-dark);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.12;
}

.product-table-wrap--compact {
  box-shadow: 0 14px 34px rgba(21, 26, 34, 0.06);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
}

.product-table thead tr {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 68%, #33bde8 100%);
}

.product-table th {
  padding: 18px 28px;
  background: transparent;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
}

.product-table th:first-child {
  width: 68%;
}

.product-table td {
  padding: 18px 28px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.3;
  border-top: 1px solid #e8eef7;
}

.product-table tbody tr:nth-child(even) {
  background: #f3f8ff;
}

.product-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.product-table tbody tr:hover {
  background: #eaf4ff;
}

.pvh-page .product-table th,
.pvh-page .product-table td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.product-table--compact th:first-child {
  width: 68%;
}

.product-subtitle--first {
  margin-top: 0;
}

.product-table--single th:first-child {
  width: 100%;
}

.product-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 8px;
}

.product-jump-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #cfe0f7;
  border-radius: 10px;
  background: #f4f8ff;
  color: var(--blue-dark);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.product-jump-list a:hover {
  border-color: #8fb5ed;
  background: #eaf3ff;
  color: var(--blue);
}

.pk-page .product-subtitle--first {
  margin-top: 30px;
}

.pk-summary-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.pk-summary-card {
  display: grid;
  grid-template-columns: 154px minmax(190px, 0.72fr) minmax(180px, 0.9fr) minmax(0, 2fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px 20px;
  border: 1px solid #d9e4f3;
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(47, 110, 203, 0.08) 0%, rgba(51, 189, 232, 0.06) 42%, rgba(255, 255, 255, 0.96) 100%),
    #ffffff;
  box-shadow: 0 14px 34px rgba(21, 26, 34, 0.055);
  scroll-margin-top: 165px;
}

.pk-summary-card__image {
  width: 100%;
  height: 100%;
  min-height: 132px;
  padding: 8px;
  border: 1px solid #dce8f8;
  border-radius: 10px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(21, 26, 34, 0.045);
}

.pk-summary-card__head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.pk-summary-card__head h2 {
  margin: 0;
  color: #172236;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.pk-summary-card__head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.pk-summary-card p {
  margin: 0;
  color: #647084;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.32;
}

.pk-size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pk-size-chips span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 58px;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid #d4e3f7;
  border-radius: 8px;
  background: #ffffff;
  color: #162033;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
}

.pk-option-groups {
  display: grid;
  gap: 10px;
}

.pk-option-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
}

.pk-option-row strong {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 8px;
  background: #eaf3ff;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.pk-option-row--black strong,
.pk-option-row--black .pk-size-chips span {
  border-color: #111827;
  background: #111827;
  color: #ffffff;
}

.pk-option-row--black .pk-size-chips span {
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.16);
}

.pk-page .product-table-wrap {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pk-page .product-table--single {
  display: block;
}

.pk-page .product-table--single thead {
  display: none;
}

.pk-page .product-table--single tbody {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 10px;
}

.pk-page .product-table--single tr,
.pk-page .product-table--single td {
  display: block;
}

.pk-page .product-table--single td {
  min-height: 100%;
  padding: 12px 14px;
  border: 1px solid #dce8f8;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  color: #182233;
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.25;
  box-shadow: 0 8px 18px rgba(21, 26, 34, 0.045);
}

.pk-page .product-table--single tbody tr:nth-child(even),
.pk-page .product-table--single tbody tr:nth-child(odd),
.pk-page .product-table--single tbody tr:hover {
  background: transparent;
}

.insert-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 24px;
  margin-top: 34px;
}

.insert-product-card {
  min-width: 0;
}

.insert-product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid #e7edf6;
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 22%, rgba(47, 110, 203, 0.1), transparent 34%),
    linear-gradient(135deg, #f7f9fc 0%, #eef4fb 100%);
  box-shadow: 0 14px 34px rgba(21, 26, 34, 0.055);
}

.insert-product-card__media::before {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(47, 110, 203, 0.26);
  border-radius: 10px;
  content: "";
}

.insert-product-card__media::after {
  position: absolute;
  width: 52%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 110, 203, 0.12), rgba(51, 189, 232, 0.16));
  content: "";
  transform: rotate(-18deg);
}

.insert-product-card__media span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #637186;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1;
}

.insert-product-card__media.has-image {
  background: #ffffff;
}

.insert-product-card__media.has-image::before,
.insert-product-card__media.has-image::after {
  display: none;
}

.insert-product-card__media img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  object-position: center;
}

.insert-product-card h2 {
  margin: 18px 0 0;
  color: #20242b;
  font-size: 1.17rem;
  font-weight: 780;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.insert-product-card p {
  margin: 10px 0 0;
  color: #8a94a5;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.2;
}

.product-variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.product-variant-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #d5e5fb;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.service-card {
  min-height: 170px;
  padding: 26px;
  border: 1px solid #d8e5f5;
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(47, 110, 203, 0.08), rgba(51, 189, 232, 0.06)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(21, 26, 34, 0.06);
}

.service-card h2 {
  margin: 0;
  color: #172236;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.18;
}

.service-card--media {
  padding: 0;
  overflow: hidden;
}

.service-card--media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef4fb;
}

.service-card--media h2 {
  padding: 22px 24px 24px;
}

.catalog-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 28px 22px;
  margin-top: 0;
}

.catalog-product-grid .insert-product-card__media {
  background:
    radial-gradient(circle at 72% 22%, rgba(57, 213, 255, 0.11), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.product-lead {
  max-width: 820px;
  margin: -14px 0 28px;
  color: #627085;
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.42;
}

.category-list-sections {
  display: grid;
  gap: 34px;
  margin-top: 30px;
}

.category-list-section {
  scroll-margin-top: 170px;
}

.category-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.category-section-head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.72rem;
  font-weight: 900;
  line-height: 1.12;
}

.category-section-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #cfe0f7;
  border-radius: 999px;
  background: #f4f8ff;
  color: #52657f;
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.product-list-card {
  position: relative;
  min-height: 88px;
  overflow: hidden;
  padding: 17px 18px 17px 21px;
  border: 1px solid #dce8f8;
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 213, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 12px 28px rgba(21, 26, 34, 0.055);
}

.product-list-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--cyan) 100%);
  content: "";
}

.product-list-card h3 {
  margin: 0;
  color: #172236;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.26;
  overflow-wrap: anywhere;
}

.led-page .product-list-card h3 {
  display: grid;
  gap: 8px;
}

.led-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: -4px -4px 16px;
  overflow: hidden;
  border: 1px solid #dce8f8;
  border-radius: 10px;
  background: #f6f9ff;
}

.led-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.led-title {
  display: block;
}

.led-spec {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #cfe0f7;
  border-radius: 8px;
  background: #eaf3ff;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
}

.solutions-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.solutions-head h1 {
  margin-bottom: 18px;
}

.solutions-head p {
  margin: 0;
  color: #647084;
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.45;
}

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

.solution-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dce8f8;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(21, 26, 34, 0.055);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: #cbdcf2;
  box-shadow: 0 20px 44px rgba(21, 26, 34, 0.11);
}

.solution-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef4fb;
}

.solution-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.solution-card:hover .solution-card__media img {
  transform: scale(1.025);
}

.solution-card__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.solution-card__track::-webkit-scrollbar {
  display: none;
}

.solution-card__track img {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
}

.solution-card__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(12, 20, 32, 0.56);
  box-shadow: 0 10px 26px rgba(12, 20, 32, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.solution-card__arrow:hover {
  background: rgba(12, 20, 32, 0.74);
  transform: translateY(-50%) scale(1.04);
}

.solution-card__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

.solution-card__arrow--prev {
  left: 14px;
}

.solution-card__arrow--prev::before {
  transform: rotate(-135deg);
}

.solution-card__arrow--next {
  right: 14px;
}

.solution-card__arrow--next::before {
  transform: rotate(45deg);
}

.solution-card__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(12, 20, 32, 0.42);
  transform: translateX(-50%);
}

.solution-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.solution-card__dot.is-active {
  width: 18px;
  background: #ffffff;
}

.solution-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.solution-card__body h2 {
  margin: 0 0 12px;
  color: #172236;
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.solution-card__body p {
  margin: 0;
  color: #687589;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
}

.solutions-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding: 30px 34px;
  border: 1px solid #d8e5f5;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 110, 203, 0.08), rgba(51, 189, 232, 0.06)),
    #ffffff;
  box-shadow: 0 16px 38px rgba(21, 26, 34, 0.07);
}

.solutions-cta h2 {
  margin: 0 0 10px;
  color: #172236;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
}

.solutions-cta p {
  max-width: 780px;
  margin: 0;
  color: #647084;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.45;
}

.solutions-cta .button {
  flex: 0 0 auto;
}

.product-list-card p {
  margin: 10px 0 0;
  color: #6a7688;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.led-page .product-list-card p {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 780;
}

.readable-list {
  display: grid;
  gap: 8px;
  overflow: hidden;
  border: 1px solid #d9e4f3;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(21, 26, 34, 0.055);
}

.readable-list-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 10px 18px;
  border-bottom: 1px solid #e4edf8;
  background: #ffffff;
}

.power-page .readable-list-row {
  min-height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.power-page .readable-list-row h3 {
  font-size: 0.95rem;
}

.term-category-section .readable-list-row {
  min-height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.term-category-section .readable-list-row h3 {
  font-size: 0.95rem;
}

.term-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.term-two-columns .term-category-section {
  min-width: 0;
}

.readable-list-row:nth-child(even) {
  background: #f5f9ff;
}

.readable-list-row:last-child {
  border-bottom: 0;
}

.readable-list-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.readable-list-row h3 {
  margin: 0;
  color: #182233;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.readable-list-row p {
  margin: 5px 0 0;
  color: #647084;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.category-section-head--with-image {
  justify-content: flex-start;
  align-items: center;
}

.category-section-image {
  width: 92px;
  height: 92px;
  padding: 8px;
  border: 1px solid #dce8f8;
  border-radius: 12px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(21, 26, 34, 0.07);
}

.readable-list--plain .readable-list-row > div {
  display: block;
}

.readable-list-row > div:has(.readable-list-thumb) {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.readable-list-thumb {
  width: 42px;
  height: 42px;
  padding: 4px;
  border: 1px solid #dbe8f8;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 154px 1fr auto;
  }

  .header-contacts {
    display: none;
  }

  .primary-nav {
    grid-template-columns: minmax(210px, 1fr) minmax(220px, 1fr) minmax(100px, 1fr);
  }

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

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

  .catalog-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 1040px) {

  .hero h1 {
    font-size: 2.8rem;
  }

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

  .work-head,
  .split-layout {
    grid-template-columns: 1fr;
  }

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

  .work-steps article:nth-child(2) {
    border-right: 0;
  }

  .work-steps article:nth-child(-n+2) {
    border-bottom: 1px solid #d8e2ef;
  }

  .catalog-card {
    min-height: 300px;
  }

  .product-container h1 {
    font-size: 2.75rem;
  }

  .insert-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }

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

  .solutions-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .delivery-strip {
    display: block;
    min-height: 30px;
    padding: 5px 12px;
    font-size: 0.74rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .header-main {
    grid-template-columns: 120px 1fr 44px;
    gap: 12px;
    width: calc(100% - 24px);
    padding: 10px 0;
  }

  .header-contacts {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    justify-self: stretch;
  }

  .contact-message {
    grid-column: 1 / -1;
    justify-items: start;
    min-width: 0;
    padding: 8px 10px;
    border-radius: var(--radius);
  }

  .contact-message span,
  .header-email,
  .contact-card .header-phone {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-message span {
    font-size: 0.72rem;
  }

  .header-email {
    font-size: 0.8rem;
  }

  .contact-card {
    min-width: 0;
    padding: 8px;
    border: 1px solid #d7e4f4;
    border-radius: var(--radius);
    background: #ffffff;
  }

  .contact-card--primary,
  .contact-card--secondary {
    min-width: 0;
  }

  .contact-card .header-phone,
  .contact-card--primary .header-phone {
    font-size: 0.94rem;
  }

  .messengers {
    gap: 5px;
  }

  .messenger,
  .contact-card--secondary .messenger {
    width: 30px;
    height: 30px;
  }

  .brand__logo {
    width: 118px;
    height: 54px;
  }

  .header-place strong {
    font-size: 1rem;
  }

  .header-place span {
    font-size: 0.82rem;
  }

  .mobile-toggle {
    display: block;
  }

  .primary-nav {
    display: none;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100vh - 224px);
    overflow-y: auto;
    padding: 0 0 12px;
  }

  .site-header.nav-open .primary-nav {
    display: grid;
  }

  .primary-nav > a,
  .catalog-trigger {
    justify-content: flex-start;
    min-height: 48px;
  }

  .catalog-panel {
    position: static;
    width: 100%;
    min-height: 0;
    max-height: none;
    overflow: visible;
    margin-top: 8px;
    padding: 10px;
    box-shadow: none;
  }

  .catalog-menu.is-open .catalog-panel {
    display: block;
  }

  .catalog-list {
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 0;
    border-right: 0;
    gap: 8px;
  }

  .submenu {
    position: static;
    width: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    margin: 8px 0 0 14px;
    padding: 8px;
    border: 1px solid #dbe6f4;
    border-radius: var(--radius);
    box-shadow: none;
  }

  .submenu a {
    min-height: 38px;
    background: #ffffff;
    font-size: 0.94rem;
  }

  .catalog-item:hover .submenu,
  .catalog-item:focus-within .submenu {
    display: none;
  }

  .catalog-item.is-active .submenu {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero__image {
    object-position: 72% center;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 16, 24, 0.96) 0%, rgba(10, 16, 24, 0.82) 58%, rgba(10, 16, 24, 0.76) 100%);
  }

  .hero__content,
  .hero-cards,
  .section-inner {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
    min-width: 0;
  }

  .hero__content {
    padding: 54px 0 22px;
  }

  .hero h1,
  .section-copy h2,
  .section-heading h2,
  .split-layout h2,
  .delivery-layout h2,
  .work-head h2 {
    font-size: 1.86rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__lead {
    font-size: 1.02rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.15;
  }

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

  .button {
    width: 100%;
  }

  .hero-cards,
  .service-grid,
  .delivery-layout,
  .work-steps {
    grid-template-columns: 1fr;
  }

  .delivery-section {
    padding: 52px 0;
    scroll-margin-top: 122px;
  }

  .delivery-conditions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .hero-cards article {
    min-height: 118px;
  }

  .work-steps article,
  .work-steps article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #d8e2ef;
  }

  .work-steps article:last-child {
    border-bottom: 0;
  }

  .work-section {
    padding: 52px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .category-card {
    min-height: 248px;
  }

  .category-art {
    height: 132px;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-section {
    padding: 42px 0 58px;
  }

  .catalog-container {
    width: calc(100% - 24px);
  }

  .catalog-container h1 {
    margin-bottom: 28px;
    font-size: 2.25rem;
  }

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

  .catalog-card {
    min-height: 280px;
    padding: 0;
    scroll-margin-top: 122px;
  }

  .catalog-card::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 34%, rgba(255, 255, 255, 0.36) 55%, rgba(255, 255, 255, 0) 76%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.12) 64%, rgba(255, 255, 255, 0) 100%);
  }

  .catalog-card__title {
    padding: 18px 18px 0;
    font-size: 1.06rem;
  }

  .catalog-card__meta {
    max-width: 92%;
    margin-top: 8px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .catalog-card__image {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .product-section {
    padding: 42px 0 58px;
  }

  .product-container {
    width: calc(100% - 24px);
  }

  .product-container h1 {
    margin-bottom: 24px;
    font-size: 2.2rem;
  }

  .solutions-head {
    margin-bottom: 24px;
  }

  .solutions-head p {
    font-size: 1rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-card__body {
    padding: 18px 18px 20px;
  }

  .solution-card__body h2 {
    font-size: 1.12rem;
  }

  .solution-card__body p {
    font-size: 0.92rem;
  }

  .solutions-cta {
    margin-top: 30px;
    padding: 22px 20px;
  }

  .solutions-cta h2 {
    font-size: 1.24rem;
  }

  .product-table-wrap {
    overflow: hidden;
  }

  .product-table {
    min-width: 0;
    table-layout: fixed;
  }

  .product-table th,
  .product-table td {
    padding: 14px 16px;
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  .product-table th:first-child {
    width: 66%;
  }

  .product-subtitle {
    margin-top: 34px;
    font-size: 1.55rem;
  }

  .product-lead {
    margin: -10px 0 22px;
    font-size: 0.96rem;
  }

  .category-list-sections {
    gap: 28px;
  }

  .term-two-columns {
    grid-template-columns: 1fr;
  }

  .category-list-section {
    scroll-margin-top: 122px;
  }

  .category-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .category-section-head h2 {
    font-size: 1.38rem;
  }

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

  .product-list-card {
    min-height: auto;
    padding: 14px 14px 14px 18px;
  }

  .product-list-card h3 {
    font-size: 0.92rem;
  }

  .product-list-card p {
    font-size: 0.84rem;
  }

  .readable-list-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    min-height: 50px;
    padding: 10px 12px;
  }

  .readable-list-index {
    width: 34px;
    height: 28px;
    font-size: 0.76rem;
  }

  .readable-list-row h3 {
    font-size: 0.92rem;
  }

  .insert-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .insert-product-card h2 {
    margin-top: 14px;
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .insert-product-card p {
    font-size: 0.9rem;
  }

  .product-jump-list {
    gap: 8px;
    margin-top: -4px;
  }

  .product-jump-list a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.86rem;
  }

  .pk-summary-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    scroll-margin-top: 122px;
  }

  .pk-summary-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pk-summary-card__head h2 {
    font-size: 1.18rem;
  }

  .pk-summary-card p {
    font-size: 0.88rem;
  }

  .pk-option-row {
    grid-template-columns: 1fr;
  }

  .pk-size-chips {
    gap: 6px;
  }

  .pk-size-chips span {
    min-width: 52px;
    min-height: 28px;
    font-size: 0.82rem;
  }
}

@media (max-width: 520px) {
  .header-main,
  .primary-nav {
    width: calc(100% - 24px);
    max-width: 366px;
    margin-left: 12px;
    margin-right: auto;
  }

  .header-contacts {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    gap: 8px;
  }

  .hero__content,
  .hero-cards,
  .section-inner {
    width: calc(100% - 24px);
    max-width: 342px;
    margin-left: 12px;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 1.58rem;
    line-height: 1.12;
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.74rem;
  }

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

  .catalog-card {
    min-height: 292px;
  }

  .catalog-card::before {
    height: 118px;
  }

  .catalog-card__image {
    inset: 0;
    width: 100%;
    height: 100%;
  }

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

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

  .insert-product-card__media {
    aspect-ratio: 1.08 / 1;
  }

  .solutions-cta {
    padding: 20px 16px;
  }
}

@media (max-width: 430px) {
  .delivery-strip {
    font-size: 0.78rem;
  }

  .header-main {
    grid-template-columns: 94px minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .brand__logo {
    width: 94px;
    height: 46px;
  }

  .header-place strong {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .header-place span {
    display: none;
  }

  .header-contacts {
    grid-template-columns: 1fr;
  }

  .contact-message {
    display: none;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    gap: 8px;
  }

  .contact-card .header-phone,
  .contact-card--primary .header-phone {
    font-size: 1rem;
  }

  .messenger,
  .contact-card--secondary .messenger {
    width: 32px;
    height: 32px;
  }

  .primary-nav {
    max-height: calc(100vh - 220px);
  }

  .hero-cards strong {
    font-size: 1.14rem;
  }
}
