:root {
  --bg: #f3efe7;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #1f2429;
  --muted: #67717c;
  --line: rgba(31, 36, 41, 0.12);
  --accent: #b98a52;
  --accent-dark: #9a6e3d;
  --dark: #1f2429;
  --dark-soft: #2c333a;
  --success: #297a47;
  --danger: #a53e30;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-lg: 0 24px 70px rgba(31, 36, 41, 0.12);
  --shadow-md: 0 14px 34px rgba(31, 36, 41, 0.08);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 138, 82, 0.14), transparent 32%),
    linear-gradient(180deg, #f7f3ec 0%, #f3efe7 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.42));
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(160deg, rgba(31, 36, 41, 0.95), rgba(26, 31, 36, 0.98)),
    #1a1f24;
}

.section-cta {
  padding-top: 32px;
}

.category-showcase {
  padding: 34px 0 28px;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.category-showcase-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  box-shadow: 0 24px 54px rgba(31, 36, 41, 0.11);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background-color 0.32s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.category-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.48), transparent 24%),
    radial-gradient(circle at 86% 86%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

.category-showcase-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.category-showcase-card:hover,
.category-showcase-card:focus-visible {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 34px 68px rgba(31, 36, 41, 0.15);
  border-color: rgba(185, 138, 82, 0.26);
}

.category-showcase-card:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(185, 138, 82, 0.18),
    0 34px 68px rgba(31, 36, 41, 0.15);
}

.category-showcase-card-wide {
  grid-column: span 2;
}

.category-showcase-card-banner {
  grid-column: 1 / -1;
  min-height: 182px;
}

.category-showcase-card-tall {
  min-height: 368px;
}

.category-showcase-card-cta-under-media {
  min-height: 346px;
}

.category-showcase-copy,
.category-showcase-media {
  position: relative;
  z-index: 1;
}

.category-showcase-copy {
  pointer-events: none;
}

.category-showcase-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  width: min(62%, 360px);
  padding: 30px 28px 26px;
}

.category-showcase-card-wide .category-showcase-copy {
  width: min(48%, 420px);
}

.category-showcase-card-tall .category-showcase-copy {
  width: min(64%, 360px);
}

.category-showcase-card-banner .category-showcase-copy {
  width: min(31%, 330px);
  gap: 10px;
  padding-block: 22px;
}

.category-showcase-card-kashpo .category-showcase-copy {
  width: min(78%, 420px);
}

.category-showcase-card-urny .category-showcase-copy {
  width: min(74%, 390px);
}

.category-showcase-card-cta-under-media .category-showcase-copy {
  width: min(44%, 280px);
  padding-bottom: 30px;
}

.category-showcase-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(133, 102, 221, 0.92);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.category-showcase-card h3 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(1.62rem, 2.5vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.category-showcase-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(31, 36, 41, 0.82);
}

.category-showcase-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.55;
}

.category-showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(133, 102, 221, 0.85);
}

.category-showcase-card-kashpo .category-showcase-list li {
  white-space: nowrap;
}

.category-showcase-card-urny .category-showcase-list li {
  white-space: nowrap;
}

.category-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  width: fit-content;
  padding: 7px 8px 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(31, 36, 41, 0.06);
  backdrop-filter: blur(12px);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(31, 36, 41, 0.88);
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.category-showcase-link::after {
  content: "\2192";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.category-showcase-card:hover .category-showcase-link,
.category-showcase-card:focus-visible .category-showcase-link {
  transform: translateY(-2px);
  background: rgba(31, 36, 41, 0.92);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(31, 36, 41, 0.16);
}

.category-showcase-card:hover .category-showcase-link::after,
.category-showcase-card:focus-visible .category-showcase-link::after {
  transform: translateX(4px);
  background: #fff;
  color: var(--dark);
}

.category-showcase-card-cta-under-media .category-showcase-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  margin-top: 0;
  z-index: 2;
}

.category-showcase-media {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 84%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 16px;
  pointer-events: none;
}

.category-showcase-card-wide .category-showcase-media {
  width: 50%;
  height: 88%;
  padding-right: 18px;
}

.category-showcase-card-tall .category-showcase-media {
  width: 78%;
  height: 58%;
  padding-right: 0;
}

.category-showcase-card-banner .category-showcase-media {
  width: 64%;
  height: 96%;
  padding-right: 30px;
}

.category-showcase-card-cta-under-media .category-showcase-media {
  bottom: 68px;
}

.category-showcase-card-urny .category-showcase-media {
  bottom: 16px;
}

.category-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 22px 28px rgba(31, 36, 41, 0.2));
  transform: scale(1);
  transform-origin: right bottom;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.category-showcase-card:hover .category-showcase-media img,
.category-showcase-card:focus-visible .category-showcase-media img {
  transform: scale(1.05) translateX(-4px);
  filter: drop-shadow(0 28px 38px rgba(31, 36, 41, 0.24));
}

.category-theme-sand {
  background: linear-gradient(135deg, #eee4d5 0%, #f8f2e8 40%, #efe5d7 100%);
}

.category-theme-sage {
  background: linear-gradient(135deg, #edf3df 0%, #dbead5 48%, #e8f2e6 100%);
}

.category-theme-blush {
  background: linear-gradient(135deg, #f4ddd7 0%, #f6e8e2 48%, #f0dbd0 100%);
}

.category-theme-ivory {
  background: linear-gradient(135deg, #f7efde 0%, #f2ead9 48%, #f4e6d3 100%);
}

.category-theme-sky {
  background: linear-gradient(135deg, #dcecf2 0%, #e8f3f6 50%, #d5e7ee 100%);
}

.category-theme-stone {
  background: linear-gradient(135deg, #ece6df 0%, #f6f0ea 48%, #e3dad0 100%);
}

.category-theme-mist {
  background: linear-gradient(135deg, #e8e3ef 0%, #f2edf7 45%, #ddd5eb 100%);
}

.category-theme-graphite {
  background: linear-gradient(135deg, #dde1e6 0%, #eef1f3 48%, #d7dde3 100%);
}

.category-showcase-media-hero {
  width: 54%;
  height: 90%;
  padding-right: 10px;
}

.category-showcase-media-hero img {
  transform: scale(1.05);
}

.category-showcase-media-urny {
  width: 52%;
  height: 80%;
  padding-right: 8px;
}

.category-showcase-media-skameyki {
  width: 58%;
  height: 82%;
  padding-right: 4px;
}

.category-showcase-media-vazony {
  width: 82%;
  height: 60%;
}

.category-showcase-media-flagshtoki {
  width: 50%;
  height: 88%;
  padding-right: 4px;
}

.category-showcase-media-ograzhdeniya {
  width: 55%;
  height: 76%;
  padding-right: 6px;
}

.category-showcase-media-shlagbaumy {
  width: 60%;
  height: 92%;
  padding-right: 22px;
}

.category-showcase-media-shlagbaumy img {
  object-position: center bottom;
}

.category-showcase-fallback {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-showcase-fallback a {
  padding: 14px 16px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .category-showcase-card,
  .category-showcase-link,
  .category-showcase-link::after,
  .category-showcase-media img {
    transition: none;
  }

  .category-showcase-card:hover,
  .category-showcase-card:focus-visible {
    transform: none;
  }

  .category-showcase-card:hover .category-showcase-media img,
  .category-showcase-card:focus-visible .category-showcase-media img,
  .category-showcase-card:hover .category-showcase-link::after,
  .category-showcase-card:focus-visible .category-showcase-link::after {
    transform: none;
  }
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading-light .eyebrow,
.section-heading-light h2,
.section-heading-light p {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 231, 0.82);
  border-bottom: 1px solid rgba(31, 36, 41, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav-item {
  position: relative;
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: #3b434c;
}

.site-nav-link::after,
.site-nav-link.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav-link:hover::after,
.site-nav-link:focus-visible::after,
.site-nav-link.is-current::after {
  transform: scaleX(1);
}

.site-nav-link.is-current {
  color: var(--dark);
}

.site-nav-chevron {
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.site-nav-dropdown:hover .site-nav-chevron,
.site-nav-dropdown:focus-within .site-nav-chevron,
.site-nav-dropdown.is-open .site-nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.site-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 20;
  min-width: 248px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.site-nav-dropdown:hover .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within .site-nav-dropdown-menu,
.site-nav-dropdown.is-open .site-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #4b5560;
  background: rgba(243, 239, 231, 0.46);
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.site-nav-dropdown-menu a:hover,
.site-nav-dropdown-menu a:focus-visible,
.site-nav-dropdown-menu a.is-current {
  background: rgba(185, 138, 82, 0.14);
  color: var(--dark);
  transform: translateX(2px);
}

.header-actions {
  display: grid;
  grid-auto-flow: row;
  justify-items: end;
  align-content: center;
  gap: 3px;
  text-align: right;
}

.header-phone {
  display: block;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.header-email {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
}

.header-email:hover,
.header-email:focus-visible {
  color: var(--dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

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

.button-accent {
  background: linear-gradient(135deg, #c79a64, var(--accent-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(154, 110, 61, 0.22);
}

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

.button-light {
  border-color: rgba(31, 36, 41, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--dark);
}

.button-full {
  width: 100%;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.hero {
  padding-top: 54px;
}

.hero-grid,
.about-grid,
.cta-grid,
.footer-grid,
.media-grid,
.application-grid,
.trust-grid,
.types-grid,
.related-grid,
.feature-grid,
.stats-grid,
.steps-grid,
.projects-grid,
.benefits-grid,
.catalog-grid {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 12ch;
}

.hero-lead,
.page-hero-copy p,
.cta-copy p {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.page-hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions,
.page-hero-actions {
  margin-top: 30px;
}

.hero-metrics,
.page-hero-points {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

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

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

.hero-metrics li,
.hero-card,
.info-card,
.product-card,
.project-card,
.step-card,
.benefit-card,
.request-form,
.faq-item,
.feature-card,
.trust-card,
.type-card,
.usage-card,
.media-card,
.stats-card,
.cta-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-metrics li,
.page-hero-points li,
.feature-card,
.trust-card,
.type-card,
.usage-card,
.stats-card,
.contact-card {
  padding: 22px;
}

.hero-metrics strong,
.page-hero-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-metrics span,
.page-hero-points span,
.feature-card p,
.trust-card p,
.type-card p,
.usage-card p,
.stats-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-panel,
.page-hero-panel,
.cta-grid {
  padding: 26px;
  border-radius: 34px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-panel,
.page-hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6)),
    radial-gradient(circle at top right, rgba(185, 138, 82, 0.22), transparent 38%);
}

.hero-card,
.info-card,
.product-card,
.benefit-card,
.step-card,
.media-card {
  padding: 24px;
}

.hero-card span,
.type-card span,
.stats-card span,
.breadcrumb-current {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero-card strong,
.info-card h3,
.product-card h3,
.project-copy h3,
.step-card h3,
.benefit-card h3,
.site-footer h3,
.feature-card h3,
.trust-card h3,
.type-card h3,
.usage-card h3,
.media-card h3,
.cta-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.hero-card p,
.info-card p,
.product-card p,
.project-copy p,
.step-card p,
.benefit-card p,
.site-footer p,
.media-card p,
.cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-card-primary,
.cta-card-dark {
  background:
    linear-gradient(135deg, rgba(31, 36, 41, 0.98), rgba(44, 51, 58, 0.96)),
    var(--dark);
  color: #fff;
}

.hero-card-primary p,
.cta-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-card-media {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 24px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 20% 20%, rgba(226, 196, 160, 0.26), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(160deg, rgba(67, 74, 82, 0.98), rgba(28, 33, 38, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-card-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-card-media-image-sphere {
  object-position: center 58%;
  transform: scale(1.08);
}

.hero-card-primary-promo {
  padding: 28px;
}

.hero-card-primary-promo .hero-card-media {
  height: 290px;
  margin-bottom: 22px;
  border-radius: 28px;
}

.hero-card-promo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(234, 84, 67, 0.18);
  color: #ffd7d2;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card-primary-promo strong {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.hero-card-promo-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-card-promo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-card-promo-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-card-primary-promo .site-note {
  margin-top: 16px;
}

.hero-card-primary-promo .button {
  min-width: 190px;
  justify-content: center;
}

.sphere-page-hero {
  padding-top: 8px;
  padding-bottom: 28px;
}

.sphere-hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 243, 234, 0.9)),
    radial-gradient(circle at top right, rgba(185, 138, 82, 0.14), transparent 34%);
  border: 1px solid rgba(31, 36, 41, 0.08);
  box-shadow: 0 16px 36px rgba(31, 36, 41, 0.08);
}

.sphere-hero-copy {
  display: grid;
  align-content: center;
}

.sphere-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(234, 84, 67, 0.14);
  color: #bf493b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sphere-hero-copy h1 {
  max-width: 11ch;
  margin: 0 0 10px;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1;
  text-wrap: balance;
}

.sphere-hero-text {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.sphere-hero-offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  justify-self: start;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(31, 36, 41, 0.035);
  border: 1px solid rgba(31, 36, 41, 0.07);
}

.sphere-hero-offer strong {
  color: var(--dark);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.18;
}

.sphere-hero-offer-button {
  min-height: 42px;
  padding-inline: 18px;
}

.sphere-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.sphere-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(185, 138, 82, 0.1);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.sphere-hero-actions {
  margin-top: 22px;
}

.sphere-hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 22px;
  background: #1f2329;
  box-shadow: 0 16px 34px rgba(31, 36, 41, 0.1);
}

.sphere-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-card-media::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -18%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 172, 133, 0.18), transparent 68%);
}

.hero-card-media-art {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}

.hero-card-media-base {
  position: absolute;
  bottom: 36px;
  width: 72%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 18, 22, 0.14), rgba(15, 18, 22, 0.36));
  filter: blur(8px);
}

.hero-card-media-sphere {
  position: relative;
  bottom: 26px;
  width: 146px;
  height: 78px;
  border-radius: 146px 146px 0 0;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.05) 28%),
    linear-gradient(180deg, #efebe4 0%, #c3b5a4 46%, #8f8378 100%);
  box-shadow:
    0 18px 32px rgba(10, 12, 15, 0.22),
    inset 0 2px 3px rgba(255, 255, 255, 0.34),
    inset 0 -10px 14px rgba(52, 46, 41, 0.18);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

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

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

.partner-logos-section {
  position: relative;
}

.partner-logos-heading {
  max-width: 860px;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 144px;
  padding: 10px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.partner-logo-card:hover,
.partner-logo-card:focus-within {
  transform: translateY(-2px);
  opacity: 0.92;
}

.partner-logo-card img {
  width: 100%;
  height: auto;
  max-height: 108px;
  object-fit: contain;
  opacity: 1;
}

.about-home-section {
  padding-top: 34px;
}

.about-home-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)),
    var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0;
  align-items: stretch;
}

.about-home-copy {
  padding: 34px;
}

.about-home-copy h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.about-home-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-home-copy .hero-badges {
  margin-top: 26px;
}

.about-home-photo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 16px;
  border-left: 1px solid rgba(31, 36, 41, 0.08);
  overflow: hidden;
}

.about-home-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.photo-gallery-section {
  padding-top: 34px;
}

.photo-gallery-heading {
  max-width: 760px;
}

.photo-carousel-shell {
  --photo-carousel-gap: 18px;
  position: relative;
  display: flex;
  overflow: hidden;
  gap: var(--photo-carousel-gap);
  margin-top: 32px;
  padding: 8px 0;
}

.photo-carousel-shell::before,
.photo-carousel-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 88px;
  pointer-events: none;
}

.photo-carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, #f6f1e8 0%, rgba(246, 241, 232, 0) 100%);
}

.photo-carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, #f6f1e8 0%, rgba(246, 241, 232, 0) 100%);
}

.photo-carousel-track {
  display: flex;
  flex: 0 0 auto;
  gap: var(--photo-carousel-gap);
  min-width: max-content;
  animation: photo-carousel-marquee 48s linear infinite;
}

.photo-carousel-shell:hover .photo-carousel-track,
.photo-carousel-shell:focus-within .photo-carousel-track {
  animation-play-state: paused;
}

.photo-carousel-card {
  flex: 0 0 clamp(220px, 24vw, 320px);
  height: clamp(220px, 22vw, 300px);
  overflow: hidden;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.photo-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-carousel-card:hover img,
.photo-carousel-card:focus-within img {
  transform: scale(1.04);
}

@keyframes photo-carousel-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--photo-carousel-gap) / 2)));
  }
}

.product-card ul,
.type-card ul,
.usage-card ul,
.cta-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.product-card li + li,
.type-card li + li,
.usage-card li + li,
.cta-card li + li {
  margin-top: 8px;
}

.product-visual,
.media-visual {
  position: relative;
  height: 190px;
  margin-bottom: 22px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ebe4d7;
}

.media-visual {
  min-height: 240px;
  margin-bottom: 0;
}

.product-visual::before,
.product-visual::after,
.media-visual::before,
.media-visual::after {
  content: "";
  position: absolute;
}

.product-visual-sphere::before,
.media-visual-sphere::before {
  width: 120px;
  height: 120px;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff5, transparent 26%), linear-gradient(145deg, #5d656f, #2d3338);
}

.product-visual-bin::before,
.media-visual-bin::before {
  width: 92px;
  height: 118px;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  border-radius: 24px 24px 20px 20px;
  background: linear-gradient(180deg, #6b737d, #2b3136);
}

.product-visual-bin::after,
.media-visual-bin::after {
  width: 120px;
  height: 18px;
  left: 50%;
  bottom: 130px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #9098a1;
}

.product-visual-bench::before,
.media-visual-bench::before {
  width: 150px;
  height: 18px;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #b98a52;
  box-shadow:
    0 26px 0 #b98a52,
    -48px 18px 0 -3px #2f3439,
    48px 18px 0 -3px #2f3439,
    -48px 52px 0 -3px #2f3439,
    48px 52px 0 -3px #2f3439;
}

.product-visual-bollard::before,
.media-visual-bollard::before {
  width: 66px;
  height: 142px;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: linear-gradient(180deg, #dad2c6 0%, #b9b0a3 100%);
  box-shadow: inset 0 -24px 0 rgba(31, 36, 41, 0.08);
}

.product-visual-flag::before,
.media-visual-flag::before {
  width: 6px;
  height: 148px;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #3b434c;
}

.product-visual-flag::after,
.media-visual-flag::after {
  width: 80px;
  height: 46px;
  left: calc(50% + 3px);
  bottom: 96px;
  clip-path: polygon(0 0, 100% 12%, 76% 50%, 100% 88%, 0 100%);
  background: linear-gradient(135deg, #b98a52, #d2ab77);
}

.product-visual-planter::before,
.media-visual-planter::before {
  width: 132px;
  height: 92px;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  border-radius: 20px 20px 34px 34px;
  background: linear-gradient(180deg, #777f86, #434a51);
}

.product-visual-planter::after,
.media-visual-planter::after {
  width: 108px;
  height: 54px;
  left: 50%;
  bottom: 94px;
  transform: translateX(-50%);
  border-radius: 70px 70px 24px 24px;
  background:
    radial-gradient(circle at 18px 16px, #6aa15e 0 12px, transparent 13px),
    radial-gradient(circle at 54px 10px, #87b56f 0 14px, transparent 15px),
    radial-gradient(circle at 86px 18px, #5f9658 0 12px, transparent 13px);
}

.product-visual-barrier::before,
.media-visual-barrier::before {
  width: 132px;
  height: 14px;
  left: 50%;
  bottom: 88px;
  transform: translateX(-8%);
  border-radius: 999px;
  background: linear-gradient(90deg, #f6f1e7 0 18%, #c44b39 18% 31%, #f6f1e7 31% 49%, #c44b39 49% 62%, #f6f1e7 62% 80%, #c44b39 80% 100%);
  box-shadow: 0 8px 20px rgba(32, 36, 42, 0.16);
}

.product-visual-barrier::after,
.media-visual-barrier::after {
  width: 16px;
  height: 84px;
  left: calc(50% - 54px);
  bottom: 28px;
  border-radius: 10px;
  background: linear-gradient(180deg, #6d747b 0%, #2d3338 100%);
  box-shadow:
    112px 0 0 -3px rgba(45, 51, 56, 0.22),
    118px 10px 0 -4px rgba(45, 51, 56, 0.16);
}

.product-card-accent {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(31, 36, 41, 0.96), rgba(44, 51, 58, 0.98)),
    var(--dark);
  color: #fff;
}

.product-card-accent p {
  color: rgba(255, 255, 255, 0.76);
}

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

.benefit-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.75);
}

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

.project-card {
  overflow: hidden;
}

.project-media {
  min-height: 240px;
  background-color: #ddd3c3;
}

.project-media-yard,
.media-visual-yard {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #d8ceb9, #c3b69d);
}

.project-media-office,
.media-visual-office {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #c7cdd4, #a6b0bc);
}

.project-media-public,
.media-visual-public {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #d4ccb8, #bbb09a);
}

.project-copy {
  padding: 24px;
}

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

.step-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.cta-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at top left, rgba(185, 138, 82, 0.18), transparent 34%);
}

.contact-links {
  margin-top: 24px;
}

.contact-links a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.request-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.form-row + .form-row {
  margin-top: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(31, 36, 41, 0.15);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(185, 138, 82, 0.18);
  border-color: var(--accent);
}

.form-note,
.form-status,
.footer-text {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  padding: 36px 0 28px;
}

.footer-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
  padding: 34px 0;
  border-top: 1px solid rgba(31, 36, 41, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 36, 41, 0.1);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}

.floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(31, 36, 41, 0.2);
}

.breadcrumbs {
  padding-top: 26px;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.breadcrumbs-list li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: rgba(31, 36, 41, 0.35);
}

.page-hero {
  padding-top: 34px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: center;
}

.page-hero-copy h1 {
  max-width: 13ch;
}

.page-hero-panel {
  display: grid;
  gap: 16px;
}

.page-hero-points li {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.feature-grid,
.trust-grid,
.types-grid,
.application-grid,
.related-grid,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.trust-card,
.type-card,
.usage-card,
.stats-card,
.contact-card,
.catalog-card,
.catalog-featured {
  min-height: 100%;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.procurement-hero {
  padding-top: 18px;
}

.procurement-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.procurement-hero-copy,
.procurement-hero-panel,
.procurement-benefit-card,
.procurement-cta-card,
.procurement-trustband-item,
.procurement-request-copy {
  border: 1px solid rgba(31, 36, 41, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 245, 246, 0.92));
  box-shadow: var(--shadow-md);
}

.procurement-hero-copy,
.procurement-hero-panel {
  border-radius: 30px;
}

.procurement-hero-copy {
  padding: 34px;
}

.procurement-hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.6rem, 5.1vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.procurement-hero-lead {
  max-width: 720px;
  margin-top: 20px;
}

.procurement-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.procurement-hero-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 240, 242, 0.9)),
    radial-gradient(circle at top right, rgba(31, 36, 41, 0.06), transparent 42%);
}

.procurement-hero-panel-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.16;
}

.procurement-panel-kicker,
.procurement-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 36, 41, 0.06);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.procurement-stat-list {
  display: grid;
  gap: 12px;
}

.procurement-stat-card {
  display: grid;
  gap: 6px;
  padding: 18px 18px 17px;
  border-radius: 22px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.procurement-stat-card strong {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.procurement-stat-card span {
  color: var(--muted);
  line-height: 1.55;
}

.procurement-trustband {
  padding-top: 8px;
}

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

.procurement-trustband-item {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 24px;
}

.procurement-trustband-item strong {
  font-size: 1rem;
}

.procurement-trustband-item span {
  color: var(--muted);
  line-height: 1.65;
}

.procurement-benefits-section {
  background:
    linear-gradient(180deg, rgba(243, 245, 246, 0.92), rgba(239, 241, 243, 0.92)),
    var(--surface-soft);
}

.procurement-section-heading {
  max-width: 920px;
}

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

.procurement-benefit-card {
  padding: 24px;
  border-radius: 24px;
}

.procurement-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(31, 36, 41, 0.05);
  color: var(--dark);
}

.procurement-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.procurement-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.procurement-benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.procurement-catalog-grid,
.procurement-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 24px;
  align-items: start;
}

.procurement-catalog-copy,
.procurement-request-copy {
  padding: 32px;
  border-radius: 28px;
}

.procurement-catalog-copy h2,
.procurement-request-copy h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.procurement-catalog-copy p,
.procurement-request-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.procurement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.procurement-tags span,
.procurement-request-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 36, 41, 0.05);
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.procurement-cta-card {
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 239, 241, 0.95)),
    var(--surface);
}

.procurement-cta-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.14;
}

.procurement-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.procurement-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.procurement-request-section {
  padding-top: 10px;
}

.procurement-request-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.procurement-request-list li {
  justify-content: flex-start;
  min-height: 42px;
  padding: 0 16px;
}

.procurement-request-form {
  border-radius: 28px;
}

.sphere-usage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.sphere-usage-heading {
  margin-bottom: 16px;
}

.sphere-usage-intro {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.sphere-usage-card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.94));
  box-shadow: var(--shadow-md);
}

.sphere-usage-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(185, 138, 82, 0.12);
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sphere-usage-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  line-height: 1.32;
}

.sphere-usage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.sphere-usage-card ul {
  margin: 14px 0 0;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.sphere-usage-card li + li {
  margin-top: 6px;
}

.sphere-usage-aside {
  padding: 22px;
  border: 1px solid rgba(185, 138, 82, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(31, 36, 41, 0.98), rgba(44, 51, 58, 0.96)),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.sphere-usage-aside-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sphere-usage-aside h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.22;
}

.sphere-usage-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sphere-usage-point {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sphere-usage-point strong {
  font-size: 0.96rem;
}

.sphere-usage-point span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.sphere-usage-note {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sphere-usage-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.cta-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.86);
}

.related-card-link {
  display: block;
  height: 100%;
}

.related-card-link .type-card {
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-link:hover .type-card,
.related-card-link:focus-visible .type-card {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.catalog-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.catalog-block + .catalog-block {
  margin-top: 26px;
}

.catalog-block-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.catalog-kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-subtitle {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-subnote {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.featured-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.catalog-grid-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.catalog-featured,
.catalog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(251, 248, 243, 0.94));
  box-shadow: var(--shadow-md);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.catalog-featured:hover,
.catalog-card:hover,
.catalog-featured:focus-within,
.catalog-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(185, 138, 82, 0.28);
}

.catalog-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(185, 138, 82, 0.16), transparent 36%),
    linear-gradient(180deg, #f7f1e8 0%, #ece1d2 100%);
}

.catalog-card .catalog-media {
  height: 176px;
}

.catalog-grid-compact .catalog-card {
  border-radius: 22px;
}

.catalog-grid-compact .catalog-card-button {
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
}

.catalog-grid-compact .catalog-media {
  height: 100%;
  min-height: 176px;
  border-right: 1px solid rgba(31, 36, 41, 0.08);
}

.sphere-catalog-actions-section {
  padding-top: 0;
}

.sphere-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0 4px;
}

.sphere-catalog-actions .button {
  min-width: 240px;
  max-width: 100%;
  justify-content: center;
}

.bollard-catalog-header {
  align-items: stretch;
}

.bollard-hero-panel {
  display: grid;
  width: min(100%, 360px);
}

.bollard-hero-note {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 239, 230, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.bollard-hero-note h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.bollard-hero-note p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bollard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.bollard-kpi-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.bollard-kpi-card strong {
  color: #1f2329;
  font-size: 1rem;
  line-height: 1.25;
}

.bollard-kpi-card span {
  color: #59626b;
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.bollard-scenario-card,
.bollard-doc-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.bollard-scenario-card span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bollard-scenario-card h3,
.bollard-doc-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.28;
}

.bollard-scenario-card p,
.bollard-doc-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.barrier-placeholder-page {
  display: grid;
  min-height: calc(100vh - 220px);
  padding: 36px 0 52px;
  background:
    radial-gradient(circle at top left, rgba(185, 138, 82, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f5f2 0%, #efebe5 100%);
}

.barrier-placeholder-shell {
  display: grid;
}

.barrier-placeholder-card {
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 100%;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 232, 0.94)),
    var(--surface);
  box-shadow: var(--shadow-lg);
}

.barrier-placeholder-card h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.barrier-placeholder-text {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.barrier-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.barrier-brand-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(31, 36, 41, 0.06);
  color: #1f2329;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.barrier-placeholder-note {
  display: grid;
  gap: 10px;
  max-width: 760px;
  padding: 24px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.barrier-placeholder-note h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}

.barrier-placeholder-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.barrier-placeholder-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.barrier-placeholder-contacts .button {
  min-width: 240px;
  justify-content: center;
}

.catalog-grid-compact .catalog-body {
  align-content: center;
  padding: 18px 20px;
}

.catalog-grid-compact .catalog-body h3 {
  font-size: 1.08rem;
}

.catalog-grid-compact .catalog-body p {
  font-size: 0.92rem;
  line-height: 1.58;
}

.catalog-grid-compact .catalog-meta {
  gap: 7px;
}

.catalog-grid-compact .catalog-meta span {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.76rem;
}

.catalog-grid-compact .catalog-footer {
  margin-top: 2px;
}

.catalog-grid-compact .catalog-price strong {
  font-size: 1rem;
}

.catalog-grid-compact .catalog-link {
  align-self: center;
}

.bench-custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 232, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.bench-custom-cta-copy {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.bench-custom-cta-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bench-custom-cta-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.bench-custom-cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.catalog-media::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 56%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(120, 108, 93, 0.18);
  filter: blur(3px);
  pointer-events: none;
}

.catalog-placeholder {
  position: absolute;
  inset: 14px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at top right, rgba(185, 138, 82, 0.12), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 16px 34px rgba(64, 50, 34, 0.08);
}

.catalog-placeholder-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-placeholder-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #4d5660;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog-placeholder-chip svg,
.catalog-placeholder-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.catalog-placeholder-pattern {
  width: 62px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 138, 82, 0.04), rgba(185, 138, 82, 0.24), rgba(185, 138, 82, 0.04));
}

.catalog-placeholder-center {
  position: relative;
  display: grid;
  place-items: center;
}

.catalog-placeholder-icon {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: #59626b;
  box-shadow: 0 8px 18px rgba(58, 44, 29, 0.07);
}

.catalog-placeholder-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(31, 36, 41, 0.06);
  color: #5d666f;
  font-size: 0.73rem;
  font-weight: 700;
}

.catalog-photo-note {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #4a535b;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.catalog-photo-icon {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 14px;
  border: 2px solid rgba(74, 83, 91, 0.7);
  border-radius: 4px;
}

.catalog-photo-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 10px;
  height: 6px;
  border-radius: 1px;
  background: linear-gradient(135deg, transparent 0 22%, rgba(74, 83, 91, 0.75) 23% 55%, transparent 56%),
    linear-gradient(45deg, rgba(74, 83, 91, 0.75) 0 38%, transparent 39%);
}

.catalog-photo-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(74, 83, 91, 0.75);
}

.catalog-figure {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #6c747d, #353c42);
  box-shadow:
    inset -12px -16px 20px rgba(0, 0, 0, 0.14),
    inset 10px 10px 20px rgba(255, 255, 255, 0.06);
}

.catalog-figure.round {
  width: 122px;
  height: 122px;
  border-radius: 50%;
}

.catalog-figure.round::after {
  content: "";
  position: absolute;
  inset: 20px 28px auto;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.catalog-figure.round-large {
  width: 142px;
  height: 142px;
}

.catalog-figure.anchor::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 10px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #3c4248;
}

.catalog-figure.faceted {
  width: 136px;
  height: 136px;
  border-radius: 22px;
  clip-path: polygon(18% 0%, 82% 0%, 100% 20%, 100% 80%, 82% 100%, 18% 100%, 0% 80%, 0% 20%);
}

.catalog-figure.faceted::after {
  content: "";
  position: absolute;
  inset: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.catalog-figure.tall {
  width: 132px;
  height: 154px;
  border-radius: 50% 50% 40% 40%;
}

.catalog-figure.painted {
  background: linear-gradient(145deg, #f0c95c, #cb9118);
}

.catalog-figure.textured {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.16) 0 10px, transparent 11px),
    radial-gradient(circle at 68% 32%, rgba(255, 255, 255, 0.12) 0 8px, transparent 9px),
    linear-gradient(145deg, #8c949a, #576067);
}

.catalog-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#catalog .catalog-badge {
  background: linear-gradient(135deg, #ff6b6b, #c62828);
  color: #fff7f5;
  box-shadow: 0 16px 28px rgba(198, 40, 40, 0.26);
}

.catalog-body {
  display: grid;
  gap: 14px;
  padding: 18px 18px 20px;
}

.catalog-body h3 {
  margin: 0;
  color: #1f2329;
  font-size: 1.16rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.catalog-featured .catalog-body h3 {
  font-size: 1.24rem;
}

.catalog-body p {
  margin: 0;
  color: #4d5660;
  font-size: 0.94rem;
  line-height: 1.62;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(31, 36, 41, 0.05);
  color: #40484f;
  font-size: 0.78rem;
  font-weight: 700;
}

.catalog-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.catalog-price {
  display: grid;
  gap: 4px;
}

.catalog-price span {
  color: #6a737d;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-price strong {
  color: #1f2329;
  font-size: 1.02rem;
  line-height: 1.2;
}

.catalog-divider-title {
  margin: 0 0 20px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.catalog-featured .button,
.catalog-card .button {
  flex-shrink: 0;
  min-width: 126px;
  justify-content: center;
}

.catalog-card-button {
  display: grid;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.catalog-card-button .catalog-media,
.catalog-card-button .catalog-body,
.catalog-card-button .catalog-meta,
.catalog-card-button .catalog-footer,
.catalog-card-button .catalog-price,
.catalog-card-button .catalog-link {
  pointer-events: none;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.catalog-link::after {
  content: "→";
  font-size: 1rem;
}

.catalog-empty {
  padding: 22px;
  border: 1px dashed rgba(31, 36, 41, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  color: #4d5660;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 29, 0.5);
  backdrop-filter: blur(4px);
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 960px);
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(15, 20, 25, 0.22);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.product-modal-media {
  position: relative;
  min-height: 320px;
  background:
    radial-gradient(circle at top left, rgba(185, 138, 82, 0.14), transparent 36%),
    linear-gradient(180deg, #f7f1e8 0%, #ece1d2 100%);
}

.product-modal-media .catalog-media {
  height: 100%;
}

.product-media-gallery {
  min-height: 100%;
}

.product-media-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-media-thumb {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 36, 41, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-media-thumb:hover,
.product-media-thumb:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(185, 138, 82, 0.38);
  box-shadow: 0 12px 20px rgba(31, 36, 41, 0.08);
}

.product-media-thumb.is-active {
  border-color: rgba(185, 138, 82, 0.72);
  box-shadow: 0 0 0 2px rgba(185, 138, 82, 0.16);
}

.product-media-thumb img {
  display: block;
  width: 100%;
  height: 74px;
  object-fit: cover;
}

.product-modal-media .catalog-placeholder {
  inset: 22px;
}

.product-modal-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px 32px 32px;
}

.product-modal-content h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.15;
}

.product-modal-text {
  margin: 0;
  color: #4d5660;
  line-height: 1.7;
}

.product-modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-modal-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(31, 36, 41, 0.06);
  color: #424a53;
  font-size: 0.88rem;
  font-weight: 700;
}

.product-modal-price {
  margin: 0;
  color: #1f2329;
  font-size: 1.18rem;
  font-weight: 800;
}

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

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 36, 41, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2329;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.page-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-anchor-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  color: #3b434c;
}

.site-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-compact-features .section-heading {
  margin-bottom: 24px;
}

.section-compact-features .feature-grid {
  gap: 14px;
}

.section-compact-features .feature-card {
  padding: 18px 18px 16px;
}

.section-compact-features .feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.section-compact-features .feature-card p {
  font-size: 0.92rem;
  line-height: 1.58;
}

.content-grid {
  display: grid;
  gap: 28px;
}

.content-card,
.map-card,
.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.content-card h2,
.content-card h3,
.map-card h2,
.map-card h3,
.legal-card h2,
.legal-card h3 {
  margin-top: 0;
}

.content-card p,
.content-card li,
.legal-card p,
.legal-card li {
  color: #4b5560;
  line-height: 1.75;
}

.content-card ul,
.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.article-cover-media {
  margin: 2rem 0 0;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(31, 37, 43, 0.18);
}

.article-cover-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.stat-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-grid,
.article-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 18px;
}

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

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

.portfolio-card,
.article-card,
.contact-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.portfolio-card img,
.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5efe5 0%, #e7dbc9 100%);
}

.article-card strong {
  font-size: 1.15rem;
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(231, 219, 201, 0.6);
  color: #4c5560;
  font-size: 0.92rem;
  line-height: 1.2;
}

.article-card p,
.contact-card p {
  margin: 0;
  color: #4c5560;
  line-height: 1.7;
}

.blog-hub-section {
  padding-top: 42px;
}

.blog-hub-head {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.blog-hub-intro {
  margin-bottom: 0;
}

.blog-hub-note {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.blog-hub-note strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.blog-hub-note p {
  margin: 0;
  color: #4c5560;
  line-height: 1.7;
}

.popular-product-card {
  align-content: start;
}

.popular-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 2px;
}

.popular-product-card-price {
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.popular-product-card-footer .button {
  flex-shrink: 0;
}

.faq-stack {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 14px 0 0;
  color: #4b5560;
  line-height: 1.7;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.55)),
    repeating-linear-gradient(
      45deg,
      rgba(185, 138, 82, 0.08),
      rgba(185, 138, 82, 0.08) 14px,
      rgba(31, 36, 41, 0.03) 14px,
      rgba(31, 36, 41, 0.03) 28px
    );
  border: 1px solid rgba(31, 36, 41, 0.08);
  color: #45505a;
  text-align: center;
}

.toc {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.toc a {
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(31, 36, 41, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #46505a;
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.legal-links a {
  color: var(--accent-dark);
  font-weight: 700;
}

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

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

  .about-home-grid {
    grid-template-columns: 1fr;
  }

  .blog-hub-head {
    grid-template-columns: 1fr;
  }

  .about-home-photo-card {
    border-left: 0;
    border-top: 1px solid rgba(31, 36, 41, 0.08);
  }

  .photo-carousel-shell::before,
  .photo-carousel-shell::after {
    width: 64px;
  }

  .photo-carousel-card {
    flex-basis: clamp(200px, 36vw, 260px);
    height: clamp(200px, 32vw, 250px);
  }

  .category-showcase-card,
  .category-showcase-card-tall {
    min-height: 332px;
  }

  .hero-grid,
  .page-hero-grid,
  .cta-grid,
  .about-grid,
  .benefits-grid,
  .projects-grid,
  .steps-grid,
  .footer-grid,
  .catalog-grid,
  .feature-grid,
  .trust-grid,
  .types-grid,
  .application-grid,
  .related-grid,
  .stats-grid,
  .media-grid,
  .featured-catalog,
  .catalog-grid-compact,
  .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .procurement-hero-grid,
  .procurement-catalog-grid,
  .procurement-request-grid,
  .procurement-benefits-grid,
  .procurement-trustband-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics,
  .page-hero-points {
    grid-template-columns: 1fr;
  }

  .sphere-hero-showcase {
    grid-template-columns: 1fr;
  }

  .sphere-hero-copy h1 {
    max-width: 11ch;
  }

  .sphere-hero-photo-card {
    min-height: 420px;
  }

  .sphere-usage-layout {
    grid-template-columns: 1fr;
  }

  .procurement-hero-copy h1,
  .procurement-catalog-copy h2,
  .procurement-request-copy h2 {
    max-width: none;
  }

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

  .header-actions {
    display: none;
  }

  .stats-strip,
  .portfolio-grid,
  .article-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-modal-media {
    min-height: 260px;
  }
}

@media (max-width: 840px) {
  .section {
    padding: 74px 0;
  }

  .procurement-hero-copy,
  .procurement-hero-panel,
  .procurement-catalog-copy,
  .procurement-request-copy,
  .procurement-cta-card,
  .procurement-request-form {
    padding: 24px;
  }

  .procurement-hero-grid,
  .procurement-catalog-grid,
  .procurement-request-grid,
  .procurement-benefits-grid,
  .procurement-trustband-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-hub-note {
    padding: 22px;
  }

  .partner-logo-card {
    min-height: 120px;
    padding: 12px;
  }

  .partner-logo-card img {
    max-height: 88px;
  }

  .category-showcase {
    padding: 26px 0 22px;
  }

  .category-showcase-grid {
    gap: 16px;
  }

  .category-showcase-copy {
    width: min(58%, 320px);
    padding: 26px 22px 22px;
  }

  .category-showcase-card-wide .category-showcase-copy,
  .category-showcase-card-tall .category-showcase-copy,
  .category-showcase-card-banner .category-showcase-copy {
    width: min(58%, 340px);
  }

  .category-showcase-card-cta-under-media .category-showcase-copy {
    width: min(46%, 272px);
  }

  .category-showcase-card-kashpo .category-showcase-copy {
    width: min(76%, 400px);
  }

  .category-showcase-card-urny .category-showcase-copy {
    width: min(72%, 372px);
  }

  .category-showcase-card-banner {
    min-height: 196px;
  }

  .category-showcase-card h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .category-showcase-media {
    width: 50%;
    height: 74%;
    padding-right: 10px;
  }

  .category-showcase-card-wide .category-showcase-media {
    width: 48%;
    height: 78%;
  }

  .category-showcase-card-tall .category-showcase-media {
    width: 58%;
    height: 46%;
  }

  .category-showcase-card-banner .category-showcase-media {
    width: 52%;
    height: 84%;
    padding-right: 14px;
  }

  .category-showcase-card-cta-under-media .category-showcase-media {
    bottom: 64px;
  }

  .category-showcase-card-urny .category-showcase-media {
    bottom: 10px;
  }

  .category-showcase-media-hero,
  .category-showcase-media-urny,
  .category-showcase-media-skameyki,
  .category-showcase-media-flagshtoki,
  .category-showcase-media-ograzhdeniya,
  .category-showcase-media-shlagbaumy {
    width: 50%;
    height: 76%;
    padding-right: 8px;
  }

  .category-showcase-media-vazony {
    width: 58%;
    height: 46%;
    padding-right: 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 36, 41, 0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav-item {
    display: grid;
    gap: 8px;
  }

  .site-nav-link {
    width: fit-content;
  }

  .site-nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav-dropdown-menu a {
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(243, 239, 231, 0.72);
  }

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

  .hero-grid,
  .page-hero-grid,
  .cta-grid,
  .about-grid,
  .benefits-grid,
  .projects-grid,
  .steps-grid,
  .footer-grid,
  .catalog-grid,
  .feature-grid,
  .trust-grid,
  .types-grid,
  .application-grid,
  .related-grid,
  .stats-grid,
  .media-grid,
  .featured-catalog,
  .catalog-grid-compact,
  .stats-strip,
  .portfolio-grid,
  .article-grid,
  .contact-grid,
  .legal-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .sphere-usage-grid {
    grid-template-columns: 1fr;
  }

  .sphere-usage-aside {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .sphere-usage-aside h3 {
    font-size: 1.35rem;
  }

  .catalog-section-header,
  .catalog-footer {
    display: grid;
  }

  .bollard-kpi-grid,
  .bollard-scenario-grid,
  .bollard-doc-strip {
    grid-template-columns: 1fr;
  }

  .bollard-hero-panel {
    width: 100%;
  }

  .catalog-media,
  .catalog-card .catalog-media {
    height: 188px;
  }

  .catalog-grid-compact .catalog-card-button {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .product-modal-dialog {
    width: min(calc(100% - 20px), 960px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 22px;
  }

  .product-modal-content {
    padding: 24px 20px 22px;
  }

  .product-modal-content h3 {
    font-size: 1.5rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
  }

  .hero-panel,
  .page-hero-panel,
  .cta-grid {
    padding: 22px;
  }

  .sphere-page-hero {
    padding-top: 10px;
    padding-bottom: 22px;
  }

  .sphere-hero-showcase {
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
  }

  .sphere-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(1.8rem, 6vw, 2.7rem);
  }

  .sphere-hero-text {
    max-width: 500px;
    font-size: 0.92rem;
  }

  .sphere-hero-offer {
    gap: 8px 12px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .sphere-hero-photo-card {
    min-height: 240px;
    border-radius: 18px;
  }

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

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

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

@media (max-width: 560px) {
  .procurement-hero-copy,
  .procurement-hero-panel,
  .procurement-catalog-copy,
  .procurement-request-copy,
  .procurement-cta-card,
  .procurement-request-form,
  .procurement-trustband-item,
  .procurement-benefit-card {
    padding: 20px;
    border-radius: 22px;
  }

  .procurement-hero-actions,
  .procurement-cta-actions {
    flex-direction: column;
  }

  .procurement-hero-actions .button,
  .procurement-cta-actions .button {
    width: 100%;
    justify-content: center;
  }

  .procurement-tags span,
  .procurement-request-list li {
    width: 100%;
    justify-content: flex-start;
  }

  .sphere-page-hero {
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .sphere-hero-showcase {
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .sphere-hero-kicker {
    min-height: 26px;
    margin-bottom: 8px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .sphere-hero-copy h1 {
    max-width: none;
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .sphere-hero-text {
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .sphere-hero-offer {
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
  }

  .sphere-hero-offer strong {
    font-size: 0.98rem;
  }

  .sphere-hero-offer-button {
    width: 100%;
    justify-content: center;
  }

  .sphere-hero-photo-card {
    min-height: 200px;
    border-radius: 16px;
  }

  .hero-card-primary-promo {
    padding: 20px;
  }

  .hero-card-primary-promo .hero-card-media {
    height: 208px;
    margin-bottom: 18px;
    border-radius: 20px;
  }

  .hero-card-promo-meta {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-card-promo-meta span {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .hero-card-primary-promo .button {
    width: 100%;
  }

  .sphere-usage-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .sphere-usage-note .button {
    width: 100%;
    justify-content: center;
  }

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

  .about-home-section {
    padding-top: 24px;
  }

  .about-home-copy {
    padding: 24px 20px;
  }

  .about-home-copy h2 {
    max-width: none;
    font-size: 1.85rem;
  }

  .about-home-photo-card {
    min-height: 280px;
    padding: 12px;
    border-radius: 24px;
  }

  .photo-gallery-section {
    padding-top: 24px;
  }

  .photo-carousel-shell {
    --photo-carousel-gap: 14px;
    margin-top: 24px;
  }

  .photo-carousel-shell::before,
  .photo-carousel-shell::after {
    width: 28px;
  }

  .photo-carousel-track {
    animation-duration: 38s;
  }

  .photo-carousel-card {
    flex-basis: 72vw;
    height: 220px;
    border-radius: 22px;
  }

  .partner-logo-grid {
    gap: 14px;
  }

  .article-card-meta {
    gap: 6px;
  }

  .article-card-meta span {
    font-size: 0.82rem;
    padding: 5px 9px;
  }

  .partner-logo-card {
    min-height: 108px;
    padding: 12px;
    border-radius: 20px;
  }

  .partner-logo-card img {
    max-height: 78px;
  }

  .category-showcase-card,
  .category-showcase-card-wide,
  .category-showcase-card-banner,
  .category-showcase-card-tall {
    grid-column: auto;
    min-height: 292px;
    width: auto;
  }

  .category-showcase-copy,
  .category-showcase-card-wide .category-showcase-copy,
  .category-showcase-card-banner .category-showcase-copy,
  .category-showcase-card-tall .category-showcase-copy {
    width: 100%;
    max-width: none;
    padding: 24px 20px 126px;
  }

  .category-showcase-card h3 {
    max-width: 11ch;
    font-size: 1.5rem;
  }

  .category-showcase-list {
    max-width: 72%;
  }

  .category-showcase-list li {
    font-size: 0.96rem;
  }

  .category-showcase-card-kashpo .category-showcase-list li {
    white-space: normal;
  }

  .category-showcase-card-urny .category-showcase-list li {
    white-space: normal;
  }

  .category-showcase-link {
    padding: 7px 8px 7px 11px;
    font-size: 0.82rem;
  }

  .category-showcase-link::after {
    width: 24px;
    height: 24px;
  }

  .category-showcase-media,
  .category-showcase-card-wide .category-showcase-media,
  .category-showcase-card-banner .category-showcase-media,
  .category-showcase-card-tall .category-showcase-media {
    width: 43%;
    height: 44%;
    padding-right: 8px;
  }

  .category-showcase-media-hero,
  .category-showcase-media-urny,
  .category-showcase-media-skameyki,
  .category-showcase-media-vazony,
  .category-showcase-media-flagshtoki,
  .category-showcase-media-ograzhdeniya,
  .category-showcase-media-shlagbaumy {
    width: 43%;
    height: 44%;
    padding-right: 8px;
  }

  .category-showcase-card-cta-under-media .category-showcase-link {
    position: static;
    margin-top: auto;
  }

  .category-showcase-card-cta-under-media .category-showcase-media {
    bottom: 0;
  }

  .hero-card-media {
    height: 180px;
    border-radius: 20px;
  }

  .hero-card-primary-promo {
    padding: 24px;
  }

  .hero-card-primary-promo .hero-card-media {
    height: 240px;
    border-radius: 24px;
  }

  .catalog-media,
  .catalog-card .catalog-media {
    height: 220px;
    padding: 8px;
  }

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

  .catalog-grid-compact .catalog-media {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 36, 41, 0.08);
  }

  .catalog-image {
    object-fit: contain;
    object-position: center;
  }

  .catalog-grid-compact .catalog-body {
    padding: 16px;
  }

  .sphere-catalog-actions .button {
    width: 100%;
    min-width: 0;
  }

  .barrier-placeholder-page {
    min-height: calc(100vh - 180px);
    padding: 24px 0 36px;
  }

  .barrier-placeholder-card {
    border-radius: 24px;
  }

  .barrier-placeholder-contacts {
    display: grid;
  }

  .barrier-placeholder-contacts .button {
    width: 100%;
    min-width: 0;
  }

  .product-modal-media {
    min-height: 220px;
  }

  .product-modal-actions .button {
    width: 100%;
    justify-content: center;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-actions,
  .page-hero-actions,
  .contact-links,
  .page-anchor-nav {
    flex-direction: column;
  }

  .button,
  .contact-links a,
  .page-anchor-nav a {
    width: 100%;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}
