:root {
  --ink: #141516;
  --ink-soft: #232527;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #6e706f;
  --line: #dedbd4;
  --orange: #f36f21;
  --orange-dark: #d9570c;
  --green: #3ba56c;
  --container: 1240px;
  --shadow: 0 24px 70px rgba(10, 12, 14, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topline { background: #0b0c0d; color: #aaacae; font-size: 12px; letter-spacing: .04em; }
.topline__inner { height: 34px; display: flex; align-items: center; gap: 12px; }
.topline__inner a { margin-left: auto; color: #e2e2e2; }
.topline__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(20, 21, 22, .08);
  backdrop-filter: blur(14px);
}
.header__inner { height: 82px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand__mark { width: 38px; height: 38px; color: var(--orange); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 18px; letter-spacing: .075em; font-weight: 900; }
.brand__text small { margin-top: 6px; color: #7f8181; font-size: 10px; text-transform: uppercase; letter-spacing: .17em; }
.nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.nav a { position: relative; font-size: 13px; font-weight: 650; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.nav a:hover::after { right: 0; }
.header__actions { display: flex; align-items: center; gap: 18px; }
.phone { display: flex; flex-direction: column; line-height: 1.15; }
.phone small { color: #8b8d8e; font-size: 10px; margin-bottom: 5px; }
.phone strong { font-size: 14px; }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.menu-button span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--orange);
  border-radius: 2px;
  padding: 0 25px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.button--compact { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.button--large { min-height: 56px; padding-inline: 31px; }
.button--dark { background: var(--ink); border-color: var(--ink); }
.button--dark:hover { background: #303234; border-color: #303234; }
.button--ghost { border-color: rgba(255,255,255,.45); background: transparent; }
.button--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.button--light { color: var(--ink); background: #fff; border-color: #fff; }
.button--light:hover { color: #fff; background: transparent; border-color: #fff; }

.hero { position: relative; min-height: 670px; overflow: hidden; background: #1c1e20; color: #fff; }
.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("assets/warehouse-hero-v2.png"), linear-gradient(125deg, #34383b, #111315);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,10,.96) 0%, rgba(10,11,12,.86) 42%, rgba(10,11,12,.18) 78%),
    linear-gradient(0deg, rgba(9,10,11,.35), transparent 50%);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 170px);
  width: 1px;
  background: rgba(255,255,255,.18);
}
.hero__inner { position: relative; z-index: 2; min-height: 670px; display: flex; align-items: center; padding: 68px 0 116px; }
.hero__content { max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; color: #d0d2d3; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--orange); }
.hero h1 { margin: 0; font-size: clamp(54px, 6.4vw, 92px); line-height: .95; letter-spacing: -.045em; font-weight: 850; text-transform: uppercase; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__content > p { max-width: 610px; margin: 28px 0 34px; color: #c5c7c8; font-size: 18px; line-height: 1.65; }
.hero__actions { display: flex; gap: 12px; }
.hero__facts { display: flex; gap: 50px; margin-top: 56px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.18); }
.hero__facts > div { display: flex; align-items: center; gap: 13px; }
.hero__facts strong { color: #fff; font-size: 28px; letter-spacing: -.03em; }
.hero__facts span { color: #979a9b; font-size: 11px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }

.quick-search { position: relative; z-index: 4; margin-top: -66px; }
.search-panel { min-height: 132px; display: grid; grid-template-columns: 270px 1fr 210px; align-items: center; gap: 28px; padding: 32px 38px; background: #fff; box-shadow: var(--shadow); }
.search-panel__intro { display: flex; align-items: center; gap: 15px; }
.search-panel__intro svg { width: 28px; height: 28px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; }
.search-panel__intro div { display: flex; flex-direction: column; }
.search-panel__intro strong { font-size: 15px; }
.search-panel__intro span { margin-top: 5px; color: #8a8c8b; font-size: 11px; }
.search-panel__field input { width: 100%; height: 56px; padding: 0 18px; border: 1px solid var(--line); background: #fafafa; outline: 0; }
.search-panel__field input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(243,111,33,.1); }

.section { padding: 108px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 52px; }
.section-heading h2, .catalog__head h2, .services h2, .about h2, .contact h2, .modal h2 { margin: 8px 0 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.04; letter-spacing: -.04em; }
.section-heading > p { max-width: 475px; margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-dark); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.section-kicker--light { color: #ff9c61; }

.section--products { padding-top: 115px; background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-card { position: relative; min-height: 286px; display: flex; flex-direction: column; align-items: flex-start; padding: 27px 30px 30px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; overflow: hidden; text-align: left; transition: background .25s ease, color .25s ease; }
.product-card:hover { color: #fff; background: var(--ink); }
.product-card__index { color: #969897; font-size: 11px; letter-spacing: .1em; }
.product-card__visual { position: relative; width: 160px; height: 100px; margin: 22px auto 18px; align-self: center; transform: perspective(500px) rotateX(8deg) rotateY(-12deg); transition: transform .3s ease; }
.product-card:hover .product-card__visual { transform: perspective(500px) rotateX(4deg) rotateY(-5deg) scale(1.05); }
.product-card__visual i { position: absolute; display: block; background: linear-gradient(90deg, #6b6f71, #e2e4e4 46%, #8e9294); box-shadow: 0 9px 14px rgba(0,0,0,.18); }
.product-card:hover .product-card__visual i { background: linear-gradient(90deg, #777b7d, #f4f4f4 46%, #999da0); }
.product-card__visual--round i { width: 118px; height: 22px; right: 5px; border-radius: 20px; }
.product-card__visual--round i::before { content: ""; position: absolute; left: -10px; width: 22px; height: 22px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #e7e8e8, #777b7e); }
.product-card__visual--round i:nth-child(1) { top: 6px; }.product-card__visual--round i:nth-child(2) { top: 38px; left: 7px; }.product-card__visual--round i:nth-child(3) { top: 70px; right: 18px; }
.product-card__visual--square i { width: 118px; height: 24px; right: 5px; background: linear-gradient(180deg, #e6e8e8, #7e8284); transform: skewY(-4deg); }
.product-card__visual--square i::before { content: ""; position: absolute; left: -13px; top: 2px; width: 24px; height: 24px; background: linear-gradient(135deg, #e7e8e8, #777b7e); transform: skewY(4deg) rotate(45deg) scale(.72); }
.product-card__visual--square i:nth-child(1) { top: 6px; }.product-card__visual--square i:nth-child(2) { top: 39px; left: 7px; }.product-card__visual--square i:nth-child(3) { top: 72px; right: 18px; }
.product-card__visual--forging i { width: 105px; height: 60px; border-radius: 50%; top: 22px; left: 15px; transform: rotate(-10deg); }
.product-card__visual--forging i::before { content: ""; position: absolute; inset: 8px 14px; border-radius: 50%; border: 2px solid rgba(40,42,43,.4); }
.product-card__visual--forging i:nth-child(2) { left: 55px; top: 8px; transform: scale(.76) rotate(5deg); }
.product-card__visual--strip i { width: 140px; height: 20px; left: 10px; transform: skewY(-7deg); }
.product-card__visual--strip i:nth-child(1) { top: 13px; }.product-card__visual--strip i:nth-child(2) { top: 43px; left: 2px; }.product-card__visual--strip i:nth-child(3) { top: 73px; left: 15px; }
.product-card__visual--hex i { width: 130px; height: 35px; left: 14px; top: 18px; clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%); }
.product-card__visual--hex i:nth-child(2) { top: 57px; left: 2px; }
.product-card__visual--sheet i { width: 126px; height: 62px; left: 18px; top: 8px; transform: skewY(-8deg); }
.product-card__visual--sheet i:nth-child(2) { top: 20px; left: 11px; z-index: -1; filter: brightness(.8); }.product-card__visual--sheet i:nth-child(3) { top: 32px; left: 4px; z-index: -2; filter: brightness(.65); }
.product-card__visual--pipe i { width: 130px; height: 35px; left: 15px; top: 18px; border-radius: 30px; }
.product-card__visual--pipe i::before { content: ""; position: absolute; left: -1px; width: 35px; height: 35px; border-radius: 50%; background: radial-gradient(circle, #2c2e30 0 40%, #c7c9ca 43% 68%, #74787a 72%); }
.product-card__visual--pipe i:nth-child(2) { top: 58px; left: 1px; }
.product-card__name { font-size: 22px; font-weight: 800; }
.product-card__meta { margin-top: 4px; color: #898b8b; font-size: 12px; }
.product-card__arrow { position: absolute; right: 27px; bottom: 28px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #cbc9c3; border-radius: 50%; color: #7b7d7d; transition: color .2s, border-color .2s, background .2s; }
.product-card:hover .product-card__arrow { color: #fff; border-color: var(--orange); background: var(--orange); }

.grade-showcase { display: grid; grid-template-columns: 350px 1fr; margin-top: 34px; border: 1px solid var(--line); background: #fff; }
.grade-showcase__intro { padding: 36px 38px; border-right: 1px solid var(--line); }
.grade-showcase__intro h3 { margin: 10px 0 12px; font-size: 26px; line-height: 1.12; letter-spacing: -.03em; }
.grade-showcase__intro p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.grade-cloud { display: flex; align-content: center; align-items: center; flex-wrap: wrap; gap: 9px; padding: 34px 38px; }
.grade-cloud button { min-height: 39px; padding: 0 15px; border: 1px solid #d9d6cf; border-radius: 99px; background: #f8f7f3; color: #3e4040; cursor: pointer; font-size: 12px; font-weight: 800; transition: color .2s, border-color .2s, background .2s, transform .2s; }
.grade-cloud button:hover { color: #fff; border-color: var(--orange); background: var(--orange); transform: translateY(-1px); }

.stock-visuals { padding-top: 0; background: var(--paper); }
.stock-visuals__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(340px, .75fr); min-height: 520px; background: #fff; box-shadow: 0 22px 65px rgba(25,27,28,.12); }
.stock-visuals__photo { min-height: 520px; margin: 0; overflow: hidden; background: #222426; }
.stock-visuals__photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.stock-visuals__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 55px 50px; }
.stock-visuals__content h2 { margin: 13px 0 22px; font-size: clamp(34px, 4vw, 54px); line-height: 1.04; letter-spacing: -.045em; }
.stock-visuals__content p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.stock-visuals__profiles { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 30px; }
.stock-visuals__profiles span { padding: 7px 11px; border: 1px solid #d9d6cf; border-radius: 99px; color: #555858; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.catalog { color: #fff; background: var(--ink); }
.catalog__head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.catalog__updated { display: flex; align-items: center; gap: 9px; color: #9da0a1; font-size: 12px; }
.catalog__updated span { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(59,165,108,.12); }
.catalog-panel { color: var(--ink); background: #fff; box-shadow: 0 20px 65px rgba(0,0,0,.25); }
.catalog-filters { display: grid; grid-template-columns: 1fr 215px 240px auto; gap: 12px; padding: 24px; border-bottom: 1px solid #e8e5df; }
.catalog-filters input, .catalog-filters select { width: 100%; height: 50px; border: 1px solid #dcd9d2; border-radius: 2px; background: #faf9f7; color: var(--ink); outline: 0; }
.catalog-filters input:focus, .catalog-filters select:focus { border-color: var(--orange); }
.catalog-filters select { padding: 0 38px 0 14px; cursor: pointer; }
.catalog-search { position: relative; }
.catalog-search svg { position: absolute; left: 15px; top: 15px; width: 20px; height: 20px; fill: none; stroke: #7c7e7f; stroke-width: 2; stroke-linecap: round; }
.catalog-search input { padding: 0 15px 0 46px; }
.filter-reset { border: 0; background: transparent; color: #717373; cursor: pointer; font-size: 12px; font-weight: 700; }
.filter-reset:hover { color: var(--orange-dark); }
.catalog-summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid #e8e5df; color: #737575; font-size: 12px; }
.catalog-summary strong { color: var(--ink); }
.catalog-summary a { color: var(--orange-dark); font-weight: 800; }
.catalog-summary a span { margin-left: 5px; }
.price-import { border-bottom: 1px solid #e8e5df; }
.price-import summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 24px; cursor: pointer; list-style: none; }
.price-import summary::-webkit-details-marker { display: none; }
.price-import summary span { display: flex; align-items: baseline; gap: 12px; }
.price-import summary strong { font-size: 13px; }
.price-import summary small { color: #8a8c8c; font-size: 11px; }
.price-import summary i { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #ddd9d1; border-radius: 50%; color: var(--orange-dark); font-style: normal; transition: transform .2s ease; }
.price-import[open] summary i { transform: rotate(45deg); }
.price-import__body { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(340px, 1.15fr); gap: 22px 36px; padding: 8px 24px 26px; background: #faf9f6; border-top: 1px solid #ece9e3; }
.price-import__body h3 { margin: 18px 0 7px; font-size: 18px; }
.price-import__body p { max-width: 620px; color: #6f7272; font-size: 12px; line-height: 1.65; }
.price-import__controls { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 14px; }
.price-import__file { position: relative; height: 46px; display: inline-flex; align-items: center; padding: 0 17px; border: 1px dashed #b8b5ae; background: #fff; color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 800; }
.price-import__file:hover { border-color: var(--orange); color: var(--orange-dark); }
.price-import__file input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.price-import__controls .button { min-height: 46px; padding: 0 18px; font-size: 10px; }
.price-import__controls .button:disabled { cursor: not-allowed; opacity: .45; }
.price-import__download { border: 0; background: transparent; color: var(--orange-dark); cursor: pointer; font-size: 11px; font-weight: 800; }
.price-import__status { grid-column: 1 / -1; min-height: 42px; display: flex; align-items: center; padding: 10px 14px; border-left: 3px solid #c9c7c1; background: #fff; color: #646767; font-size: 12px; }
.price-import__status.is-success { border-left-color: var(--green); color: #276c4a; }
.price-import__status.is-notice { border-left-color: #c28b32; color: #7b581f; }
.price-import__status.is-error { border-left-color: #bd4b42; color: #8e3029; }
.price-import__status.is-working { border-left-color: var(--orange); }
.price-import__note { grid-column: 1 / -1; color: #929493; font-size: 10px; line-height: 1.5; }
.import-spinner { width: 14px; height: 14px; margin-right: 8px; border: 2px solid #e3ded5; border-top-color: var(--orange); border-radius: 50%; animation: import-spin .75s linear infinite; }
@keyframes import-spin { to { transform: rotate(360deg); } }
.catalog-table-wrap { overflow-x: auto; }
.catalog-table { width: 100%; min-width: 970px; border-collapse: collapse; }
.catalog-table th { padding: 15px 18px; background: #f4f2ed; color: #848685; font-size: 10px; font-weight: 750; letter-spacing: .07em; text-align: left; text-transform: uppercase; }
.catalog-table td { padding: 17px 18px; border-bottom: 1px solid #ece9e3; font-size: 13px; vertical-align: middle; }
.catalog-table tr { transition: background .15s ease; }
.catalog-table tbody tr:hover { background: #fff8f3; }
.catalog-table td:nth-child(2) { font-weight: 850; }
.catalog-table td:nth-child(6) { white-space: nowrap; font-weight: 750; }
.profile-badge { display: inline-flex; min-width: 80px; align-items: center; justify-content: center; padding: 5px 8px; border-radius: 99px; background: #eeece7; color: #626464; font-size: 10px; font-weight: 750; }
.stock-dot { display: inline-flex; align-items: center; gap: 8px; color: #5d605f; white-space: nowrap; }
.stock-dot::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--green); }
.row-request { border: 0; background: transparent; color: var(--orange-dark); cursor: pointer; font-size: 11px; font-weight: 850; white-space: nowrap; }
.row-request:hover { text-decoration: underline; }
.catalog-more { width: 100%; height: 62px; border: 0; border-top: 1px solid #e5e2dc; background: #fff; color: var(--ink); cursor: pointer; font-size: 12px; font-weight: 800; }
.catalog-more:hover { color: var(--orange-dark); background: #faf9f6; }
.catalog-more span { margin-left: 8px; color: var(--orange); }
.catalog-empty { min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; }
.catalog-empty[hidden] { display: none; }
.catalog-empty strong { font-size: 24px; }
.catalog-empty span { max-width: 420px; margin: 8px 0 22px; color: var(--muted); }
.catalog-benefits { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 24px; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.catalog-benefits article { min-height: 118px; display: grid; grid-template-columns: 30px 1fr; gap: 11px; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.catalog-benefits article > span { color: var(--orange); font-size: 10px; }
.catalog-benefits article > div { display: flex; flex-direction: column; }
.catalog-benefits strong { font-size: 14px; }
.catalog-benefits small { margin-top: 7px; color: #8e9192; font-size: 10px; line-height: 1.5; }

.arrivals { background: #fff; }
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.deal-card { position: relative; min-height: 260px; display: flex; flex-direction: column; padding: 29px; border: 1px solid #dedbd5; background: #f8f7f3; overflow: hidden; }
.deal-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -75px; top: -75px; border-radius: 50%; border: 40px solid rgba(20,21,22,.035); }
.deal-card__top { display: flex; align-items: center; justify-content: space-between; }
.deal-card__tag { padding: 5px 8px; background: var(--orange); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.deal-card__profile { color: #939595; font-size: 11px; }
.deal-card h3 { margin: 30px 0 4px; font-size: 25px; line-height: 1.15; }
.deal-card__size { color: #696b6b; font-size: 14px; }
.deal-card__bottom { display: flex; align-items: end; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 25px; }
.deal-card__price { display: flex; flex-direction: column; }
.deal-card__price small { color: #9b9d9c; font-size: 10px; }
.deal-card__price strong { margin-top: 3px; font-size: 18px; }
.deal-card button { width: 37px; height: 37px; border: 1px solid #c9c6c0; border-radius: 50%; background: transparent; cursor: pointer; }
.deal-card button:hover { color: #fff; border-color: var(--orange); background: var(--orange); }

.services { position: relative; background: #222426; color: #fff; overflow: hidden; }
.services::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent); }
.services__grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: start; }
.services__intro { position: sticky; top: 145px; }
.services__intro > p { max-width: 470px; margin: 26px 0 32px; color: #aeb0b1; line-height: 1.75; }
.service-list { border-top: 1px solid rgba(255,255,255,.15); }
.service-item { display: grid; grid-template-columns: 42px 1fr 30px; gap: 20px; align-items: start; padding: 27px 4px; border-bottom: 1px solid rgba(255,255,255,.15); }
.service-item > span { color: var(--orange); font-size: 11px; }
.service-item h3 { margin: 0 0 8px; font-size: 19px; }
.service-item p { margin: 0; color: #9b9e9f; font-size: 13px; line-height: 1.6; }
.service-item i { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #b8babb; font-style: normal; }

.workflow { background: #f4f2ed; }
.workflow__steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d4d1ca; }
.workflow__steps article { position: relative; min-height: 190px; padding: 27px 26px 25px 0; border-right: 1px solid #d4d1ca; }
.workflow__steps article:not(:first-child) { padding-left: 27px; }
.workflow__steps article:last-child { border-right: 0; }
.workflow__steps article::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.workflow__steps article:not(:first-child)::before { left: 27px; }
.workflow__steps span { color: #9a9c9b; font-size: 11px; }
.workflow__steps h3 { margin: 32px 0 9px; font-size: 18px; }
.workflow__steps p { max-width: 210px; margin: 0; color: #777978; font-size: 13px; }

.seo-content { background: #fff; }
.seo-content__heading { align-items: end; margin-bottom: 55px; }
.seo-content__heading h2 { max-width: 790px; }
.seo-content__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d9d7d0; }
.seo-content__grid article { padding: 34px 34px 12px 0; border-right: 1px solid #d9d7d0; }
.seo-content__grid article:not(:first-child) { padding-left: 34px; }
.seo-content__grid article:last-child { border-right: 0; }
.seo-content__grid article > span { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.seo-content__grid h3 { margin: 25px 0 18px; font-size: 22px; line-height: 1.25; letter-spacing: -.02em; }
.seo-content__grid p { margin: 0 0 16px; color: #656766; font-size: 14px; line-height: 1.75; }
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; margin-top: 75px; padding-top: 64px; border-top: 1px solid #d9d7d0; }
.faq__intro h2 { max-width: 460px; margin: 10px 0 0; font-size: clamp(32px, 3.5vw, 48px); line-height: 1.08; letter-spacing: -.04em; }
.faq__list { border-top: 1px solid #d9d7d0; }
.faq details { border-bottom: 1px solid #d9d7d0; }
.faq summary { position: relative; padding: 23px 48px 23px 0; font-size: 16px; font-weight: 700; line-height: 1.45; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 17px; right: 0; color: var(--orange); font-size: 26px; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 690px; margin: -4px 45px 22px 0; color: #6f7170; font-size: 14px; line-height: 1.7; }

.about { position: relative; min-height: 650px; display: flex; align-items: center; color: #fff; background: #252729; overflow: hidden; }
.about__image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,18,19,.2), rgba(17,18,19,.5)), url("assets/warehouse-about-v3.png") center / cover no-repeat; filter: saturate(.55) brightness(.72); }
.about__inner { position: relative; z-index: 2; display: flex; justify-content: flex-end; }
.about__card { width: min(100%, 610px); padding: 62px; background: rgba(18,19,20,.92); box-shadow: var(--shadow); }
.about__card > p { margin: 26px 0 34px; color: #b4b6b7; font-size: 15px; line-height: 1.75; }
.about__numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.16); }
.about__numbers div { display: flex; flex-direction: column; }
.about__numbers strong { color: var(--orange); font-size: 23px; }
.about__numbers span { margin-top: 5px; color: #8d9091; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }

.contact { background: var(--orange); }
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.contact .section-kicker { color: #fff; }
.contact__intro > p { max-width: 440px; margin: 24px 0 38px; color: rgba(20,21,22,.74); line-height: 1.7; }
.contact__direct { display: flex; flex-direction: column; gap: 18px; }
.contact__direct a { display: flex; flex-direction: column; }
.contact__direct small { color: rgba(20,21,22,.62); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.contact__direct strong { margin-top: 4px; font-size: 18px; }
.request-form { padding: 38px; background: #fff; box-shadow: 0 24px 60px rgba(93,38,5,.18); }
.request-form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 17px; }
.request-form label > span { color: #6c6e6d; font-size: 11px; font-weight: 750; }
.request-form input, .request-form textarea { width: 100%; border: 0; border-bottom: 1px solid #d8d5ce; border-radius: 0; padding: 11px 0; background: transparent; outline: 0; resize: vertical; }
.request-form input:focus, .request-form textarea:focus { border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.file-field input { display: none; }
.file-field span { display: inline-flex; color: var(--orange-dark) !important; cursor: pointer; }
.request-form__bottom { display: flex; align-items: center; gap: 20px; margin-top: 24px; }
.request-form__bottom small { max-width: 250px; color: #9a9c9b; font-size: 9px; line-height: 1.5; }
.request-form__bottom small a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.request-form--modal > small { color: #777a7a; font-size: 9px; line-height: 1.5; }
.request-form--modal > small a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; }

.legal-page { min-height: 100vh; background: #ece9e1; color: var(--ink); }
.legal-header { padding: 24px 0; background: #17191a; color: #fff; }
.legal-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-header__inner > a:last-child { color: #b8baba; font-size: 12px; }
.legal-header__inner > a:last-child:hover { color: var(--orange); }
.legal-main { padding: 70px 0 90px; }
.legal-card { max-width: 900px; padding: clamp(28px, 6vw, 70px); background: #fff; box-shadow: var(--shadow); }
.legal-card h1 { margin: 10px 0 30px; font-size: clamp(34px, 5vw, 58px); line-height: 1.03; letter-spacing: -.04em; }
.legal-card h2 { margin: 36px 0 12px; font-size: 21px; }
.legal-card p, .legal-card li { color: #5f6262; line-height: 1.75; }
.legal-card ul { padding-left: 20px; }
.legal-card a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { display: block; margin-top: 44px; color: #8a8c8c; font-size: 11px; }

.footer { padding-top: 70px; background: #111213; color: #b1b3b3; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px; padding-bottom: 56px; }
.brand--footer { color: #fff; }
.footer__top > div:first-child p { max-width: 290px; margin: 20px 0 0; color: #6f7273; font-size: 12px; }
.footer h4 { margin: 0 0 20px; color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer__top > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer__top a:not(.brand) { font-size: 12px; }
.footer__top a:not(.brand):hover { color: var(--orange); }
.footer__contacts a { color: #fff; font-weight: 700; }
.footer__bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #26282a; color: #676a6b; font-size: 10px; }
.footer__bottom a { color: #a4a6a7; }

.modal { width: min(92vw, 560px); max-height: 90vh; padding: 45px; border: 0; border-radius: 3px; color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.42); }
.modal::backdrop { background: rgba(7,8,9,.78); backdrop-filter: blur(4px); }
.modal__close { position: absolute; right: 16px; top: 14px; width: 35px; height: 35px; border: 0; background: #efede8; cursor: pointer; font-size: 24px; line-height: 1; }
.modal h2 { font-size: 36px; }
.modal > p { color: var(--muted); }
.request-form--modal { margin-top: 25px; padding: 0; box-shadow: none; }
.request-form--modal .button { width: 100%; margin-top: 10px; }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 100; width: min(390px, calc(100% - 48px)); display: flex; flex-direction: column; padding: 20px 22px; background: #fff; border-left: 4px solid var(--green); box-shadow: var(--shadow); transform: translateY(140%); opacity: 0; transition: transform .3s ease, opacity .3s ease; }
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast strong { font-size: 14px; }
.toast span { margin-top: 4px; color: var(--muted); font-size: 12px; }

@media (max-width: 1120px) {
  .header__inner { gap: 22px; }
  .nav { gap: 18px; }
  .nav a { font-size: 12px; }
  .phone { display: none; }
  .catalog-filters { grid-template-columns: 1fr 200px 220px; }
  .filter-reset { grid-column: 1 / -1; justify-self: end; }
  .services__grid { gap: 60px; }
  .contact__grid { gap: 60px; }
}

@media (max-width: 880px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .topline__inner span:nth-of-type(2), .topline__dot { display: none; }
  .header__inner { height: 70px; }
  .header__actions .button { display: none; }
  .menu-button { display: block; }
  .nav { position: fixed; inset: 104px 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 18px 24px 25px; background: #fff; border-top: 1px solid #eee; box-shadow: 0 20px 40px rgba(0,0,0,.12); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid #eee; font-size: 15px; }
  .hero, .hero__inner { min-height: 650px; }
  .hero::after { display: none; }
  .hero__shade { background: linear-gradient(90deg, rgba(8,9,10,.95), rgba(8,9,10,.5)); }
  .hero__inner { padding-bottom: 95px; }
  .hero__content { max-width: 650px; }
  .hero__facts { gap: 25px; }
  .quick-search { margin-top: -42px; }
  .search-panel { grid-template-columns: 1fr auto; gap: 16px; min-height: 0; padding: 24px; }
  .search-panel__intro { grid-column: 1 / -1; }
  .section { padding: 82px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .grade-showcase { grid-template-columns: 1fr; }
  .grade-showcase__intro { border-right: 0; border-bottom: 1px solid var(--line); }
  .stock-visuals__grid { grid-template-columns: 1fr; }
  .stock-visuals__photo { min-height: 440px; }
  .stock-visuals__content { padding: 45px 40px; }
  .catalog-filters { grid-template-columns: 1fr 1fr; }
  .catalog-search { grid-column: 1 / -1; }
  .filter-reset { grid-column: auto; justify-self: stretch; }
  .deal-grid { grid-template-columns: 1fr 1fr; }
  .deal-card:last-child { grid-column: 1 / -1; }
  .services__grid { grid-template-columns: 1fr; }
  .services__intro { position: static; }
  .workflow__steps { grid-template-columns: 1fr 1fr; }
  .workflow__steps article:nth-child(2) { border-right: 0; }
  .workflow__steps article:nth-child(3), .workflow__steps article:nth-child(4) { border-top: 1px solid #d4d1ca; }
  .seo-content__grid { grid-template-columns: 1fr; }
  .seo-content__grid article, .seo-content__grid article:not(:first-child) { padding: 30px 0; border-right: 0; border-bottom: 1px solid #d9d7d0; }
  .faq { grid-template-columns: 1fr; gap: 35px; }
  .contact__grid { grid-template-columns: 1fr; }
  .catalog-benefits { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 2fr 1fr 1fr; }
  .footer__contacts { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .topline__inner { height: 30px; }
  .topline__inner span { font-size: 10px; }
  .topline__inner a { font-size: 10px; }
  .brand__mark { width: 33px; height: 33px; }
  .brand__text strong { font-size: 15px; }
  .brand__text small { font-size: 8px; }
  .nav { top: 100px; }
  .hero, .hero__inner { min-height: 690px; }
  .hero__image { background-position: 62% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(8,9,10,.96), rgba(8,9,10,.65)); }
  .hero__inner { align-items: flex-start; padding-top: 74px; }
  .hero h1 { max-width: 100%; font-size: clamp(37px, 10.4vw, 46px); overflow-wrap: normal; }
  .hero__content > p { margin: 24px 0 28px; font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__facts { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 40px; }
  .hero__facts > div { min-width: 0; flex-direction: column; align-items: flex-start; gap: 1px; }
  .hero__facts strong { font-size: 22px; }
  .hero__facts span { max-width: 100%; font-size: 8px; overflow-wrap: anywhere; }
  .quick-search { margin-top: 0; }
  .quick-search .container { width: 100%; }
  .search-panel { grid-template-columns: 1fr; padding: 22px 18px; box-shadow: none; }
  .search-panel__intro { grid-column: auto; }
  .section { padding: 65px 0; }
  .section-heading h2, .catalog__head h2, .services h2, .about h2, .contact h2 { font-size: 36px; }
  .section-heading { margin-bottom: 34px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 250px; }
  .grade-showcase__intro, .grade-cloud { padding: 25px 20px; }
  .stock-visuals__grid { width: 100%; }
  .stock-visuals__photo { min-height: 290px; }
  .stock-visuals__content { padding: 38px 24px 42px; }
  .grade-cloud { align-items: flex-start; }
  .catalog__head { align-items: flex-start; flex-direction: column; }
  .catalog-filters { grid-template-columns: 1fr; padding: 16px; }
  .catalog-search { grid-column: auto; }
  .catalog-summary { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; padding-block: 12px; }
  .price-import summary { align-items: flex-start; padding: 16px; }
  .price-import summary span { align-items: flex-start; flex-direction: column; gap: 3px; }
  .price-import__body { grid-template-columns: 1fr; padding: 8px 16px 20px; }
  .price-import__controls { align-items: stretch; flex-direction: column; }
  .price-import__file, .price-import__controls .button { justify-content: center; width: 100%; }
  .catalog-benefits { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .deal-card:last-child { grid-column: auto; }
  .service-item { grid-template-columns: 32px 1fr; }
  .service-item i { display: none; }
  .workflow__steps { grid-template-columns: 1fr; }
  .workflow__steps article, .workflow__steps article:not(:first-child) { min-height: 155px; padding: 25px 0; border-right: 0; border-top: 1px solid #d4d1ca; }
  .workflow__steps article::before, .workflow__steps article:not(:first-child)::before { left: 0; }
  .workflow__steps article:first-child { border-top: 0; }
  .workflow__steps h3 { margin-top: 20px; }
  .seo-content__heading { margin-bottom: 38px; }
  .seo-content__grid h3 { font-size: 20px; }
  .faq { margin-top: 50px; padding-top: 45px; }
  .faq__intro h2 { font-size: 34px; }
  .about { min-height: 0; padding: 0; }
  .about__inner { width: 100%; }
  .about__image { opacity: .35; }
  .about__card { padding: 55px 24px; }
  .about__numbers { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .request-form { padding: 25px 20px; }
  .request-form__bottom { flex-direction: column; align-items: stretch; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer__top > div:first-child, .footer__contacts { grid-column: 1 / -1; }
  .footer__bottom { min-height: 100px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
  .modal { padding: 42px 22px 25px; }
  .modal h2 { font-size: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
