:root {
  --bg: #f5f3ef;
  --paper: #fbfaf7;
  --line: #ded9d1;
  --line-strong: #c9c2b8;
  --ink: #171615;
  --muted: #77716a;
  --soft: #9f9890;
  --accent: #d77642;
  --accent-soft: #f1d4c3;
  --ok: #60765a;
  --container: min(1480px, calc(100% - 12.5vw));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:where(#request, #catalog, #about) {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--accent-soft);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 0 6.25vw;
  background: rgba(245, 243, 239, 0.9);
  border-bottom: 1px solid rgba(222, 217, 209, 0.76);
  backdrop-filter: blur(18px) saturate(1.08);
}

.brand,
.topnav,
.top-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  min-width: 0;
  transition: opacity 0.18s ease;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.015em;
  line-height: 1;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.brand-name span {
  color: var(--accent);
  font-style: italic;
  font-weight: 830;
}

.brand-tagline {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-left: 14px;
  color: #817a72;
  border-left: 1px solid rgba(205, 198, 188, 0.9);
  font-size: 13px;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
}

.brand:hover .brand-name {
  opacity: 0.82;
  transform: translateY(-1px);
}

.topnav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  height: 34px;
  color: #69625b;
  font-size: 12px;
  font-weight: 700;
}

.catalog-menu-wrap {
  position: relative;
}

.catalog-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 2px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: color 0.18s ease;
}

.catalog-trigger::before {
  display: none;
  width: 14px;
  height: 14px;
  content: "";
}

.catalog-trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}

.catalog-trigger::after {
  position: absolute;
  right: 2px;
  bottom: 4px;
  left: 2px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.catalog-trigger:hover,
.catalog-menu-wrap.open .catalog-trigger {
  color: var(--ink);
}

.catalog-trigger:hover::after,
.catalog-menu-wrap.open .catalog-trigger::after {
  opacity: 0.45;
  transform: scaleX(1);
}

.catalog-menu-wrap.open .catalog-trigger svg {
  transform: rotate(180deg);
}

.catalog-panel {
  position: fixed;
  top: 64px;
  right: max(24px, 6.25vw);
  z-index: 30;
  display: grid;
  gap: 14px;
  width: min(860px, calc(100% - 48px));
  padding: 18px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid rgba(214, 208, 199, 0.92);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 22px 54px rgba(23, 22, 21, 0.12), inset 0 1px 0 #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.catalog-menu-wrap.open .catalog-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.catalog-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 12px;
  border-bottom: 1px solid rgba(214, 208, 199, 0.82);
}

.catalog-panel-head span {
  display: block;
  color: #7c756d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-panel-head strong {
  display: block;
  color: #8b847b;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

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

.catalog-menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 38px;
  padding: 7px 9px;
  color: #39342f;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.16s ease, color 0.16s ease;
}

.catalog-menu-item:hover,
.catalog-menu-item.active {
  color: var(--ink);
  background: #f5f1ea;
}

.catalog-menu-name {
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-menu-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  color: #8d857c;
  background: rgba(23, 22, 21, 0.04);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.catalog-menu-meta {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.catalog-menu-item.active .catalog-menu-count {
  color: var(--accent);
  background: rgba(215, 118, 66, 0.12);
}

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

.top-action {
  position: relative;
  justify-self: end;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px 0 14px;
  color: #2f2b27;
  background: rgba(251, 250, 247, 0.28);
  border: 1px solid rgba(23, 22, 21, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease,
    box-shadow 0.18s ease;
}

.top-action:hover {
  color: var(--accent);
  background: #fbfaf7;
  border-color: rgba(215, 118, 66, 0.48);
  box-shadow: 0 10px 28px rgba(40, 35, 29, 0.08);
}

.top-action svg {
  transition: transform 0.18s ease;
}

.top-action:hover svg {
  transform: translate(2px, -2px);
}

.top-action svg,
.attach-button svg,
.send-button svg,
.closing-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  padding: clamp(66px, 7.8vh, 94px) 6.25vw 42px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.52), rgba(245, 243, 239, 0));
}

.hero-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  color: #b5aea6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 18px;
}

.hero-bullets {
  display: inline-flex;
  align-items: center;
  max-width: 920px;
  margin-bottom: 26px;
}

.hero-bullet {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: #3f3a35;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  transition: color 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
}

.hero-bullet svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-bullet.active {
  color: var(--accent);
  opacity: 1;
  transform: translateY(0);
}

.hero-bullet:not(.active) {
  opacity: 0;
  transform: translateY(4px);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 940px;
  font-size: clamp(52px, 4.9vw, 72px);
  font-weight: 830;
  line-height: 0.98;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 span {
  position: relative;
  display: inline-block;
  color: var(--accent);
  font-style: italic;
  transform: rotate(1.5deg) translateY(0.02em);
  white-space: nowrap;
}

h1 span::after {
  position: absolute;
  right: -0.08em;
  bottom: 0.05em;
  left: -0.08em;
  z-index: -1;
  height: 0.18em;
  background: rgba(241, 212, 195, 0.78);
  content: "";
  transform: rotate(-1deg);
}

.lead {
  max-width: 650px;
  margin-top: 26px;
  color: #746e67;
  font-size: clamp(16px, 1.14vw, 18px);
  line-height: 1.5;
  text-wrap: pretty;
}

.lead-text {
  display: block;
}

.lead-text span {
  color: var(--ink);
  font-weight: 800;
}

.product-examples {
  display: grid;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  max-width: min(760px, 100%);
  margin-top: 10px;
  overflow: hidden;
  color: #8b847c;
  border-top: 1px solid rgba(224, 218, 209, 0.76);
  border-bottom: 1px solid rgba(224, 218, 209, 0.76);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 30px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 30px), transparent 100%);
}

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

.product-examples span {
  display: flex;
  align-items: center;
  min-height: 27px;
  padding: 0 13px;
  color: #8a837b;
  background: rgba(255, 253, 249, 0.28);
  border-right: 1px solid rgba(224, 218, 209, 0.76);
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.product-examples span:first-child {
  padding-left: 0;
}

.request-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(840px, 100%);
  min-height: 70px;
  margin-top: 38px;
  padding: 11px;
  background: #fffdf9;
  border: 1px solid rgba(188, 178, 165, 0.64);
  border-radius: 17px;
  box-shadow: 0 18px 46px rgba(40, 35, 29, 0.06), inset 0 1px 0 #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease,
    background 0.18s ease, min-height 0.18s ease;
}

.request-box:focus-within {
  background: #fffdf9;
  border-color: rgba(23, 22, 21, 0.2);
  box-shadow: 0 24px 62px rgba(39, 34, 28, 0.09), inset 0 1px 0 #fff;
  transform: none;
}

.contact-modal :focus-visible,
.request-modal :focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 22, 21, 0.1);
}

.request-box textarea:focus,
.request-box textarea:focus-visible {
  outline: 0;
  box-shadow: none;
}

.request-box button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 22, 21, 0.08);
}

.request-box.is-expanded {
  align-items: end;
  min-height: 118px;
  padding-top: 16px;
}

.attach-button,
.send-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.attach-button {
  gap: 6px;
  width: auto;
  min-width: 74px;
  padding: 0 11px;
  color: #77716a;
  background: rgba(246, 242, 235, 0.52);
  border: 1px solid rgba(214, 208, 199, 0.62);
  font-size: 12px;
  font-weight: 720;
}

.attach-button svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.send-button {
  gap: 9px;
  width: auto;
  height: 38px;
  flex: 0 0 auto;
  padding: 0 13px 0 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 820;
}

.send-label {
  display: inline;
  white-space: nowrap;
}

.attach-button:hover {
  color: var(--ink);
  background: #f3eee6;
  border-color: rgba(188, 178, 165, 0.84);
}

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

.send-button:hover {
  background: var(--accent);
}

.file-input {
  display: none;
}

textarea {
  width: 100%;
  min-height: 42px;
  max-height: 174px;
  padding: 8px 8px 6px 2px;
  overflow-y: hidden;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  resize: none;
  font-size: 17px;
  line-height: 1.45;
}

.request-box.is-expanded textarea {
  min-height: 88px;
  padding-top: 2px;
  line-height: 1.46;
}

.request-box.is-scrollable textarea {
  overflow-y: auto;
}

.request-box.is-scrollable textarea::-webkit-scrollbar {
  width: 0;
}

textarea::placeholder {
  color: #9c958d;
}

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(840px, 100%);
  min-height: 0;
  margin-top: 10px;
}

.file-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 270px;
  min-height: 30px;
  padding: 0 10px;
  color: #5f5952;
  background: rgba(251, 250, 247, 0.72);
  border: 1px solid rgba(214, 208, 199, 0.85);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.file-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-chip button {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  color: #7b746c;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.file-chip button:hover {
  color: var(--ink);
  background: rgba(23, 22, 21, 0.06);
}

.request-status {
  margin-top: 14px;
  color: var(--ok);
  font-size: 15px;
  font-weight: 700;
}

.request-status:empty {
  display: none;
}


.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(23, 22, 21, 0.28);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal {
  position: relative;
  width: min(500px, 100%);
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf9 0%, #faf7f0 100%);
  border: 1px solid rgba(214, 208, 199, 0.9);
  border-radius: 16px;
  box-shadow: 0 34px 100px rgba(23, 22, 21, 0.18), inset 0 1px 0 #fff;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s ease;
}

.contact-modal::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(215, 118, 66, 0));
  content: "";
}

.request-modal {
  position: relative;
  width: min(720px, 100%);
  padding: 34px;
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid rgba(214, 208, 199, 0.9);
  border-radius: 18px;
  box-shadow: 0 34px 110px rgba(23, 22, 21, 0.2), inset 0 1px 0 #fff;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s ease;
}

.request-modal::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(215, 118, 66, 0));
  content: "";
}

.modal-backdrop.open .contact-modal {
  transform: translateY(0) scale(1);
}

.modal-backdrop.open .request-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #6d665f;
  background: rgba(242, 238, 231, 0.7);
  border: 1px solid rgba(214, 208, 199, 0.75);
  border-radius: 50%;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--ink);
  background: #ebe7df;
}

.modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.modal-kicker {
  color: #9b8f83;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-modal h3 {
  max-width: 390px;
  margin: 12px 44px 0 0;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.request-modal h3 {
  max-width: 560px;
  margin: 12px 54px 0 0;
  font-size: 34px;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.modal-copy {
  max-width: 390px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.request-modal .modal-copy {
  max-width: 520px;
}

.modal-trust {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  max-width: 430px;
}

.modal-trust-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: var(--accent);
  background: rgba(226, 119, 61, 0.09);
  border: 1px solid rgba(226, 119, 61, 0.2);
  border-radius: 50%;
}

.modal-trust-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-request-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 230px;
  margin-top: 24px;
  padding: 0;
  overflow: hidden;
  background: #fffaf3;
  border-color: rgba(188, 178, 165, 0.72);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(40, 35, 29, 0.08), inset 0 1px 0 #fff;
}

.modal-request-box:focus-within {
  border-color: rgba(23, 22, 21, 0.22);
  box-shadow: 0 22px 60px rgba(40, 35, 29, 0.1), inset 0 1px 0 #fff;
  transform: none;
}

.modal-request-box textarea {
  min-height: 154px;
  max-height: 260px;
  padding: 20px 20px 16px;
  font-size: 16px;
  line-height: 1.55;
}

.modal-request-box.is-expanded {
  align-items: stretch;
  min-height: 250px;
  padding-top: 0;
}

.modal-request-box.is-expanded textarea {
  min-height: 174px;
  padding-top: 20px;
}

.modal-request-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(246, 242, 235, 0.72);
  border-top: 1px solid rgba(214, 208, 199, 0.78);
}

.modal-request-actions .attach-button {
  min-width: 92px;
  height: 40px;
  background: #fffdf9;
  font-size: 13px;
  font-weight: 750;
}

.modal-send-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px 0 18px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.18s ease, transform 0.18s ease;
}

.modal-send-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-send-button:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.modal-file-list {
  width: 100%;
  margin-top: 12px;
}

.modal-error {
  min-height: 20px;
  margin-top: 12px;
  color: #a05a34;
  font-size: 13px;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.contact-field {
  display: grid;
  gap: 8px;
  color: #6f6861;
  font-size: 12px;
  font-weight: 780;
}

.contact-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(196, 188, 176, 0.7);
  border-radius: 14px;
  outline: 0;
  font-size: 16px;
  font-weight: 650;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form input:focus {
  background: #fffdf9;
  border-color: rgba(215, 118, 66, 0.5);
  box-shadow: 0 0 0 4px rgba(215, 118, 66, 0.11);
}

.contact-form input::placeholder {
  color: #a49d95;
  font-weight: 550;
}

.contact-submit {
  height: 50px;
  margin-top: 8px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.contact-submit:hover {
  background: var(--accent);
}

.contact-note {
  min-height: 18px;
  margin: 0;
  color: #a05a34;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.contact-modal.is-success .modal-kicker,
.contact-modal.is-success > h3,
.contact-modal.is-success > .modal-copy,
.contact-modal.is-success .contact-form {
  display: none;
}

.success-panel {
  display: grid;
  gap: 18px;
  padding: 10px 0 2px;
}

.success-panel[hidden] {
  display: none;
}

.success-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.success-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--accent);
  background: rgba(215, 118, 66, 0.11);
  border: 1px solid rgba(215, 118, 66, 0.2);
  border-radius: 50%;
}

.success-mark svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-panel h3 {
  margin: 0;
  max-width: 390px;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.04;
}

.success-panel p {
  margin: 0;
  max-width: 390px;
  color: #6f6861;
  font-size: 15px;
  line-height: 1.48;
}

.success-close {
  justify-self: start;
  min-height: 36px;
  padding: 0;
  color: #6e665f;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
}

.success-close:hover {
  color: var(--accent);
}

.success-timer {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(222, 217, 209, 0.9);
}

.success-timer::after {
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--accent);
  content: "";
  transform-origin: left center;
}

.contact-modal.is-success .success-timer::after {
  animation: successTimer 4.2s linear forwards;
}

.value-popover {
  position: fixed;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 24px;
  z-index: 44;
  width: min(430px, calc(100vw - 32px));
  padding: 24px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf9 0%, #f8f4ec 100%);
  border: 1px solid rgba(214, 208, 199, 0.94);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(23, 22, 21, 0.18), inset 0 1px 0 #fff;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.value-popover::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(226, 119, 61, 0));
  content: "";
}

.value-popover.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.value-popover-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #776f67;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.value-popover-close:hover {
  color: var(--ink);
  background: rgba(242, 238, 231, 0.78);
}

.value-popover-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.value-popover h3 {
  max-width: 330px;
  margin: 0 34px 0 0;
  font-size: 27px;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.value-popover p {
  max-width: 360px;
  margin: 13px 0 0;
  color: #6f6861;
  font-size: 15px;
  font-weight: 610;
  line-height: 1.42;
}

.value-popover-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  margin-top: 20px;
  padding: 0 16px 0 18px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
  transition: background 0.18s ease, transform 0.18s ease;
}

.value-popover-action:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.value-popover-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes successTimer {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(840px, 100%);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div {
  min-height: 72px;
  padding: 15px 24px 13px 0;
}

.quick-facts div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 850;
  line-height: 0.95;
}

.quick-facts span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.catalog-section {
  padding: 70px 0 86px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: block;
  width: var(--container);
  margin: 0 auto 18px;
}

h2 {
  font-size: clamp(42px, 4.6vw, 74px);
  font-weight: 850;
  line-height: 0.95;
}

.catalog-section h2 {
  color: #201e1c;
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.tabs {
  display: flex;
  gap: 0;
  width: var(--container);
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tabs {
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0,
    #000 calc(100% - 34px),
    transparent 100%
  );
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 34px), transparent 100%);
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 16px;
  color: #77716a;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  transition: color 0.16s ease, background 0.16s ease;
}

.tab-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  color: #8d857c;
  background: rgba(23, 22, 21, 0.045);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.loader-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(215, 118, 66, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.72s linear infinite;
}

.tab.active .tab-count {
  color: var(--ink);
  background: var(--accent-soft);
}

.tab:first-child {
  border-left: 1px solid var(--line);
}

.tab:hover,
.tab.active {
  color: var(--ink);
  background: #f2eee7;
}

.tab.active {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  min-height: 48px;
  margin: 0 auto;
  padding: 13px 0 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
}

.catalog-toolbar p {
  color: var(--ink);
}

.catalog-toolbar span {
  color: var(--soft);
}

.catalog-toolbar #companyCount {
  color: var(--accent);
  font-weight: 850;
}

.table-shell {
  width: var(--container);
  margin: 0 auto;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-color: #c8c0b5 transparent;
  scrollbar-width: thin;
}

.table-shell::-webkit-scrollbar {
  height: 5px;
}

.table-shell::-webkit-scrollbar-track {
  background: transparent;
}

.table-shell::-webkit-scrollbar-thumb {
  background: #c8c0b5;
  border-radius: 999px;
}

table {
  width: 100%;
  min-width: 1090px;
  border-collapse: collapse;
  background: var(--paper);
}

th,
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th:first-child,
td:first-child {
  padding-left: 16px;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

th {
  color: #77716a;
  background: var(--paper);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

td {
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.rank-head,
.rank-cell {
  width: 52px;
  color: #9a938b;
  text-align: center;
}

.rank-head {
  letter-spacing: 0;
}

.rank-badge {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #8d867e;
  background: rgba(246, 242, 235, 0.72);
  border: 1px solid rgba(224, 218, 209, 0.95);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 830;
  line-height: 1;
}

tbody tr {
  transition: background 0.16s ease;
}

tbody tr:hover {
  background: #f4f1eb;
}

tbody tr.top-rank {
  background: linear-gradient(90deg, rgba(226, 119, 61, 0.075), rgba(255, 253, 249, 0) 34%);
}

tbody tr.top-rank:hover {
  background: linear-gradient(90deg, rgba(226, 119, 61, 0.105), #f4f1eb 38%);
}

.top-rank .rank-badge {
  color: var(--accent);
  background: rgba(226, 119, 61, 0.1);
  border-color: rgba(226, 119, 61, 0.32);
}

.catalog-cta-row:hover {
  background: transparent;
}

.catalog-cta-row td {
  padding: 16px 0;
}

.catalog-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px 14px 18px;
  color: #4f4942;
  background: linear-gradient(90deg, rgba(226, 119, 61, 0.08), rgba(247, 244, 238, 0.86));
  border-top: 1px solid rgba(224, 218, 209, 0.95);
  border-bottom: 1px solid rgba(224, 218, 209, 0.95);
  font-size: 14.5px;
  font-weight: 760;
  line-height: 1.35;
}

.catalog-inline-cta button {
  min-height: 36px;
  padding: 0 14px;
  color: #171615;
  background: #fffaf2;
  border: 1px solid rgba(226, 119, 61, 0.32);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(34, 31, 28, 0.06);
}

.catalog-inline-cta button:hover {
  color: var(--paper);
  background: var(--accent);
  border-color: var(--accent);
}

tbody tr:hover td {
  border-bottom-color: #d7d0c6;
}

.loading-row:hover {
  background: transparent;
}

.loading-row td {
  padding: 58px 16px 62px;
}

.catalog-loader {
  display: grid;
  place-items: center;
  width: 100%;
}

.catalog-loader .loader-dot {
  width: 26px;
  height: 26px;
}

.company-name {
  display: block;
  max-width: 320px;
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-inn {
  display: block;
  margin-top: 4px;
  color: #7b756e;
  font-size: 12px;
  font-weight: 500;
}

.type-cell {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.type-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  border-radius: 999px;
  cursor: help;
}

.type-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.type-cell::after {
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  z-index: 30;
  width: max-content;
  max-width: 240px;
  padding: 7px 9px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(23, 22, 21, 0.16);
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transform: translate(-50%, 4px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.type-cell::before {
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  z-index: 31;
  width: 8px;
  height: 8px;
  background: var(--ink);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px) rotate(45deg);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.type-cell:hover::after,
.type-cell:hover::before,
.type-cell:focus-visible::after,
.type-cell:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.type-cell:hover .type-icon {
  background: #f0ece4;
}

.type-head {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: help;
}

.type-question {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #8a837b;
  border: 1px solid #bdb5aa;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-1px);
}

.type-head:hover .type-question,
.type-head:focus-visible .type-question {
  color: var(--ink);
  border-color: var(--accent);
}

.type-legend {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  z-index: 40;
  display: grid;
  gap: 7px;
  width: 190px;
  padding: 10px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(23, 22, 21, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.type-legend::before {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--ink);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.legend-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  align-items: center;
  color: var(--paper);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: none;
}

.legend-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.type-head:hover .type-legend,
.type-head:focus-visible .type-legend {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-link {
  color: #211f1c;
  border-bottom: 1px solid rgba(138, 131, 123, 0.65);
  font-weight: 500;
  text-decoration-thickness: 1px;
}

.site-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.numeric {
  color: #76706a;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.catalog-pagination {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: var(--container);
  min-height: 58px;
  margin: 0 auto;
  padding: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.catalog-pagination.visible {
  display: flex;
}

.pagination-range {
  color: #7b756e;
}

.pagination-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.pagination-controls button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  color: #625c55;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.pagination-controls button:hover:not(:disabled),
.pagination-page.active {
  color: var(--ink);
  background: #f2eee7;
  border-color: rgba(214, 208, 199, 0.82);
}

.pagination-page.active {
  color: var(--accent);
}

.pagination-controls button:disabled {
  cursor: default;
  opacity: 0.38;
}

.pagination-gap {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 34px;
  color: #9a938b;
  font-size: 12px;
  font-weight: 800;
}

.pagination-arrow {
  min-width: 72px;
}

.closing-cta {
  padding: 76px 6.25vw 86px;
  color: var(--paper);
  background: var(--ink);
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(320px, 800px) auto;
  gap: 32px;
  align-items: end;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.closing-cta .eyebrow {
  color: rgba(251, 250, 247, 0.48);
}

.closing-cta h2 {
  max-width: 880px;
  color: var(--paper);
}

.closing-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 22px;
  color: var(--paper);
  border: 1px solid rgba(251, 250, 247, 0.34);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.closing-action:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px 0 18px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(255, 253, 249, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(23, 22, 21, 0.22);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.mobile-sticky-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1500px) {
  h1 {
    max-width: 920px;
    font-size: clamp(48px, 4.85vw, 70px);
  }

  .lead {
    max-width: 680px;
    font-size: clamp(17px, 1.32vw, 20px);
  }
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 0 28px;
  }

  .topnav {
    display: none;
  }

  .top-action {
    min-height: 34px;
    padding: 0 12px 0 14px;
  }

  .hero {
    padding: 58px 28px 34px;
  }

  h1 {
    font-size: clamp(46px, 8.8vw, 68px);
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div,
  .quick-facts div + div {
    min-height: 92px;
    padding: 20px 0;
    border-left: 0;
  }

  .quick-facts div + div {
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .tabs,
  .catalog-toolbar,
  .catalog-pagination,
  .table-shell {
    width: calc(100% - 56px);
  }

  .closing-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    min-height: 62px;
    padding: 0 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-tagline {
    min-height: 20px;
    padding-left: 10px;
    font-size: 11.5px;
  }

  .top-action {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .top-action svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: auto;
    padding: 42px 18px 30px;
  }

  .hero-bullets {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-bullet {
    min-height: 28px;
    gap: 8px;
    font-size: 13px;
    line-height: 1.15;
  }

  .hero-bullet svg {
    width: 18px;
    height: 18px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.015em;
  }

  .lead {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.48;
  }

  .product-examples {
    max-width: 100%;
    margin-top: 10px;
  }

  .product-examples span {
    min-height: 25px;
    padding: 0 10px;
    font-size: 11px;
  }

  .request-box {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    min-height: 62px;
    margin-top: 26px;
    padding: 8px;
    border-radius: 15px;
  }

  .send-button {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
  }

  .send-label {
    display: none;
  }

  .attach-button {
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 0;
  }

  .attach-button svg {
    width: 18px;
    height: 18px;
  }

  textarea {
    min-height: 42px;
    padding: 8px 4px 5px 0;
    font-size: 15px;
  }

  .request-box.is-expanded {
    min-height: 112px;
    padding-top: 13px;
  }

  .modal-request-box,
  .modal-request-box.is-expanded {
    grid-template-columns: 1fr;
    min-height: 220px;
    padding: 0;
  }

  .modal-request-box textarea,
  .modal-request-box.is-expanded textarea {
    min-height: 150px;
    padding: 18px 16px 14px;
  }

  .modal-request-actions {
    padding: 12px;
  }

  .modal-send-button {
    min-width: 44px;
    padding: 0 14px;
  }

  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
  }

  .quick-facts div,
  .quick-facts div + div {
    min-height: 74px;
    padding: 14px 8px 12px 0;
    border-top: 0;
    border-left: 0;
  }

  .quick-facts div + div {
    padding-left: 10px;
    border-left: 1px solid var(--line);
  }

  .quick-facts strong {
    font-size: 24px;
  }

  .quick-facts span {
    font-size: 11.5px;
  }

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

  .section-heading,
  .tabs,
  .catalog-toolbar,
  .catalog-pagination,
  .table-shell {
    width: calc(100% - 36px);
  }

  .catalog-toolbar {
    display: block;
    font-size: 14px;
  }

  .catalog-pagination.visible {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .pagination-controls {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pagination-controls::-webkit-scrollbar {
    display: none;
  }

  .catalog-toolbar > span {
    display: block;
    margin-top: 5px;
  }

  h2 {
    font-size: 36px;
    line-height: 0.98;
  }

  .tab {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .table-shell {
    overflow: visible;
    border-bottom: 0;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  table {
    min-width: 0;
    background: transparent;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 10px;
  }

  tbody tr {
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(40, 35, 29, 0.04);
  }

  tbody tr:hover {
    background: var(--paper);
  }

  th,
  td,
  th:first-child,
  td:first-child,
  th:last-child,
  td:last-child {
    padding: 0;
    border-bottom: 0;
  }

  td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 28px;
    color: var(--ink);
    font-size: 14px;
  }

  td + td {
    margin-top: 9px;
  }

  td::before {
    color: #9a938b;
    content: attr(data-label);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  td:first-child {
    display: flex;
    align-items: center;
    min-height: 0;
    margin-bottom: 10px;
  }

  td:first-child::before {
    display: inline;
    margin-right: 10px;
    content: "Рейтинг";
  }

  .catalog-cta-row td {
    display: block;
    padding: 0;
  }

  .catalog-cta-row td::before {
    display: none;
  }

  .catalog-inline-cta {
    display: grid;
    gap: 12px;
    padding: 14px;
    font-size: 13.5px;
  }

  .catalog-inline-cta button {
    width: 100%;
  }

  td:nth-child(2) {
    display: block;
    min-height: 0;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  td:nth-child(2)::before {
    display: none;
  }

  .rank-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .company-name {
    max-width: 100%;
    font-size: 16px;
    white-space: normal;
  }

  .numeric {
    text-align: left;
  }

  .type-cell {
    justify-self: start;
  }

  .closing-cta {
    padding: 54px 18px 64px;
  }

  .closing-inner {
    gap: 24px;
  }

  .closing-action {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }

  .request-modal,
  .contact-modal {
    width: min(100%, 420px);
    max-height: calc(100vh - 28px);
    padding: 24px 18px 20px;
    overflow-y: auto;
    border-radius: 16px;
  }

  .request-modal h3,
  .contact-modal h3 {
    margin-right: 42px;
    font-size: 26px;
  }

  .modal-copy {
    font-size: 14px;
  }

  .modal-backdrop {
    padding: 14px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  :where(#request, #catalog, #about) {
    scroll-margin-top: 66px;
  }

  body {
    background: #f7f5f1;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    min-height: 58px;
    padding: 0 12px;
  }

  .brand {
    gap: 0;
  }

  .brand-name {
    font-size: 15.5px;
  }

  .brand-tagline {
    display: none;
  }

  .topnav {
    display: flex;
    height: 34px;
    justify-self: end;
    font-size: 12px;
  }

  .catalog-trigger {
    min-height: 34px;
    gap: 7px;
    padding: 0 5px;
  }

  .catalog-trigger::after {
    bottom: 3px;
  }

  .catalog-trigger svg {
    width: 16px;
    height: 16px;
  }

  .catalog-menu-wrap.open .catalog-trigger svg {
    opacity: 0;
    transform: rotate(0);
  }

  .catalog-menu-wrap.open .catalog-trigger::before,
  .catalog-menu-wrap.open .catalog-trigger::after {
    position: absolute;
    top: 50%;
    right: 5px;
    bottom: auto;
    left: auto;
    display: block;
    width: 15px;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
    opacity: 1;
    transform-origin: center;
  }

  .catalog-menu-wrap.open .catalog-trigger::before {
    transform: translateY(-50%) rotate(45deg);
  }

  .catalog-menu-wrap.open .catalog-trigger::after {
    content: "";
    transform: translateY(-50%) rotate(-45deg);
  }

  .catalog-panel {
    top: 58px;
    right: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 76px);
    padding: 12px;
    overflow-y: auto;
    border-radius: 0 0 14px 14px;
  }

  .catalog-panel-head {
    gap: 10px;
    padding-bottom: 10px;
  }

  .catalog-panel-head span {
    font-size: 10.5px;
  }

  .catalog-panel-head strong {
    font-size: 11px;
    white-space: nowrap;
  }

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

  .catalog-menu-item {
    min-height: 42px;
    padding: 8px 9px;
    border-radius: 9px;
  }

  .catalog-menu-name {
    font-size: 13px;
  }

  .top-action {
    display: none;
  }

  .hero {
    padding: 36px 14px 28px;
  }

  .hero-layout {
    width: 100%;
  }

  .hero-bullets {
    margin-bottom: 16px;
  }

  .hero-bullet {
    min-height: 30px;
    padding: 0;
    color: #5f5851;
    font-size: 13px;
    font-weight: 760;
  }

  .hero-bullet svg {
    width: 17px;
    height: 17px;
  }

  h1 {
    max-width: min(100%, 350px);
    font-size: clamp(33px, 10.9vw, 42px);
    line-height: 1;
    overflow-wrap: normal;
  }

  h1 span::after {
    bottom: 0.02em;
    height: 0.16em;
  }

  .lead {
    max-width: 350px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.46;
  }

  .request-box {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 10px 8px;
    min-height: 142px;
    margin-top: 24px;
    padding: 12px;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(40, 35, 29, 0.08), inset 0 1px 0 #fff;
  }

  .request-box textarea {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 70px;
    padding: 3px 2px 4px;
    font-size: 15.5px;
    line-height: 1.42;
  }

  .request-box.is-expanded {
    min-height: 172px;
    padding-top: 12px;
  }

  .request-box.is-expanded textarea {
    min-height: 104px;
    padding-top: 3px;
  }

  .attach-button {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    width: auto;
    min-width: 84px;
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .attach-button svg {
    width: 16px;
    height: 16px;
  }

  .send-button {
    grid-column: 2;
    grid-row: 2;
    width: 42px;
    height: 42px;
    align-self: center;
  }

  .file-list {
    gap: 6px;
    margin-top: 8px;
  }

  .file-chip {
    max-width: 100%;
    min-height: 28px;
    font-size: 11.5px;
  }

  .quick-facts {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 26px;
    border-color: rgba(222, 217, 209, 0.82);
  }

  .quick-facts div,
  .quick-facts div + div {
    min-height: 66px;
    padding: 12px 8px 10px;
  }

  .quick-facts div:first-child {
    padding-left: 0;
  }

  .quick-facts strong {
    font-size: clamp(22px, 7vw, 28px);
  }

  .quick-facts span {
    margin-top: 5px;
    font-size: 10.5px;
    line-height: 1.22;
  }

  .catalog-section {
    padding: 34px 0 56px;
  }

  .section-heading,
  .tabs,
  .catalog-toolbar,
  .catalog-pagination,
  .table-shell {
    width: var(--container);
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .catalog-section h2 {
    max-width: none;
    font-size: 24px;
    line-height: 1.12;
  }

  h2 {
    max-width: 330px;
    font-size: clamp(33px, 10.5vw, 42px);
    line-height: 0.98;
  }

  .tabs {
    gap: 7px;
    padding: 0 0 10px;
    border-top: 0;
    border-bottom: 1px solid rgba(222, 217, 209, 0.84);
  }

  .tab,
  .tab:first-child {
    min-height: 36px;
    padding: 0 12px;
    background: rgba(251, 250, 247, 0.72);
    border: 1px solid rgba(222, 217, 209, 0.9);
    border-radius: 999px;
    font-size: 12px;
  }

  .tab.active {
    background: #f1e8de;
    border-color: rgba(215, 118, 66, 0.42);
    box-shadow: none;
  }

  .tab-count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
  }

  .catalog-toolbar {
    min-height: auto;
    padding: 12px 0;
    border-bottom: 0;
    font-size: 13px;
  }

  tbody {
    gap: 8px;
  }

  tbody tr {
    padding: 13px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(40, 35, 29, 0.035);
  }

  tbody tr:hover {
    border-color: rgba(215, 118, 66, 0.32);
  }

  .loading-row {
    display: block;
  }

  .loading-row td,
  .loading-row td:first-child {
    display: block;
    margin: 0;
    padding: 18px;
    border-bottom: 0;
  }

  .loading-row td::before {
    display: none;
  }

  .catalog-loader {
    max-width: 100%;
  }

  td {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    min-height: 24px;
    font-size: 13.5px;
  }

  td + td {
    margin-top: 8px;
  }

  td::before {
    font-size: 10px;
    letter-spacing: 0.055em;
  }

  td:nth-child(2) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .company-name {
    font-size: 15px;
    line-height: 1.2;
  }

  .company-inn {
    margin-top: 5px;
    font-size: 11.5px;
  }

  .site-link {
    border-bottom: 0;
    text-decoration: none;
    overflow-wrap: anywhere;
  }

  .type-cell {
    width: 26px;
    height: 26px;
  }

  .type-icon,
  .type-icon svg {
    width: 24px;
    height: 24px;
  }

  .catalog-pagination.visible {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
    margin-top: 14px;
    min-height: 0;
    padding-top: 4px;
  }

  .pagination-range {
    font-size: 12px;
  }

  .pagination-controls {
    display: flex;
    width: 100%;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .pagination-controls::-webkit-scrollbar {
    display: none;
  }

  .pagination-controls button {
    flex: 0 0 auto;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    font-size: 12px;
  }

  .pagination-arrow {
    min-width: 54px;
  }

  .closing-cta {
    padding: 46px 14px 56px;
  }

  .closing-inner {
    gap: 20px;
  }

  .closing-action {
    min-height: 46px;
  }

  .modal-backdrop {
    align-items: flex-end;
    padding: 10px;
  }

  .request-modal,
  .contact-modal {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .request-modal::before,
  .contact-modal::before {
    opacity: 0.55;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
  }

  .modal-kicker {
    font-size: 10.5px;
  }

  .request-modal h3,
  .contact-modal h3 {
    margin-right: 42px;
    font-size: 25px;
    line-height: 1.02;
  }

  .modal-copy {
    font-size: 13.5px;
    line-height: 1.42;
  }

  .success-panel h3 {
    font-size: 26px;
  }

  .success-panel p {
    font-size: 14px;
  }

  .success-mark {
    width: 36px;
    height: 36px;
  }

  .modal-request-box,
  .modal-request-box.is-expanded {
    min-height: 214px;
    margin-top: 18px;
  }

  .modal-request-box textarea,
  .modal-request-box.is-expanded textarea {
    min-height: 142px;
  }

  .modal-request-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
    padding: 10px;
  }

  .modal-request-actions .attach-button {
    width: auto;
    justify-self: stretch;
  }

  .modal-send-button {
    min-width: 44px;
    padding: 0;
  }

  .value-popover {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 19px 16px 16px;
    border-radius: 16px;
  }

  .value-popover h3 {
    max-width: 270px;
    margin-top: 8px;
    font-size: 22px;
  }

  .value-popover p {
    font-size: 13.5px;
    line-height: 1.44;
  }

  .value-popover-action {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(31px, 11.2vw, 38px);
  }

  .lead {
    font-size: 14.5px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div,
  .quick-facts div + div {
    min-height: 58px;
    padding: 11px 0;
    border-left: 0;
  }

  .quick-facts div + div {
    border-top: 1px solid var(--line);
  }
}
