:root {
  --bg: #f3f5f6;
  --surface: #ffffff;
  --ink: #181818;
  --muted: #6c6c6c;
  --line: #d8dde0;
  --accent: #c52922;
  --accent-dark: #8d1b17;
  --steel: #34424c;
  --steel-dark: #151d22;
  --steel-soft: #eef2f3;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #e9edf0;
  font-size: 14px;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.site-frame {
  width: min(1280px, calc(100% - 24px));
  margin: 14px auto 24px;
  padding-top: 59px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(18, 25, 31, .14);
}
.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  width: min(1280px, calc(100% - 24px));
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 8px 24px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(18,25,31,.08);
}
body.modal-open .site-header,
body.request-drawer-open .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 200px; }
.brand-logo {
  width: 140px;
  height: 42px;
  display: grid;
  place-items: center;
}
.brand-logo img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-weight: 900;
  border-radius: 2px;
}
.brand strong { display: none; }
.brand small { display: none; }
.main-nav { display: flex; gap: 24px; flex: 1; justify-content: center; align-items: stretch; align-self: stretch; }
.main-nav a { position: relative; display: inline-flex; align-items: center; font-size: 12px; font-weight: 600; color: #24292d; }
.main-nav a.active { color: var(--accent); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  background: var(--accent);
}
.nav-catalog::after { content: none; }
.main-nav a:hover { color: var(--accent); }
.header-actions { display: flex; gap: 10px; }
.city-btn, .request-btn, .ghost-link {
  min-height: 34px;
  border: 1px solid #dfe4e7; background: #fff; padding: 8px 13px;
  cursor: pointer; font-size: 12px; font-weight: 700; border-radius: 4px;
}
.request-btn { background: var(--accent); color: #fff; border-color: var(--accent); }
.request-btn {
  position: relative;
  padding-right: 42px;
}
.city-btn,
.request-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.city-btn .header-icon { color: #59636a; }
.request-btn .header-icon { color: #fff; }
.request-label { white-space: nowrap; }
.request-btn #requestCount {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: var(--accent);
  background: #fff;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(17,23,27,.12);
}
.mobile-menu-btn {
  display: none;
}
.mobile-nav-panel {
  display: none;
}
.mobile-city-btn {
  display: none;
}
.mobile-category-select-wrap {
  display: none;
}
.page-section { padding: 72px clamp(16px, 5vw, 72px); }
.hero {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: center;
  background: linear-gradient(120deg, #f6f4ef 0%, #fff 58%, #e7ecec 100%);
}
.hero-industrial {
  min-height: 330px;
  padding: 42px 40px 34px;
  grid-template-columns: minmax(0, 620px) minmax(420px, 1fr);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.42) 52%, rgba(255,255,255,.05) 70%),
    linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(226,233,236,.26) 58%, rgba(202,211,216,.34) 100%),
    url("assets/hero-koman-products-v2.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #f8fafb 0%, #e8edef 52%, #cfd8dc 100%);
  position: relative;
  overflow: hidden;
}
.hero-industrial::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(215,222,226,.38));
  opacity: .55;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  max-width: 720px;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}
.hero-title-line {
  display: block;
  white-space: nowrap;
}
.red-word { color: var(--accent); }
.hero-copy p {
  max-width: 620px;
  margin-top: 22px;
  color: #4f5b61;
}
.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: grid;
  align-items: end;
}
.hero-industrial .hero-visual {
  display: none;
}
.hero-stage {
  position: relative;
  width: min(690px, 100%);
  height: 300px;
  min-height: 300px;
  justify-self: end;
}
.hero-stage::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 94%;
  height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(186,195,200,.24));
  border: 0;
  box-shadow: none;
  clip-path: ellipse(50% 45% at 50% 50%);
}
.hero-stage::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(21,29,34,.16), rgba(21,29,34,0));
  filter: blur(18px);
  border-radius: 50%;
}
.hero-machine {
  position: absolute;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 18px rgba(21,29,34,.22));
}
.hero-machine-main {
  width: 26%;
  left: 0;
  bottom: 24px;
  z-index: 4;
}
.hero-machine-generator {
  width: 29%;
  left: 23%;
  bottom: 20px;
  z-index: 3;
}
.hero-machine-pump {
  width: 26%;
  left: 48%;
  bottom: 20px;
  z-index: 2;
}
.hero-machine-mixer {
  width: 24%;
  left: 58%;
  bottom: 32px;
  z-index: 4;
}
.hero-machine-saw {
  width: 24%;
  right: 0;
  bottom: 16px;
  top: auto;
  z-index: 5;
  opacity: .94;
}
.hero-red-rail {
  position: absolute;
  left: 34%;
  right: 19%;
  bottom: 34px;
  height: 7px;
  background: var(--accent);
  z-index: 1;
  transform: skewX(-18deg);
  box-shadow: 0 12px 28px rgba(197,41,34,.24);
}
.site-crane {
  position: absolute;
  right: 6%;
  top: 8%;
  width: 72%;
  height: 230px;
  border-top: 10px solid rgba(21,29,34,.18);
  border-left: 10px solid rgba(21,29,34,.18);
  transform: skewX(-18deg);
}
.site-crane::before {
  content: "";
  position: absolute;
  left: 25%;
  top: -10px;
  height: 260px;
  border-left: 8px solid rgba(21,29,34,.14);
  transform: skewX(18deg);
}
.machine-line {
  width: min(560px, 100%);
  height: 260px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: end;
}
.machine {
  display: block;
  position: relative;
  background: #252f35;
  box-shadow: 0 22px 45px rgba(27,37,43,.18);
}
.machine::after {
  content: "";
  position: absolute;
  background: var(--accent);
}
.machine.plate { height: 88px; border-radius: 4px 4px 10px 10px; }
.machine.plate::after { left: 16%; right: 16%; bottom: -16px; height: 18px; }
.machine.generator { height: 130px; border-radius: 4px; }
.machine.generator::after { width: 44px; height: 44px; right: 24px; top: 26px; border-radius: 50%; }
.machine.mixer { height: 160px; border-radius: 80px 80px 20px 20px; background: #3b474e; }
.machine.mixer::after { width: 86px; height: 18px; left: 34px; bottom: -20px; }
.machine.saw { height: 112px; border-radius: 4px; background: #1f2b31; }
.machine.saw::after { width: 70px; height: 70px; right: -12px; bottom: -18px; border-radius: 50%; background: transparent; border: 12px solid var(--accent); }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1 { max-width: 850px; font-size: clamp(42px, 7vw, 86px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 28px; }
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 30px;
  max-width: none;
  margin-top: 28px;
}
.feature-item {
  display: grid;
  grid-template-columns: 38px max-content;
  column-gap: 14px;
  align-items: center;
  min-width: 150px;
}
.feature-item strong {
  display: block;
  grid-column: 2;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}
.feature-item small {
  display: block;
  grid-column: 2;
  color: #667078;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.feature-icon,
.strip-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-icon {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  justify-self: start;
}
.hero p { max-width: 720px; color: var(--muted); font-size: 19px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.primary-link {
  border: 0; display: inline-flex; justify-content: center; align-items: center;
  min-height: 34px;
  padding: 9px 17px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 800;
  cursor: pointer; border-radius: 3px;
}
.primary-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
}
.primary-link:hover { background: var(--accent-dark); }
.consult-link {
  background: #fff;
  color: #222;
  min-width: 156px;
}
.hero-panel { background: var(--surface); border: 1px solid var(--line); padding: 28px; box-shadow: 0 20px 60px rgba(36, 32, 24, .08); }
.hero-panel span { color: var(--muted); font-weight: 700; }
.hero-panel strong { display: block; font-size: 42px; margin: 12px 0; }
.info-grid { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 56px; border-top: 1px solid var(--line); }
.info-grid p, .contact-list { font-size: 18px; line-height: 1.7; color: var(--muted); }
.catalog-section { border-top: 1px solid var(--line); }
.category-home-section {
  padding: 19px 40px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 16px;
}
.section-head h2 { font-size: 18px; font-weight: 900; }
.section-head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.text-link {
  color: var(--accent);
  font-weight: 900;
}
.home-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  background: transparent;
}
.home-category-card {
  min-height: 94px;
  padding: 10px 10px 10px 12px;
  border: 1px solid #e1e5e8;
  background: #fff;
  display: grid;
  grid-template-columns: 74px 1fr 16px;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.home-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(21,29,34,.12);
  z-index: 1;
}
.home-category-card strong {
  display: block;
  font-size: 11px;
  line-height: 1.15;
}
.home-category-card::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #2d3439;
  border-bottom: 1px solid #2d3439;
  transform: rotate(-45deg);
  justify-self: end;
}
.home-category-card small {
  display: none;
}
.category-photo {
  min-height: 72px;
  display: grid;
  place-items: center;
  background: transparent;
}
.category-photo img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  padding: 0;
  mix-blend-mode: multiply;
}
.category-photo b {
  width: 58px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  border-radius: 2px;
}
.category-card-copy {
  display: block;
  padding: 0;
  border-top: 0;
}
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  gap: 1px;
  background: #d9dee2;
  border: 1px solid #d6dde1;
}
.footer-service-strip {
  margin: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.service-strip div {
  position: relative;
  min-height: 64px;
  background: #fff;
  padding: 14px 16px 12px 62px;
}
.service-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.12;
}
.service-strip span {
  color: #657078;
  font-size: 10px;
  line-height: 1.35;
}
.strip-icon {
  position: absolute;
  left: 26px;
  top: 19px;
  width: 23px;
  height: 23px;
}
.brand-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 250px;
  padding: 44px 52px;
  background:
    linear-gradient(128deg, transparent 0 68%, rgba(207,36,31,.98) 68% 100%),
    radial-gradient(circle at 72% 38%, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(90deg, #0d1419 0%, #131f26 52%, #303a41 100%);
  color: #fff;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.brand-band::after {
  content: "KOMAN";
  position: absolute;
  right: 88px;
  top: 18px;
  color: rgba(255,255,255,.07);
  font-size: 132px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.brand-band h2 {
  position: relative;
  max-width: 650px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
}
.brand-band p {
  position: relative;
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.55;
}
.brand-band .eyebrow {
  position: relative;
  margin: 0 0 12px;
  color: #e02a25;
  font-size: 13px;
  letter-spacing: .06em;
}
.brand-stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.brand-stats span {
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.brand-stats strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 5px;
}
.brand-band .primary-link {
  position: relative;
  flex: 0 0 auto;
  align-self: end;
  justify-self: end;
  min-width: 210px;
  min-height: 44px;
  background: #fff;
  color: var(--accent);
  font-size: 13px;
  box-shadow: none;
}
.brand-band .primary-link::after {
  border-color: var(--accent);
}
.brand-band .primary-link:hover {
  background: #f3f5f6;
}
.info-section,
.partner-section,
.contact-section {
  background: #fff;
  border-top: 1px solid var(--line);
}
.info-section {
  background:
    linear-gradient(90deg, #121a20 0%, #182229 100%);
  color: #fff;
}
.info-section .section-head.compact > p,
.info-section .info-card p {
  color: rgba(255,255,255,.7);
}
.info-section .section-head.compact h2,
.info-section .info-card h3 {
  color: #fff;
}
.brand-band .eyebrow,
.info-section .eyebrow,
.partner-section .eyebrow,
.contact-section .eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
}
.section-head.compact {
  display: grid;
  align-items: start;
  margin-bottom: 18px;
}
.section-head.compact h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
}
.section-head.compact > p {
  max-width: 540px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255,255,255,.12);
}
.info-card,
.contact-card {
  border: 1px solid #d6dde1;
  background: #fff;
  padding: 22px;
  min-height: 132px;
}
.info-card {
  border: 0;
  border-right: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  min-height: 168px;
}
.info-card:last-child {
  border-right: 0;
}
.info-card-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #ff3b35;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(90deg, #fff 0%, #fff 62%, #f1f4f6 62%, #f1f4f6 100%);
}
.partner-section h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.04;
}
.partner-section p:not(.eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.partner-steps {
  display: grid;
  gap: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.partner-steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #d6dde1;
  background: #fff;
}
.partner-steps div:last-child {
  border-bottom: 1px solid #d6dde1;
}
.partner-steps strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
}
.partner-steps span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #d6dde1;
}
.contact-card {
  min-height: 104px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  align-content: center;
  gap: 18px;
  border: 0;
  border-right: 1px solid #d6dde1;
}
.contact-card:last-child { border-right: 0; }
.contact-card-icon {
  width: 30px;
  height: 30px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.request-flow-section,
.catalog-brief-section,
.popular-section,
.contact-cta-section {
  padding: 42px 40px;
  border-top: 1px solid var(--line);
}

.request-flow-section {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(112deg, #121a20 0%, #182229 58%, #263139 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.request-flow-section::after {
  content: "KOMAN";
  position: absolute;
  right: 28px;
  top: -18px;
  color: rgba(255,255,255,.05);
  font-size: 118px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.flow-copy,
.flow-steps {
  position: relative;
  z-index: 1;
}

.flow-copy h2,
.catalog-brief-section h2,
.popular-section h2,
.contact-cta-section h2 {
  max-width: 620px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.flow-copy p:not(.eyebrow),
.contact-cta-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 14px 0 22px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.6;
}

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

.flow-steps article {
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}

.flow-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.flow-steps strong,
.brief-card strong,
.popular-card strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.flow-steps p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.45;
}

.catalog-brief-section {
  background: #fff;
}

.catalog-brief-section .section-head.compact,
.popular-section .section-head.compact {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  align-items: end;
  margin-bottom: 20px;
}

.catalog-brief-section .section-head.compact > p {
  margin: 0;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #d6dde1;
}

.brief-card {
  min-height: 126px;
  padding: 22px 22px 20px;
  border-right: 1px solid #d6dde1;
  background: #fff;
}

.brief-card:last-child {
  border-right: 0;
}

.brief-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brief-card span,
.popular-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.popular-section {
  background: #f5f7f8;
}

.popular-section .text-link {
  justify-self: end;
  align-self: center;
  font-size: 13px;
}

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

.popular-card {
  display: grid;
  grid-template-rows: 112px auto auto;
  min-height: 202px;
  padding: 18px;
  border: 1px solid #d6dde1;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.popular-card:hover {
  transform: translateY(-2px);
  border-color: #c8d0d5;
  box-shadow: 0 16px 32px rgba(21,29,34,.09);
}

.popular-card img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  margin-bottom: 12px;
  mix-blend-mode: multiply;
}

.contact-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  background: #fff;
}

.contact-cta-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-cta-section .contact-card-grid {
  grid-template-columns: 1fr;
  gap: 8px;
  border: 0;
}

.contact-cta-section .contact-card {
  min-height: 88px;
  border: 1px solid #d6dde1;
  background: #fff;
}

.contact-cta-section .contact-card:last-child {
  border-right: 1px solid #d6dde1;
}

.footer-service-strip {
  margin: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.footer-service-strip div {
  min-height: 62px;
}

.footer-service-strip .strip-icon {
  width: 24px;
  height: 24px;
}

.home-page .eyebrow,
.home-page .brand-band .eyebrow,
.home-page .info-section .eyebrow,
.home-page .partner-section .eyebrow,
.home-page .contact-section .eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-page .section-head {
  margin-bottom: 18px;
}

.home-page .category-home-section .section-head h2 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.12;
}

.home-page .request-flow-section h2,
.home-page .catalog-brief-section h2,
.home-page .popular-section h2,
.home-page .contact-cta-section h2 {
  max-width: 620px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-page .request-flow-section p:not(.eyebrow),
.home-page .catalog-brief-section .section-head.compact > p,
.home-page .contact-cta-section p:not(.eyebrow) {
  max-width: 560px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.home-page .request-flow-section p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}

.home-page .catalog-brief-section .section-head.compact > p,
.home-page .contact-cta-section p:not(.eyebrow) {
  color: var(--muted);
}

.home-page .flow-steps strong,
.home-page .brief-card strong,
.home-page .popular-card strong,
.home-page .contact-card strong,
.home-page .service-strip strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-page .flow-steps strong {
  color: #fff;
}

.home-page .flow-steps p,
.home-page .brief-card span,
.home-page .popular-card span,
.home-page .contact-card span,
.home-page .service-strip span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.home-page .flow-steps p {
  color: rgba(255,255,255,.66);
}

.home-page .primary-link,
.home-page .ghost-link,
.home-page .text-link {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-page .text-link {
  color: var(--accent);
}

.home-page .red-word,
.home-page .feature-icon,
.home-page .brief-icon,
.home-page .contact-card-icon,
.home-page .strip-icon {
  color: var(--accent);
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(140px, 1fr));
  gap: 44px;
  align-items: start;
  padding: 34px 40px;
  background: #121a20;
  color: #fff;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}
.site-footer .brand-logo {
  width: 128px;
  height: 34px;
  place-items: start;
}
.site-footer .brand-logo img {
  max-height: 32px;
}
.site-footer p {
  max-width: 260px;
  margin: 0 0 10px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.5;
}
.footer-about > span {
  color: rgba(255,255,255,.48);
  font-size: 12px;
}
.footer-nav {
  display: grid;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}
.footer-nav strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
}
.footer-nav a,
.footer-nav span {
  color: rgba(255,255,255,.68);
}
.footer-nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-contacts {
  display: grid;
  gap: 5px;
  justify-items: end;
  font-size: 12px;
}
.footer-contacts span { color: rgba(255,255,255,.62); }
.studio-credit {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.62);
  text-decoration: none;
}
.studio-credit span { font-size: 12px; font-weight: 700; }
.studio-credit img {
  width: 96px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .94;
}
.studio-credit:hover { background: rgba(255,255,255,.1); }
.catalog-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 58px clamp(16px, 5vw, 72px) 34px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.catalog-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.catalog-head, .section-title-row { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.search-input { width: min(360px, 100%); padding: 14px 16px; border: 1px solid var(--line); background: #fff; }
.category-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 14px; margin-bottom: 22px; }
.category-chip {
  flex: 0 0 auto; border: 1px solid var(--line); background: #fff; padding: 11px 14px;
  cursor: pointer; font-weight: 800; border-radius: 4px;
}
.category-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.catalog-layout { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 30px; align-items: start; }
.category-list { position: sticky; top: 88px; display: grid; gap: 10px; }
.category-row {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 86px;
}
.category-row img,
.category-row span {
  grid-row: 1 / 3;
  width: 76px;
  height: 64px;
  object-fit: contain;
  background: #f1f4f5;
  padding: 6px;
  mix-blend-mode: multiply;
}
.category-row b { line-height: 1.15; }
.category-row small { color: var(--muted); font-weight: 700; }
.category-row.active { border-color: var(--accent); box-shadow: inset 4px 0 0 var(--accent); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 18px; }
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 288px;
  display: grid;
  grid-template-rows: 158px 1fr;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(21,29,34,.1); }
.product-thumb { display: grid; place-items: center; background: #eef0ed; color: #7b817c; font-weight: 900; font-size: 38px; }
.product-card img { width: 100%; height: 158px; object-fit: contain; padding: 16px; background: #f3f4f2; mix-blend-mode: multiply; }
.product-body { padding: 16px; display: grid; gap: 12px; }
.product-title { font-weight: 900; line-height: 1.25; }
.product-meta { color: var(--muted); font-size: 14px; }
.card-actions { display: flex; gap: 8px; align-self: end; }
.card-actions button { flex: 1; border: 1px solid var(--line); background: #fff; padding: 10px; cursor: pointer; font-weight: 800; border-radius: 4px; }
.card-actions button:last-child { background: var(--accent); border-color: var(--accent); color: #fff; }

.catalog-page .catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 32px;
  padding: 46px 40px 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 52%, rgba(255,255,255,.68) 100%),
    url("assets/hero-koman-mockup.jpg") right center / cover no-repeat,
    #fff;
}
.catalog-page .catalog-hero h1 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
}
.catalog-page .catalog-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.catalog-page .search-input {
  width: 100%;
  min-height: 46px;
  padding: 14px 16px;
  border: 1px solid #d6dde1;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  outline: none;
  border-radius: 0;
}
.catalog-page .search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197,41,34,.1);
}
.catalog-page .category-strip {
  display: none;
}
.catalog-page .catalog-section {
  padding: 34px 40px 46px;
  background: #f5f7f8;
}
.catalog-page .catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.catalog-page .catalog-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
}
.catalog-page .sidebar-search {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #d6dde1;
  background: #fff;
}
.catalog-page .sidebar-search label {
  color: #151d22;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.catalog-page .category-list {
  position: static;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #d6dde1;
  background: #fff;
}
.catalog-page .category-row {
  grid-template-columns: 46px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 58px;
  padding: 6px 8px;
  border: 1px solid #d6dde1;
  background: #fff;
  border-radius: 0;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.catalog-page .category-row.active {
  border-color: var(--accent);
  background: #fff8f7;
  box-shadow: inset 3px 0 0 var(--accent);
}
.catalog-page .category-row:hover {
  border-color: #c7d0d5;
  transform: translateX(2px);
}
.catalog-page .category-row-image {
  width: 46px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #fff;
}
.catalog-page .category-row-image img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  mix-blend-mode: normal;
}
.catalog-page .category-row-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.catalog-page .category-row b {
  font-size: 12px;
  line-height: 1.15;
}
.catalog-page .category-row small {
  font-size: 10px;
  line-height: 1.1;
}
.catalog-page .catalog-products-panel {
  min-width: 0;
}
.catalog-page .section-title-row {
  min-height: 64px;
  padding: 0 0 14px;
  border-bottom: 1px solid #d6dde1;
}
.catalog-page .section-title-row h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
}
.catalog-page .section-title-row > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #d6dde1;
  color: #667078;
  font-size: 12px;
  font-weight: 900;
}
.catalog-page .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.catalog-page .product-card {
  min-height: 360px;
  grid-template-rows: 180px 1fr;
  border: 1px solid #d6dde1;
  border-radius: 0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.catalog-page .product-card:hover {
  transform: translateY(-2px);
  border-color: #c7d0d5;
  box-shadow: 0 18px 36px rgba(21,29,34,.1);
}
.catalog-page .product-card-media {
  display: grid;
  place-items: center;
  min-height: 180px;
  background: linear-gradient(180deg, #fff 0%, #f0f3f4 100%);
  border-bottom: 1px solid #e0e5e8;
}
.catalog-page .product-thumb {
  width: 100%;
  height: 180px;
  background: #eef0ed;
}
.catalog-page .product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 18px;
  background: transparent;
  mix-blend-mode: multiply;
}
.catalog-page .product-body {
  padding: 16px;
  display: grid;
  gap: 14px;
  align-content: space-between;
}
.catalog-page .product-title {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}
.catalog-page .product-meta {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  background: #fff3f2;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.catalog-page .product-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 54px;
  margin: 10px 0 0;
  color: #667078;
  font-size: 12px;
  line-height: 1.5;
}
.catalog-page .product-price {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e0e5e8;
}
.catalog-page .product-price span {
  color: #667078;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.catalog-page .product-price strong {
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}
.catalog-page .card-actions button {
  min-height: 38px;
  border: 1px solid #d6dde1;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
}
.catalog-page .card-actions button:hover {
  border-color: var(--accent);
}
.catalog-page .card-actions button:last-child:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.catalog-page .catalog-empty {
  margin: 0;
  padding: 24px;
  border: 1px dashed #cbd3d8;
  background: #fff;
  color: #667078;
  font-size: 14px;
}

.content-page .inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  align-items: center;
  padding: 46px 40px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.86)),
    #fff;
  border-bottom: 1px solid var(--line);
}
.content-page .inner-hero.dark {
  background:
    linear-gradient(128deg, transparent 0 72%, rgba(197,41,34,.92) 72% 100%),
    linear-gradient(90deg, #121a20 0%, #1b252c 100%);
  color: #fff;
}
.content-page .inner-hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.04;
}
.content-page .inner-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #667078;
  font-size: 16px;
  line-height: 1.65;
}
.content-page .inner-hero.dark p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}
.content-page .inner-hero img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.content-page .inner-hero.dark img {
  padding: 18px;
  background: rgba(255,255,255,.95);
}
.content-section {
  padding: 42px 40px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  align-items: center;
}
.split-section h2,
.content-section .section-head h2,
.contact-action-band h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}
.split-section p:not(.eyebrow),
.content-section .section-head > p,
.contact-action-band p {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.image-panel {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid #d6dde1;
  background: linear-gradient(180deg, #fff, #f2f5f6);
}
.image-panel img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  padding: 22px;
  mix-blend-mode: multiply;
}
.data-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e7eb;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,23,27,.05);
}
.info-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
}
.info-table th,
.info-table td {
  padding: 16px 18px;
  border-right: 1px solid #edf1f3;
  border-bottom: 1px solid #edf1f3;
  text-align: left;
  vertical-align: top;
}
.info-table th:last-child,
.info-table td:last-child {
  border-right: 0;
}
.info-table tbody tr:last-child td {
  border-bottom: 0;
}
.info-table th {
  background: #f6f8f9;
  color: #65717a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.info-table tbody tr:nth-child(even) td {
  background: #fbfcfc;
}
.info-table td {
  color: #3d474f;
  font-size: 13px;
  line-height: 1.5;
}
.info-table td:first-child {
  color: #151d22;
  font-weight: 900;
}
.card-section,
.contact-grid-page {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #f5f7f8;
}
.contact-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-section article,
.contact-grid-page article {
  min-height: 148px;
  padding: 24px;
  border: 1px solid #d6dde1;
  background: #fff;
}
.card-section strong,
.contact-grid-page strong,
.process-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.card-section span,
.contact-grid-page span,
.process-grid p {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  background: #f5f7f8;
}
.process-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #d6dde1;
  background: #fff;
}
.process-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border-radius: var(--radius-sm);
}
.contact-action-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(128deg, transparent 0 74%, rgba(197,41,34,.95) 74% 100%),
    linear-gradient(90deg, #121a20 0%, #1b252c 100%);
  color: #fff;
}
.contact-action-band p {
  color: rgba(255,255,255,.72);
}
.contact-action-band .primary-link {
  background: #fff;
  color: var(--accent);
}
.modal {
  position: fixed; inset: 0; z-index: 50; display: none; place-items: center;
  background: rgba(12,18,22,.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px;
}
.modal.show { display: grid; }
.modal-card { width: min(900px, 100%); max-height: 90vh; overflow: auto; background: #fff; padding: 28px; position: relative; border-radius: 6px; }
.modal-card.small { width: min(460px, 100%); }
.modal-close { border: 0; background: transparent; font-size: 32px; cursor: pointer; }
.modal-card .modal-close { position: absolute; right: 16px; top: 10px; }
.city-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.city-options button { padding: 16px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-weight: 800; }
#cityModal .modal-card.small {
  width: min(500px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(216,224,229,.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
}

#cityModal .modal-card.small::before {
  content: "";
  display: block;
  height: 126px;
  background:
    linear-gradient(128deg, transparent 0 68%, rgba(197,41,34,.96) 68.2% 100%),
    linear-gradient(90deg, #121a20 0%, #1a252c 100%);
}

#cityModal .modal-card.small h2 {
  position: absolute;
  left: 28px;
  top: 30px;
  max-width: 320px;
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}

#cityModal .modal-card.small h2::before {
  content: "Город";
  display: block;
  margin-bottom: 8px;
  color: #ff3b35;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

#cityModal .modal-card.small p {
  margin: 0;
  padding: 24px 28px 0;
  color: #5d6870;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

#cityModal .city-options {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 24px 28px 28px;
}

#cityModal .city-options button {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid #d6dde1;
  border-radius: 8px;
  background: #fff;
  color: #151d22;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(17,23,27,.06);
}

#cityModal .city-options button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.product-detail { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.product-detail-media { min-height: 240px; display: grid; place-items: center; background: #eef0ed; font-size: 56px; font-weight: 900; color: #7b817c; }
.request-overlay {
  position: fixed;
  inset: 0;
  z-index: 58;
  border: 0;
  padding: 0;
  background: rgba(12,18,22,.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity .22s ease, visibility .22s ease;
}
.request-overlay.show {
  opacity: 1;
  visibility: visible;
}
body.request-drawer-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
}
.request-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(500px, 100%);
  height: 100vh;
  transform: translateX(105%);
  transition: transform .24s ease;
  background: #f4f6f7;
  border-left: 1px solid rgba(18,26,32,.18);
  padding: 0;
  overflow: auto;
  box-shadow: -24px 0 60px rgba(18,26,32,.22);
}
.request-drawer.show { transform: translateX(0); }
.drawer-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 22px;
  background:
    linear-gradient(128deg, transparent 0 70%, rgba(197,41,34,.94) 70% 100%),
    linear-gradient(90deg, #121a20 0%, #1a252c 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.drawer-head .eyebrow {
  margin-bottom: 8px;
  color: #ff3b35;
  font-size: 11px;
  letter-spacing: .1em;
}
.drawer-head h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
}
.drawer-head .modal-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
.request-items {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 18px 0;
}
.request-items > p {
  margin: 0;
  padding: 22px;
  border: 1px dashed #cbd3d8;
  background: #fff;
  color: #667078;
  font-size: 13px;
  line-height: 1.5;
}
.request-line {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid #d6dde1;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(21,29,34,.06);
}
.request-line.request-line-added {
  animation: requestAddedPulse 1.25s ease-out;
}
.request-line.request-line-added::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(197,41,34,.48);
  border-radius: inherit;
  pointer-events: none;
  animation: requestAddedRing 1.25s ease-out;
}
@keyframes requestAddedPulse {
  0% {
    background: #fff2f0;
    box-shadow: 0 0 0 0 rgba(197,41,34,.24), 0 10px 24px rgba(21,29,34,.06);
    transform: translateY(-3px);
  }
  46% {
    background: #fff;
    box-shadow: 0 16px 34px rgba(197,41,34,.16);
  }
  100% {
    background: #fff;
    box-shadow: 0 10px 24px rgba(21,29,34,.06);
    transform: translateY(0);
  }
}
@keyframes requestAddedRing {
  0% {
    opacity: 1;
    transform: scale(.985);
  }
  100% {
    opacity: 0;
    transform: scale(1.025);
  }
}
.request-product-media {
  width: 64px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #f4f6f7;
  border: 1px solid #e0e5e8;
}
.request-product-media img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  padding: 5px;
  mix-blend-mode: multiply;
}
.request-product-media .product-thumb {
  width: 100%;
  height: 56px;
  font-size: 14px;
}
.request-product-copy {
  min-width: 0;
}
.request-line strong {
  display: block;
  margin-bottom: 5px;
  color: #151d22;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}
.request-line small {
  display: block;
  color: #68737b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}
.request-product-price {
  display: inline-flex;
  margin-top: 7px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.request-product-controls {
  display: grid;
  gap: 8px;
  justify-items: end;
  align-content: center;
}
.qty {
  display: grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  gap: 0;
  border: 1px solid #d6dde1;
  background: #f7f9fa;
}
.qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.qty button:hover {
  background: var(--accent);
  color: #fff;
}
.qty span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 32px;
  color: #151d22;
  font-size: 13px;
  font-weight: 900;
}
.request-form {
  display: grid;
  gap: 10px;
  margin: 18px;
  padding: 18px;
  border: 1px solid #d6dde1;
  background: #fff;
}
.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid #d6dde1;
  background: #f8fafb;
  padding: 13px 14px;
  color: #151d22;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  border-radius: 0;
}
.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #7b858c;
}
.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(197,41,34,.1);
}
.captcha-row {
  display: grid;
  grid-template-columns: minmax(120px, auto) 44px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d6dde1;
  background: #fff;
  color: #151d22;
  font-size: 13px;
  font-weight: 800;
}
.captcha-row span {
  min-width: 118px;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background:
    linear-gradient(135deg, var(--accent) 0%, var(--accent) 78%, #151d22 78% 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}
.captcha-row input {
  border: 0;
  background: #f8fafb;
  min-height: 44px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}
.captcha-row input:focus {
  box-shadow: inset 0 0 0 2px rgba(197,41,34,.22);
}
.captcha-refresh {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-left: 1px solid #d6dde1;
  border-right: 1px solid #d6dde1;
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.captcha-refresh:hover {
  background: #fff4f3;
  transform: rotate(18deg);
}
.captcha-refresh svg {
  width: 20px;
  height: 20px;
}
.privacy-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid #d6dde1;
  background: #fff;
  color: #5d666d;
  font-size: 12px;
  line-height: 1.35;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}
.privacy-check a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}
.privacy-check a:hover {
  text-decoration: underline;
}
.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  width: min(760px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(216,224,229,.92);
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 60px rgba(17,23,27,.18);
  transform: translate(-50%, 18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.cookie-notice.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.cookie-notice-copy {
  min-width: 0;
}
.cookie-notice strong {
  display: block;
  margin-bottom: 5px;
  color: #151d22;
  font-size: 14px;
  font-weight: 900;
}
.cookie-notice p {
  margin: 0;
  color: #5d6870;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}
.cookie-notice a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}
.cookie-notice a:hover {
  text-decoration: underline;
}
.cookie-notice-accept {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}
.text-document {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 56px 58px;
  background: #fff;
  border-top: 1px solid #d8dde0;
}
.text-document h2 {
  margin: 28px 0 10px;
  color: #151d22;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}
.text-document h2:first-child {
  margin-top: 0;
}
.text-document p {
  margin: 0 0 14px;
  color: #4f5960;
  font-size: 15px;
  line-height: 1.65;
}
.text-document a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}
.text-document a:hover {
  text-decoration: underline;
}
.request-form .primary-link {
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
}
.form-status {
  min-height: 20px;
  margin: 2px 0 0;
  color: #667078;
  font-size: 12px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; }
  .main-nav { order: 3; justify-content: start; overflow-x: auto; width: 100%; }
  .hero, .hero-industrial, .info-grid, .catalog-layout, .product-detail, .partner-section, .request-flow-section, .contact-cta-section { grid-template-columns: 1fr; }
  .hero-industrial { min-height: auto; }
  .hero-features {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .feature-item {
    grid-template-columns: 40px 1fr;
  }
  .feature-item strong,
  .feature-item small {
    white-space: normal;
  }
  .hero-visual { min-height: 300px; }
  .hero-stage {
    justify-self: center;
    height: 360px;
    min-height: 320px;
  }
  .home-category-grid { grid-template-columns: 1fr 1fr; }
  .service-strip { grid-template-columns: 1fr 1fr; }
  .brand-band {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 24px;
  }
  .brand-band::after {
    right: 12px;
    top: 12px;
    font-size: 72px;
  }
  .partner-section {
    background: #fff;
  }
  .request-flow-section,
  .catalog-brief-section,
  .popular-section,
  .contact-cta-section {
    padding: 34px 24px;
  }
  .request-flow-section::after {
    right: 10px;
    top: 4px;
    font-size: 72px;
  }
  .flow-steps,
  .brief-grid,
  .popular-grid,
  .catalog-brief-section .section-head.compact,
  .popular-section .section-head.compact {
    grid-template-columns: 1fr;
  }
  .brief-grid {
    border: 0;
    gap: 10px;
  }
  .brief-card {
    border: 1px solid #d6dde1;
  }
  .popular-section .text-link {
    justify-self: start;
  }
  .info-card-grid {
    border: 0;
    gap: 12px;
  }
  .info-card {
    border: 1px solid rgba(255,255,255,.12);
  }
  .contact-card-grid {
    border: 0;
    gap: 12px;
  }
  .contact-card {
    border: 1px solid #d6dde1;
  }
  .info-card-grid,
  .contact-card-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-nav { justify-content: start; }
  .footer-contacts { justify-items: start; }
  .catalog-hero { display: grid; }
  .category-list { position: static; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .catalog-page .catalog-hero {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }
  .catalog-page .catalog-section {
    padding: 28px 24px 36px;
  }
  .catalog-page .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-page .catalog-sidebar {
    position: static;
  }
  .catalog-page .category-list {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .content-page .inner-hero,
  .split-section,
  .contact-action-band {
    grid-template-columns: 1fr;
  }
  .content-page .inner-hero,
  .content-section {
    padding: 34px 24px;
  }
  .card-section,
  .contact-grid-page,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.partners-page .partners-hero.inner-hero.dark {
  min-height: 190px;
  padding: 24px 42px;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 22px;
}
.partners-page .partners-hero h1 {
  max-width: 700px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.02;
}
.partners-page .partners-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}
.partners-page .partners-hero img {
  max-height: 142px;
  padding: 12px;
}
.partner-formats-section {
  padding-top: 38px;
}
.partner-formats-section .partner-section-head {
  margin-bottom: 22px;
}
.partner-formats-section .partner-section-head .eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partner-formats-section .partner-section-head h2 {
  max-width: 620px;
  margin: 0;
  color: #151d22;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}
.partner-benefits-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: stretch;
  background: #121a20;
  color: #fff;
  border-top: 0;
}
.partner-benefits-copy {
  min-height: 300px;
  display: grid;
  align-content: center;
  padding: 10px 0;
}
.partner-benefits-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partner-benefits-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}
.partner-benefits-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.partner-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
}
.partner-benefits-grid article {
  min-height: 180px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: rgba(255,255,255,.035);
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
}
.partner-benefits-grid article:nth-child(2n) {
  border-right: 0;
}
.partner-benefits-grid article:nth-last-child(-n+2) {
  border-bottom: 0;
}
.partner-benefits-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}
.partner-benefits-grid strong {
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}
.partner-benefits-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .partners-page .partners-hero.inner-hero.dark,
  .partner-benefits-section {
    grid-template-columns: 1fr;
  }
  .partners-page .partners-hero.inner-hero.dark {
    padding: 24px;
  }
  .partners-page .partners-hero h1 {
    font-size: 30px;
  }
  .partner-formats-section .partner-section-head h2,
  .partner-benefits-copy h2 {
    font-size: 30px;
  }
  .partner-benefits-copy {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .partner-benefits-grid {
    grid-template-columns: 1fr;
  }
  .partner-benefits-grid article,
  .partner-benefits-grid article:nth-child(2n),
  .partner-benefits-grid article:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .partner-benefits-grid article:last-child {
    border-bottom: 0;
  }
}

/* Final unified inner hero priority */
body:not(.home-page).content-page .inner-hero,
body:not(.home-page).catalog-page .catalog-hero {
  min-height: 260px;
  height: 260px;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18,26,32,.98) 0%, rgba(18,26,32,.95) 52%, rgba(18,26,32,.58) 72%, rgba(18,26,32,.16) 100%),
    linear-gradient(128deg, transparent 0 70%, rgba(197,41,34,.94) 70.2% 100%),
    #121a20;
  color: #fff;
}

body:not(.home-page).content-page .inner-hero::after,
body:not(.home-page).catalog-page .catalog-hero::after {
  content: "";
  position: absolute;
  right: clamp(34px, 6vw, 92px);
  top: 34px;
  bottom: 28px;
  width: min(31vw, 340px);
  height: auto;
  background: var(--page-hero-image) center / contain no-repeat;
  opacity: .46;
  mix-blend-mode: multiply;
  filter: grayscale(.2) contrast(1.18) saturate(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  z-index: 0;
  pointer-events: none;
}

body:not(.home-page).content-page .inner-hero > *,
body:not(.home-page).catalog-page .catalog-hero > * {
  position: relative;
  z-index: 1;
}

body:not(.home-page).content-page .inner-hero img,
body:not(.home-page).catalog-page .catalog-hero img {
  display: none;
}

body:not(.home-page).content-page .inner-hero h1,
body:not(.home-page).catalog-page .catalog-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

body:not(.home-page).content-page .inner-hero p:not(.eyebrow),
body:not(.home-page).catalog-page .catalog-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

body:not(.home-page).catalog-page .catalog-hero-card {
  justify-self: end;
}

@media (max-width: 900px) {
  body:not(.home-page).content-page .inner-hero,
  body:not(.home-page).catalog-page .catalog-hero {
    height: auto;
    min-height: 260px;
    grid-template-columns: 1fr;
    padding: 30px 24px 136px;
  }

  body:not(.home-page).content-page .inner-hero::after,
  body:not(.home-page).catalog-page .catalog-hero::after {
    right: 18px;
    top: auto;
    bottom: 10px;
    width: min(64vw, 300px);
    height: 130px;
    opacity: .38;
  }
}

/* No product image on inner page hero */
body:not(.home-page).content-page .inner-hero::after,
body:not(.home-page).catalog-page .catalog-hero::after {
  display: none;
  content: none;
  background: none;
}

body:not(.home-page).content-page .inner-hero,
body:not(.home-page).catalog-page .catalog-hero {
  grid-template-columns: 1fr;
}

body:not(.home-page).catalog-page .catalog-hero-card {
  display: none;
}

/* Unified inner page hero */
body:not(.home-page).content-page .inner-hero,
body:not(.home-page).catalog-page .catalog-hero {
  min-height: 260px;
  height: 260px;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18,26,32,.98) 0%, rgba(18,26,32,.95) 52%, rgba(18,26,32,.58) 72%, rgba(18,26,32,.16) 100%),
    linear-gradient(128deg, transparent 0 70%, rgba(197,41,34,.94) 70.2% 100%),
    #121a20;
  color: #fff;
}

body:not(.home-page).content-page .inner-hero::after,
body:not(.home-page).catalog-page .catalog-hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 10px;
  width: min(34vw, 360px);
  height: 82%;
  background: var(--page-hero-image) center / contain no-repeat;
  opacity: .28;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.28) brightness(.72) sepia(.18) hue-rotate(325deg) saturate(1.65);
  -webkit-mask-image:
    radial-gradient(ellipse at 52% 50%, #000 0 48%, rgba(0,0,0,.72) 62%, transparent 78%);
  mask-image:
    radial-gradient(ellipse at 52% 50%, #000 0 48%, rgba(0,0,0,.72) 62%, transparent 78%);
  z-index: 0;
  pointer-events: none;
}

body:not(.home-page).content-page .inner-hero > *,
body:not(.home-page).catalog-page .catalog-hero > * {
  position: relative;
  z-index: 1;
}

body:not(.home-page).content-page .inner-hero img,
body:not(.home-page).catalog-page .catalog-hero img {
  display: none;
}

body:not(.home-page).content-page .inner-hero h1,
body:not(.home-page).catalog-page .catalog-hero h1,
.partners-page .partners-hero h1,
.partners-page .inner-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

body:not(.home-page).content-page .inner-hero p:not(.eyebrow),
body:not(.home-page).catalog-page .catalog-hero p:not(.eyebrow),
.partners-page .partners-hero p:not(.eyebrow),
.partners-page .inner-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 900px) {
  body:not(.home-page).content-page .inner-hero,
  body:not(.home-page).catalog-page .catalog-hero {
    height: auto;
    min-height: 260px;
    grid-template-columns: 1fr;
    padding: 30px 24px 136px;
  }

  body:not(.home-page).content-page .inner-hero::after,
  body:not(.home-page).catalog-page .catalog-hero::after {
    right: 18px;
    bottom: 8px;
    width: min(64vw, 300px);
    height: 130px;
    opacity: .32;
  }
}

/* Final: no product image on inner page hero */
body:not(.home-page).content-page .inner-hero::after,
body:not(.home-page).catalog-page .catalog-hero::after {
  display: none;
  content: none;
  background: none;
}

body:not(.home-page).content-page .inner-hero,
body:not(.home-page).catalog-page .catalog-hero {
  grid-template-columns: 1fr;
}

body:not(.home-page).catalog-page .catalog-hero-card {
  display: none;
}

/* Small radius pass */
:root {
  --radius-sm: 6px;
}
.primary-link,
.city-btn,
.request-btn,
.category-chip,
.card-actions button,
.catalog-page .card-actions button,
.city-options button,
.qty button,
.modal-close,
.drawer-head .modal-close,
.request-form .primary-link,
button[type="submit"] {
  border-radius: var(--radius-sm);
}
.site-frame,
.home-category-card,
.info-card,
.contact-card,
.brief-card,
.popular-card,
.catalog-page .category-row,
.catalog-page .catalog-products-panel,
.catalog-page .product-card,
.catalog-page .product-card-media,
.catalog-page .catalog-empty,
.catalog-hero-card,
.content-page .inner-hero img,
.image-panel,
.data-table-wrap,
.card-section article,
.contact-grid-page article,
.process-grid article,
.request-form,
.request-line,
.request-items > p,
.modal-card,
.product-modal-card,
.product-detail-media,
.product-detail-facts,
.partner-benefits-grid,
.text-document,
.privacy-check,
.captcha-row,
.sidebar-search,
.catalog-page .category-list {
  border-radius: var(--radius-sm);
}
.request-form input,
.request-form textarea,
.catalog-page .search-input,
.captcha-row input {
  border-radius: 4px;
}
.catalog-page .category-row-image,
.category-photo,
.popular-card img,
.product-card img,
.product-detail-media img,
.request-product-media,
.brand-logo {
  border-radius: 4px;
}
@media (max-width: 560px) {
  .header-actions { width: 100%; }
  .header-actions button { flex: 1; }
  .hero-copy h1 { font-size: 38px; }
  .hero-title-line { white-space: normal; }
  .hero-visual { min-height: 250px; }
  .hero-stage {
    height: 270px;
    min-height: 250px;
  }
  .hero-machine-saw { top: 18px; }
  .machine-line { grid-template-columns: 1fr 1fr; height: 220px; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip div {
    padding-left: 58px;
  }
  .strip-icon {
    left: 22px;
  }
  .brand-band h2 {
    font-size: 42px;
  }
  .brand-band p {
    font-size: 16px;
  }
  .home-category-grid { grid-template-columns: 1fr; }
  .brand-band .primary-link { width: 100%; }
  .drawer-head {
    padding: 20px;
  }
  .drawer-head h2 {
    font-size: 24px;
  }
  .request-items,
  .request-form {
    margin-left: 12px;
    margin-right: 12px;
  }
  .request-items {
    padding-left: 12px;
    padding-right: 12px;
  }
  .request-line {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .request-product-media {
    width: 84px;
  }
  .qty {
    justify-self: start;
  }
  .captcha-row {
    grid-template-columns: 1fr;
  }
  .cookie-notice {
    grid-template-columns: 1fr;
    bottom: 12px;
    padding: 16px;
  }
  .cookie-notice-accept {
    width: 100%;
  }
  .captcha-row span {
    min-height: 40px;
    justify-content: center;
    background: var(--accent);
  }
  .catalog-page .catalog-hero h1 {
    font-size: 36px;
  }
  .catalog-page .section-title-row {
    display: grid;
    align-items: start;
  }
  .catalog-page .product-grid {
    grid-template-columns: 1fr;
  }
  .card-section,
  .contact-grid-page,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .content-page .inner-hero h1 {
    font-size: 36px;
  }
}

/* Catalog redesign */
.catalog-page .site-frame { background: #fff; }
.catalog-page .catalog-hero {
  min-height: 170px;
  padding: 24px 36px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.62) 100%),
    url("assets/hero-koman-products-v2.jpg") center right / cover no-repeat;
  border-bottom: 1px solid #d7dee3;
}
.catalog-page .catalog-hero .eyebrow,
.catalog-page .catalog-title-row .eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.catalog-page .catalog-hero h1 {
  max-width: 720px;
  margin: 6px 0 8px;
  color: #11171b;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: .98;
}
.catalog-page .catalog-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #5d666d;
  font-size: 13px;
  line-height: 1.4;
}
.catalog-hero-card {
  min-height: 104px;
  padding: 14px;
  display: grid;
  align-content: end;
  gap: 8px;
  background: #11171b;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.catalog-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -32px -56px auto;
  width: 145px;
  height: 145px;
  background: var(--accent);
  transform: skewX(-16deg);
}
.catalog-hero-card span,
.catalog-hero-card small {
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.catalog-hero-card strong {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.catalog-page .catalog-section {
  padding: 28px 40px 52px;
  background: #f1f4f6;
}
.catalog-page .catalog-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.catalog-page .catalog-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
}
.catalog-page .sidebar-search,
.catalog-page .category-list {
  background: #fff;
  border: 1px solid #d8e0e5;
}
.catalog-page .sidebar-search { padding: 14px; }
.catalog-page .sidebar-search label {
  margin-bottom: 8px;
  display: block;
  color: #11171b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-page .search-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8e0e5;
  background: #f7f9fa;
  padding: 0 13px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}
.catalog-page .search-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(213, 36, 31, .1);
}
.catalog-page .category-list {
  position: static;
  display: grid;
  gap: 8px;
  padding: 10px;
}
.catalog-page .category-row {
  width: 100%;
  min-height: 70px;
  border: 1px solid #e0e6ea;
  border-radius: 0;
  background: #fff;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 10px 8px 8px;
  color: #11171b;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(17,23,27,.02);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.catalog-page .category-row:hover {
  background: #fff;
  border-color: #c7d0d6;
  box-shadow: 0 10px 20px rgba(17,23,27,.07);
  transform: translateY(-1px);
}
.catalog-page .category-row.active {
  background: #fff;
  border-color: var(--accent);
  box-shadow: inset 4px 0 0 var(--accent), 0 10px 22px rgba(197,41,34,.1);
}
.catalog-page .category-row-image {
  width: 76px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0;
  overflow: visible;
  flex-shrink: 0;
}
.catalog-page .category-row-image img {
  display: block;
  max-width: 68px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 0;
  background: #fff;
  mix-blend-mode: normal;
}
.catalog-page .category-row-copy {
  min-width: 0;
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: #fff;
}
.catalog-page .category-row b {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}
.catalog-page .category-row small {
  color: #7a858d;
  font-size: 11px;
  font-weight: 800;
}
.catalog-page .catalog-products-panel {
  min-width: 0;
  background: #fff;
  border: 1px solid #d8e0e5;
  padding: 22px;
}
.catalog-page .catalog-title-row {
  min-height: 0;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e1e6ea;
}
.catalog-page .catalog-title-row h2 {
  margin: 4px 0 0;
  color: #11171b;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1;
}
.catalog-page .section-title-row > span {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  background: #11171b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 16px;
}
.catalog-page .product-card {
  min-height: 382px;
  display: grid;
  grid-template-rows: 178px 1fr;
  background: #fff;
  border: 1px solid #dce3e7;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.catalog-page .product-card:hover {
  transform: translateY(-2px);
  border-color: #bdc8cf;
  box-shadow: 0 18px 38px rgba(17,23,27,.12);
}
.catalog-page .product-card-media {
  min-height: 178px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff 0%, #f4f6f7 100%);
  border-bottom: 1px solid #edf0f2;
}
.catalog-page .product-card img {
  width: 100%;
  height: 176px;
  object-fit: contain;
  padding: 14px;
  background: transparent;
  mix-blend-mode: multiply;
}
.catalog-page .product-thumb {
  width: 100%;
  height: 176px;
  display: grid;
  place-items: center;
  background: #f3f5f6;
  color: #7a858d;
  font-size: 42px;
  font-weight: 900;
}
.catalog-page .product-body {
  min-height: 0;
  padding: 16px;
  display: grid;
  gap: 14px;
  align-content: space-between;
}
.catalog-page .product-meta {
  display: inline-flex;
  width: fit-content;
  padding: 4px 7px;
  background: #fff0ef;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-page .product-title {
  margin-top: 8px;
  color: #11171b;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.22;
}
.catalog-page .product-summary {
  margin-top: 8px;
  color: #6b747b;
  font-size: 13px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-page .product-price {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #edf0f2;
}
.catalog-page .product-price span {
  color: #7a858d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-page .product-price strong {
  color: #11171b;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}
.catalog-page .card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.catalog-page .card-actions button {
  min-height: 42px;
  border: 1px solid #d8e0e5;
  background: #fff;
  color: #11171b;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.catalog-page .card-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.catalog-page .card-actions button:last-child {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.catalog-page .card-actions button:last-child:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.catalog-page .catalog-empty {
  margin: 0;
  padding: 28px;
  border: 1px dashed #cbd3d8;
  background: #f7f9fa;
  color: #5d666d;
  font-weight: 700;
}

@media (max-width: 980px) {
  .catalog-page .catalog-hero {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .catalog-page .catalog-layout { grid-template-columns: 1fr; }
  .catalog-page .catalog-sidebar { position: static; }
  .catalog-page .category-list { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
  .catalog-page .category-row {
    border-bottom: 0;
    border: 1px solid #edf0f2;
  }
}

@media (max-width: 560px) {
  .catalog-page .catalog-section { padding: 20px 14px 32px; }
  .catalog-page .catalog-products-panel { padding: 16px; }
  .catalog-page .product-grid { grid-template-columns: 1fr; }
  .catalog-page .catalog-title-row {
    display: grid;
    gap: 12px;
  }
  .catalog-page .catalog-hero h1 {
    font-size: 26px;
  }
}

/* Product modal redesign */
.modal {
  padding: 24px;
}
.product-modal-card {
  width: min(980px, calc(100vw - 48px));
  max-height: min(760px, calc(100vh - 48px));
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.product-modal-card .modal-close {
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e0e5;
  background: #fff;
  color: #11171b;
  font-size: 30px;
  line-height: 1;
}
.product-modal-card .modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 46%) minmax(0, 1fr);
  height: min(760px, calc(100vh - 48px));
  min-height: 0;
  overflow: hidden;
}
.product-detail-media {
  position: sticky;
  top: 0;
  align-self: start;
  height: min(760px, calc(100vh - 48px));
  min-height: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff 0%, #f3f6f7 100%);
  border-right: 1px solid #e1e6ea;
  padding: 34px;
}
.product-detail-media img {
  width: 100%;
  max-width: 390px;
  height: 420px;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  padding: 0;
  background: transparent;
  mix-blend-mode: multiply;
}
.product-detail-media .product-thumb {
  width: 100%;
  max-width: 360px;
  height: 320px;
}
.product-detail-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 58px 58px 46px 44px;
  height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(197,41,34,.9) rgba(226,232,236,.85);
}
.product-detail-copy::-webkit-scrollbar {
  width: 10px;
}
.product-detail-copy::-webkit-scrollbar-track {
  background: rgba(226,232,236,.85);
  border-radius: 999px;
}
.product-detail-copy::-webkit-scrollbar-thumb {
  background: rgba(197,41,34,.9);
  border: 2px solid rgba(226,232,236,.85);
  border-radius: 999px;
}
.product-detail-copy::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}
.product-detail-copy .eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-detail-copy h2 {
  margin: 0;
  color: #11171b;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}
.product-detail-description {
  margin: 0;
  color: #4f5960;
  font-size: 15px;
  line-height: 1.55;
}
.product-detail-description p {
  margin: 0 0 10px;
}
.product-detail-description p:last-child {
  margin-bottom: 0;
}
.product-detail-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-detail-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(197,41,34,.18);
  background: #fff5f3;
  color: #151d22;
  font-size: 12px;
  font-weight: 900;
}
.product-detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d8e0e5;
  background: #fff;
}
.product-detail-facts span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  color: #11171b;
  font-size: 17px;
  font-weight: 900;
}
.product-detail-facts span + span {
  border-left: 1px solid #d8e0e5;
}
.product-detail-facts b {
  color: #7a858d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-detail-specs {
  display: grid;
  border: 1px solid #d8e0e5;
  background: #fff;
}
.product-detail-specs h3 {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #d8e0e5;
  color: #151d22;
  font-size: 16px;
  font-weight: 900;
}
.product-detail-specs div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, auto);
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid #edf1f3;
  color: #5d6870;
  font-size: 13px;
  line-height: 1.35;
}
.product-detail-specs div:last-child {
  border-bottom: 0;
}
.product-detail-specs b {
  color: #151d22;
  font-weight: 900;
  text-align: right;
}
.product-detail-add {
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
}

@media (max-width: 820px) {
  .product-modal-card {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    overflow: auto;
  }
  .product-detail {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    height: auto;
    overflow: auto;
  }
  .product-detail-media {
    position: relative;
    height: auto;
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid #e1e6ea;
    padding: 24px;
  }
  .product-detail-media img {
    height: 260px;
    max-height: 260px;
  }
  .product-detail-copy {
    padding: 28px 24px 24px;
    height: auto;
    overflow: visible;
  }
  .product-detail-copy h2 {
    font-size: 28px;
  }
  .product-detail-facts {
    grid-template-columns: 1fr;
  }
  .product-detail-facts span + span {
    border-left: 0;
    border-top: 1px solid #d8e0e5;
  }
}

/* Partners page tuning */
.partners-page .inner-hero.dark {
  min-height: 260px;
  padding: 34px 48px;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
}
.partners-page .inner-hero h1 {
  max-width: 760px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.03;
}
.partners-page .inner-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
}
.partners-page .inner-hero img {
  max-height: 190px;
}
.partners-page .content-section:first-of-type {
  padding-top: 44px;
}
.partners-page .content-section:first-of-type .section-head.compact {
  display: grid;
  gap: 0;
  margin-bottom: 20px;
}
.partners-page .content-section:first-of-type .section-head.compact .eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partners-page .content-section:first-of-type .section-head.compact h2 {
  max-width: 620px;
  margin: 0;
  color: #151d22;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .partners-page .inner-hero.dark {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  .partners-page .inner-hero h1 {
    font-size: 32px;
  }
  .partners-page .inner-hero img {
    max-height: 170px;
  }
  .partners-page .content-section:first-of-type .section-head.compact h2 {
    font-size: 30px;
  }
}

/* Final radius priority */
.primary-link,
.city-btn,
.request-btn,
.card-actions button,
.catalog-page .card-actions button,
.city-options button,
.qty button,
.modal-close,
.request-form .primary-link,
button[type="submit"] {
  border-radius: var(--radius-sm);
}
.home-category-card,
.info-card,
.contact-card,
.brief-card,
.popular-card,
.catalog-page .category-row,
.catalog-page .catalog-products-panel,
.catalog-page .product-card,
.catalog-page .product-card-media,
.catalog-hero-card,
.data-table-wrap,
.card-section article,
.contact-grid-page article,
.process-grid article,
.request-form,
.request-line,
.modal-card,
.product-modal-card,
.product-detail-media,
.partner-benefits-grid,
.text-document,
.privacy-check,
.captcha-row,
.sidebar-search,
.catalog-page .category-list {
  border-radius: var(--radius-sm);
}
.request-form input,
.request-form textarea,
.catalog-page .search-input {
  border-radius: 4px;
}

/* Home first viewport */
.home-page .home-first-screen {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.home-page .home-first-screen .hero-industrial {
  min-height: 0;
  height: 100%;
  align-content: center;
}
.home-page .home-first-screen .category-home-section {
  padding-top: 14px;
  padding-bottom: 18px;
}
.home-page .home-first-screen .home-category-card {
  min-height: clamp(74px, 10vh, 94px);
}
.home-page .home-first-screen .category-photo {
  min-height: clamp(50px, 7vh, 72px);
}

@media (max-height: 780px) and (min-width: 901px) {
  .home-page .home-first-screen .hero-industrial {
    padding-top: 28px;
    padding-bottom: 22px;
  }
  .home-page .home-first-screen .hero h1 {
    font-size: clamp(38px, 4.7vw, 58px);
  }
  .home-page .home-first-screen .hero-features {
    margin-top: 20px;
  }
  .home-page .home-first-screen .hero-actions {
    margin-top: 20px;
  }
  .home-page .home-first-screen .category-home-section {
    padding-top: 10px;
    padding-bottom: 14px;
  }
}

@media (max-width: 900px) {
  .home-page .home-first-screen {
    min-height: auto;
    display: block;
  }
  .home-page .home-first-screen .hero-industrial {
    height: auto;
  }
}

/* Shared inner pages system */
.about-page { --page-hero-image: url("assets/cat-vibroplity.jpg"); }
.partners-page { --page-hero-image: url("assets/cat-generatory.jpg"); }
.contacts-page { --page-hero-image: url("assets/cat-rezchiki-shvov.png"); }
.catalog-page { --page-hero-image: url("assets/hero-koman-products-v1.jpg"); }
.privacy-page { --page-hero-image: url("assets/cat-motopompy.jpg"); }
.consent-page { --page-hero-image: url("assets/cat-zatirochnye-mashiny.jpg"); }

.content-page .inner-hero,
.catalog-page .catalog-hero {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 36px 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(90deg, rgba(18,26,32,.98) 0%, rgba(18,26,32,.96) 48%, rgba(18,26,32,.72) 63%, rgba(18,26,32,.18) 100%),
    linear-gradient(128deg, transparent 0 69%, rgba(197,41,34,.96) 69.2% 100%),
    #121a20;
  color: #fff;
}

.content-page .inner-hero::after,
.catalog-page .catalog-hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 16px;
  width: min(34vw, 360px);
  height: 78%;
  background: var(--page-hero-image) center / contain no-repeat;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.32));
  z-index: 0;
  pointer-events: none;
}

.content-page .inner-hero > *,
.catalog-page .catalog-hero > * {
  position: relative;
  z-index: 1;
}

.content-page .inner-hero img,
.catalog-page .catalog-hero img {
  display: none;
}

.content-page .inner-hero .eyebrow,
.catalog-page .catalog-hero .eyebrow,
.content-section .eyebrow,
.section-title-row .eyebrow,
.contact-action-band .eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.content-page .inner-hero h1,
.catalog-page .catalog-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.content-page .inner-hero p:not(.eyebrow),
.catalog-page .catalog-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
}

.catalog-page .catalog-hero-card {
  justify-self: end;
  width: min(260px, 100%);
  min-height: 144px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,23,27,.78);
  color: #fff;
  box-shadow: none;
}

.catalog-page .catalog-hero-card::after {
  display: none;
}

.catalog-page .catalog-hero-card span,
.catalog-page .catalog-hero-card small {
  color: rgba(255,255,255,.62);
}

.catalog-page .catalog-hero-card strong {
  color: #fff;
  font-size: 30px;
}

.content-section {
  padding: 42px 48px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.content-section .section-head,
.content-section .section-head.compact,
.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.content-section .section-head h2,
.content-section .section-head.compact h2,
.section-title-row h2,
.contact-action-band h2 {
  max-width: 640px;
  margin: 0;
  color: #151d22;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.content-section .section-head > p,
.content-section .section-head.compact > p,
.contact-action-band p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e7eb;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,23,27,.05);
}

.info-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
}

.info-table th,
.info-table td {
  padding: 16px 18px;
  border-right: 1px solid #edf1f3;
  border-bottom: 1px solid #edf1f3;
  text-align: left;
  vertical-align: top;
}

.info-table th:last-child,
.info-table td:last-child {
  border-right: 0;
}

.info-table tbody tr:last-child td {
  border-bottom: 0;
}

.info-table th {
  background: #f6f8f9;
  color: #65717a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.info-table tbody tr:nth-child(even) td {
  background: #fbfcfc;
}

.info-table td {
  color: #3d474f;
  font-size: 13px;
  line-height: 1.5;
}

.info-table td:first-child {
  color: #151d22;
  font-weight: 900;
}

.card-section,
.contact-grid-page,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  background: #f5f7f8;
}

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

.card-section article,
.contact-grid-page article,
.process-grid article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid #d6dde1;
  background: #fff;
}

.card-section strong,
.contact-grid-page strong,
.process-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.card-section span,
.contact-grid-page span,
.process-grid p {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border-radius: var(--radius-sm);
}

.partner-benefits-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: stretch;
  background: #121a20;
  color: #fff;
  border-top: 0;
}

.partner-benefits-copy {
  min-height: 300px;
  display: grid;
  align-content: center;
  padding: 10px 0;
}

.partner-benefits-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
}

.partner-benefits-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.partner-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
}

.partner-benefits-grid article {
  min-height: 180px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: rgba(255,255,255,.035);
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
}

.partner-benefits-grid article:nth-child(2n) {
  border-right: 0;
}

.partner-benefits-grid article:nth-last-child(-n+2) {
  border-bottom: 0;
}

.partner-benefits-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.partner-benefits-grid strong {
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.partner-benefits-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.5;
}

.contact-action-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #121a20;
  color: #fff;
}

.contact-action-band h2 {
  color: #fff;
}

.contact-action-band p {
  color: rgba(255,255,255,.72);
}

.contact-action-band .primary-link {
  background: #fff;
  color: var(--accent);
}

@media (max-width: 900px) {
  .content-page .inner-hero,
  .catalog-page .catalog-hero,
  .partner-benefits-section {
    grid-template-columns: 1fr;
  }

  .content-page .inner-hero,
  .catalog-page .catalog-hero {
    padding: 30px 24px 160px;
  }

  .content-page .inner-hero::after,
  .catalog-page .catalog-hero::after {
    width: min(62vw, 320px);
    height: 150px;
    right: 20px;
    bottom: 8px;
  }

  .content-section .section-head,
  .content-section .section-head.compact,
  .section-title-row,
  .contact-action-band {
    align-items: start;
    flex-direction: column;
  }

  .card-section,
  .contact-grid-page,
  .process-grid,
  .partner-benefits-grid {
    grid-template-columns: 1fr;
  }

  .partner-benefits-grid article,
  .partner-benefits-grid article:nth-child(2n),
  .partner-benefits-grid article:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .partner-benefits-grid article:last-child {
    border-bottom: 0;
  }
}

/* Final unified inner hero priority */
body:not(.home-page).content-page .inner-hero,
body:not(.home-page).catalog-page .catalog-hero {
  min-height: 260px;
  height: 260px;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18,26,32,.98) 0%, rgba(18,26,32,.95) 52%, rgba(18,26,32,.58) 72%, rgba(18,26,32,.16) 100%),
    linear-gradient(128deg, transparent 0 70%, rgba(197,41,34,.94) 70.2% 100%),
    #121a20;
  color: #fff;
}

body:not(.home-page).content-page .inner-hero::after,
body:not(.home-page).catalog-page .catalog-hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 10px;
  width: min(34vw, 360px);
  height: 82%;
  background: var(--page-hero-image) center / contain no-repeat;
  opacity: .28;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.28) brightness(.72) sepia(.18) hue-rotate(325deg) saturate(1.65);
  -webkit-mask-image:
    radial-gradient(ellipse at 52% 50%, #000 0 48%, rgba(0,0,0,.72) 62%, transparent 78%);
  mask-image:
    radial-gradient(ellipse at 52% 50%, #000 0 48%, rgba(0,0,0,.72) 62%, transparent 78%);
  z-index: 0;
  pointer-events: none;
}

body:not(.home-page).content-page .inner-hero > *,
body:not(.home-page).catalog-page .catalog-hero > * {
  position: relative;
  z-index: 1;
}

body:not(.home-page).content-page .inner-hero img,
body:not(.home-page).catalog-page .catalog-hero img {
  display: none;
}

body:not(.home-page).content-page .inner-hero h1,
body:not(.home-page).catalog-page .catalog-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

body:not(.home-page).content-page .inner-hero p:not(.eyebrow),
body:not(.home-page).catalog-page .catalog-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

body:not(.home-page).catalog-page .catalog-hero-card {
  justify-self: end;
}

@media (max-width: 900px) {
  body:not(.home-page).content-page .inner-hero,
  body:not(.home-page).catalog-page .catalog-hero {
    height: auto;
    min-height: 260px;
    grid-template-columns: 1fr;
    padding: 30px 24px 136px;
  }

  body:not(.home-page).content-page .inner-hero::after,
  body:not(.home-page).catalog-page .catalog-hero::after {
    right: 18px;
    bottom: 8px;
    width: min(64vw, 300px);
    height: 130px;
    opacity: .32;
  }
}


/* Final override: inner heroes have no product image */
body:not(.home-page).content-page .inner-hero::after,
body:not(.home-page).catalog-page .catalog-hero::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

body:not(.home-page).content-page .inner-hero,
body:not(.home-page).catalog-page .catalog-hero {
  grid-template-columns: 1fr !important;
}

body:not(.home-page).catalog-page .catalog-hero-card {
  display: none !important;
}

/* Final home refinements */
.home-page .hero-industrial {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 36%, rgba(255,255,255,.34) 68%, rgba(255,255,255,.18) 100%),
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.24) 72%, rgba(255,255,255,.06) 100%),
    url("assets/hero-koman-products-v3.jpg") center bottom / cover no-repeat,
    #eef3f5;
}

.home-page .hero-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.home-page .hero-features {
  margin-top: 34px;
}

.home-page .hero-actions {
  margin-top: 32px;
}

.home-page .popular-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, #ffffff 0 63%, rgba(197,41,34,.10) 63.2% 100%),
    linear-gradient(180deg, #f8fafb 0%, #eef3f5 100%);
  color: var(--ink);
}

.home-page .popular-section::before {
  content: none;
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  top: 12px;
  color: rgba(18,26,32,.045);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.home-page .popular-section .section-head {
  position: relative;
  z-index: 1;
  align-items: end;
}

.home-page .popular-section h2 {
  max-width: 620px;
  color: var(--ink);
}

.home-page .popular-section .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(197,41,34,.18);
  border-radius: 8px;
  background: #fff;
  color: var(--accent);
  box-shadow: 0 12px 30px rgba(18,25,31,.08);
}

.home-page .popular-section .text-link:hover {
  background: var(--accent);
  color: #fff;
}

.home-page .popular-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-page .popular-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) 34px;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 144px;
  padding: 18px 18px 18px 14px;
  border: 1px solid #d9e0e4;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(243,247,249,.94)),
    #fff;
  box-shadow: 0 18px 38px rgba(18,25,31,.10);
}

.home-page .popular-card::before {
  content: none;
  position: absolute;
  right: -54px;
  top: -64px;
  width: 170px;
  height: 170px;
  border-radius: 48px;
  background: rgba(197,41,34,.11);
  transform: rotate(18deg);
}

.home-page .popular-card::after {
  content: "";
  position: relative;
  z-index: 1;
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 10px;
  height: 10px;
  justify-self: center;
  border-right: 1px solid #2d3439;
  border-bottom: 1px solid #2d3439;
  border-radius: 0;
  background: transparent;
  transform: rotate(-45deg);
}

.home-page .popular-card img {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 118px;
  height: 104px;
  margin: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(216,221,224,.72);
}

.home-page .popular-card strong {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
}

.home-page .popular-card span {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2;
  max-width: 340px;
  margin-top: 8px;
  color: #64717a;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  html, body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
  }

  body {
    background: #eef1f4;
  }

  .site-frame {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    padding-top: 60px;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    z-index: 60;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    min-height: 60px;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(18, 25, 31, .08);
  }

  body.modal-open .site-header,
  body.request-drawer-open .site-header {
    transform: translateY(-8px);
  }

  .brand > span:last-child {
    display: none;
  }

  .brand-logo {
    width: 118px;
    height: 34px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
    gap: 8px;
  }

  .city-btn {
    display: none;
  }

  .request-btn {
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 10px;
  }

  .request-label {
    display: none;
  }

  .request-btn .header-icon {
    width: 21px;
    height: 21px;
  }

  .request-btn #requestCount {
    min-width: 19px;
    width: auto;
    height: 19px;
    padding: 0 5px;
    font-size: 10px;
    top: -5px;
    right: -5px;
    transform: none;
    border: 2px solid #fff;
  }

  .mobile-menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }

  .mobile-menu-btn span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: #1f252b;
    transition: transform .2s ease, opacity .2s ease;
  }

  .mobile-nav-panel {
    display: none;
    grid-column: 1 / -1;
    gap: 6px;
    padding: 8px 0 0;
  }

  .site-header.menu-open .mobile-nav-panel {
    display: grid;
  }

  .mobile-nav-panel a {
    display: block;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
  }

  .mobile-city-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f7f9fa;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
  }

  .mobile-city-btn .header-icon {
    color: #59636a;
  }

  .mobile-city-btn strong {
    font-weight: 800;
  }

  .home-page .home-first-screen {
    min-height: 100svh;
    margin-left: 0;
    margin-right: 0;
  }

  .home-page .home-first-screen .hero-industrial {
    min-height: calc(100svh - 64px);
    padding: 18px 14px 20px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-page .home-first-screen .hero-copy {
    max-width: none;
  }

  .home-page .home-first-screen .hero h1 {
    font-size: 30px;
    line-height: 1.05;
  }

  .home-page .home-first-screen .hero-title-line {
    display: block;
  }

  .home-page .home-first-screen .hero-features {
    gap: 12px;
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .home-first-screen .feature-item {
    grid-template-columns: 34px 1fr;
    gap: 2px 10px;
    align-items: start;
  }

  .home-page .home-first-screen .feature-item .feature-icon {
    grid-row: 1 / span 2;
  }

  .home-page .home-first-screen .feature-icon {
    width: 30px;
    height: 30px;
  }

  .home-page .home-first-screen .feature-item strong,
  .home-page .home-first-screen .feature-item small {
    font-size: 12px;
    line-height: 1.2;
  }

  .home-page .home-first-screen .hero-actions {
    margin-top: 18px;
    flex-wrap: wrap;
  }

  .home-page .home-first-screen .hero-visual {
    display: none;
  }

  .home-page .home-first-screen .category-home-section {
    padding: 18px 14px 14px;
  }

  .home-page .home-first-screen .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .home-first-screen .home-category-card {
    min-height: 104px;
    padding: 10px;
  }

  .home-page .home-first-screen .category-photo {
    width: 72px;
    height: 52px;
  }

  .request-flow-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 14px;
  }

  .flow-copy h2,
  .catalog-brief-section h2,
  .popular-section h2,
  .contact-cta-copy h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .flow-steps {
    gap: 10px;
  }

  .flow-steps article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .flow-steps article span {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .flow-steps article strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .flow-steps article p {
    font-size: 13px;
    line-height: 1.45;
  }

  .brief-grid {
    grid-template-columns: 1fr;
    counter-reset: mobile-brief;
  }

  .brief-card {
    grid-template-columns: 44px 1fr;
    gap: 8px 12px;
    padding: 14px;
    min-height: auto;
    position: relative;
    padding-left: 58px;
  }

  .brief-card .brief-icon {
    display: none;
  }

  .brief-card::before {
    counter-increment: mobile-brief;
    content: "0" counter(mobile-brief);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
  }

  .brief-card strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .brief-card span {
    font-size: 13px;
    line-height: 1.45;
  }

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

  .popular-card {
    grid-template-columns: 82px 1fr;
    gap: 8px 12px;
    padding: 12px 14px;
    align-items: center;
  }

  .popular-card img {
    width: 74px;
    height: 74px;
    grid-row: 1 / span 2;
  }

  .popular-card strong {
    font-size: 16px;
    line-height: 1.15;
  }

  .popular-card span {
    font-size: 13px;
    line-height: 1.4;
  }

  .service-strip.footer-service-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .footer-service-strip div {
    padding: 12px;
    min-height: 96px;
  }

  .footer-service-strip strong {
    font-size: 13px;
  }

  .footer-service-strip span {
    font-size: 11px;
    line-height: 1.35;
  }

  .site-footer {
    padding: 22px 14px 24px;
  }

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

  .footer-nav {
    gap: 8px;
  }

  .footer-nav strong {
    font-size: 15px;
  }

  .footer-nav a,
  .footer-nav span,
  .footer-about p,
  .footer-about span {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .home-page .home-first-screen .home-category-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 26px;
    grid-template-rows: 76px minmax(36px, auto);
    gap: 8px 6px;
    align-items: center;
    min-height: 140px;
    padding: 12px;
  }

  .home-page .home-first-screen .home-category-card strong {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    padding-right: 0;
    font-size: 13px;
    line-height: 1.15;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .home-page .home-first-screen .home-category-card::after {
    grid-column: 2;
    grid-row: 2;
    content: "";
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
    justify-self: end;
    align-self: center;
    box-shadow: none;
  }

  .home-page .home-first-screen .home-category-card::before {
    content: "";
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: center;
    width: 8px;
    height: 8px;
    border-right: 1px solid #2d3439;
    border-bottom: 1px solid #2d3439;
    transform: rotate(-45deg);
    z-index: 1;
    pointer-events: none;
  }

  .home-page .home-first-screen .category-photo {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 76px;
    min-height: 76px;
    align-self: center;
  }

  .home-page .home-first-screen .category-photo img {
    max-width: 100%;
    max-height: 74px;
  }

  .home-page .hero-industrial {
    background:
      linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.76) 38%, rgba(255,255,255,.38) 68%, rgba(255,255,255,.18) 100%),
      url("assets/hero-koman-products-v3.jpg") center bottom / cover no-repeat,
      #eef3f5;
  }

  .home-page .home-first-screen .hero-copy {
    min-height: calc(100svh - 104px);
    justify-content: space-between;
    padding: 18px 0 34px;
  }

  .home-page .home-first-screen .hero-features {
    margin-top: 0;
    gap: 18px;
  }

  .home-page .home-first-screen .hero-actions {
    margin-top: 0;
  }

  .home-page .popular-section {
    padding: 34px 16px 38px;
    background:
      linear-gradient(116deg, #ffffff 0 58%, rgba(197,41,34,.13) 58.2% 100%),
      linear-gradient(180deg, #f8fafb 0%, #eef3f5 100%);
    color: var(--ink);
  }

  .home-page .popular-section::before {
    right: -20px;
    top: 8px;
    font-size: 84px;
  }

  .home-page .popular-section .section-head {
    gap: 14px;
    align-items: start;
  }

  .home-page .popular-section h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .home-page .popular-section .text-link {
    min-height: 38px;
    padding: 0 14px;
    border-color: rgba(197,41,34,.20);
    background: #fff;
    color: var(--accent);
  }

  .home-page .popular-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .popular-card {
    grid-template-columns: 94px minmax(0, 1fr) 30px;
    min-height: 112px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0,0,0,.16);
  }

  .home-page .popular-card img {
    width: 82px;
    height: 78px;
    padding: 6px;
    border-radius: 8px;
  }

  .home-page .popular-card strong {
    font-size: 17px;
  }

  .home-page .popular-card span {
    max-width: none;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
  }

  .home-page .popular-card::after {
    width: 10px;
    height: 10px;
    border-radius: 0;
    font-size: 0;
  }

  .home-page .service-strip.footer-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border-left: 0;
    border-right: 0;
  }

  .home-page .footer-service-strip div {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 2px;
    align-content: start;
    min-height: 118px;
    padding: 16px 12px;
  }

  .home-page .footer-service-strip .strip-icon {
    position: static;
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 24px;
    height: 24px;
    margin-top: 1px;
  }

  .home-page .footer-service-strip strong {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.18;
  }

  .home-page .footer-service-strip span {
    grid-column: 2;
    grid-row: 2;
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.35;
  }
}

/* Final request drawer fixes */
.drawer-head .modal-close {
  position: relative;
  border-radius: 8px;
  font-size: 0;
}

.drawer-head .modal-close::before,
.drawer-head .modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.drawer-head .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-head .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 760px) {
  .request-drawer {
    width: 100%;
  }

  .drawer-head {
    background:
      linear-gradient(128deg, transparent 0 68%, rgba(197,41,34,.96) 68.2% 100%),
      linear-gradient(90deg, #121a20 0%, #1a252c 100%);
  }

  .drawer-head .modal-close {
    width: 40px;
    height: 40px;
    margin-top: 0;
  }

  .captcha-row {
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr) !important;
    min-height: 60px;
    border-radius: 8px;
  }

  .captcha-row span {
    min-width: 0;
    min-height: 58px;
    justify-content: center;
    padding: 0 12px;
    background:
      linear-gradient(128deg, var(--accent) 0 76%, #151d22 76.5% 100%) !important;
    white-space: nowrap;
  }

  .captcha-row input {
    min-height: 58px;
    border: 0;
    border-radius: 0;
    background: #f8fafb;
  }

  #cityModal .modal-card.small {
    width: min(420px, calc(100vw - 24px));
  }

  #cityModal .modal-card.small::before {
    height: 116px;
  }

  #cityModal .modal-card.small h2 {
    left: 22px;
    top: 28px;
    font-size: 26px;
  }

  #cityModal .modal-card.small p {
    padding: 20px 22px 0;
    font-size: 13px;
  }

  #cityModal .city-options {
    grid-template-columns: 1fr;
    padding: 20px 22px 24px;
  }
}

/* Final mobile standard for inner pages */
@media (max-width: 760px) {
  body:not(.home-page) {
    background: #eef1f4;
  }

  body:not(.home-page) .site-frame {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    padding-top: 60px;
    border-radius: 0;
    box-shadow: none;
  }

  body:not(.home-page).content-page .inner-hero,
  body:not(.home-page).catalog-page .catalog-hero {
    height: auto !important;
    min-height: 224px !important;
    padding: 30px 18px 34px !important;
    display: grid;
    grid-template-columns: 1fr !important;
    align-items: end;
    border-top: 0;
    background:
      linear-gradient(90deg, rgba(18,26,32,.98) 0%, rgba(18,26,32,.96) 56%, rgba(18,26,32,.72) 72%, rgba(18,26,32,.18) 100%),
      linear-gradient(128deg, transparent 0 68%, rgba(197,41,34,.96) 68.2% 100%),
      #121a20 !important;
  }

  body:not(.home-page).content-page .inner-hero::after,
  body:not(.home-page).catalog-page .catalog-hero::after {
    display: none !important;
  }

  body:not(.home-page).content-page .inner-hero .eyebrow,
  body:not(.home-page).catalog-page .catalog-hero .eyebrow,
  body:not(.home-page) .content-section .eyebrow,
  body:not(.home-page) .section-title-row .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: .08em;
  }

  body:not(.home-page).content-page .inner-hero h1,
  body:not(.home-page).catalog-page .catalog-hero h1 {
    max-width: 100%;
    font-size: 34px !important;
    line-height: 1.04 !important;
  }

  body:not(.home-page).content-page .inner-hero p:not(.eyebrow),
  body:not(.home-page).catalog-page .catalog-hero p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  body:not(.home-page) .content-section,
  body:not(.home-page) .page-section {
    padding: 30px 16px;
  }

  body:not(.home-page) .content-section .section-head,
  body:not(.home-page) .content-section .section-head.compact,
  body:not(.home-page) .section-title-row,
  body:not(.home-page) .contact-action-band {
    display: grid;
    gap: 12px;
    align-items: start;
    margin-bottom: 18px;
  }

  body:not(.home-page) .content-section .section-head h2,
  body:not(.home-page) .content-section .section-head.compact h2,
  body:not(.home-page) .section-title-row h2,
  body:not(.home-page) .contact-action-band h2,
  body:not(.home-page) .split-section h2,
  body:not(.home-page) .partner-benefits-copy h2 {
    max-width: 100%;
    font-size: 30px !important;
    line-height: 1.07 !important;
  }

  body:not(.home-page) .split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body:not(.home-page) .image-panel {
    min-height: 180px;
  }

  body:not(.home-page) .data-table-wrap {
    margin-left: -16px;
    margin-right: -16px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body:not(.home-page) .info-table {
    min-width: 760px;
  }

  body:not(.home-page) .info-table th,
  body:not(.home-page) .info-table td {
    padding: 14px 16px;
    font-size: 12px;
  }

  body:not(.home-page) .card-section,
  body:not(.home-page) .contact-grid-page,
  body:not(.home-page) .process-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    background: #f5f7f8;
  }

  body:not(.home-page) .card-section article,
  body:not(.home-page) .contact-grid-page article,
  body:not(.home-page) .process-grid article {
    min-height: 0;
    padding: 18px;
    border-radius: 8px;
  }

  body:not(.home-page) .process-grid article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 6px 12px;
    align-items: start;
  }

  body:not(.home-page) .process-grid span {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
  }

  body:not(.home-page) .process-grid p {
    margin-top: 4px;
  }

  body:not(.home-page) .partner-benefits-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 16px;
  }

  body:not(.home-page) .partner-benefits-copy {
    min-height: 0;
    padding: 0;
  }

  body:not(.home-page) .partner-benefits-grid {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  body:not(.home-page) .partner-benefits-grid article,
  body:not(.home-page) .partner-benefits-grid article:nth-child(2n),
  body:not(.home-page) .partner-benefits-grid article:nth-last-child(-n+2) {
    min-height: 0;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  body:not(.home-page) .partner-benefits-grid article:last-child {
    border-bottom: 0;
  }

  body:not(.home-page) .contact-action-band {
    padding: 30px 16px;
  }

  body:not(.home-page) .contact-action-band .primary-link {
    width: 100%;
  }

  body:not(.home-page).catalog-page .catalog-section {
    padding: 24px 14px 32px;
  }

  body:not(.home-page).catalog-page .catalog-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body:not(.home-page).catalog-page .catalog-sidebar {
    position: static;
  }

  body:not(.home-page).catalog-page .mobile-category-select-wrap {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid #d6dde1;
    border-radius: 8px;
    background: #fff;
  }

  body:not(.home-page).catalog-page .mobile-category-select-wrap label {
    color: #151d22;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  body:not(.home-page).catalog-page .mobile-category-select {
    width: 100%;
    min-height: 46px;
    padding: 0 40px 0 14px;
    border: 1px solid #d6dde1;
    border-radius: 8px;
    background:
      linear-gradient(45deg, transparent 50%, #2d3439 50%) calc(100% - 20px) 50% / 7px 7px no-repeat,
      linear-gradient(135deg, #2d3439 50%, transparent 50%) calc(100% - 15px) 50% / 7px 7px no-repeat,
      #f8fafb;
    color: #151d22;
    font-size: 14px;
    font-weight: 800;
    appearance: none;
  }

  body:not(.home-page).catalog-page .catalog-products-panel {
    padding: 16px;
    border-radius: 8px;
  }

  body:not(.home-page).catalog-page .product-grid {
    grid-template-columns: 1fr;
  }

  body:not(.home-page).catalog-page .category-list {
    display: none;
  }

  body:not(.home-page).catalog-page .catalog-hero-card {
    display: none !important;
  }
}

/* Final desktop gutters */
@media (min-width: 761px) {
  .site-frame,
  .site-header {
    width: min(1360px, calc(100% - 32px));
  }

  .page-section,
  .content-section,
  .catalog-page .catalog-section {
    padding-left: clamp(24px, 3vw, 44px) !important;
    padding-right: clamp(24px, 3vw, 44px) !important;
  }

  .hero-industrial,
  .category-home-section,
  .content-page .inner-hero,
  .catalog-page .catalog-hero {
    padding-left: clamp(24px, 3vw, 44px) !important;
    padding-right: clamp(24px, 3vw, 44px) !important;
  }
}

/* Final mobile product modal alignment */
@media (max-width: 820px) {
  #productModal.modal {
    align-items: center;
    justify-items: center;
    padding: 12px !important;
    overflow: hidden;
  }

  #productModal .product-modal-card {
    width: 100% !important;
    max-width: calc(100vw - 24px) !important;
    max-height: calc(100dvh - 24px) !important;
    margin: 0 auto !important;
    overflow: hidden auto !important;
  }

  #productModal .product-detail {
    width: 100%;
    max-width: 100%;
    max-height: none;
    overflow: visible;
  }

  #productModal .product-detail-media,
  #productModal .product-detail-copy {
    width: 100%;
    max-width: 100%;
  }

  #productModal .product-detail-copy {
    padding: 28px 18px 22px !important;
  }
}

/* Catalog loading and search motion */
.catalog-page .product-grid.is-loading {
  pointer-events: none;
}

.catalog-page .product-card-skeleton {
  overflow: hidden;
  box-shadow: none;
}

.catalog-page .product-card-skeleton:hover {
  transform: none;
  box-shadow: none;
}

.catalog-page .product-card-skeleton .product-card-media,
.catalog-page .product-card-skeleton .skeleton-line,
.catalog-page .product-card-skeleton .skeleton-price,
.catalog-page .product-card-skeleton .card-actions span {
  position: relative;
  overflow: hidden;
  background: #eef2f4;
}

.catalog-page .product-card-skeleton .product-card-media span {
  width: 58%;
  height: 58%;
  border-radius: 8px;
  background: #e0e6ea;
}

.catalog-page .product-card-skeleton .skeleton-line {
  height: 12px;
  margin-bottom: 10px;
  border-radius: 999px;
}

.catalog-page .product-card-skeleton .skeleton-line-small {
  width: 36%;
  height: 9px;
}

.catalog-page .product-card-skeleton .skeleton-line-title {
  width: 72%;
  height: 18px;
}

.catalog-page .product-card-skeleton .skeleton-line-short {
  width: 54%;
}

.catalog-page .product-card-skeleton .skeleton-price {
  width: 46%;
  height: 34px;
  margin-top: 18px;
  border-radius: 8px;
}

.catalog-page .product-card-skeleton .card-actions span {
  min-height: 42px;
  border-radius: 8px;
}

.catalog-page .product-card-skeleton .product-card-media::after,
.catalog-page .product-card-skeleton .skeleton-line::after,
.catalog-page .product-card-skeleton .skeleton-price::after,
.catalog-page .product-card-skeleton .card-actions span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.72) 48%, transparent 100%);
  animation: catalogSkeleton 1.15s ease-in-out infinite;
}

@keyframes catalogSkeleton {
  100% {
    transform: translateX(100%);
  }
}

.catalog-page .product-card-appear {
  animation: catalogCardAppear .34s ease both;
}

.catalog-page .product-card-appear:nth-child(2n) {
  animation-delay: .035s;
}

.catalog-page .product-card-appear:nth-child(3n) {
  animation-delay: .07s;
}

@keyframes catalogCardAppear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-page .product-card-skeleton .product-card-media::after,
  .catalog-page .product-card-skeleton .skeleton-line::after,
  .catalog-page .product-card-skeleton .skeleton-price::after,
  .catalog-page .product-card-skeleton .card-actions span::after,
  .catalog-page .product-card-appear {
    animation: none;
  }
}

/* Final desktop home hero background */
@media (min-width: 761px) {
  .home-page .hero-industrial {
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.42) 52%, rgba(255,255,255,.05) 70%),
      linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(226,233,236,.26) 58%, rgba(202,211,216,.34) 100%),
      url("assets/hero-koman-products-v2.jpg") right center / cover no-repeat,
      linear-gradient(135deg, #f8fafb 0%, #e8edef 52%, #cfd8dc 100%);
  }
}

/* Final mobile request item layout */
@media (max-width: 760px) {
  .request-items {
    gap: 10px;
    padding: 14px 12px 0;
  }

  .request-line {
    grid-template-columns: 62px minmax(0, 1fr) auto;
    grid-template-areas: "media copy controls";
    gap: 12px;
    align-items: center;
    min-height: 76px;
    padding: 12px;
  }

  .request-product-media {
    grid-area: media;
    width: 62px;
    height: 58px;
  }

  .request-product-media img,
  .request-product-media .product-thumb {
    height: 56px;
  }

  .request-product-copy {
    grid-area: copy;
    display: grid;
    gap: 4px;
    align-content: center;
  }

  .request-line strong {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.18;
  }

  .request-line small {
    font-size: 10px;
    line-height: 1.25;
  }

  .request-product-price {
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
  }

  .request-product-controls {
    grid-area: controls;
    justify-self: end;
    align-self: center;
    min-width: 88px;
    gap: 8px;
    justify-items: end;
  }

  .request-line .qty {
    grid-template-columns: 28px 30px 28px;
    margin-top: 0;
  }

  .request-line .qty button {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .request-line .qty span {
    min-width: 30px;
    height: 28px;
    font-size: 12px;
  }
}
