:root {
  --red: #d7001d;
  --red-dark: #a80016;
  --ink: #101820;
  --muted: #65707c;
  --line: #e2e7ed;
  --paper: #ffffff;
  --soft: #f3f6f9;
  --steel: #263341;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(150px, 13vw, 188px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.header-action {
  opacity: 0.88;
}

.main-nav a:hover,
.header-action:hover {
  opacity: 1;
  color: var(--red);
}

.header-action {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 18, 26, 0.88) 0%, rgba(11, 18, 26, 0.62) 42%, rgba(11, 18, 26, 0.08) 100%),
    linear-gradient(180deg, rgba(11, 18, 26, 0.2), rgba(11, 18, 26, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 6vw, 72px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(980px, calc(100% - 160px));
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  color: var(--red);
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.section {
  padding: clamp(76px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-muted {
  background: var(--soft);
}

.intro-grid,
.section-heading,
.project-band,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 76px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro h2,
.section-heading h2,
.project-band h2,
.service h2,
.contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.project-band p,
.service-grid p,
.contact p {
  color: var(--muted);
  font-size: 17px;
}

.intro-visual {
  display: grid;
  gap: 28px;
  align-content: start;
}

.intro-factory {
  position: relative;
  min-height: 300px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.12);
}

.intro-factory img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.intro-factory::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.06), rgba(16, 24, 32, 0.18));
  content: "";
}

.intro-factory figcaption {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: 17%;
  max-width: 62%;
  padding: 12px 16px 14px;
  color: #fff;
  background: rgba(16, 24, 32, 0.72);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.16);
}

.intro-factory figcaption span {
  display: block;
  color: #ffb9c2;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.intro-factory figcaption strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.intro-highlights article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.intro-highlights span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.intro-highlights h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.intro-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.news-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.direction-card {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.direction-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-photo);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(8px) saturate(0.9);
  opacity: 0.22;
  transform: scale(1.08);
}

.direction-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 52%, rgba(243, 246, 249, 0.74) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.86));
  content: "";
}

.direction-card > * {
  position: relative;
  z-index: 1;
}

.direction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 0, 29, 0.28);
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.1);
}

.card-index {
  color: var(--red);
  font-weight: 900;
}

.direction-card h3,
.service-grid h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.direction-card p {
  margin: 0;
  color: var(--muted);
}

.direction-card a {
  margin-top: auto;
  padding-top: 26px;
  color: var(--red);
  font-weight: 800;
}

.project-band {
  align-items: start;
  color: #fff;
  background: var(--steel);
  max-width: none;
}

.project-band .section-kicker {
  color: #ff8797;
}

.project-band p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.74);
}

.project-list {
  display: grid;
  gap: 12px;
}

.project-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.project-list span {
  color: #ff8797;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.service-grid div {
  padding-left: 24px;
  border-left: 4px solid var(--red);
}

.customers-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.customers-page .product-hero {
  padding-bottom: 28px;
}

.customers-page .customers-section {
  padding-top: clamp(38px, 4.5vw, 62px);
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 32px auto 0;
}

.customer-grid-all {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 0;
}

.customer-card {
  display: grid;
  min-height: 104px;
  align-content: space-between;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.customer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 0, 29, 0.22);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.1);
}

.customer-logo-frame {
  width: 100%;
  height: 54px;
  border-radius: 6px;
  background: #fff4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 3px;
  box-sizing: border-box;
  overflow: hidden;
}

.customer-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 53px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  mix-blend-mode: multiply;
  transform: scale(1.3);
  transform-origin: center;
}

.customer-logo-fit-wide {
  transform: scale(1);
}

.customer-logo-fit-large {
  transform: scale(1.38);
}

.customer-logo-fit-amcor {
  transform: scale(1.02);
}

.customer-logo-fit-small {
  transform: scale(1.1);
}

.customer-logo-fit-smaller {
  transform: scale(1.04);
}

.customer-logo-fit-request-small {
  transform: scale(0.92);
}

.customer-logo-fit-visible {
  mix-blend-mode: normal;
  transform: scale(1.08);
  filter: contrast(1.15) saturate(1.1);
}

.customer-logo-fit-bryansk-paper {
  mix-blend-mode: normal;
  transform: scale(1.04);
  filter: contrast(1.15) saturate(1.1);
}

.customer-logo-fit-grand-tobacco {
  mix-blend-mode: normal;
  transform: scale(1.02);
  filter: contrast(1.12) saturate(1.08);
}

.customer-logo-fit-uralgofrotara {
  transform: scale(1.24);
}

.customer-logo-fit-apolinarija {
  mix-blend-mode: normal;
  transform: scale(0.98);
}

.customer-logo-text {
  color: #1f334a;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

@media (max-width: 640px) {
  .customer-logo-frame {
    padding: 2px 4px;
  }

  .customer-logo {
    transform: scale(1.18);
  }

  .customer-logo-fit-large {
    transform: scale(1.22);
  }

  .customer-logo-fit-wide {
    transform: scale(1);
  }

  .customer-logo-fit-amcor {
    transform: scale(0.96);
  }

  .customer-logo-fit-small {
    transform: scale(1);
  }

  .customer-logo-fit-smaller {
    transform: scale(0.96);
  }

  .customer-logo-fit-request-small {
    transform: scale(0.9);
  }

  .customer-logo-fit-visible {
    transform: scale(1);
  }

  .customer-logo-fit-bryansk-paper {
    transform: scale(1);
  }

  .customer-logo-fit-grand-tobacco {
    transform: scale(0.98);
  }

  .customer-logo-fit-uralgofrotara {
    transform: scale(1.08);
  }

  .customer-logo-fit-apolinarija {
    transform: scale(0.92);
  }
}

.customer-card h3 {
  margin: 0;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.reference-section {
  background: #fff;
}

.customers-page .reference-section {
  padding-top: clamp(38px, 4.5vw, 62px);
}

.customer-section-heading {
  margin-bottom: 0;
}

.reference-regions {
  display: grid;
  gap: 34px;
  margin-top: 32px;
}

.reference-region {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 24px;
}

.reference-region-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.reference-region-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.reference-region-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reference-list li {
  position: relative;
  min-height: 50px;
  padding: 10px 12px 10px 26px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: #fff;
}

.reference-list li::before {
  position: absolute;
  top: 17px;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.reference-list span {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.reference-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.reference-toggle:not(:checked) ~ .reference-list li:nth-child(n+21) {
  display: none;
}

.reference-toggle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 44px;
  margin: 22px auto 0;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.reference-toggle-button .reference-less {
  display: none;
}

.reference-toggle:checked ~ .reference-toggle-button .reference-more {
  display: none;
}

.reference-toggle:checked ~ .reference-toggle-button .reference-less {
  display: inline;
}

.news-section {
  background: #fff;
}

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

.news-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.news-card time {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.news-card a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--red);
  font-weight: 900;
}

.contact {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.contact-card {
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a {
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--soft);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(215, 0, 29, 0.14);
  border-color: var(--red);
}

.lead-form .button {
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-note.is-success {
  color: #12713b;
  font-weight: 800;
}

.form-note.is-error {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #0d141c;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 700;
}

.product-header {
  position: sticky;
}

.product-nav {
  margin-left: auto;
}

.product-page {
  padding-top: 0;
}

.product-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 56px;
}

.product-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.product-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.product-list {
  display: grid;
  gap: 28px;
}

.equipment-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 24, 32, 0.08);
}

.equipment-image {
  display: grid;
  min-height: 280px;
  place-items: center;
  border-radius: 8px;
  background: #f7f9fb;
  overflow: hidden;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.equipment-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.equipment-copy p {
  color: var(--muted);
  font-size: 18px;
}

.equipment-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  color: var(--steel);
}

.equipment-copy li {
  position: relative;
  padding-left: 22px;
}

.equipment-copy li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.corrugator-hero {
  position: relative;
}

.corrugator-overview {
  display: grid;
  gap: 34px;
}

.corrugator-overview .section-heading h2 {
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.22;
}

.corrugator-grid {
  display: grid;
  gap: 28px;
}

.series-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 24, 32, 0.08);
  overflow: hidden;
}

.series-card:nth-child(even) .series-media {
  order: 2;
}

.series-media {
  display: grid;
  min-height: 430px;
  place-items: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.96), rgba(245, 248, 251, 0.72) 45%, rgba(223, 231, 239, 0.92)),
    #eef3f7;
}

.series-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.gofrotara-page .series-media {
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96) 56%, rgba(224, 232, 240, 0.88)),
    #f4f7fa;
}

.gofrotara-page .series-media img {
  object-fit: cover;
  padding: 0;
}

.corrugator-page .series-card,
.gofrotara-page .series-card {
  --series-pad: clamp(24px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 0;
  grid-template-columns: 1fr;
}

.corrugator-page .series-card:nth-child(even) .series-media,
.gofrotara-page .series-card:nth-child(even) .series-media {
  order: 6;
}

.corrugator-page .series-media,
.gofrotara-page .series-media {
  order: 6;
  width: calc(100% - (var(--series-pad) * 2));
  min-height: 0;
  height: clamp(250px, 26vw, 330px);
  margin: clamp(24px, 3vw, 34px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  aspect-ratio: auto;
}

.gofrotara-page .series-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.corrugator-page .series-media img,
.gofrotara-page .series-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gofrotara-page .series-media img {
  width: 94%;
  height: 92%;
  object-position: center center;
}

.gofrotara-page .series-card:nth-child(1) .series-media img {
  width: 108%;
  height: 108%;
}

.corrugator-page .series-copy,
.gofrotara-page .series-copy {
  display: contents;
  padding: 0;
}

.corrugator-page .series-copy > :not(.button),
.gofrotara-page .series-copy > :not(.button) {
  width: calc(100% - (var(--series-pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.corrugator-page .series-copy > .card-index,
.gofrotara-page .series-copy > .card-index {
  order: 0;
  margin-top: var(--series-pad);
  margin-bottom: 12px;
}

.corrugator-page .series-copy > h2,
.gofrotara-page .series-copy > h2 {
  order: 1;
  margin-top: 0;
}

.corrugator-page .series-copy > h2,
.gofrotara-page .series-copy > h2 {
  max-width: none;
  text-align: left;
}

.corrugator-page .series-copy > p,
.gofrotara-page .series-copy > p {
  order: 2;
  max-width: none;
}

.corrugator-page .series-copy > .spec-grid,
.gofrotara-page .series-copy > .spec-grid {
  order: 3;
  margin-top: clamp(22px, 3vw, 30px);
  margin-bottom: 0;
}

.corrugator-page .series-copy > .module-title,
.gofrotara-page .series-copy > .module-title {
  order: 4;
  margin-top: clamp(22px, 3vw, 32px) !important;
}

.corrugator-page .series-copy > .module-list,
.gofrotara-page .series-copy > .module-list {
  order: 5;
}

.corrugator-page .series-copy > .button,
.gofrotara-page .series-copy > .button {
  order: 7;
  align-self: flex-start;
  margin: 26px 0 var(--series-pad) var(--series-pad);
}

.digital-page .series-media {
  min-height: 0;
  height: clamp(260px, 28vw, 380px);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.95) 58%, rgba(225, 233, 240, 0.92)),
    #f4f7fa;
}

.digital-page .series-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(22px, 3vw, 42px);
}

.digital-page .series-card {
  --series-pad: clamp(24px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 0;
  grid-template-columns: 1fr;
}

.digital-page .series-card:nth-child(even) .series-media,
.digital-page .series-media {
  order: 6;
  width: calc(100% - (var(--series-pad) * 2));
  margin: clamp(24px, 3vw, 34px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.digital-page .series-copy {
  display: contents;
  padding: 0;
}

.digital-page .series-copy > :not(.button) {
  width: calc(100% - (var(--series-pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.digital-page .series-copy > .card-index {
  order: 0;
  margin-top: var(--series-pad);
  margin-bottom: 12px;
}

.digital-page .series-copy > h2 {
  order: 1;
  max-width: none;
  margin-top: 0;
  text-align: left;
}

.digital-page .series-copy > p {
  order: 2;
  max-width: none;
}

.digital-page .series-copy > .spec-grid {
  order: 3;
  margin-top: clamp(22px, 3vw, 30px);
  margin-bottom: 0;
}

.digital-page .series-copy > .digital-model-showcase {
  order: 3;
  margin-top: clamp(22px, 3vw, 30px);
}

.digital-page .series-copy > .digital-compare {
  order: 4;
  margin-top: clamp(22px, 3vw, 30px);
}

.digital-page .series-copy > .module-title {
  order: 5;
  margin-top: clamp(22px, 3vw, 32px) !important;
  padding-left: clamp(28px, 4vw, 52px);
}

.digital-page .series-copy > .module-list {
  order: 6;
  padding-left: clamp(28px, 4vw, 52px);
}

.digital-page .series-copy > .button {
  order: 7;
  align-self: flex-start;
  margin: 26px 0 var(--series-pad) var(--series-pad);
}

.digital-page .spec-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.digital-model-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.digital-model-showcase figure {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0 0 12px;
  background: #fff;
}

.digital-model-showcase img {
  width: 94%;
  height: clamp(170px, 18vw, 250px);
  margin: 8px auto 0;
  object-fit: contain;
  object-position: center;
}

.digital-model-showcase figcaption {
  color: var(--ink);
  font-weight: 800;
  padding: 0 16px;
}

.digital-compare {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.digital-compare table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.digital-compare th,
.digital-compare td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.digital-compare th:first-child,
.digital-compare td:first-child {
  border-left: 0;
}

.digital-compare tbody tr:last-child td {
  border-bottom: 0;
}

.digital-compare th {
  color: var(--ink);
  font-weight: 800;
  background: #f7f9fb;
}

.digital-compare td {
  color: var(--steel);
}

.digital-compare td:not(:first-child) {
  color: var(--ink);
  font-weight: 700;
}

.digital-note {
  margin-top: 10px;
}

.series-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
}

.series-copy h2 {
  max-width: 720px;
  margin: 12px 0 16px;
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.04;
}

.series-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.spec-grid div {
  min-height: 100px;
  padding: 18px 16px;
  background: #fff;
}

.spec-grid strong {
  display: block;
  color: var(--red);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.spec-grid span {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.3;
}

.corrugator-page .spec-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(138px, 1.35fr) minmax(0, 1fr);
  border-radius: 0;
}

.corrugator-page .spec-grid div {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 14px 20px;
}

.corrugator-page .spec-grid .spec-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0;
  color: transparent;
  font-size: 0;
  line-height: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.58;
}

.corrugator-page .spec-grid div:nth-child(1) .spec-icon {
  background-image: url("assets/spec-icons/design-speed.png");
}

.corrugator-page .spec-grid div:nth-child(2) .spec-icon {
  background-image: url("assets/spec-icons/max-width.png");
}

.corrugator-page .spec-grid div:nth-child(3) .spec-icon {
  background-image: url("assets/spec-icons/splice-speed.png");
}

.corrugator-page .spec-grid div:nth-child(4) .spec-icon {
  background-image: url("assets/spec-icons/order-change.png");
}

.corrugator-page .spec-grid div:nth-child(5) .spec-icon {
  background-image: url("assets/spec-icons/stacking.png");
}

.corrugator-page .spec-grid div:nth-child(6) .spec-icon {
  background-image: url("assets/spec-icons/temperature-control.png");
}

.corrugator-page .spec-grid div:nth-child(7) .spec-icon {
  background-image: url("assets/spec-icons/operators.png");
}

.gofrotara-page .spec-grid {
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  border-radius: 8px;
}

.gofrotara-page .spec-grid div {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 14px 20px;
}

.gofrotara-page .spec-grid .spec-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0;
  color: transparent;
  font-size: 0;
  line-height: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.58;
}

.gofrotara-page .spec-grid div:nth-child(1) .spec-icon {
  background-image: url("assets/spec-icons/production-mode.png");
}

.gofrotara-page .spec-grid div:nth-child(2) .spec-icon,
.gofrotara-page .spec-grid div:nth-child(3) .spec-icon,
.gofrotara-page .spec-grid div:nth-child(4) .spec-icon {
  background-image: url("assets/spec-icons/design-speed.png");
}

.gofrotara-page .spec-grid div:nth-child(5) .spec-icon {
  background-image: url("assets/spec-icons/operators.png");
}

.gofrotara-page .spec-grid div:nth-child(6) .spec-icon {
  background-image: url("assets/spec-icons/temperature-control.png");
}

.gofrotara-page .spec-grid .spec-icon-mode {
  background-image: url("assets/spec-icons/production-mode.png");
}

.gofrotara-page .spec-grid .spec-icon-speed {
  background-image: url("assets/spec-icons/design-speed.png");
}

.gofrotara-page .spec-grid .spec-icon-operators {
  background-image: url("assets/spec-icons/operators.png");
}

.gofrotara-page .spec-grid .spec-icon-control {
  background-image: url("assets/spec-icons/temperature-control.png");
}

.gofrotara-page .spec-grid .spec-label {
  min-height: 44px;
  margin: 16px 0 12px;
  color: #3c424a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}

.gofrotara-page .spec-grid strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-height: 36px;
  margin-top: auto;
  color: var(--red);
  font-size: clamp(26px, 2.35vw, 36px);
  line-height: 0.96;
  white-space: nowrap;
}

.gofrotara-page .spec-grid strong small {
  color: #3c424a;
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1;
}

.gofrotara-page .spec-grid strong.text-value {
  display: block;
  min-height: 44px;
  margin-top: auto;
  color: #3c424a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
  white-space: normal;
}

.corrugator-page .spec-grid .spec-label {
  min-height: 44px;
  margin: 16px 0 12px;
  color: #3c424a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}

.corrugator-page .spec-grid .spec-label-long {
  font-size: 14px;
  line-height: 1.28;
}

.corrugator-page .spec-grid strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-height: 36px;
  margin-top: auto;
  color: var(--red);
  font-size: clamp(26px, 2.35vw, 36px);
  line-height: 0.96;
  white-space: nowrap;
}

.corrugator-page .spec-grid strong small {
  color: #3c424a;
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1;
}

.corrugator-page .spec-grid strong.text-value {
  display: block;
  min-height: 44px;
  margin-top: auto;
  color: #3c424a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
  white-space: normal;
}

.module-title {
  margin: 0 0 12px !important;
  color: var(--ink) !important;
  font-weight: 900;
}

.module-list {
  columns: 2;
  column-gap: 30px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--steel);
}

.module-list li {
  position: relative;
  break-inside: avoid;
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.35;
}

.module-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.series-copy .button {
  width: fit-content;
  margin-top: auto;
}

.smart-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 56px;
}

.smart-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.smart-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.smart-scenarios {
  display: grid;
  gap: 28px;
}

.smart-card {
  --smart-pad: clamp(24px, 4vw, 46px);
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 24, 32, 0.08);
  overflow: hidden;
}

.smart-image {
  width: 100%;
  margin: clamp(14px, 2vw, 22px) 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.smart-image img {
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
  margin-left: -6%;
}

.smart-copy {
  display: flex;
  flex-direction: column;
  padding: var(--smart-pad);
}

.smart-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
}

.smart-subtitle {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.smart-copy p:not(.smart-subtitle) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.smart-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  color: var(--steel);
}

.smart-copy li {
  position: relative;
  padding-left: 22px;
}

.smart-copy li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.smart-copy .button {
  width: fit-content;
  margin-top: 26px;
}

.legacy-catalog {
  padding: 108px clamp(20px, 5vw, 72px) 86px;
  background: #fff;
}

.legacy-catalog h1 {
  margin: 0 0 70px;
  color: #3d4248;
  font-size: clamp(32px, 3.7vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.czbp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 66px 70px;
  max-width: 1320px;
  margin: 0 auto;
}

.czbp-card {
  display: flex;
  min-height: 382px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 42px 28px;
  text-align: center;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 24, 32, 0.08);
}

.no-photo {
  display: grid;
  place-items: center;
  margin: 0 0 auto;
  color: #d7d7d7;
}

.no-photo span {
  position: relative;
  display: block;
  width: 112px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #d9d9d9;
}

.no-photo span::before {
  position: absolute;
  top: 14px;
  left: 34px;
  width: 44px;
  height: 44px;
  border: 10px solid #fff;
  border-radius: 50%;
  content: "";
}

.no-photo span::after {
  position: absolute;
  top: -8px;
  left: 18px;
  width: 28px;
  height: 22px;
  border-radius: 8px 8px 0 0;
  background: #d9d9d9;
  content: "";
}

.no-photo strong {
  display: block;
  color: #dbdbdb;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.czbp-card h2 {
  min-height: 62px;
  margin: 32px 0 24px;
  color: #4b4f54;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.czbp-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 22px 10px;
  color: #fff;
  background: #c92128;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.czbp-card-last {
  grid-column: 2;
}

.czbp-page .product-hero h1 {
  font-size: clamp(30px, 3.6vw, 46px);
}

.czbp-page .product-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--steel);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

.czbp-overview {
  display: grid;
  gap: 34px;
}

.czbp-overview .section-heading h2 {
  max-width: 760px;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
}

.czbp-equipment-grid {
  display: grid;
  gap: 28px;
}

.czbp-page .czbp-equipment-card {
  --series-pad: clamp(24px, 4vw, 46px);
  display: flex;
  max-width: 1180px;
  flex-direction: column;
  gap: 0;
  grid-template-columns: 1fr;
}

.czbp-page .series-card:nth-child(even) .series-media {
  order: 6;
}

.czbp-page .series-media {
  order: 6;
  width: calc(100% - (var(--series-pad) * 2));
  min-height: 0;
  margin: clamp(24px, 3vw, 34px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  aspect-ratio: 16 / 7;
}

.czbp-page .series-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.czbp-page .series-media.is-contain img {
  object-fit: contain;
  padding: clamp(12px, 2vw, 22px);
}

.czbp-page .czbp-equipment-card:first-child .series-media {
  aspect-ratio: auto;
}

.czbp-page .czbp-equipment-card:first-child .series-media img {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 0;
}

.czbp-page .czbp-equipment-card:nth-child(2) .series-media img {
  padding: 0;
  object-fit: cover;
}

.czbp-page .czbp-equipment-card:nth-child(2) .series-media {
  aspect-ratio: 16 / 8;
}

.czbp-page .czbp-equipment-card:nth-child(3) .series-media {
  aspect-ratio: 16 / 9;
}

.czbp-page .czbp-equipment-card:nth-child(3) .series-media img {
  padding: 0;
  object-fit: contain;
}

.czbp-page .czbp-equipment-card:nth-child(4) .series-media img {
  padding: 0;
  object-fit: cover;
}

.czbp-page .czbp-equipment-card:nth-child(4) .series-media {
  aspect-ratio: 16 / 10;
}

.czbp-page .czbp-equipment-card:nth-child(5) .series-media {
  aspect-ratio: 16 / 9;
}

.czbp-page .series-copy {
  display: contents;
  padding: 0;
}

.czbp-page .series-copy > :not(.button) {
  width: calc(100% - (var(--series-pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.czbp-page .series-copy > .card-index {
  order: 0;
  margin-top: var(--series-pad);
  margin-bottom: 12px;
}

.czbp-page .series-copy > h2 {
  order: 1;
  max-width: none;
  margin-top: 0;
  text-align: left;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.06;
}

.czbp-page .series-copy > p {
  order: 2;
  max-width: none;
  color: var(--steel);
}

.czbp-page .series-copy > .button {
  order: 7;
  align-self: flex-start;
  margin: 26px 0 var(--series-pad) var(--series-pad);
}

.news-section .section-heading {
  align-items: end;
}

.news-section .news-card {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.08);
}

.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--soft);
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.news-section .news-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  line-height: 1.16;
}

.news-section .news-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.news-section .news-card a {
  margin-top: auto;
  padding-top: 22px;
}

.home-news .news-card:nth-child(n + 7) {
  display: none;
}

.news-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.news-list-page .product-hero {
  padding-bottom: clamp(48px, 7vw, 84px);
}

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

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.news-page-button {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #7a8490;
  background: #fff;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.news-page-button:hover:not(:disabled):not(.is-active) {
  border-color: #b8c2cc;
  color: var(--ink);
  background: #f8fafc;
}

.news-page-button.is-active {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.news-page-button:disabled {
  color: #c7cdd4;
  background: #f3f5f7;
  cursor: default;
}

.smart-equipment-page .series-card {
  --series-pad: clamp(24px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.smart-equipment-page .series-copy {
  display: contents;
  padding: 0;
}

.smart-equipment-page .series-copy > :not(.button) {
  width: calc(100% - (var(--series-pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.smart-equipment-page .series-copy > .card-index {
  order: 0;
  margin-top: var(--series-pad);
  margin-bottom: 12px;
}

.smart-equipment-page .series-copy > h2 {
  order: 1;
  max-width: none;
  margin-top: 0;
  text-align: left;
}

.smart-equipment-page .series-copy > p {
  order: 2;
  max-width: none;
}

.smart-equipment-page .smart-spec-grid {
  order: 3;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.smart-equipment-page .smart-spec-grid span {
  min-height: 72px;
  padding: 18px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  line-height: 1.35;
}

.smart-equipment-page .module-title {
  order: 3;
  box-sizing: border-box;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  margin-top: 48px;
  padding-left: 52px;
}

.smart-equipment-page .smart-feature-list {
  order: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 18px;
  max-width: 100%;
}

.smart-equipment-page .smart-feature-list section {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.smart-equipment-page .smart-feature-list h3 {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.smart-equipment-page .smart-feature-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.smart-equipment-page .series-media {
  order: 4;
  width: calc(100% - (var(--series-pad) * 2));
  min-height: 0;
  height: auto;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fb;
}

.smart-equipment-page .series-card:nth-child(even) .series-media {
  order: 4;
}

.smart-equipment-page .series-media img {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: contain;
}

.smart-equipment-page .series-card:first-child .series-media {
  aspect-ratio: 16 / 9;
  height: auto;
}

.smart-equipment-page .series-card:first-child .series-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.smart-equipment-page .series-copy > .button {
  order: 5;
  align-self: flex-start;
  margin: 26px 0 var(--series-pad) var(--series-pad);
}

@media (max-width: 1020px) {
  .header-action {
    display: none;
  }

  .cards,
  .service-grid,
  .intro-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 40px);
    margin: -30px auto 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block !important;
    position: fixed;
    top: 14px;
    right: 20px;
    z-index: 22;
    color: #fff;
    border-color: transparent;
    background: rgba(215, 0, 29, 0.96);
    box-shadow: 0 8px 24px rgba(16, 24, 32, 0.22);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 92px 28px 32px;
    overflow-y: auto;
    color: var(--ink);
    background: #fff;
    transform: translateX(100%);
    transition: transform 220ms ease;
    box-shadow: -22px 0 46px rgba(16, 24, 32, 0.18);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    opacity: 1;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.2;
    padding: 8px 0;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 20px;
    padding-top: 124px;
    padding-bottom: 34px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 18, 26, 0.88), rgba(11, 18, 26, 0.72) 58%, rgba(11, 18, 26, 0.35));
  }

  .hero-panel,
  .intro-grid,
  .section-heading,
  .project-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .cards,
  .service-grid,
  .intro-highlights,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .customer-grid {
    grid-template-columns: repeat(2, minmax(0, 160px));
    justify-content: center;
  }

  .customers-page .section {
    overflow-x: hidden;
  }

  .customers-page .product-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
    word-break: break-word;
  }

  .customers-page .product-hero p,
  .customers-page .section-heading p {
    max-width: calc(100vw - 48px);
    overflow-wrap: anywhere;
  }

  .customers-page .customer-grid {
    width: 100%;
    max-width: 340px;
  }

  .customers-page .customer-card,
  .customers-page .customer-card h3,
  .customers-page .customer-logo-frame,
  .customers-page .customer-logo {
    min-width: 0;
  }

  .reference-list {
    grid-template-columns: 1fr;
  }

  .reference-region {
    padding: 20px 12px;
  }

  .reference-region-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-page {
    padding-top: 0;
  }

  .product-page .section,
  .product-hero,
  .product-hero h1,
  .product-hero p,
  .corrugator-grid,
  .series-card,
  .series-copy h2,
  .series-copy p {
    max-width: 100%;
    min-width: 0;
  }

  .product-hero h1,
  .product-hero p {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .equipment-card {
    grid-template-columns: 1fr;
  }

  .series-card {
    grid-template-columns: 1fr;
  }

  .series-card:nth-child(even) .series-media {
    order: 0;
  }

  .series-media {
    min-height: 260px;
  }

  .corrugator-page .series-card:nth-child(even) .series-media,
  .gofrotara-page .series-card:nth-child(even) .series-media,
  .corrugator-page .series-media,
  .gofrotara-page .series-media {
    order: 6;
    min-height: 0;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corrugator-page .spec-grid {
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    border-radius: 8px;
  }

  .corrugator-page .series-card,
  .gofrotara-page .series-card,
  .czbp-page .czbp-equipment-card {
    --series-pad: 18px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .corrugator-page .series-copy > :not(.button),
  .gofrotara-page .series-copy > :not(.button),
  .czbp-page .series-copy > :not(.button),
  .corrugator-page .series-media,
  .gofrotara-page .series-media,
  .czbp-page .series-media {
    min-width: 0;
    width: calc(100% - (var(--series-pad) * 2));
  }

  .corrugator-page .series-copy > h2,
  .gofrotara-page .series-copy > h2,
  .czbp-page .series-copy > h2,
  .corrugator-page .series-copy > p,
  .gofrotara-page .series-copy > p,
  .czbp-page .series-copy > p,
  .corrugator-page .module-list li,
  .gofrotara-page .module-list li,
  .corrugator-page .spec-grid span,
  .gofrotara-page .spec-grid span {
    overflow-wrap: anywhere;
  }

  .corrugator-page .spec-grid div,
  .gofrotara-page .spec-grid div {
    min-width: 0;
    padding: 14px 12px;
  }

  .corrugator-page .spec-grid strong,
  .gofrotara-page .spec-grid strong {
    font-size: clamp(24px, 8vw, 32px);
  }

  .module-list {
    columns: 1;
  }

  .smart-card {
    grid-template-columns: 1fr;
  }

  .smart-image {
    min-height: 260px;
  }

  .smart-copy .button {
    width: 100%;
  }

  .smart-equipment-page .smart-spec-grid {
    grid-template-columns: 1fr;
  }

  .smart-equipment-page .smart-feature-list {
    grid-template-columns: 1fr;
  }

  .smart-equipment-page .series-copy > .button {
    width: calc(100% - 36px);
    margin-right: 18px;
    margin-left: 18px;
  }

  .czbp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .czbp-card-last {
    grid-column: auto;
  }

  .czbp-page .series-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 680px) {
  .legacy-catalog {
    padding-top: 92px;
  }

  .legacy-catalog h1 {
    margin-bottom: 36px;
  }

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

@media (max-width: 620px) {
  .hero-content,
  .hero-panel {
    width: min(330px, calc(100vw - 48px));
    max-width: min(330px, calc(100vw - 48px));
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: clamp(29px, 7.2vw, 32px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .direction-card {
    min-height: 240px;
  }

  .customers-page .product-hero,
  .customers-page .section-heading,
  .customers-page .customer-grid {
    width: 100%;
    max-width: 340px;
    margin-right: 0;
    margin-left: 0;
  }

  .customers-page .product-hero p,
  .customers-page .section-heading p {
    max-width: 340px;
  }
}

.news-details {
  display: none;
}

.news-page .product-hero {
  padding-bottom: clamp(60px, 8vw, 96px);
}

.news-page-date {
  display: inline-flex;
  margin: 16px 0 20px;
  color: var(--red);
  font-weight: 800;
}

.news-page-article {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 33, 52, 0.08);
}

.news-page-image {
  display: block;
  width: 100%;
  max-height: 560px;
  margin-bottom: 32px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef3f8;
}

.news-page-body {
  max-width: 900px;
}

.news-page-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.news-back-link:hover {
  background: #b90018;
}

.service-spares {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 0, 29, 0.08), rgba(255, 255, 255, 0.95)),
    #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.08);
}

.service-spares h3 {
  max-width: 780px;
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.service-spares p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.spare-parts-page .product-hero {
  width: 100%;
  padding-bottom: clamp(54px, 7vw, 92px);
}

.spare-parts-page .product-hero h1,
.spare-parts-page .product-hero p {
  overflow-wrap: anywhere;
}

.parts-category-grid,
.parts-grid {
  display: grid;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.parts-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.parts-category-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(215, 0, 29, 0.08), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.08);
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.parts-category-card:hover {
  border-color: rgba(215, 0, 29, 0.28);
  box-shadow: 0 22px 58px rgba(16, 24, 32, 0.13);
  transform: translateY(-3px);
}

.parts-category-card span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.parts-category-card h3 {
  max-width: 560px;
  margin: 28px 0 14px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.parts-category-card p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.parts-category-card strong {
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.parts-breadcrumb {
  display: flex;
  max-width: 1180px;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 92px clamp(20px, 5vw, 72px) 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.parts-breadcrumb a {
  color: var(--steel);
  text-decoration: none;
}

.parts-breadcrumb a:hover {
  color: var(--red);
}

.parts-toolbar {
  display: flex;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 26px;
}

.parts-toolbar span {
  color: var(--muted);
  font-weight: 900;
}

.parts-back-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #dfe7ef;
  border-radius: 6px;
  color: var(--steel);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.parts-back-link:hover {
  border-color: rgba(215, 0, 29, 0.35);
  color: var(--red);
}

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

.part-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.part-card:hover {
  border-color: rgba(215, 0, 29, 0.28);
  box-shadow: 0 22px 52px rgba(16, 24, 32, 0.13);
  transform: translateY(-3px);
}

.part-card figure {
  display: grid;
  min-width: 0;
  place-items: center;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: #f7f9fb;
}

.part-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.part-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.part-card-body span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.part-card-body h3 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.part-card-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.part-card-body a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.part-card-body a:hover {
  background: #b90018;
}

@media (max-width: 720px) {
  .news-page-article {
    padding: 24px 18px;
  }

  .news-page-image {
    max-height: 360px;
  }
}

@media (max-width: 1100px) {
  .parts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .service-spares,
  .parts-category-grid {
    grid-template-columns: 1fr;
  }

  .service-spares .button {
    width: fit-content;
  }

  .parts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .spare-parts-page {
    width: 100%;
    overflow-x: hidden;
  }

  .spare-parts-page .section,
  .spare-parts-page .product-hero {
    width: 100%;
    max-width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .parts-category-grid,
  .parts-grid,
  .parts-toolbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .spare-parts-page .product-hero h1,
  .spare-parts-page .product-hero p,
  .parts-category-card h3,
  .parts-category-card p,
  .part-card-body h3,
  .part-card-body p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .spare-parts-page .product-hero h1,
  .parts-category-card h3 {
    font-size: 26px;
    line-height: 1.12;
  }

  .spare-parts-page .product-hero > * {
    max-width: 320px;
  }

  .parts-category-card > * {
    max-width: 280px;
  }

  .parts-category-card {
    padding: 24px;
  }

  .parts-category-card p,
  .spare-parts-page .product-hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .parts-breadcrumb {
    width: 100%;
    max-width: 100%;
    padding-top: 84px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .parts-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .part-card {
    min-height: 0;
    width: 100%;
  }

  .part-card figure {
    padding: 14px;
    overflow: hidden;
  }

  .part-card img {
    width: 88%;
    height: 100%;
  }

  .part-card-body a {
    width: 100%;
  }
}
