:root {
  --red: #e31d24;
  --red-dark: #b81018;
  --ink: #14171a;
  --muted: #626b75;
  --line: #e7eaee;
  --soft: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(20, 23, 26, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 clamp(210px, 18vw, 280px);
  order: 1;
  gap: 4px;
  min-width: 0;
}

.brand img {
  width: 176px;
  filter: contrast(1.12) saturate(1.12);
}

.brand span {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand span::before {
  display: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  order: 3;
  gap: 10px;
}

.site-nav {
  flex: 1 1 auto;
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
  color: #30363d;
  font-size: 15px;
  font-weight: 750;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 26px rgba(227, 29, 36, 0.22);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: #cfd5dc;
}

.button-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.nav-toggle {
  display: none;
}

.section {
  padding: clamp(68px, 8vw, 118px) clamp(20px, 4vw, 56px);
}

.hero {
  position: relative;
  min-height: clamp(610px, calc(100vh - 82px), 680px);
  overflow: clip;
  background:
    radial-gradient(circle at 78% 42%, rgba(227, 29, 36, 0.07), transparent 31%),
    linear-gradient(135deg, #fff 0%, #fff 50%, #f7f8fa 100%);
  color: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0) 0 43%, rgba(246, 248, 250, 0.36) 57%, rgba(240, 243, 246, 0.7) 100%),
    radial-gradient(circle at 53% 28%, rgba(227, 29, 36, 0.045), transparent 18%);
  pointer-events: none;
}

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

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
  width: min(100%, 1440px);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 40px) clamp(48px, 4vw, 64px) clamp(38px, 4vw, 62px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  overflow: visible;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(56px, 4.8vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 20px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subtitle,
.section-heading p,
.contact-copy p,
.about-copy p,
.quality-copy p,
.content-panel p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 30px;
  color: #5d6873;
  font-size: 18px;
  line-height: 1.62;
}

.hero .eyebrow {
  color: var(--red);
}

.hero .button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: #cfd5dc;
  backdrop-filter: none;
}

.hero .button-secondary:hover {
  color: var(--red);
  background: #fff;
  border-color: var(--red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 600px;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-metrics div {
  padding: 16px 22px 16px 0;
}

.hero-metrics dt {
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(490px, 39vw, 560px);
  isolation: isolate;
}

.hero-visual::before {
  display: none;
}

.hero-composition-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 24px 34px rgba(20, 23, 26, 0.14));
}

.hero-visual-image-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
  height: clamp(455px, 39vw, 560px);
  overflow: hidden;
}

.hero-visual-image-wrap::before {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 42%;
  height: 38%;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading.compact p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.applications .section-heading {
  max-width: none;
  text-align: center;
}

.applications .section-heading .eyebrow,
.applications .section-heading h2 {
  max-width: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.applications .section-heading h2 {
  white-space: nowrap;
  font-size: clamp(34px, 3.2vw, 46px);
}

.applications .section-heading p:not(.eyebrow) {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(15px, 1.45vw, 18px);
}

.product-section,
.quality-section,
.contact-section {
  background: var(--soft);
}

.product-section .section-heading {
  max-width: none;
  text-align: center;
}

.product-section .section-heading h2 {
  max-width: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  font-size: clamp(34px, 3.1vw, 44px);
}

.product-section .section-heading p:not(.eyebrow) {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(13px, 1.35vw, 18px);
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) 1fr;
  min-height: 520px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 23, 26, 0.08);
}

.product-media {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(145deg, #fff, #f1f3f5);
}

.product-primary {
  max-height: 420px;
  object-fit: contain;
}

[data-lightbox-image] {
  cursor: zoom-in;
}

[data-lightbox-image]:focus {
  outline: 3px solid rgba(227, 29, 36, 0.28);
  outline-offset: 4px;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.product-thumbs img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(10, 12, 15, 0.82);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox img {
  max-width: min(94vw, 1180px);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-content {
  padding: clamp(26px, 3vw, 42px);
}

.product-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--red);
  background: #fff1f2;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.spec-list span {
  color: var(--muted);
  font-size: 13px;
}

.spec-list strong {
  color: var(--ink);
  font-size: 15px;
}

.text-link {
  color: var(--red);
  font-weight: 800;
}

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

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

.quality-grid div {
  min-height: 96px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  font-weight: 700;
}

.application-card {
  position: relative;
  min-height: 190px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f6f8;
  border: 1px solid rgba(207, 213, 220, 0.9);
  border-radius: 8px;
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(20, 23, 26, 0.1);
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(1.01) saturate(0.98);
  transition: transform 220ms ease;
}

.application-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(10, 18, 28, 0.42) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  z-index: 1;
}

.application-card h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.12;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.application-card:hover img {
  transform: scale(1.04);
}

.compatibility-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.35fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.compatibility-copy {
  position: sticky;
  top: 112px;
}

.compatibility-copy h2 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.compatibility-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 18px;
  color: #5f6773;
  font-size: 19px;
  line-height: 1.62;
}

.compatibility-reminder {
  color: #30363d !important;
  font-weight: 800;
}

.compatibility-icon,
.compatibility-card-icon,
.compatibility-checklist span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: #fff4f4;
  border: 1px solid rgba(227, 29, 36, 0.18);
}

.compatibility-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(20, 23, 26, 0.08);
}

.compatibility-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
}

.compatibility-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(20, 23, 26, 0.07);
}

.compatibility-card {
  padding: clamp(24px, 3vw, 36px);
}

.compatibility-card-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.compatibility-card-heading h3,
.compatibility-help h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.18;
}

.compatibility-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  font-size: 30px;
}

.compatibility-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compatibility-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  color: #30363d;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.compatibility-checklist li:last-child {
  border-bottom: 0;
}

.compatibility-checklist span {
  width: 26px;
  height: 26px;
  color: #fff;
  background: #d13a31;
  border-color: #d13a31;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.printer-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.printer-type-grid div {
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 18px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fafafa);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.printer-type-grid span {
  color: var(--red);
  font-size: 42px;
  line-height: 1;
}

.printer-type-grid strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
}

.compatibility-help {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.compatibility-help p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.compatibility-help .button {
  min-width: 220px;
  min-height: 58px;
  line-height: 1.15;
  text-align: center;
}

.split-section,
.about-section,
.contact-section,
.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.content-panel {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 23, 26, 0.07);
}

.notice {
  margin: 22px 0 0;
  padding: 18px;
  color: #7a2b00;
  background: #fff5ed;
  border-left: 4px solid var(--red);
  font-weight: 700;
}

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

.about-section {
  align-items: center;
}

.about-visual {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(227, 29, 36, 0.08), transparent 30%),
    radial-gradient(circle at 86% 86%, rgba(0, 160, 227, 0.1), transparent 32%),
    linear-gradient(180deg, #fff, #f6f7f9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 23, 26, 0.08);
}

.about-video-card {
  gap: 12px;
  padding: 12px;
  overflow: hidden;
}

.about-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f4f6f8;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 23, 26, 0.08);
}

.about-video-label {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(227, 29, 36, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 23, 26, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.about-collage-main,
.about-collage-grid div {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(20, 23, 26, 0.06);
}

.about-collage-main {
  min-height: 330px;
  padding: 18px;
}

.about-collage-main img,
.about-collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-collage-main span,
.about-collage-grid strong {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: inline-flex;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(207, 213, 220, 0.82);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.about-collage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-collage-grid div {
  min-height: 180px;
  padding: 14px;
}

.about-badges {
  position: absolute;
  right: 22px;
  top: 22px;
  display: grid;
  gap: 10px;
}

.about-badges span {
  padding: 8px 12px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(227, 29, 36, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 23, 26, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.about-copy {
  max-width: 660px;
  text-align: left;
}

.about-copy h2 {
  max-width: 650px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  line-height: 1.65;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.about-points div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(20, 23, 26, 0.05);
}

.about-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.about-points span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-actions .button {
  min-height: 50px;
  padding: 15px 22px;
}

.about-actions p {
  flex-basis: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #31363c;
  font-size: 14px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd5dc;
  border-radius: 4px;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(227, 29, 36, 0.18);
  border-color: var(--red);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 24px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.form-message.is-success {
  color: #137333;
}

.form-message.is-error {
  color: var(--red);
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.full-field {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 64px clamp(20px, 4vw, 56px) 28px;
  background: #f8f9fb;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(180px, 0.85fr) minmax(160px, 0.75fr) minmax(260px, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.site-footer img {
  width: 210px;
  max-width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.site-footer p {
  margin: 0;
  color: #626b75;
  font-size: 15px;
  line-height: 1.65;
}

.footer-brand p {
  max-width: 360px;
}

.footer-brand img + p {
  margin-top: 22px;
}

.footer-trust {
  margin-top: 14px !important;
  color: var(--red) !important;
  font-weight: 700;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 11px;
}

.footer-column a,
.footer-contact a {
  color: #4f5964;
  font-size: 15px;
  line-height: 1.35;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.footer-contact {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 23, 26, 0.06);
}

.footer-contact dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.footer-contact dt {
  margin-bottom: 3px;
  color: #7b858f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-contact dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.footer-contact .button {
  width: 100%;
  min-height: 48px;
  padding: 14px 18px;
  justify-content: center;
}

.footer-note {
  margin-top: 14px !important;
  font-size: 13px !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1320px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid #dde2e7;
}

.footer-bottom p {
  color: #7b858f;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 84px;
    gap: 18px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .brand img {
    width: 148px;
  }

  .brand {
    flex: 0 1 180px;
  }

  .brand span {
    max-width: 180px;
    font-size: 12px;
    line-height: 1.2;
    white-space: normal;
  }

  .brand span::before {
    display: none !important;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .nav-toggle span {
    display: block;
    height: 3px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 12px;
    font-size: 16px;
  }
  .split-section,
  .compatibility-section,
  .about-section,
  .contact-section,
  .quality-section {
    grid-template-columns: 1fr;
  }

  .compatibility-copy {
    position: static;
  }

  .compatibility-copy h2 {
    max-width: 760px;
  }

  .compatibility-panel {
    grid-template-columns: 1fr;
  }

  .product-section .section-heading p:not(.eyebrow) {
    white-space: nowrap;
    font-size: clamp(12px, 1.45vw, 14px);
  }

  .applications .section-heading p:not(.eyebrow) {
    white-space: nowrap;
    font-size: clamp(12px, 1.35vw, 14px);
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 18px clamp(20px, 5vw, 42px) 42px;
  }

  .hero-copy {
    max-width: 760px;
  }

  h1 {
    max-width: 700px;
    margin-bottom: 22px;
    font-size: clamp(48px, 6.4vw, 60px);
    line-height: 1.07;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hero-subtitle {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .hero-actions {
    margin-bottom: 26px;
  }

  .hero-metrics div {
    padding: 13px 18px 13px 0;
  }

  .hero-metrics dt {
    font-size: 29px;
  }

  .hero-metrics dd {
    font-size: 16px;
  }

  .hero-visual {
    min-height: clamp(390px, 52vw, 490px);
  }

  .hero-visual-image-wrap {
    max-width: 820px;
    height: clamp(375px, 52vw, 490px);
  }

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

  .product-card {
    min-height: auto;
  }

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

  .application-card {
    min-height: 150px;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    max-width: 170px;
  }

  .brand img {
    width: 138px;
  }

  .brand span {
    max-width: 170px;
    margin-top: 0;
    color: var(--red);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .brand span::before {
    display: none;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
    margin-left: auto;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .nav-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 56px 18px;
  }

  .product-section .section-heading h2 {
    white-space: normal;
    font-size: clamp(30px, 9vw, 38px);
  }

  .applications .section-heading h2 {
    white-space: normal;
    font-size: clamp(30px, 9vw, 38px);
  }

  .applications .section-heading p:not(.eyebrow) {
    white-space: normal;
    font-size: 17px;
  }

  .product-section .section-heading p:not(.eyebrow) {
    white-space: normal;
    font-size: 17px;
  }

  .hero-container {
    padding: 18px 18px 36px;
  }

  .compatibility-copy h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .compatibility-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .about-points,
  .about-collage-grid {
    grid-template-columns: 1fr;
  }

  .about-collage-main,
  .about-collage-grid div {
    min-height: 220px;
  }

  .about-badges {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4px;
  }

  .about-badges span {
    text-align: center;
  }

  .about-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-actions .button {
    width: 100%;
    justify-content: center;
  }

  .about-video-label {
    left: 18px;
    top: 18px;
  }

  .compatibility-help {
    grid-template-columns: 1fr;
  }

  .compatibility-card {
    padding: 22px;
  }

  .compatibility-card-heading {
    gap: 14px;
  }

  .compatibility-card-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

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

  .printer-type-grid div {
    min-height: 124px;
    padding: 14px 10px;
  }

  .printer-type-grid span {
    font-size: 34px;
  }

  .printer-type-grid strong {
    font-size: 14px;
  }

  .compatibility-help .button {
    width: 100%;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 10.6vw, 46px);
    line-height: 1.08;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.09em;
  }

  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .hero-metrics,
  .application-grid,
  .quality-grid,
  .inquiry-form,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .application-grid {
    gap: 16px;
  }

  .application-card {
    min-height: 220px;
    aspect-ratio: 16 / 10.5;
  }

  .application-card h3 {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 22px;
  }

  .hero-metrics div {
    padding: 11px 0;
  }

  .hero-metrics dt {
    font-size: 27px;
  }

  .hero-metrics dd {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 305px;
  }

  .hero-visual-image-wrap {
    height: 305px;
  }

  .product-primary {
    max-height: 330px;
  }

  .product-thumbs img {
    height: 78px;
  }

  .site-footer {
    padding-bottom: 22px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-contact {
    padding: 20px;
  }
}

section#applications > .section-heading.compact {
  max-width: 100%;
  text-align: center;
}

section#applications > .section-heading.compact > .eyebrow,
section#applications > .section-heading.compact > h2 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

section#applications > .section-heading.compact > p:not(.eyebrow) {
  display: block;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

section#compatibility > .compatibility-copy {
  text-align: center;
}

section#compatibility > .compatibility-copy > .eyebrow,
section#compatibility > .compatibility-copy > h2,
section#compatibility > .compatibility-copy > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

section#compatibility .compatibility-support {
  display: none !important;
}

section#compatibility .compatibility-warning {
  display: none !important;
}

section#quality > .quality-copy {
  text-align: center;
}

section#quality > .quality-copy > .eyebrow,
section#quality > .quality-copy > h2,
section#quality > .quality-copy > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

section#about > .about-copy {
  text-align: left;
}

section#about > .about-copy > .eyebrow,
section#about > .about-copy > h2,
section#about > .about-copy > p:not(.eyebrow) {
  margin-left: 0;
  margin-right: 0;
}
