
@media (max-width: 768px) {
  .container { padding: 0 var(--sp-5); }
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.0)  translate(0, 0); }
  100% { transform: scale(1.06) translate(-1.5%, -0.5%); }
}
@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-stagger {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0.5; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.5; }
}
@media (max-width: 768px) {
  .hero { min-height: 78vh; }
  .hero__content { padding: var(--sp-12) 0 var(--sp-10); }
  .hero__subtitle { font-size: var(--fs-body); margin-bottom: var(--sp-6); }
  .hero__title { margin-bottom: var(--sp-4); }
  .hero__actions .btn { padding: var(--sp-3) var(--sp-5); font-size: var(--fs-small); }
}
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border-subtle); }
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--border-subtle); }
  .stat:last-child { border-bottom: 0; }
}
/* ============================================================
   SLIDE 2 — Lead-gen форма
   ============================================================ */
.leadgen {background: var(--surface-subtle, #F5F7F8); padding: var(--sp-32) 0; border-bottom: 1px solid var(--border-subtle); position: relative; overflow: hidden; }
.leadgen::before {content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 96px; background: var(--teal-600); z-index: 2; }
/* Техническая сетка-чертёж на фоне (style.md §18 паттерн A) */
.leadgen::after {content: ""; position: absolute; inset: 0; background-image:
    linear-gradient(to right, rgba(31, 94, 120, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 94, 120, 0.06) 1px, transparent 1px); background-size: 48px 48px; background-position: -1px -1px; pointer-events: none; mask-image: radial-gradient(ellipse at 25% 50%, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 25% 50%, black 0%, transparent 70%); }
.leadgen .container {position: relative; z-index: 1; }
.leadgen__grid {display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-20); align-items: center; }
.leadgen__lead {font-size: var(--fs-lead); color: var(--text-secondary); line-height: var(--lh-body); margin: 0 0 var(--sp-10); max-width: 48ch; }
/* Checklist под лидом (1-в-1 с главной) */
.leadgen__checklist {list-style: none; padding: 0; margin: 0 0 var(--sp-10); display: flex; flex-direction: column; gap: var(--sp-3); }
.leadgen__checklist-item {display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-body); color: var(--text-primary); line-height: 1.5; }
.leadgen__checklist-item svg {flex-shrink: 0; color: var(--teal-600); margin-top: 3px; }
/* Form — light card (style.md §15) */
.form {background: var(--neutral-0); color: var(--text-primary); padding: var(--sp-10) var(--sp-10); position: relative; border-top: 3px solid var(--teal-600); box-shadow: 0 24px 60px -20px rgba(16, 31, 38, 0.15), 0 2px 8px rgba(16, 31, 38, 0.04); }
.form::before {content: ""; position: absolute; top: 0; right: 0; width: 64px; height: 3px; background: var(--green-500); }
.form__title {font-family: var(--font-display); font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0 0 var(--sp-8); color: var(--text-primary); letter-spacing: var(--ls-h3); }
.form__label {display: block; font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--sp-2); }
.form__input,
.form__textarea {width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--border-default); color: var(--text-primary); font-family: var(--font-body); font-size: var(--fs-body); padding: var(--sp-3) 0; outline: none; transition: border-color var(--duration-base) var(--ease-out); }
.form__input::placeholder,
.form__textarea::placeholder {color: var(--text-tertiary); opacity: 0.6; }
.form__input:focus,
.form__textarea:focus {border-bottom-color: var(--teal-600); box-shadow: none; }
.form__textarea {resize: vertical; min-height: 56px; line-height: 1.5; }
.form__check {display: flex; align-items: flex-start; gap: var(--sp-3); margin: var(--sp-8) 0 var(--sp-8); font-size: var(--fs-caption); color: var(--text-secondary); line-height: 1.5; cursor: pointer; }
.form__check input {margin-top: 3px; accent-color: var(--teal-600); }
.form__check a {color: var(--teal-600); text-decoration: underline; }
.form__submit {width: 100%; background: var(--green-500); color: var(--neutral-0); border: 0; padding: var(--sp-5) var(--sp-6); font-family: var(--font-display); font-size: var(--fs-body); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-caps); cursor: pointer; display: inline-flex; align-items: center; justify-content: space-between; gap: var(--sp-3); transition: background var(--duration-base) var(--ease-out); }
.form__submit:hover {background: var(--green-600, #3d8a2c); }
@media (max-width: 1024px) {
  .leadgen__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .leadgen__intro { padding-right: 0; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .leadgen { padding: var(--sp-20) 0; }
  .form { padding: var(--sp-8) var(--sp-6); }
  .trust-strip { grid-template-columns: 1fr; gap: var(--sp-4); }
}
/* ============================================================
   BLOCK 1 — «Один партнёр для любой задачи»
   Light surface, 5 нумерованных пунктов в ряд + контакт-CTA
   ============================================================ */
.partner {background: var(--surface-page); padding: var(--section-py-base, 96px) 0; border-bottom: 1px solid var(--border-subtle); }
.partner__head {max-width: 720px; margin: 0 0 var(--sp-12); }
.partner__eyebrow {font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-brand); margin-bottom: var(--sp-4); display: inline-flex; align-items: center; gap: var(--sp-3); }
.partner__eyebrow::before {content: ""; width: 32px; height: 2px; background: var(--teal-600); }
.partner__title {font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 48px); font-weight: var(--fw-semibold); line-height: 1.1; letter-spacing: var(--ls-h1); margin: 0 0 var(--sp-5); color: var(--text-primary); }
.partner__title em {font-style: normal; color: var(--text-brand); }
.partner__lead {font-size: var(--fs-lead); color: var(--text-secondary); line-height: var(--lh-body); max-width: 60ch; margin: 0; }
.partner__pillars {display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--border-subtle); border-left: 1px solid var(--border-subtle); }
.pillar {padding: var(--sp-8) var(--sp-6) var(--sp-7); border-right: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: var(--sp-5); position: relative; transition: background var(--duration-base) var(--ease-out); }
.pillar:hover {background: var(--surface-subtle); }
.pillar:hover .pillar__num {color: var(--green-500); }
.pillar__num {font-family: var(--font-display); font-variant-numeric: tabular-nums; font-size: 56px; font-weight: var(--fw-bold); line-height: 0.9; letter-spacing: -0.04em; color: var(--teal-600); transition: color var(--duration-base) var(--ease-out); }
.pillar__divider {width: 32px; height: 2px; background: var(--text-primary); transition: background var(--duration-base) var(--ease-out),
              width var(--duration-base) var(--ease-out); }
.pillar__text {font-family: var(--font-display); font-size: 18px; font-weight: var(--fw-semibold); color: var(--text-primary); line-height: 1.3; letter-spacing: var(--ls-h3); margin: 0; }
@media (max-width: 1024px) {
  .partner__pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .partner__pillars { grid-template-columns: 1fr; }
}
@media (max-width: 1280px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .catalog__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .adv__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .adv__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .turnkey__steps { grid-template-columns: repeat(2, 1fr); }
  .turnkey__detail { grid-template-columns: 1fr; gap: var(--sp-8); }
}
@media (max-width: 640px) {
  .turnkey__steps { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .cooling__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}
@media (max-width: 1024px) {
  .stock__aspects { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .service__grid { grid-template-columns: repeat(2, 1fr); }
  .service__banner { height: 200px; }
}
@media (max-width: 640px) {
  .service__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .modern__banner { height: 200px; }
}
@media (max-width: 1024px) {
  .modern__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .case__layout { grid-template-columns: 1fr; }
  .case__media { min-height: 320px; aspect-ratio: 4/3; }
}
/* ============================================================
   BLOCK 12 — Запрос КП (детальная форма)
   ============================================================ */
.kp-request {background: var(--surface-page); padding: var(--section-py-base, 96px) 0; }
.kp-request__layout {display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-16); align-items: start; }
.kp-request__intro {padding-right: var(--sp-4); }
.kp-request__manager {display: flex; gap: var(--sp-5); padding: var(--sp-6); background: var(--surface-muted); border-left: 3px solid var(--teal-600); margin-top: var(--sp-8); }
.kp-request__manager-photo {width: 96px; height: 96px; flex-shrink: 0; overflow: hidden; }
.kp-request__manager-photo img {width: 100%; height: 100%; object-fit: cover; display: block; }
.kp-request__manager-body {flex: 1; }
.kp-request__manager-name {font-family: var(--font-display); font-size: var(--fs-small); font-weight: var(--fw-semibold); margin: 0 0 var(--sp-1); }
.kp-request__manager-role {font-size: var(--fs-caption); color: var(--text-tertiary); margin: 0 0 var(--sp-3); }
.kp-request__manager-quote {font-size: var(--fs-small); color: var(--text-secondary); line-height: 1.5; margin: 0; }
.kp-form {background: var(--neutral-950); color: var(--neutral-0); padding: var(--sp-12) var(--sp-10); position: relative; }
.kp-form::before {content: ""; position: absolute; top: 0; right: 0; width: 4px; height: 96px; background: var(--green-500); }
.kp-form__title {font-family: var(--font-display); font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0 0 var(--sp-2); letter-spacing: var(--ls-h3); }
.kp-form__sub {font-size: var(--fs-small); color: rgba(255,255,255,0.6); margin: 0 0 var(--sp-8); }
.kp-form__field {margin-bottom: var(--sp-6); }
.kp-form__label {display: block; font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: var(--sp-2); }
.kp-form__input,
.kp-form__textarea {width: 100%; box-sizing: border-box; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.2); color: var(--neutral-0); font-family: var(--font-body); font-size: var(--fs-body); padding: var(--sp-3) 0; outline: none; transition: border-color var(--duration-base) var(--ease-out); }
.kp-form__input::placeholder,
.kp-form__textarea::placeholder {color: rgba(255,255,255,0.35); }
.kp-form__input:focus,
.kp-form__textarea:focus {border-bottom-color: var(--green-400); }
.kp-form__textarea {resize: vertical; min-height: 64px; line-height: 1.5; }
.kp-form__row {display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.kp-form__radio-group {display: flex; gap: var(--sp-3); margin-top: var(--sp-2); }
.kp-form__radio {display: inline-flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2) var(--sp-4); border: 1px solid rgba(255,255,255,0.2); font-family: var(--font-display); font-size: var(--fs-small); color: rgba(255,255,255,0.85); cursor: pointer; border-radius: var(--radius-xs); transition: var(--btn-transition); }
.kp-form__radio input {accent-color: var(--green-500); }
.kp-form__radio:hover {border-color: var(--green-400); color: var(--neutral-0); }
.kp-form__file {display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-4); border: 1px dashed rgba(255,255,255,0.3); font-size: var(--fs-small); color: rgba(255,255,255,0.7); cursor: pointer; transition: border-color var(--duration-base) var(--ease-out); }
.kp-form__file:hover {border-color: var(--green-400); color: var(--neutral-0); }
.kp-form__file svg {width: 20px; height: 20px; flex-shrink: 0; color: var(--green-400); }
.kp-form__check {display: flex; align-items: flex-start; gap: var(--sp-3); margin: var(--sp-6) 0 var(--sp-8); font-size: var(--fs-caption); color: rgba(255,255,255,0.6); line-height: 1.5; cursor: pointer; }
.kp-form__check input {margin-top: 3px; accent-color: var(--green-500); }
.kp-form__check a {color: var(--green-400); text-decoration: underline; }
.kp-form__submit {width: 100%; background: var(--green-500); color: var(--neutral-950); border: 0; padding: var(--sp-5) var(--sp-6); font-family: var(--font-display); font-size: var(--fs-body); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-caps); cursor: pointer; display: inline-flex; align-items: center; justify-content: space-between; gap: var(--sp-3); transition: background var(--duration-base) var(--ease-out); }
.kp-form__submit:hover {background: var(--green-400); }
@media (max-width: 1024px) {
  .kp-request__layout { grid-template-columns: 1fr; }
  .kp-form__row { grid-template-columns: 1fr; }
}
.partner-logo {background: var(--surface-page); border: 1px solid var(--border-subtle); padding: var(--sp-5) var(--sp-4); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80px; font-family: var(--font-display); font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--text-secondary); text-align: center; letter-spacing: 0.02em; line-height: 1.2; transition: var(--btn-transition); }
.partner-logo:hover {border-color: var(--teal-600); color: var(--teal-700); }
.partner-logo small {font-weight: var(--fw-medium); font-size: 10px; color: var(--text-tertiary); margin-top: 2px; text-transform: uppercase; letter-spacing: var(--ls-caps); }
@media (max-width: 1024px) {
  .leasing__layout { grid-template-columns: 1fr; }
  .leasing__partners { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .geo__layout { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .best-offer__card { grid-template-columns: 1fr; padding: var(--sp-8); }
}
@media (max-width: 1024px) {
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .highlights__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .contacts__layout { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__brand-block { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .contacts-tizers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .contacts-tizers__grid { grid-template-columns: 1fr; }
}
/* Mobile nav stub */
@media (max-width: 1024px) {
  .nav { display: none; }
}
/* --- Category hero (dark band) --- */
.cat-hero {position: relative; background: var(--neutral-950); color: var(--text-inverse); min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.cat-hero__image {position: absolute; inset: 0; background: var(--neutral-950) url('/img/card-stol.png?v=4') center/cover no-repeat; z-index: 0; }
.cat-hero__overlay {position: absolute; inset: 0; z-index: 1; background:
    linear-gradient(90deg,
      rgba(10,28,37,0.92) 0%,
      rgba(10,28,37,0.75) 35%,
      rgba(10,28,37,0.35) 70%,
      rgba(10,28,37,0.15) 100%),
    linear-gradient(180deg,
      rgba(10,28,37,0.4) 0%,
      rgba(10,28,37,0) 30%,
      rgba(10,28,37,0) 70%,
      rgba(10,28,37,0.5) 100%); }
.cat-hero__content {position: relative; z-index: 2; padding: var(--sp-8) 0 var(--sp-12); width: 100%; }
.cat-hero__body {max-width: 640px; }
.breadcrumb {display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); font-size: var(--fs-caption); padding: var(--sp-2) 0 var(--sp-10); }
.breadcrumb a {color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
.breadcrumb a:hover {color: var(--green-400); }
.breadcrumb__sep {color: rgba(255,255,255,0.35); }
.breadcrumb__current {color: rgba(255,255,255,0.95); }
.cat-hero__eyebrow {font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--green-400); display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.cat-hero__eyebrow::before {content: ""; width: 32px; height: 2px; background: var(--green-400); }
.cat-hero__title {font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 58px); font-weight: var(--fw-bold); line-height: 1.05; letter-spacing: var(--ls-h1); margin-bottom: var(--sp-5); text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.cat-hero__subtitle {font-size: var(--fs-lead); line-height: var(--lh-body); color: rgba(255,255,255,0.85); max-width: 52ch; margin-bottom: var(--sp-8); text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.cat-hero__actions {display: flex; gap: var(--sp-4); flex-wrap: wrap; }
/* --- Subcategories --- */
.subcat {background: var(--surface-page); padding: var(--section-py-base, 96px) 0; }
.subcat-group + .subcat-group {margin-top: var(--sp-16); }
.subcat-group__title {font-family: var(--font-display); font-size: var(--fs-h2); font-weight: var(--fw-bold); letter-spacing: var(--ls-h2); color: var(--text-primary); padding-bottom: var(--sp-4); margin-bottom: var(--sp-8); border-bottom: 2px solid var(--border-subtle); display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--sp-3); }
.subcat-group__count {font-family: var(--font-body); font-size: var(--fs-small); font-weight: var(--fw-medium); letter-spacing: 0; text-transform: none; color: var(--text-tertiary); }
.subcat-grid {display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.subcat-card {display: flex; flex-direction: column; background: var(--surface-page); border: 1px solid var(--border-subtle); text-decoration: none; transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out); }
.subcat-card:hover {border-color: var(--teal-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.subcat-card__cover {aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-muted); }
.subcat-card__cover img {width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.subcat-card:hover .subcat-card__cover img {transform: scale(1.04); }
.subcat-card__body {display: flex; flex-direction: column; flex: 1; gap: var(--sp-5); padding: var(--sp-5); }
.subcat-card__title {font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-semibold); line-height: var(--lh-h4); color: var(--text-primary); flex: 1; }
.subcat-card__action {display: inline-flex; align-items: center; gap: var(--sp-2); font-family: var(--font-display); font-size: var(--fs-small); font-weight: var(--fw-semibold); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--text-brand); padding-top: var(--sp-4); border-top: 1px solid var(--border-subtle); }
.subcat-card:hover .subcat-card__action {color: var(--teal-700); }
.subcat-card:hover .subcat-card__action .btn__arrow {transform: translateX(4px); }
/* --- Why-us: industry tags + 6-card grid --- */
.adv__grid--6 {grid-template-columns: repeat(3, 1fr); }
.why__industries {margin-bottom: var(--sp-12); padding-bottom: var(--sp-10); border-bottom: 1px solid var(--border-subtle); }
.why__industries-label {font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--sp-4); }
.why__tags {display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.why-tag {display: inline-flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2) var(--sp-4); background: var(--surface-muted); border: 1px solid var(--border-subtle); font-size: var(--fs-small); color: var(--text-secondary); }
.why-tag::before {content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); flex-shrink: 0; }
/* --- Category contacts --- */
.cat-contacts {background: var(--surface-subtle); padding: var(--section-py-base, 96px) 0; }
.cat-contacts__layout {display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: stretch; }
.cat-contacts__info {display: flex; flex-direction: column; justify-content: space-between; }
.contact-item {display: flex; gap: var(--sp-4); padding: var(--sp-5) 0; border-bottom: 1px solid var(--border-subtle); text-decoration: none; }
.cat-contacts__info .contact-item:first-child {padding-top: 0; }
.cat-contacts__info .contact-item:last-child {border-bottom: 0; }
.contact-item__icon {width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--teal-50); color: var(--teal-600); }
.contact-item__icon svg {width: 22px; height: 22px; }
.contact-item__label {font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--sp-1); }
.contact-item__value {font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-semibold); color: var(--text-primary); line-height: 1.3; }
.contact-item__value--sm {font-size: var(--fs-body); font-weight: var(--fw-medium); line-height: var(--lh-tight); }
a.contact-item:hover .contact-item__value {color: var(--text-brand); }
.contact-item__meta {font-size: var(--fs-small); color: var(--text-tertiary); margin-top: var(--sp-1); }
.cat-contacts__map {height: 100%; min-height: 460px; background: var(--neutral-100); overflow: hidden; border: 0; box-shadow: var(--shadow-md); }
.cat-contacts__map iframe {width: 100%; height: 100%; border: 0; display: block; }
/* --- Category page responsive --- */
@media (max-width: 1024px) {
  .cat-hero { min-height: 520px; }
  .cat-hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(10,28,37,0.85) 0%,
        rgba(10,28,37,0.7) 50%,
        rgba(10,28,37,0.85) 100%);
  }
  .subcat-grid { grid-template-columns: repeat(3, 1fr); }
  .adv__grid--6 { grid-template-columns: repeat(2, 1fr); }
  .cat-contacts__layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .subcat-grid { grid-template-columns: 1fr; }
  .adv__grid--6 { grid-template-columns: 1fr; }
  .cat-hero__actions { flex-direction: column; align-items: stretch; }
  .cat-hero__actions .btn { justify-content: center; }
}
/* ============================================================
   CATALOG PAGE — фильтр + сетка карточек позиций
   ============================================================ */
.catalog-list {background: var(--surface-page); padding: var(--section-py-base, 96px) 0; }
/* --- Фильтр: светлый toolbar + кастомные dropdown в стиле мегаменю ---
   Структура: [Масса ▾] [Мощность ▾] .................... [✕ Сбросить]
   Светлая полоса, белые dropdown-панели, hover в teal-50 — как в навигации.
*/
.catalog-filter {display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3) var(--sp-5); background: var(--surface-page); border: 1px solid var(--border-subtle); border-left: 3px solid var(--teal-600); box-shadow: var(--shadow-sm); margin-bottom: var(--sp-8); flex-wrap: wrap; position: relative; }
/* Trigger-кнопка (заменяет native select) */
.cf-dropdown {position: relative; }
.cf-trigger {display: inline-flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2) var(--sp-4); background: transparent; border: 1px solid transparent; font-family: var(--font-body); font-size: var(--fs-small); color: var(--text-primary); cursor: pointer; transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out); white-space: nowrap; }
.cf-trigger:hover {background: var(--teal-50); color: var(--teal-700); }
.cf-trigger[aria-expanded="true"] {background: var(--teal-50); color: var(--teal-700); border-color: var(--teal-600); }
.cf-trigger__label {color: var(--text-tertiary); font-weight: var(--fw-medium); }
.cf-trigger:hover .cf-trigger__label,
.cf-trigger[aria-expanded="true"] .cf-trigger__label {color: var(--teal-700); }
.cf-trigger__value {font-weight: var(--fw-semibold); color: inherit; }
.cf-trigger__chevron {width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform var(--duration-base) var(--ease-out); opacity: 0.6; margin-left: var(--sp-1); }
.cf-trigger[aria-expanded="true"] .cf-trigger__chevron {transform: rotate(225deg) translateY(-2px); opacity: 1; }
/* Выбран ли фильтр (badge для активного состояния, если значение не "любая") */
.cf-trigger.is-active {background: var(--teal-50); color: var(--teal-700); }
.cf-trigger.is-active .cf-trigger__label {color: var(--teal-700); }
/* Dropdown panel в стиле мегаменю */
.cf-panel {position: absolute; top: calc(100% + var(--sp-2)); left: 0; min-width: 280px; background: var(--neutral-0); border: 1px solid var(--border-subtle); box-shadow: 0 8px 32px -8px rgba(16, 31, 38, 0.18), 0 2px 8px rgba(16, 31, 38, 0.06); padding: var(--sp-2); opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              visibility var(--duration-fast) var(--ease-out); z-index: var(--z-dropdown); }
.cf-dropdown.is-open .cf-panel {opacity: 1; visibility: visible; transform: translateY(0); }
.cf-option {display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); width: 100%; padding: var(--sp-3) var(--sp-4); background: transparent; border: 0; font-family: var(--font-body); font-size: var(--fs-small); color: var(--text-primary); text-align: left; cursor: pointer; transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out); }
.cf-option:hover {background: var(--teal-50); color: var(--teal-700); }
.cf-option[aria-selected="true"] {color: var(--teal-700); font-weight: var(--fw-semibold); }
.cf-option[aria-selected="true"]::after {content: ""; width: 14px; height: 14px; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F5E78' stroke-width='2.5' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.cf-option__meta {font-family: var(--font-mono); font-size: var(--fs-caption); color: var(--text-tertiary); font-variant-numeric: tabular-nums; }
.cf-option:hover .cf-option__meta {color: var(--teal-700); }
.catalog-filter__spacer {flex: 1; }
.catalog-filter__reset {font-family: var(--font-display); font-size: var(--fs-caption); font-weight: var(--fw-semibold); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--text-tertiary); background: none; border: 0; cursor: pointer; padding: var(--sp-2) var(--sp-2); display: inline-flex; align-items: center; gap: var(--sp-2); transition: color var(--duration-fast) var(--ease-out); }
.catalog-filter__reset:hover {color: var(--text-brand); }
.catalog-filter__reset svg {width: 14px; height: 14px; }
@media (max-width: 768px) {
  .catalog-filter { padding: var(--sp-3); gap: var(--sp-2); }
  .cf-dropdown { flex: 1 1 auto; }
  .cf-trigger { width: 100%; justify-content: space-between; }
  .cf-panel { left: 0; right: 0; min-width: 0; }
  .catalog-filter__spacer { flex-basis: 100%; height: 0; }
}
/* --- Карточка позиции --- */
.pcard-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.pcard {display: flex; flex-direction: column; background: var(--surface-page); border: 1px solid var(--border-subtle); transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out); }
.pcard:hover {border-color: var(--teal-600); box-shadow: var(--shadow-md); }
.pcard__cover {position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-muted); }
.pcard__cover img {width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.pcard:hover .pcard__cover img {transform: scale(1.04); }
.pcard__badge {position: absolute; left: 0; top: var(--sp-4); background: var(--teal-600); color: var(--text-inverse); font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; padding: var(--sp-1_5) var(--sp-3); }
.pcard__body {display: flex; flex-direction: column; flex: 1; padding: var(--sp-5); gap: var(--sp-3); }
.pcard__title {font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-semibold); line-height: var(--lh-h4); }
.pcard__title a {color: var(--text-primary); text-decoration: none; }
.pcard__title a:hover {color: var(--text-brand); }
.pcard__origin {display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-caption); color: var(--text-tertiary); }
.pcard__origin::before {content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); flex-shrink: 0; }
.pcard__specs {margin: var(--sp-1) 0 var(--sp-2); border-top: 1px solid var(--border-subtle); }
.pcard__spec {display: flex; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-2) 0; border-bottom: 1px solid var(--border-subtle); font-size: var(--fs-small); }
.pcard__spec dt {color: var(--text-tertiary); }
.pcard__spec dd {color: var(--text-primary); font-weight: var(--fw-semibold); font-family: var(--font-mono); text-align: right; white-space: nowrap; }
.pcard__actions {margin-top: auto; display: flex; flex-direction: column; gap: var(--sp-3); padding-top: var(--sp-3); }
.pcard__more {display: inline-flex; align-items: center; gap: var(--sp-2); font-family: var(--font-display); font-size: var(--fs-small); font-weight: var(--fw-semibold); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--text-brand); text-decoration: none; align-self: center; }
.pcard__more:hover {color: var(--teal-700); }
.pcard__more:hover .btn__arrow {transform: translateX(4px); }
.btn--block {width: 100%; justify-content: center; }
/* --- Catalog responsive --- */
@media (max-width: 1024px) {
  .pcard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pcard-grid { grid-template-columns: 1fr; }
  .catalog-filter__select { min-width: 0; width: 100%; }
  .catalog-filter__group { width: 100%; }
  .catalog-filter__count { margin-left: 0; }
}
/* ============================================================
   WHY-US — тёмная шапка + шахматная плитка карточек
   ============================================================ */
.why-us {background: var(--surface-page); }
.why-us__hero {background: var(--neutral-950); color: var(--text-inverse); padding: var(--sp-20) 0 0; }
.why-us__hero > .container {padding-bottom: var(--sp-14); }
.why-us__image {position: relative; height: 580px; background: var(--neutral-950) url('/img/banner-service.png') center 22%/cover no-repeat; }
.why-us__image::after {content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,
    rgba(16,31,38,0.55) 0%,
    rgba(16,31,38,0.15) 35%,
    rgba(16,31,38,0) 60%,
    rgba(16,31,38,0.10) 100%); pointer-events: none; }
.why-us__head {max-width: 860px; margin: 0 0 var(--sp-10); }
.why-us__eyebrow {font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--green-400); display: inline-flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.why-us__eyebrow::before {content: ""; width: 32px; height: 2px; background: var(--green-400); }
.why-us__title {font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 48px); font-weight: var(--fw-bold); line-height: 1.08; letter-spacing: var(--ls-h1); color: var(--text-inverse); margin-bottom: var(--sp-5); }
.why-us__title em {font-style: normal; color: var(--green-400); }
.why-us__lead {font-size: var(--fs-lead); line-height: var(--lh-body); color: rgba(255,255,255,0.72); max-width: 60ch; }
.why-us__tags {display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-3); padding-top: var(--sp-8); border-top: 1px solid rgba(255,255,255,0.12); }
.why-us__tags-label {font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: rgba(255,255,255,0.5); margin-right: var(--sp-2); }
.why-us__tags-list {display: contents; }
.why-us__tags-list li {display: inline-flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2) var(--sp-4); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); font-size: var(--fs-small); color: rgba(255,255,255,0.88); }
.why-us__tags-list li::before {content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); flex-shrink: 0; }
.why-us__cards-band {background: transparent; padding-bottom: var(--sp-20); margin-top: -180px; position: relative; z-index: 2; }
.why-us__cards {display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; box-shadow: var(--shadow-lg); }
.why-us-card {padding: var(--sp-8) var(--sp-7); display: flex; flex-direction: column; gap: var(--sp-4); background: var(--surface-page); color: var(--text-primary); min-height: 300px; position: relative; }
.why-us-card__num {font-family: var(--font-mono); font-size: var(--fs-caption); font-weight: var(--fw-semibold); letter-spacing: 0.04em; color: var(--text-tertiary); }
.why-us-card__icon {width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; color: var(--teal-600); margin: var(--sp-2) 0; }
.why-us-card__icon svg {width: 100%; height: 100%; }
.why-us-card__title {font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-semibold); line-height: 1.25; letter-spacing: var(--ls-h3); }
.why-us-card__text {font-size: var(--fs-small); line-height: var(--lh-body); color: var(--text-secondary); margin-top: auto; }
/* Тёмные карточки — шахматный порядок (2, 4, 6) */
.why-us-card:nth-child(2n) {background: var(--neutral-950); color: var(--text-inverse); }
.why-us-card:nth-child(2n) .why-us-card__num {color: var(--green-400); opacity: 0.85; }
.why-us-card:nth-child(2n) .why-us-card__icon {color: var(--green-400); }
.why-us-card:nth-child(2n) .why-us-card__text {color: rgba(255,255,255,0.7); }
@media (max-width: 1024px) {
  .why-us__cards { grid-template-columns: repeat(2, 1fr); }
  .why-us__hero { padding-top: var(--sp-16); }
  .why-us__image { height: 460px; }
  .why-us__cards-band { margin-top: -160px; }
}
@media (max-width: 640px) {
  .why-us__cards { grid-template-columns: 1fr; }
  .why-us__image { height: 320px; }
  .why-us__cards-band { margin-top: -100px; }
}
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .header__actions .btn--primary { display: none; }
}
/* ============================================================
   SECTION DIVIDER — Узкая full-bleed картинка-разделитель
   между крупными смысловыми блоками. 21:9 cinemascope.
   Высота фиксированная по viewport — даёт «дыхание».
   ============================================================ */
.section-divider {position: relative; width: 100%; height: clamp(180px, 22vw, 320px); overflow: hidden; background: var(--neutral-950); }
.section-divider__img {position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; }
.section-divider::after {content: ""; position: absolute; inset: 0; background:
    linear-gradient(180deg, rgba(16,31,38,0.25) 0%, transparent 30%, transparent 70%, rgba(16,31,38,0.25) 100%); pointer-events: none; }
/* зелёный 3px-accent сверху как «инженерная подпись» */
.section-divider::before {content: ""; position: absolute; top: 0; left: 0; width: 96px; height: 3px; background: var(--green-500); z-index: 2; }
/* ============================================================
   APPLICATIONS — Под какой металл (SUBTLE)
   Сетка из 6 карточек с темп/футеровкой/применением
   ============================================================ */
.applications {background: var(--surface-subtle); padding: var(--section-py-base, 96px) 0; border-bottom: 1px solid var(--border-subtle); }
.applications__grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.app-card {background: var(--neutral-0); border: 1px solid var(--border-subtle); padding: var(--sp-7) var(--sp-7) var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-4); position: relative; transition: border-color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out); }
.app-card:hover {border-color: var(--teal-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.app-card__head {display: flex; align-items: flex-start; gap: var(--sp-4); }
.app-card__icon {width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--teal-50); color: var(--teal-600); }
.app-card__icon svg {width: 28px; height: 28px; }
.app-card__name {font-family: var(--font-display); font-size: var(--fs-h4); font-weight: var(--fw-semibold); color: var(--text-primary); letter-spacing: -0.01em; margin: 0; line-height: 1.2; }
.app-card__temp {font-family: var(--font-mono); font-size: var(--fs-small); color: var(--text-tertiary); margin-top: 2px; font-variant-numeric: tabular-nums; }
.app-card__temp strong {color: var(--green-600, #3C8E33); font-weight: var(--fw-semibold); }
.app-card__specs {list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border-subtle); padding-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-3); }
.app-card__spec {display: grid; grid-template-columns: 110px 1fr; gap: var(--sp-3); align-items: baseline; }
.app-card__spec-label {font-family: var(--font-display); font-size: var(--fs-micro); font-weight: var(--fw-bold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-tertiary); }
.app-card__spec-value {font-size: var(--fs-small); color: var(--text-primary); line-height: 1.4; }
@media (max-width: 1024px) {
  .applications__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .applications__grid { grid-template-columns: 1fr; }
  .app-card__spec { grid-template-columns: 1fr; gap: 2px; }
}
/* ============================================================
   FULL-CYCLE — Полный цикл, 7 этапов (PAGE c DARK заголовком)
   Горизонтальный timeline с большими номерами 01–07
   ============================================================ */
.full-cycle {background: var(--surface-page); padding: var(--section-py-base, 96px) 0; }
.full-cycle__head {display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: end; margin-bottom: var(--sp-12); }
.full-cycle__head .s-lead {margin: 0; }
.full-cycle__timeline {position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.full-cycle__timeline::before {content: ""; position: absolute; top: -1px; left: 0; width: 28.5%; height: 2px; background: var(--green-500); }
.cycle-step {padding: var(--sp-8) var(--sp-5) var(--sp-7); border-right: 1px solid var(--border-subtle); position: relative; display: flex; flex-direction: column; gap: var(--sp-3); transition: background var(--duration-base) var(--ease-out); }
.cycle-step:last-child {border-right: 0; }
.cycle-step:hover {background: var(--surface-subtle); }
.cycle-step__num {font-family: var(--font-mono); font-size: 12px; font-weight: var(--fw-bold); color: var(--green-600, #3C8E33); letter-spacing: 0.05em; margin-bottom: var(--sp-1); }
.cycle-step__icon {width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--teal-600); margin-bottom: var(--sp-2); }
.cycle-step__icon svg {width: 32px; height: 32px; }
.cycle-step__title {font-family: var(--font-display); font-size: var(--fs-small); font-weight: var(--fw-semibold); color: var(--text-primary); letter-spacing: -0.005em; margin: 0; line-height: 1.3; }
.cycle-step__meta {font-family: var(--font-mono); font-size: var(--fs-caption); color: var(--text-tertiary); font-variant-numeric: tabular-nums; margin-top: auto; }
.full-cycle__footnote {margin-top: var(--sp-8); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap; }
.full-cycle__footnote-text {font-size: var(--fs-small); color: var(--text-secondary); line-height: 1.5; max-width: 56ch; }
.full-cycle__footnote-text strong {color: var(--text-primary); font-weight: var(--fw-semibold); }
@media (max-width: 1280px) {
  .full-cycle__timeline { grid-template-columns: repeat(4, 1fr); }
  .full-cycle__timeline::before { width: 12.5%; }
  .cycle-step:nth-child(4) { border-right: 0; }
  .cycle-step:nth-child(-n+4) { border-bottom: 1px solid var(--border-subtle); }
}
@media (max-width: 1024px) {
  .full-cycle__head { grid-template-columns: 1fr; gap: var(--sp-6); }
}
@media (max-width: 640px) {
  .full-cycle__timeline { grid-template-columns: repeat(2, 1fr); }
  .full-cycle__timeline::before { display: none; }
  .cycle-step { border-right: 1px solid var(--border-subtle); }
  .cycle-step:nth-child(2n) { border-right: 0; }
}
/* === DARK FILTER OVERRIDE (catalog-filter v2 — тёмная плашка) === */
.catalog-filter {background: #1A1D20; border: 1px solid #1A1D20; border-left: 3px solid var(--teal-600, #1F8A8A); box-shadow: 0 4px 18px -6px rgba(16, 31, 38, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset; color: #E8ECEE; }
/* Триггер: светлый текст на тёмном фоне */
.catalog-filter .cf-trigger {background: transparent; border-color: transparent; color: #E8ECEE; }
.catalog-filter .cf-trigger__label {color: rgba(232, 236, 238, 0.55); font-weight: var(--fw-medium, 500); }
.catalog-filter .cf-trigger__value {color: #FFFFFF; font-weight: var(--fw-semibold, 600); }
.catalog-filter .cf-trigger__chevron {opacity: 0.7; color: #FFFFFF; }
/* Hover триггера — лёгкая подсветка teal */
.catalog-filter .cf-trigger:hover {background: rgba(31, 138, 138, 0.14); color: #FFFFFF; }
.catalog-filter .cf-trigger:hover .cf-trigger__label {color: rgba(232, 236, 238, 0.8); }
.catalog-filter .cf-trigger:hover .cf-trigger__chevron {opacity: 1; }
/* Открытое состояние — отчётливый teal */
.catalog-filter .cf-trigger[aria-expanded="true"] {background: rgba(31, 138, 138, 0.22); border-color: rgba(31, 138, 138, 0.5); color: #FFFFFF; }
.catalog-filter .cf-trigger[aria-expanded="true"] .cf-trigger__label {color: #B8E3E3; }
/* Активный фильтр (выбрано значение ≠ «любая») */
.catalog-filter .cf-trigger.is-active {background: rgba(31, 138, 138, 0.16); color: #FFFFFF; }
.catalog-filter .cf-trigger.is-active .cf-trigger__label {color: #B8E3E3; }
/* Counter «21 моделей» */
.catalog-filter .catalog-filter__count {color: rgba(232, 236, 238, 0.55); }
/* Кнопка «Сбросить» */
.catalog-filter .catalog-filter__reset {color: rgba(232, 236, 238, 0.7); }
.catalog-filter .catalog-filter__reset:hover {color: #FFFFFF; }
/* Тонкие разделители между группами триггеров (на тёмном) */
.catalog-filter .cf-dropdown + .cf-dropdown::before {content: ""; position: absolute; left: calc(-1 * var(--sp-3, 12px) / 2); top: 20%; bottom: 20%; width: 1px; background: rgba(255, 255, 255, 0.08); pointer-events: none; }
/* Выпадающая панель — оставляем светлой (галочка и hover читабельны),
   но смещаем чуть глубже и усиливаем тень, чтобы оторвать её от тёмной плашки. */
.catalog-filter .cf-panel {box-shadow: 0 14px 36px -10px rgba(0, 0, 0, 0.45),
              0 4px 12px rgba(0, 0, 0, 0.18),
              0 0 0 1px rgba(0, 0, 0, 0.04); }
/* Mobile — на узком экране триггеры на тёмной плашке шире */
@media (max-width: 768px) {
  .catalog-filter { gap: 8px; }
  .catalog-filter .cf-dropdown + .cf-dropdown::before { display: none; }
  .catalog-filter .cf-trigger {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
  }
  .catalog-filter .cf-trigger:hover,
  .catalog-filter .cf-trigger[aria-expanded="true"],
  .catalog-filter .cf-trigger.is-active {
    background: rgba(31, 138, 138, 0.22);
    border-color: rgba(31, 138, 138, 0.5);
  }
}
