:root {
  --metal-red: #f33e03;
  --metal-red-dark: #cf3503;
  --metal-black: #090909;
  --metal-panel: #111;
  --metal-panel-2: #171717;
  --metal-line: rgba(255, 255, 255, .16);
  --metal-white: #f5f3ef;
  --metal-muted: #b7b7b7;
}

.metal-hero {
  position: relative;
  min-height: min(800px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--metal-black);
  color: var(--metal-white);
}

.metal-hero picture,
.metal-hero picture::after {
  position: absolute;
  inset: 0;
}

.metal-hero picture::after {
  content: "";
  background: linear-gradient(90deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .62) 38%, rgba(5, 5, 5, .12) 72%), linear-gradient(0deg, rgba(5, 5, 5, .72), transparent 48%);
}

.metal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.metal-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 64px));
  margin: 0 0 clamp(52px, 8vw, 112px) max(32px, calc((100vw - 1360px) / 2));
}

.metal-hero__eyebrow,
.metal-section__eyebrow {
  margin: 0 0 18px;
  color: var(--metal-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.metal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
}

.metal-hero__lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: #dedede;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.42;
}

.metal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.metal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--metal-red);
  color: #fff;
  background: var(--metal-red);
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.metal-button:hover {
  background: var(--metal-red-dark);
  border-color: var(--metal-red-dark);
  transform: translateY(-2px);
}

.metal-button--ghost {
  background: rgba(0, 0, 0, .28);
  border-color: rgba(255, 255, 255, .48);
}

.metal-specs {
  background: var(--metal-red);
  color: #fff;
}

.metal-specs__grid {
  width: min(1360px, calc(100% - 64px));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metal-specs__grid > div {
  min-height: 190px;
  padding: 38px 30px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.metal-specs__grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .3);
}

.metal-specs strong {
  display: block;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
}

.metal-specs span {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.35;
}

.metal-section {
  padding: clamp(72px, 9vw, 132px) 0;
  background: var(--metal-black);
  color: var(--metal-white);
}

.metal-section--light {
  background: #f3f2ef;
  color: #111;
}

.metal-section--panel {
  background: var(--metal-panel);
}

.metal-shell {
  width: min(1240px, calc(100% - 64px));
  margin: auto;
}

.metal-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.metal-section h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.045em;
}

.metal-section__intro {
  margin: 0;
  color: var(--metal-muted);
  font-size: 19px;
  line-height: 1.6;
}

.metal-section--light .metal-section__intro {
  color: #454545;
}

.metal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--metal-line);
  border-left: 1px solid var(--metal-line);
}

.metal-card {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--metal-line);
  border-bottom: 1px solid var(--metal-line);
  background: rgba(255, 255, 255, .02);
}

.metal-card__number {
  color: var(--metal-red);
  font-weight: 800;
}

.metal-card h3 {
  margin: 58px 0 14px;
  font-size: 25px;
  line-height: 1.1;
}

.metal-card p {
  margin: 0;
  color: var(--metal-muted);
  line-height: 1.55;
}

.metal-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 0, 0, .18);
  background: #fff;
}

.metal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.metal-table th,
.metal-table td {
  padding: 21px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.metal-table th {
  background: #111;
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.metal-table td:first-child {
  font-weight: 800;
}

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

.metal-note {
  margin: 20px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.metal-offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--metal-line);
  border: 1px solid var(--metal-line);
}

.metal-offer > div {
  padding: clamp(32px, 5vw, 66px);
  background: var(--metal-panel-2);
}

.metal-offer h3 {
  margin: 0 0 22px;
  font-size: 30px;
}

.metal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.metal-list li {
  position: relative;
  padding: 13px 0 13px 27px;
  border-bottom: 1px solid var(--metal-line);
  color: #d8d8d8;
}

.metal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 9px;
  height: 9px;
  background: var(--metal-red);
}

.metal-price {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}

.metal-price__box {
  padding: 34px;
  border: 1px solid var(--metal-line);
  background: var(--metal-panel-2);
}

.metal-price__box strong {
  display: block;
  color: var(--metal-red);
  font-size: 34px;
}

.metal-price__box p {
  margin: 12px 0 0;
  color: var(--metal-muted);
  line-height: 1.55;
}

.metal-faq {
  border-top: 1px solid rgba(0, 0, 0, .18);
}

.metal-faq details {
  border-bottom: 1px solid rgba(0, 0, 0, .18);
}

.metal-faq summary {
  padding: 25px 4px;
  cursor: pointer;
  font-size: 21px;
  font-weight: 800;
}

.metal-faq details p {
  max-width: 900px;
  margin: 0 0 26px;
  color: #444;
  line-height: 1.65;
}

.metal-crosslink {
  width: min(1240px, calc(100% - 64px));
  margin: 36px auto;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f33e03;
  color: #fff;
}

.metal-crosslink strong {
  font-size: 22px;
}

.metal-crosslink a {
  color: #fff;
  font-weight: 800;
  text-underline-offset: 4px;
}

.lux-stats .lux-metal-stat > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: inherit;
  text-decoration: none;
}

.lux-stats .lux-metal-stat > a:hover strong,
.lux-production a[href="/lazernaya-rezka-metalla/"]:hover {
  color: #fff;
}

.lux-metal-menu-link {
  position: relative;
}

.metal-announcement-card .lux-directory-image::after {
  content: "СВОЁ ПРОИЗВОДСТВО";
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 10px;
  background: #f33e03;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

@media (max-width: 900px) {
  .metal-hero {
    min-height: 780px;
  }

  .metal-hero picture::after {
    background: linear-gradient(0deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .62) 45%, rgba(5, 5, 5, .14) 78%);
  }

  .metal-hero img {
    object-position: center;
  }

  .metal-hero__content {
    width: calc(100% - 36px);
    margin: 0 18px 46px;
  }

  .metal-specs__grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .metal-specs__grid > div {
    min-height: 150px;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
  }

  .metal-section__head,
  .metal-price {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .metal-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .metal-shell,
  .metal-crosslink {
    width: calc(100% - 36px);
  }

  .metal-hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .metal-specs__grid {
    grid-template-columns: 1fr;
  }

  .metal-specs__grid > div {
    min-height: 116px;
    border-right: 0;
  }

  .metal-cards,
  .metal-offer {
    grid-template-columns: 1fr;
  }

  .metal-card {
    min-height: 220px;
  }

  .metal-crosslink {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* v184: единый прайс лазерной резки металла */
.metal-pricing-catalog { background: #0b0b0b; color: #f5f3ef; }
.metal-price-highlights { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin:0 0 36px; background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.16); }
.metal-price-highlights article { min-height:190px; padding:30px; background:#151515; }
.metal-price-highlights span { display:block; margin-bottom:24px; color:#aaa; font-size:12px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.metal-price-highlights strong { display:block; color:var(--metal-red); font-size:clamp(30px,3vw,46px); line-height:1; }
.metal-price-highlights p { margin:14px 0 0; color:#c8c8c8; line-height:1.5; }
.metal-price-groups { border-top:1px solid rgba(255,255,255,.18); }
.metal-price-group { border-bottom:1px solid rgba(255,255,255,.18); }
.metal-price-group summary { display:grid; grid-template-columns:minmax(220px,.8fr) minmax(280px,1.2fr); gap:30px; align-items:center; padding:24px 4px; cursor:pointer; }
.metal-price-group summary span { font-size:22px; font-weight:850; }
.metal-price-group summary small { color:#aaa; font-size:14px; line-height:1.45; }
.metal-price-group[open] summary span { color:var(--metal-red); }
.metal-price-table-wrap { margin:0 0 28px; border-color:rgba(255,255,255,.2); }
.metal-price-table th { background:var(--metal-red); }
.metal-price-table td { color:#111; }
.metal-pricing-terms { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin:34px 0 0; padding:28px; border-left:4px solid var(--metal-red); background:#151515; }
.metal-pricing-terms p { margin:0; color:#c9c9c9; line-height:1.6; }
.metal-pricing-terms strong { color:#fff; }
.metal-pricing-terms .metal-price-date { grid-column:1/-1; color:#999; font-size:13px; }
.metal-pricing-catalog .metal-button--ghost { background:transparent; }
@media (max-width:900px) {
  .metal-price-highlights { grid-template-columns:1fr; }
  .metal-price-highlights article { min-height:0; }
  .metal-pricing-terms { grid-template-columns:1fr; }
  .metal-pricing-terms .metal-price-date { grid-column:auto; }
}
@media (max-width:640px) {
  .metal-price-group summary { grid-template-columns:1fr; gap:6px; }
  .metal-price-highlights article { padding:24px; }
  .metal-pricing-terms { padding:22px; }
  .metal-price-table { min-width:680px; }
}
