:root {
  color-scheme: dark;
  --bg: #090d10;
  --bg-soft: #10171b;
  --panel: #151d22;
  --panel-2: #1b252b;
  --ink: #f3f6f4;
  --text: #d6dedc;
  --muted: #8d9a9b;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --steel: #5e8794;
  --accent: #b51220;
  --accent-2: #e33a45;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(94, 135, 148, 0.22), transparent 32rem),
    radial-gradient(circle at 86% 4%, rgba(181, 18, 32, 0.18), transparent 28rem),
    var(--bg);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 76%);
}

img {
  display: block;
  max-width: 100%;
}

[data-protected-media] {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

.is-lightbox-trigger {
  cursor: zoom-in;
}

.is-lightbox-trigger:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(3, 5, 7, 0.96);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.image-lightbox.is-open {
  opacity: 1;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox__photo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - clamp(36px, 8vw, 112px));
  object-fit: contain;
  border-radius: clamp(8px, 1.2vw, 16px);
  cursor: zoom-out;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.65));
  opacity: 0;
  transform: scale(0.975) translateY(6px);
  transition:
    opacity 0.24s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

.image-lightbox.is-open .image-lightbox__photo {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.image-lightbox__close {
  position: absolute;
  top: clamp(14px, 2.5vw, 30px);
  right: clamp(14px, 2.5vw, 30px);
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(15, 21, 25, 0.9);
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.image-lightbox.is-open .image-lightbox__close {
  opacity: 1;
}

.image-lightbox__close span {
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  border-color: var(--accent-2);
  background: var(--accent);
  transform: scale(1.06);
}

a {
  color: inherit;
}

::selection {
  color: #12100d;
  background: var(--accent-2);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 11px 14px;
  border-radius: 6px;
  color: #12100d;
  background: var(--accent-2);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button):focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 16, 19, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line-strong);
  background: rgba(7, 11, 13, 0.94);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.48);
}

.brand,
.header-actions,
.site-nav,
.hero-actions,
.footer-actions,
.contact-grid {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 196px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(227, 58, 69, 0.72);
  border-radius: 2px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(227, 58, 69, 0.13), transparent 54%),
    #121a1f;
  box-shadow: inset 3px 0 0 var(--accent), 0 8px 26px rgba(0, 0, 0, 0.28);
  transform: skewX(-8deg);
}

.brand-mark::before {
  content: "A";
  margin-left: 2px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  transform: skewX(8deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 6px;
  width: 12px;
  height: 2px;
  background: var(--accent-2);
  transform: skewX(8deg);
}

.brand-lockup {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 6px;
  letter-spacing: 0.07em;
}

.brand-name strong {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.brand-name span {
  color: #aab7b9;
  font-size: 13px;
  font-weight: 700;
}

.brand-tagline {
  color: var(--accent-2);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  justify-content: center;
  gap: 8px;
}

.header-actions {
  justify-content: end;
  gap: 8px;
}

.site-nav a,
.header-phone,
.header-quote {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active,
.header-phone:hover,
.header-quote:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.header-quote {
  color: #12100d;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.header-quote:hover {
  color: #12100d;
  background: linear-gradient(135deg, #f04b56, #c71d2a);
}

.nav-toggle {
  display: none;
  color: #fff;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(470px, 0.7fr);
  align-items: stretch;
  padding-left: 24px;
}

.hero-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #151a1d;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 52%, rgba(9, 13, 16, 0.88)),
    linear-gradient(0deg, rgba(9, 13, 16, 0.42), transparent 44%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 18s ease-in-out infinite alternate;
}

.machine-showcase {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 52% 58%, rgba(227, 58, 69, 0.22), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #172126, #090d10 72%);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.machine-showcase::before {
  content: none;
}

.machine-showcase .hero-machine {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  filter: none;
  animation: none;
  transform: none;
}

.machine-showcase::after {
  z-index: 2;
  pointer-events: none;
  background: none;
}

.product-image-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 52% 58%, rgba(227, 58, 69, 0.2), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(145deg, #172126, #090d10 72%);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.product-image-surface::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background: var(--product-image) center / cover no-repeat;
  opacity: 0.1;
  filter: blur(24px) saturate(1.2);
  transform: scale(1.08);
}

.roller-product {
  --product-image: url("assets/vs4200ak-hero-v5-blur.webp");
}

.vacuum-product {
  --product-image: url("assets/vacuum-forming-machine-blur.webp");
}

.vostok-product {
  --product-image: url("assets/vostok510-blur.webp");
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(38px, 5vw, 72px) 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-title {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.06;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.22;
}

p {
  color: var(--text);
}

.hero-lead,
.lead-stack,
.page-hero p,
.detail-copy p,
.cta p {
  color: var(--text);
  font-size: 18px;
}

.hero-lead {
  max-width: 680px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 14px 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.1em;
  transition: transform 0.25s ease;
}

.button:hover::after {
  transform: translateX(4px);
}

.button.primary {
  color: #12100d;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 16px 45px rgba(181, 18, 32, 0.24);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(181, 18, 32, 0.34);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 78px 7vw;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 7vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.proof-strip.catalog-specs {
  padding: 0;
}

.proof-strip div {
  min-height: 130px;
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 1px solid var(--line);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section-head {
  max-width: 920px;
  margin-bottom: 38px;
}

.section-head.wide {
  max-width: 1100px;
}

.section-head--centered {
  margin-inline: auto;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 58px;
  border-top: 1px solid var(--line);
}

.lead-stack {
  display: grid;
  gap: 18px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.direction-card,
.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.direction-card {
  min-height: 330px;
}

.product-card {
  min-height: 420px;
}

.direction-card:hover,
.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(227, 58, 69, 0.5);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.55);
}

.direction-card img,
.direction-card > .direction-card-placeholder,
.product-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.7s ease, opacity 0.35s ease;
}

.direction-card img {
  min-height: 330px;
}

.direction-card > .direction-card-placeholder {
  min-height: 330px;
}

.product-card img {
  min-height: 420px;
}

.direction-card:hover img,
.direction-card:hover > .direction-card-placeholder,
.product-card:hover img {
  transform: scale(1.045);
  opacity: 0.9;
}

.direction-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 8, 10, 0.9));
}

.direction-card > span,
.direction-card > h3,
.direction-card > p,
.product-card > div {
  position: relative;
  z-index: 1;
}

.direction-card > span {
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direction-card > h3 {
  max-width: 520px;
  margin-bottom: 10px;
}

.direction-card > p {
  max-width: 560px;
  margin-bottom: 0;
  color: #cfd8d6;
}

.direction-card.product-image-card img {
  z-index: 1;
  object-fit: contain;
  object-position: center 38%;
  padding: 16px 18px 92px;
  opacity: 1;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.42));
}

.direction-card.product-image-card::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 8, 10, 0.02) 24%, rgba(5, 8, 10, 0.94) 82%);
}

.direction-card.product-image-card > span,
.direction-card.product-image-card > h3,
.direction-card.product-image-card > p {
  z-index: 3;
}

.direction-card.product-image-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.direction-card.large {
  grid-row: span 1;
}

.gallery-strip {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035));
}

.image-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.image-row img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-row img {
  aspect-ratio: 1 / 0.78;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  background:
    linear-gradient(135deg, rgba(94, 135, 148, 0.14), rgba(181, 18, 32, 0.12)),
    var(--panel-2);
}

.cta p {
  max-width: 780px;
}

.contacts {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  padding: 76px 7vw;
  color: #fff;
  background: #06090b;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-style: normal;
}

.contact-grid a,
.contact-grid div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-grid a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.075);
}

.contact-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.contact-grid strong {
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px 7vw;
  border-top: 1px solid var(--line);
  background: #06090b;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-actions {
  justify-content: end;
  gap: 10px;
}

.footer-actions a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-actions a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.075);
}

.page-hero {
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 150px 7vw 70px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(9, 13, 16, 0.92), rgba(9, 13, 16, 0.58)),
    url("assets/slide1-C7i3aQfE.webp") center / cover;
}

.contacts-hero {
  background:
    linear-gradient(110deg, rgba(9, 13, 16, 0.94), rgba(9, 13, 16, 0.62)),
    url("assets/img2.10-DlVzKhA6.webp") center / cover;
}

.contacts-hero h1 {
  max-width: 720px;
  font-size: clamp(30px, 3vw, 46px);
}

@media (min-width: 1181px) {
  .contacts-hero {
    min-height: 42vh;
    padding-top: 132px;
    padding-bottom: 42px;
  }

  .contact-page-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .contact-page-section h2 {
    font-size: clamp(26px, 2.3vw, 36px);
  }
}

.machine-hero {
  background:
    linear-gradient(110deg, rgba(9, 13, 16, 0.92), rgba(9, 13, 16, 0.54)),
    url("assets/img3.2-C34jT4TR.webp") center / cover;
}

.product-page-hero {
  min-height: min(760px, 82vh);
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  padding-top: 126px;
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 78% 50%, rgba(227, 58, 69, 0.13), transparent 30%),
    linear-gradient(110deg, #0e161a, #080c0f 72%);
}

.product-page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.product-page-hero-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
}

.vacuum-title {
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: wrap;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.14;
}

.vacuum-title span {
  display: block;
  margin-top: 0.22em;
  white-space: nowrap;
}

.product-page-hero-visual {
  height: clamp(390px, 50vh, 560px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-page-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(20px, 3vw, 46px);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.5));
}

.product-page-hero-visual.roller-product img {
  padding-right: 3%;
  padding-left: 3%;
}

.product-page-hero-visual.vacuum-product,
.product-page-hero-visual.vostok-product {
  width: 100%;
  max-width: 760px;
  height: clamp(600px, 66vh, 700px);
  justify-self: center;
}

.product-page-hero-visual.vacuum-product img,
.product-page-hero-visual.vostok-product img {
  padding: 0;
}

.product-page-hero-visual.vacuum-product img {
  transform: scale(1.12);
  transform-origin: center;
}

.contact-page-section p {
  max-width: 640px;
  font-size: 18px;
}

.page-hero h1,
.page-hero p {
  max-width: 980px;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 18px;
}

.featured-product {
  min-height: 460px;
}

.product-card > div {
  max-width: 680px;
}

.future-product {
  justify-content: flex-start;
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(94, 135, 148, 0.18), rgba(181, 18, 32, 0.12)),
    var(--panel);
}

.future-product::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(180deg, transparent, rgba(5, 8, 10, 0.76));
}

.catalog-hero {
  min-height: 220px;
  padding-top: 116px;
  padding-bottom: 30px;
  background:
    linear-gradient(100deg, rgba(7, 11, 13, 0.94), rgba(7, 11, 13, 0.42)),
    url("assets/catalog-hero-pexels-5503874.webp") center 58% / cover;
}

.catalog-hero h1 {
  max-width: 620px;
  margin-bottom: 0;
}

.equipment-catalog {
  padding-top: 28px;
}

.equipment-card-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 18px;
}

.equipment-card {
  overflow: hidden;
  display: grid;
  width: 100%;
  min-width: 0;
  height: 320px;
  min-height: 320px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.equipment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 58, 69, 0.5);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.54);
}

.equipment-card-media {
  min-width: 0;
  min-height: 0;
  height: 320px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--bg-soft);
}

.equipment-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.equipment-card:hover .equipment-card-media img {
  transform: scale(1.035);
}

.equipment-card-media.product-image-surface img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  padding: clamp(18px, 2.5vw, 38px);
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.48));
}

.equipment-card-media.product-image-surface.vacuum-product img {
  padding-top: 14px;
  padding-bottom: 14px;
}

.equipment-card:hover .equipment-card-media.product-image-surface img {
  transform: scale(1.025);
}

.equipment-card-copy {
  display: flex;
  min-width: 0;
  min-height: 0;
  height: 320px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.equipment-card-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.2vw, 34px);
}

.equipment-card-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
}

.equipment-card-copy > span {
  margin-top: 28px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
}

.equipment-card:nth-child(even) .equipment-card-media {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.equipment-card:nth-child(even) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(94, 135, 148, 0.12), rgba(181, 18, 32, 0.08)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.025) 18px 19px),
    var(--bg-soft);
}

.product-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.product-photo-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pending-machine-hero {
  min-height: 46vh;
}

.machine-page-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: stretch;
}

.machine-page-placeholder--copy-only {
  grid-template-columns: 1fr;
}

.product-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94, 135, 148, 0.06), transparent 52%);
}

.product-intro-copy {
  max-width: 720px;
  padding-left: clamp(20px, 2.5vw, 44px);
}

.product-intro-copy h2 {
  margin-bottom: 24px;
}

.product-intro-text {
  display: grid;
  gap: 14px;
  margin-bottom: 0;
}

.product-intro-text p {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
}

.vacuum-description {
  display: grid;
  gap: 18px;
}

.vacuum-description p {
  margin: 0;
  color: var(--text);
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.65;
}

.product-advantages-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-advantages-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.55;
}

.product-advantages-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.product-specifications {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(94, 135, 148, 0.08), rgba(181, 18, 32, 0.045)),
    var(--bg-soft);
}

.product-specifications-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.product-specifications-grid > div {
  min-width: 0;
  min-height: 104px;
  padding: 18px clamp(18px, 2vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-specifications-grid > div:nth-child(4n) {
  border-right: 0;
}

.product-specifications-grid dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.product-specifications-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.35;
}

.product-specifications-grid--centered > div {
  display: flex;
  align-items: center;
}

@media (min-width: 1181px) {
  .product-specifications-grid--vacuum > div:nth-last-child(2) {
    grid-column: 2;
    border-left: 1px solid var(--line);
  }

  .product-specifications-grid--vacuum > div:last-child {
    grid-column: 3;
  }
}

.product-video-section {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.product-video-head {
  margin-bottom: 28px;
}

.product-video-head h2 {
  margin-bottom: 0;
}

.product-video {
  width: 100%;
  max-height: 78vh;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050708;
  box-shadow: var(--shadow);
}

.example-collage {
  display: grid;
  gap: clamp(10px, 1.15vw, 16px);
}

.example-collage__label {
  margin: 10px 0 -2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.example-collage__row {
  display: flex;
  height: clamp(230px, 22vw, 330px);
  gap: clamp(10px, 1.15vw, 16px);
}

.example-collage__row--pair {
  height: clamp(280px, 28vw, 420px);
}

.example-collage__row--dense {
  height: clamp(210px, 18vw, 275px);
}

.example-collage--widescreen .example-collage__row {
  align-items: flex-start;
  height: auto;
}

.example-collage__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  flex: 1 1 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  transition:
    border-color 0.25s ease,
    box-shadow 0.35s ease;
}

.example-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #11171a;
  transition: filter 0.4s ease;
}

.example-collage--widescreen .example-collage__item {
  aspect-ratio: 16 / 9;
}

.example-collage--widescreen .example-collage__item img {
  object-fit: cover;
}

.example-collage--adaptive-backdrop .example-collage__item {
  isolation: isolate;
  background: #293238;
}

.example-collage--adaptive-backdrop .example-collage__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -12%;
  pointer-events: none;
  background-image: var(--example-backdrop-image);
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(0.9) brightness(0.76);
  opacity: 0.96;
  transform: scale(1.12);
}

.example-collage--adaptive-backdrop .example-collage__item img {
  position: relative;
  z-index: 1;
  background: transparent;
}

.example-collage--widescreen.example-collage--adaptive-backdrop .example-collage__item img {
  object-fit: contain;
}

.example-collage__item--portrait img {
  object-position: center;
}

.example-collage__item:focus-within {
  border-color: rgba(227, 58, 69, 0.74);
}

@media (hover: hover) {
  .example-collage__item:hover {
    z-index: 2;
    border-color: rgba(227, 58, 69, 0.62);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  }

  .example-collage__item:hover img {
    filter: saturate(1.04) contrast(1.02);
  }
}

@media (max-width: 1180px) {
  .example-collage__row {
    height: clamp(210px, 27vw, 300px);
  }

  .example-collage__row--pair {
    height: clamp(250px, 38vw, 380px);
  }

  .example-collage__row--dense {
    height: clamp(190px, 23vw, 250px);
  }
}

@media (max-width: 680px) {
  .example-collage,
  .example-collage__row {
    gap: 8px;
  }

  .example-collage__row,
  .example-collage__row--pair,
  .example-collage__row--dense {
    display: grid;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-collage__item {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .example-collage__row > .example-collage__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}

.product-carousel {
  width: 100%;
  max-width: min(540px, 52.5vh);
  min-width: 0;
  justify-self: center;
}

.product-carousel--wide {
  max-width: 720px;
}

.product-carousel--wide .product-carousel-viewport {
  aspect-ratio: 16 / 9;
}

.product-carousel--machine {
  max-width: 720px;
}

.product-carousel--machine .product-carousel-viewport {
  aspect-ratio: 4 / 3;
}

.product-carousel--examples {
  max-width: 1120px;
  margin-inline: auto;
}

.product-carousel--examples .product-carousel-viewport {
  aspect-ratio: 16 / 10;
}

.product-carousel--landscape .product-carousel-viewport {
  aspect-ratio: 16 / 9;
}

.product-carousel--examples .product-carousel-dots {
  gap: 5px;
}

.product-carousel--examples .product-carousel-dots button {
  width: 6px;
  height: 6px;
}

.product-carousel--examples .product-carousel-dots button.is-active {
  width: 20px;
}

.product-carousel-viewport {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-carousel-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  width: clamp(74px, 16%, 130px);
  align-items: center;
  border: 0;
  padding: 18px;
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  background: transparent;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.product-carousel-edge--prev {
  left: 0;
  justify-content: flex-start;
  background: transparent;
}

.product-carousel-edge--next {
  right: 0;
  justify-content: flex-end;
  background: transparent;
}

.product-carousel-edge span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(9, 13, 16, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  font-size: 19px;
  transform: translateX(-8px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.product-carousel-edge--next span {
  transform: translateX(8px);
}

.product-carousel-edge:hover,
.product-carousel-edge:focus-visible {
  opacity: 1;
}

.product-carousel-edge:hover span,
.product-carousel-edge:focus-visible span {
  border-color: rgba(227, 58, 69, 0.62);
  background: rgba(9, 13, 16, 0.92);
  transform: translateX(0);
}

@media (hover: none) {
  .product-carousel-edge {
    display: none;
  }
}

.product-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}

.product-carousel-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f4f2;
}

.product-carousel-photo--portrait {
  object-fit: contain;
  background: #f4f4f2;
}

.carousel-photo-placeholder {
  position: relative;
  display: flex;
  min-height: clamp(360px, 40vw, 570px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--muted);
  background:
    radial-gradient(circle at 50% 50%, rgba(227, 58, 69, 0.13), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(145deg, #172126, #090d10 72%);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.carousel-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 3vw, 38px);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.carousel-photo-placeholder span,
.carousel-photo-placeholder small {
  position: relative;
  z-index: 1;
}

.carousel-photo-placeholder span {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-photo-placeholder small {
  color: var(--muted);
  font-size: 13px;
}

.product-carousel-controls,
.product-carousel-arrows,
.product-carousel-dots {
  display: flex;
  align-items: center;
}

.product-carousel-controls {
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
}

.product-carousel-count {
  min-width: 58px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-carousel-count [data-carousel-current] {
  color: var(--ink);
}

.product-carousel-dots {
  gap: 7px;
}

.product-carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.24);
  transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.product-carousel-dots button.is-active {
  width: 26px;
  border-radius: 10px;
  background: var(--accent-2);
}

.product-carousel-arrows {
  gap: 8px;
}

.product-carousel-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.055);
  font-size: 19px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.product-carousel-arrows button:hover {
  border-color: rgba(227, 58, 69, 0.52);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.machine-photo-placeholder {
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.machine-placeholder-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.pending-specs {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.pending-specs span {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.text-link {
  color: var(--accent-2);
  font-weight: 800;
  text-underline-offset: 5px;
}

.machine-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.detail-copy {
  max-width: 820px;
}

.spec-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.spec-panel ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-panel li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-panel span {
  color: var(--muted);
}

.spec-panel strong {
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  aspect-ratio: 0.9;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-pending:nth-of-type(2) {
  transition-delay: 0.08s;
}

.reveal.reveal-pending:nth-of-type(3) {
  transition-delay: 0.14s;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 40px;
    place-items: center;
    grid-template: 1fr / 1fr;
    justify-self: end;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-toggle span {
    grid-area: 1 / 1;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease;
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle span:last-child {
    transform: translateY(4px);
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero,
  .split-section,
  .product-overview,
  .machine-detail,
  .machine-page-placeholder,
  .product-intro,
  .cta,
  .contacts,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-left: 0;
  }

  .product-page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 126px 24px 42px;
  }

  .product-page-hero-copy {
    max-width: 760px;
  }

  .product-intro-copy {
    max-width: 760px;
    padding-left: 0;
  }

  .product-specifications-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-specifications-grid > div:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .product-specifications-grid > div:nth-child(3n) {
    border-right: 0;
  }

  .product-page-hero-visual {
    height: 440px;
  }

  .product-page-hero-visual.vacuum-product,
  .product-page-hero-visual.vostok-product {
    height: min(620px, 70vh);
  }

  .hero-media {
    min-height: 48vh;
    order: 2;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(9, 13, 16, 0.58), transparent);
  }

  .machine-showcase::after {
    background: none;
  }

  .hero-content {
    padding: 124px 24px 38px;
  }

  .direction-grid,
  .image-row,
  .gallery-grid,
  .contact-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-card,
  .equipment-card:nth-child(even) {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .equipment-card-media,
  .equipment-card:nth-child(even) .equipment-card-media {
    order: 0;
    min-height: 0;
    height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .equipment-card-copy {
    height: auto;
    min-height: 0;
    padding: 26px;
  }

  .footer-actions {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    inset: 10px 10px auto;
  }

  .machine-showcase {
    min-height: 360px;
  }

  .product-page-hero {
    gap: 24px;
    padding: 104px 18px 28px;
  }

  .vacuum-title {
    font-size: clamp(25px, 7.8vw, 32px);
  }

  .product-page-hero-visual {
    height: 340px;
  }

  .product-page-hero-visual.vacuum-product,
  .product-page-hero-visual.vostok-product {
    height: 500px;
  }

  .product-page-hero-visual img {
    padding: 16px;
  }

  .product-page-hero-visual.vacuum-product img,
  .product-page-hero-visual.vostok-product img {
    padding: 0;
  }

  .hero-content,
  .section,
  .contacts,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .direction-grid,
  .image-row,
  .gallery-grid,
  .contact-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    min-height: 164px;
    padding-top: 96px;
    padding-bottom: 24px;
  }

  .equipment-catalog {
    padding-top: 18px;
  }

  .equipment-card-media,
  .equipment-card:nth-child(even) .equipment-card-media {
    height: 160px;
  }

  .equipment-card-copy {
    padding: 20px;
  }

  .machine-photo-placeholder {
    min-height: 300px;
  }

  .product-intro {
    gap: 28px;
  }

  .product-specifications-grid {
    grid-template-columns: 1fr;
  }

  .product-specifications-grid > div,
  .product-specifications-grid > div:nth-child(3n),
  .product-specifications-grid > div:nth-child(4n) {
    min-height: 0;
    padding: 16px 18px;
    border-right: 0;
  }

  .carousel-photo-placeholder {
    min-height: 310px;
  }

  .product-carousel-controls {
    gap: 12px;
  }

  .product-carousel--examples .product-carousel-viewport {
    aspect-ratio: 1 / 1;
  }

  .product-carousel--machine .product-carousel-viewport {
    aspect-ratio: 1 / 1;
  }

  .product-carousel--landscape .product-carousel-viewport {
    aspect-ratio: 16 / 9;
  }

  .product-carousel-arrows button {
    width: 42px;
    height: 42px;
  }

  .proof-strip {
    padding: 0 18px;
  }

  .proof-strip.catalog-specs {
    padding: 0;
  }

  .proof-strip div,
  .proof-strip div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-actions {
    display: grid;
    justify-content: stretch;
  }

  .direction-card,
  .product-card,
  .featured-product,
  .future-product {
    min-height: 340px;
  }

  .direction-card img,
  .direction-card > .direction-card-placeholder,
  .product-card img {
    min-height: 340px;
  }

  .spec-panel {
    padding: 20px;
  }

  .spec-panel li {
    display: grid;
  }

  .spec-panel strong {
    text-align: left;
  }

  .cta .button {
    width: 100%;
  }
}
