.catalog-hero {
  position: relative;
  padding: 190px 0 110px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(8, 16, 17, 0.88) 0%, rgba(8, 16, 17, 0.76) 42%, rgba(8, 16, 17, 0.58) 100%),
    var(--catalog-hero-image, none);
  background-position: center, var(--catalog-hero-position, center center);
  background-repeat: no-repeat;
  background-size: auto, cover;
}

.catalog-hero::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 650px;
  height: 650px;
  border: 100px solid rgba(199, 241, 90, 0.08);
  border-radius: 50%;
  content: "";
}

.page-technologies {
  --catalog-hero-image: url("../images/technologies/technologies-hero-generated.webp");
  --catalog-hero-position: center center;
}

.page-technologies .catalog-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.page-ctp {
  --catalog-hero-image: url("../images/technologies/ctp/hero-kodak-ctp.jpg");
  --catalog-hero-position: center 50%;
}

.page-ctp .home-header .header-inner {
  width: min(calc(100% - 88px), 1760px);
  min-height: 102px;
  margin-top: 14px;
  padding: 0 16px 0 18px;
  border-radius: 16px;
}

.page-ctp .home-header:not(.scrolled) .brand-image {
  width: 292px;
}

.page-ctp .home-header.scrolled .header-inner {
  min-height: 80px;
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .page-ctp .home-header .header-inner,
  .page-ctp .home-header.scrolled .header-inner {
    width: min(calc(100% - 32px), 1450px);
    min-height: 72px;
    margin-top: 8px;
    padding: 0 12px 0 14px;
    border-radius: 12px;
  }

  .page-ctp .home-header:not(.scrolled) .brand-image {
    width: 190px;
  }
}

.page-offset {
  --catalog-hero-image: url("../images/technologies/offset-printing.webp");
  --catalog-hero-position: center 44%;
}

.page-finishing {
  --catalog-hero-position: center center;
}

.page-finishing .catalog-hero h1 {
  max-width: 900px;
}

.page-finishing .catalog-section {
  padding: 82px 0 92px;
}

.page-die-cutting {
  --catalog-hero-image: url("../images/technologies/finishing/die-cutting/hero.jpg");
  --catalog-hero-position: center 52%;
}

.page-foil-stamping {
  --catalog-hero-image: url("../images/technologies/finishing/foil-stamping/hero-generated.webp");
  --catalog-hero-position: center 48%;
}

.page-hot-lamination {
  --catalog-hero-image: url("../images/technologies/finishing/hot-lamination/hero-generated.webp");
  --catalog-hero-position: center center;
}

.page-specialty-print-finishing {
  --catalog-hero-image: url("../images/technologies/silk-screen-printing/hero-generated.webp");
  --catalog-hero-position: center center;
}

.page-pfl {
  --catalog-hero-image: url("../images/technologies/pfl/hero-generated.webp");
  --catalog-hero-position: center center;
}

.page-thermal-printing {
  --catalog-hero-image: url("../images/technologies/thermal-printing/hero-generated.webp");
  --catalog-hero-position: center center;
}

.page-folding-gluing {
  --catalog-hero-image: url("../images/technologies/finishing/folding-gluing/hero.jpg");
  --catalog-hero-position: center 50%;
}

.page-offset .catalog-section {
  padding: 82px 0 92px;
}

.page-brands {
  --catalog-hero-image: url("../images/page-heroes/brands-earth-hero.jpg");
  --catalog-hero-position: center center;
}

.page-certifications {
  --catalog-hero-image: url("../images/page-heroes/certifications-hero.webp");
  --catalog-hero-position: center 38%;
}

.catalog-hero .container {
  position: relative;
  z-index: 1;
}

.catalog-hero h1 {
  max-width: 980px;
  margin-bottom: 25px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.catalog-hero > .container > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.15rem;
}

.catalog-section {
  padding: 110px 0 130px;
}

.catalog-section-alt {
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.08), transparent 18%),
    radial-gradient(circle at bottom right, rgba(228, 0, 124, 0.06), transparent 18%),
    linear-gradient(180deg, #f4f4f4 0%, #e8e8e8 100%);
}

.catalog-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 58px;
  gap: 56px;
}

.catalog-intro h2 {
  max-width: 780px;
}

.catalog-intro > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--muted);
}

.technologies-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 24px;
}

.service-page-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-page-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 16, 17, 0.96), transparent 70%);
  content: "";
}

.service-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  transition: transform 450ms ease, filter 250ms ease;
}

.service-page-card:hover img {
  filter: saturate(1);
  transform: scale(1.045);
}

.service-page-card-die-cutting img {
  transform: scale(1);
  transform-origin: center center;
}

.service-page-card-die-cutting:hover img {
  transform: scale(1.03);
}

.service-page-card-folding-gluing img {
  transform: scale(1.28);
  transform-origin: center center;
}

.service-page-card-folding-gluing:hover img {
  transform: scale(1.31);
}

.service-page-card span,
.service-page-card h2,
.service-page-card i {
  position: absolute;
  z-index: 2;
}

.service-page-card span {
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  color: var(--white);
  border-radius: 8px;
  background: rgba(8, 16, 17, 0.9);
  box-shadow: 0 10px 22px rgba(8, 16, 17, 0.24);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-page-card h2 {
  right: 48px;
  bottom: 16px;
  left: 16px;
  font-size: 1.14rem;
}

.service-page-card i {
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-style: normal;
}

.catalog-section-future-technologies {
  padding-top: 0;
}

.catalog-section-products-future {
  padding-top: 0;
}

.products-future-panel {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid rgba(12, 24, 30, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 210, 0, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 247, 249, 0.96) 100%);
  box-shadow: 0 24px 60px rgba(10, 20, 24, 0.08);
}

.products-future-panel__icon {
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(8, 16, 17, 0.96), rgba(18, 30, 35, 0.94));
}

.products-future-panel__icon svg {
  width: 50px;
  height: 50px;
  fill: var(--yellow);
}

.products-future-panel__eyebrow {
  margin: 0 0 10px;
  color: rgba(16, 27, 28, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.products-future-panel__content h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.08;
}

.products-future-panel__content > p:last-of-type {
  margin: 0;
  max-width: 920px;
  color: var(--muted);
}

.products-future-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.products-future-panel__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid rgba(12, 24, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-page-card-future {
  cursor: pointer;
  width: 100%;
  padding: 0;
  text-align: left;
  border: 0;
  font: inherit;
  appearance: none;
}

.service-page-card-future img {
  filter: saturate(0.5) brightness(0.88);
}

.service-page-card-future h2 {
  bottom: 16px;
  right: 16px;
}

.service-page-card-future .future-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page-card-future .future-status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 16, 17, 0.56);
  backdrop-filter: blur(8px);
}

.service-page-card-future .future-status svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.service-page-card-future:hover .future-status {
  background: rgba(8, 16, 17, 0.72);
}

/* Services & products page */
.products-hero {
  background-image:
    linear-gradient(90deg, rgba(8, 16, 17, 0.92) 0%, rgba(8, 16, 17, 0.76) 48%, rgba(8, 16, 17, 0.58) 100%),
    url("../images/products/offset-printing-new.webp");
  background-position: center, center 48%;
}

.products-current-section {
  padding-bottom: 104px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 181, 226, 0.08), transparent 22%),
    linear-gradient(180deg, #f7f7f5 0%, #eceeeb 100%);
}

.products-section-intro {
  align-items: end;
  margin-bottom: 38px;
}

.products-section-intro > div {
  max-width: 760px;
}

.products-section-intro .eyebrow {
  margin-bottom: 14px;
}

.products-section-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.products-section-intro > p {
  max-width: 420px;
}

.products-current-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, 23vw);
  gap: 16px;
}

.products-service-card {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  color: #fff;
  background: #122d28;
  box-shadow: 0 20px 42px rgba(11, 37, 31, 0.12);
  isolation: isolate;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 280ms ease;
}

.products-service-card.reveal.visible {
  transform: translateY(0);
  opacity: 1;
}

.products-service-card:nth-child(2) { transition-delay: 80ms; }
.products-service-card:nth-child(3) { transition-delay: 160ms; }
.products-service-card:nth-child(4) { transition-delay: 240ms; }
.products-service-card:nth-child(5) { transition-delay: 320ms; }

.products-service-card--wide {
  grid-column: span 3;
}

.products-service-card:not(.products-service-card--wide) {
  grid-column: span 3;
}

.products-service-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 24, 22, 0.02) 28%, rgba(6, 24, 22, 0.92) 100%);
  content: "";
}

.products-service-card::after {
  position: absolute;
  right: -54px;
  bottom: -68px;
  z-index: 1;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(201, 244, 111, 0.24);
  border-radius: 50%;
  content: "";
  transition: transform 500ms ease;
}

.products-service-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.015);
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 350ms ease;
}

.products-service-card:hover {
  box-shadow: 0 28px 56px rgba(11, 37, 31, 0.2);
}

.products-service-card:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.07);
}

.products-service-card:hover::after {
  transform: scale(1.14);
}

.products-service-card__number,
.products-service-card__content {
  position: absolute;
  z-index: 2;
}

.products-service-card__number {
  top: 16px;
  left: 16px;
  display: inline-flex;
  min-width: 32px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 29, 26, 0.68);
  color: #d8f77c;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.products-service-card__content {
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.products-service-card__content p {
  margin: 0 0 8px;
  color: rgba(242, 247, 220, 0.7);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.products-service-card__content h2 {
  max-width: 15ch;
  margin: 0;
  color: #f2f7dc;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.products-service-card__content > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #d8f77c;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-service-card__content i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #d8f77c;
  color: #123d2d;
  font-size: 0.8rem;
  font-style: normal;
}

.products-future-section {
  padding-top: 104px;
  background: #09291f;
  color: #f2f7dc;
}

.products-future-section .products-section-intro > p,
.products-future-section .catalog-intro > p {
  color: rgba(242, 247, 220, 0.68);
}

.products-future-section .products-section-intro h2 {
  color: #f2f7dc;
}

.products-future-section .products-section-intro .eyebrow {
  color: #c9f46f;
}

.products-future-grid .service-page-card {
  min-height: 300px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .products-current-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(260px, 42vw);
  }

  .products-service-card--wide,
  .products-service-card:not(.products-service-card--wide) {
    grid-column: span 1;
  }

  .products-service-card:first-child,
  .products-service-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .products-current-section {
    padding-bottom: 74px;
  }

  .products-section-intro {
    display: grid;
    gap: 22px;
    margin-bottom: 28px;
  }

  .products-current-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .products-service-card--wide,
  .products-service-card:not(.products-service-card--wide),
  .products-service-card:first-child,
  .products-service-card:last-child {
    grid-column: span 1;
  }

  .products-future-section {
    padding-top: 74px;
  }
}

body.modal-open {
  overflow: hidden;
}

.future-service-modal[hidden] {
  display: none;
}

.future-service-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.future-service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.future-service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 23, 0.78);
  backdrop-filter: blur(14px) saturate(1.08);
}

.future-service-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  width: min(100%, 900px);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 12%, rgba(228, 0, 124, 0.09), transparent 28%),
    radial-gradient(circle at 12% 100%, rgba(255, 210, 0, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f7f7 100%);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(28px) scale(0.94) rotateX(3deg);
  transform-origin: center bottom;
  transition: opacity 420ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.future-service-modal.is-open .future-service-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
}

.future-service-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: rgba(16, 27, 28, 0.72);
  border: 0;
  border-radius: 50%;
  background: rgba(16, 27, 28, 0.06);
  padding: 0;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.future-service-modal__close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.future-service-modal__close:hover {
  color: var(--ink);
  background: rgba(16, 27, 28, 0.12);
  transform: rotate(8deg);
}

.future-service-modal__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: 24px;
  background: #10282b;
  isolation: isolate;
}

.future-service-modal__visual::before,
.future-service-modal__visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.future-service-modal__visual::before {
  width: 280px;
  height: 280px;
  top: -90px;
  right: -110px;
  box-shadow: 0 0 0 24px rgba(0, 181, 226, 0.05), 0 0 0 48px rgba(255, 210, 0, 0.04);
}

.future-service-modal__visual::after {
  width: 150px;
  height: 150px;
  bottom: 75px;
  left: -80px;
  border-color: rgba(255, 210, 0, 0.24);
}

.future-service-modal__image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: #193437;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.27);
}

.future-service-modal__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 181, 226, 0.06), transparent 48%, rgba(255, 210, 0, 0.12));
  content: "";
  pointer-events: none;
}

.future-service-modal__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.future-service-modal.is-open .future-service-modal__image-wrap img {
  transform: scale(1.045);
}

.future-service-modal__scan-line {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 8%;
  width: 84%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--yellow), transparent);
  box-shadow: 0 0 16px rgba(0, 181, 226, 0.75);
  opacity: 0;
}

.future-service-modal.is-open .future-service-modal__scan-line {
  animation: future-modal-scan 2.8s ease-in-out 180ms infinite;
}

@keyframes future-modal-scan {
  0%, 100% { transform: translateY(14px); opacity: 0; }
  18%, 72% { opacity: 1; }
  90% { transform: translateY(330px); opacity: 0; }
}

.future-service-modal__signal {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.future-service-modal__signal span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(190, 242, 74, 0.1);
  animation: future-modal-pulse 1.7s ease-in-out infinite;
}

@keyframes future-modal-pulse {
  50% { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(190, 242, 74, 0.02); }
}

.future-service-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 62px 50px 48px;
}

.future-service-modal__eyebrow {
  margin: 0 0 15px;
  color: rgba(16, 27, 28, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.future-service-modal__dialog h2 {
  margin: 0 0 20px;
  max-width: none;
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.future-service-modal__copy {
  margin: 0 0 20px;
  max-width: 44ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.future-service-modal__note {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 17px 0 0;
  max-width: 44ch;
  border-top: 1px solid rgba(16, 27, 28, 0.13);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.future-service-modal__note strong {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.future-service-modal__continue {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: fit-content;
  margin-top: 28px;
  padding: 13px 16px 13px 18px;
  color: var(--ink);
  border: 1px solid rgba(16, 27, 28, 0.17);
  border-radius: 999px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.future-service-modal__continue span {
  font-size: 1rem;
  line-height: 1;
}

.future-service-modal__continue:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .future-service-modal { padding: 14px; }
  .future-service-modal__dialog { grid-template-columns: 1fr; min-height: 0; max-height: calc(100vh - 28px); overflow: auto; }
  .future-service-modal__visual { min-height: 250px; padding: 16px; }
  .future-service-modal__image-wrap,
  .future-service-modal__image-wrap img { min-height: 220px; }
  .future-service-modal__content { padding: 34px 26px 28px; }
  .future-service-modal__dialog h2 { font-size: clamp(2.5rem, 13vw, 4rem); }
  @keyframes future-modal-scan {
    0%, 100% { transform: translateY(10px); opacity: 0; }
    18%, 72% { opacity: 1; }
    90% { transform: translateY(200px); opacity: 0; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .future-service-modal,
  .future-service-modal__dialog,
  .future-service-modal__image-wrap img,
  .future-service-modal__close,
  .future-service-modal__continue { transition: none; }
  .future-service-modal.is-open .future-service-modal__scan-line,
  .future-service-modal__signal span { animation: none; }
}

.service-detail-main {
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.1), transparent 18%),
    radial-gradient(circle at top right, rgba(228, 0, 124, 0.08), transparent 18%),
    radial-gradient(circle at bottom right, rgba(255, 210, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #f3f3f3 0%, #e7e7e7 100%);
}

.page-ctp .catalog-section,
.page-ctp .catalog-section-alt {
  padding: 72px 0 80px;
  background: transparent;
}

.page-ctp main .container {
  width: min(calc(100% - 32px), 1440px);
}

.ctp-section-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 40px 44px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.09), transparent 28%),
    radial-gradient(circle at top right, rgba(228, 0, 124, 0.07), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 210, 0, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 248, 250, 0.98) 100%);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
}

.ctp-section-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.16) 100%);
  pointer-events: none;
  content: "";
}

.ctp-section-panel > * {
  position: relative;
  z-index: 1;
}

.service-detail-grid,
.service-detail-capacity {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 36px;
  align-items: center;
}

.service-detail-image-card,
.service-detail-capacity-image,
.service-detail-gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.1);
}

.service-detail-image-card img,
.service-detail-capacity-image img,
.service-detail-gallery-card img {
  width: 100%;
  display: block;
}

.service-detail-image-card-ctp img {
  min-height: 460px;
  object-fit: cover;
}

.ctp-intro-panel {
  padding: 32px 36px;
}

.ctp-intro-panel .service-detail-grid {
  gap: 28px;
  align-items: center;
}

.ctp-intro-panel .service-detail-copy {
  padding: 30px;
}

.ctp-intro-panel .service-detail-copy h2 {
  font-size: clamp(1.95rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.ctp-intro-panel .service-detail-copy > p:last-of-type {
  font-size: 1rem;
}

.ctp-intro-panel .service-detail-points {
  gap: 14px;
  margin-top: 22px;
}

.ctp-intro-panel .service-detail-points article {
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, rgba(13, 18, 19, 0.98) 0%, rgba(24, 31, 33, 0.98) 100%);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.14);
}

.ctp-intro-panel .service-detail-points strong {
  color: var(--white);
}

.ctp-intro-panel .service-detail-points p {
  color: rgba(255, 255, 255, 0.74);
}

.ctp-intro-panel .service-detail-image-card-ctp img {
  min-height: 540px;
  object-fit: cover;
  object-position: center center;
}

.ctp-intro-panel .service-detail-image-card-ctp {
  align-self: center;
}

.offset-intro-panel .service-detail-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
}

.offset-intro-panel .service-detail-points article {
  background: linear-gradient(180deg, rgba(13, 18, 19, 0.98) 0%, rgba(24, 31, 33, 0.98) 100%);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.14);
}

.offset-intro-panel .service-detail-points strong {
  color: var(--white);
}

.offset-intro-panel .service-detail-image-card-ctp img {
  min-height: 540px;
  object-fit: cover;
  object-position: center center;
}

.page-specialty-print-finishing .service-detail-image-card-silk-section img {
  object-position: 28% center;
}

.page-specialty-print-finishing .service-detail-image-card-silk-section img[src*="sakurai-sc72a-specialty-editorial"] {
  min-height: 0;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.page-specialty-print-finishing .service-detail-image-card-silk-section img[src*="specialty-products-editorial"] {
  min-height: 0;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.page-pfl .service-detail-image-card-pfl img {
  min-height: 540px;
  object-fit: cover;
  object-position: center center;
}

.page-pfl .pfl-machine-media-jr1531 img {
  object-fit: contain;
  object-position: center center;
  transform: scale(0.88);
}

.page-pfl .pfl-machine-media-h90 img {
  object-fit: contain;
  object-position: center center;
  transform: scale(0.82);
}

.page-thermal-printing .thermal-machine-media img {
  object-fit: contain;
  object-position: center center;
  transform: scale(1.06);
}

.offset-intro-panel .service-detail-points p {
  color: rgba(255, 255, 255, 0.74);
}

.offset-stat-grid {
  margin-bottom: 24px;
}

.offset-shared-specs {
  margin-bottom: 22px;
}

.offset-machine-grid {
  margin-bottom: 0;
  gap: 22px;
}

.offset-machine-grid .ctp-machine-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.specialty-multi-machine-card {
  grid-column: 1 / -1;
}

.specialty-multi-machine-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas:
    "media copy"
    "uses uses";
  gap: 10px 14px;
  align-items: start;
}

.specialty-multi-machine-media {
  grid-area: media;
  margin: 0;
  padding: 12px 8px 0 18px;
  align-self: center;
}

.specialty-multi-machine-media img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
  object-position: left center;
}

.specialty-multi-machine-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 24px 0 6px;
  align-self: center;
}

.specialty-multi-machine-copy > p {
  margin: 0;
  max-width: 60ch;
  line-height: 1.5;
}

.specialty-multi-uses {
  grid-area: uses;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 24px 24px;
}

.specialty-multi-uses > article {
  padding: 13px 14px 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.06);
}

.specialty-multi-uses h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.98rem;
}

.specialty-multi-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.specialty-multi-facts article {
  min-height: auto;
  padding: 8px 10px 7px;
  border-radius: 18px;
}

.specialty-multi-facts span {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.specialty-multi-facts strong {
  font-size: 0.86rem;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .specialty-multi-machine-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "uses";
  }

  .specialty-multi-machine-media {
    padding: 12px 18px 0;
  }

  .specialty-multi-machine-media img {
    max-height: 320px;
    object-position: center center;
  }

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

  .specialty-multi-uses {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }
}

.offset-machine-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 8.8;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
}

.offset-machine-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.page-folding-gluing .offset-machine-media {
  padding: 0;
  overflow: hidden;
}

.page-folding-gluing .folding-gluing-machine-media img {
  transition: transform 0.35s ease;
  transform-origin: center center;
}

.page-folding-gluing .folding-gluing-machine-media-hoson img {
  transform: scale(0.96);
}

.page-folding-gluing .folding-gluing-machine-media-rongda img {
  transform: scale(1.38);
}

.page-folding-gluing .folding-gluing-machine-media-rolam img {
  transform: scale(1);
  object-fit: contain;
  object-position: center center;
}

.offset-machine-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.offset-machine-facts article {
  padding: 11px 13px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96) 0%, rgba(31, 31, 31, 0.96) 100%);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.14);
}

.offset-machine-facts article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.offset-machine-facts span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offset-machine-facts strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.35;
}

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

.offset-support-card {
  min-height: 0;
}

.offset-support-card .ctp-step-card-top {
  justify-content: space-between;
  margin-bottom: 12px;
}

.offset-support-card .ctp-step-card-top span {
  color: rgba(255, 255, 255, 0.44);
}

.offset-support-card .ctp-step-card-top i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.offset-support-card .ctp-step-card-top svg {
  width: 24px;
  height: 24px;
}

.offset-support-card .ctp-step-card-top svg path,
.offset-support-card .ctp-step-card-top svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offset-support-card-cyan .ctp-step-card-top i {
  color: var(--cyan);
  background: rgba(0, 181, 226, 0.12);
}

.offset-support-card-magenta .ctp-step-card-top i {
  color: var(--magenta);
  background: rgba(228, 0, 124, 0.12);
}

.offset-support-card-yellow .ctp-step-card-top i {
  color: #b68700;
  background: rgba(255, 210, 0, 0.18);
}

.offset-support-card-cyan .ctp-step-card-top svg {
  animation: offset-support-sparkle 5.2s ease-in-out infinite;
}

.offset-support-card-magenta .ctp-step-card-top svg {
  animation: offset-support-layers 5.8s ease-in-out infinite;
}

.offset-support-card-yellow .ctp-step-card-top svg {
  animation: offset-support-droplets 5.1s ease-in-out infinite;
}

.offset-support-card h3 {
  margin-bottom: 12px;
}

@keyframes offset-support-sparkle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.03); }
}

@keyframes offset-support-layers {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px) scale(1.02); }
}

@keyframes offset-support-droplets {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px) rotate(2deg); }
}

.page-offset .catalog-intro {
  margin-bottom: 42px;
}

.page-offset .ctp-machine-copy {
  padding: 22px 22px 20px;
}

.page-offset .ctp-machine-copy > p {
  margin-bottom: 14px;
}

.service-detail-image-card-compact img {
  min-height: 300px;
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.service-detail-copy,
.service-detail-capacity-panel {
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 244, 244, 0.98) 100%);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
}

.service-detail-copy h2,
.service-detail-capacity-copy h2,
.service-detail-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.service-detail-copy > p:last-of-type,
.service-detail-capacity-copy > p:last-of-type,
.service-detail-cta p:last-of-type {
  color: var(--muted);
}

.service-detail-points,
.service-detail-machine-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.service-detail-points article,
.service-detail-machine-list article {
  padding: 18px 18px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 247, 247, 0.78) 100%);
}

.service-detail-points strong,
.service-detail-machine-list strong,
.service-detail-stat-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-points p,
.service-detail-machine-list p {
  margin: 0;
  color: var(--muted);
}

.service-detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.service-detail-stat-card {
  padding: 24px 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 27, 28, 0.98) 0%, rgba(22, 37, 39, 0.98) 100%);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.14);
}

.service-detail-stat-card span,
.service-detail-stat-card p {
  color: rgba(255, 255, 255, 0.68);
}

.service-detail-stat-card strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1;
}

.ctp-shared-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.ctp-shared-spec {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 181, 226, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(13, 18, 19, 0.98) 0%, rgba(21, 27, 29, 0.98) 100%);
  box-shadow: 0 20px 38px rgba(17, 17, 17, 0.16);
}

.ctp-shared-spec span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctp-shared-spec strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
  line-height: 1;
}

.service-detail-capacity-copy {
  padding-right: 14px;
}

.service-detail-capacity-panel {
  display: grid;
  gap: 22px;
}

.service-detail-grid-compact {
  align-items: start;
  gap: 22px;
}

.service-detail-grid-compact .service-detail-copy,
.service-detail-grid-compact .service-detail-image-card {
  padding: 26px;
}

.service-detail-grid-compact .service-detail-copy h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.service-detail-grid-compact .service-detail-points {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.service-detail-grid-compact .service-detail-points article {
  padding: 14px 16px;
}

.catalog-intro-compact {
  margin-bottom: 24px;
}

.ctp-steps-panel .catalog-intro-compact {
  margin-bottom: 38px;
}

.ctp-densitometer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: 38px;
  align-items: center;
}

.ctp-densitometer-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.ctp-densitometer-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.ctp-densitometer-copy > p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
}

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

.ctp-densitometer-points article {
  padding: 18px 18px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 247, 247, 0.78) 100%);
}

.ctp-densitometer-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctp-densitometer-points p {
  margin: 0;
  color: var(--muted);
}

.ctp-densitometer-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  margin: 0;
  padding: 12px;
  border-radius: 26px;
  background: #ffffff;
}

.ctp-densitometer-media img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.ctp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ctp-step-card {
  min-height: 100%;
  padding: 30px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 18, 19, 0.98) 0%, rgba(22, 29, 31, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.12);
}

.ctp-step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.ctp-step-card span {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctp-step-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.ctp-step-card i svg {
    width: 24px;
    height: 24px;
}

.ctp-step-card i svg path,
.ctp-step-card i svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ctp-step-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: var(--white);
}

.ctp-step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.ctp-step-card-cyan i {
  color: var(--cyan);
  background: rgba(0, 181, 226, 0.12);
}

.ctp-step-card-magenta i {
  color: var(--magenta);
  background: rgba(228, 0, 124, 0.12);
}

.ctp-step-card-yellow i {
    color: #b68700;
    background: rgba(255, 210, 0, 0.18);
}

.ctp-step-card-cyan i svg {
    animation: ctp-step-file-float 5.6s ease-in-out infinite;
}

.ctp-step-card-cyan .ctp-step-icon-check {
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
    animation: ctp-step-check-draw 5.6s ease-in-out infinite;
}

.ctp-step-card-magenta i svg {
    animation: ctp-step-scan-float 5.1s ease-in-out infinite;
}

.ctp-step-card-magenta .ctp-step-icon-scan {
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
    animation: ctp-step-scan-line 2.2s ease-in-out infinite;
}

.ctp-step-card-yellow .ctp-step-icon-cog {
    transform-origin: center;
    animation: ctp-step-cog-turn 6.8s linear infinite;
}

@keyframes ctp-step-file-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes ctp-step-check-draw {
    0%, 18% { stroke-dashoffset: 10; }
    34%, 78% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 10; }
}

@keyframes ctp-step-scan-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes ctp-step-scan-line {
    0%, 100% { stroke-dashoffset: 10; opacity: 0.75; }
    50% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes ctp-step-cog-turn {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ctp-machine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 34px;
}

.ctp-machine-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
    box-shadow: 0 26px 56px rgba(17, 17, 17, 0.1), 0 2px 0 rgba(255, 255, 255, 0.95) inset;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ctp-machine-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 34px 66px rgba(17, 17, 17, 0.14), 0 2px 0 rgba(255, 255, 255, 0.98) inset;
}

.ctp-machine-media {
    margin: 0;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.ctp-machine-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctp-machine-media img[src*="sakurai-sc72a-specialty-editorial"] {
  object-fit: contain;
  object-position: center center;
}

.ctp-machine-copy {
  padding: 26px;
}

.ctp-machine-index {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(16, 27, 28, 0.36);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ctp-machine-copy h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.ctp-machine-copy > p {
  margin-bottom: 18px;
  color: var(--muted);
}

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

.ctp-machine-facts article {
  min-height: 92px;
}

.ctp-machine-facts strong {
  font-size: 0.98rem;
}

.ctp-machine-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ctp-machine-metrics span {
  display: inline-flex;
  padding: 10px 12px;
  color: rgba(16, 27, 28, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(0, 181, 226, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-detail-gallery {
  display: grid;
  gap: 18px;
}

.service-detail-gallery-card img {
  min-height: 280px;
  object-fit: cover;
}

.service-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 36px 38px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(0, 181, 226, 0.1) 0%, rgba(255, 255, 255, 0.98) 44%, rgba(255, 0, 138, 0.08) 100%);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
}

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

.product-sector-card,
.product-note-card {
  padding: 34px 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 244, 244, 0.98) 100%);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.08);
}

.product-sector-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(16, 27, 28, 0.36);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-sector-card h3,
.product-note-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
}

.product-sector-card p,
.product-note-card p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
}

.product-note-card {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.product-note-card .eyebrow {
  margin-bottom: 0;
}

.product-note-card .button {
  justify-self: start;
}

.brands-page {
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.08), transparent 18%),
    radial-gradient(circle at bottom right, rgba(255, 210, 0, 0.08), transparent 20%),
    linear-gradient(180deg, #f3f3f3 0%, #e7e7e7 100%);
}

.brand-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border: 0;
}

.brand-profile {
  display: flex;
  min-height: 330px;
  padding: 32px;
  flex-direction: column;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.08);
  transition: color 200ms ease, background 200ms ease;
}

.brand-profile:hover {
  color: var(--ink);
  background: var(--lime);
}

.brand-logo-box {
  display: grid;
  min-height: 132px;
  margin-bottom: 30px;
  padding: 16px 20px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.03);
}

.brand-logo-box img {
  width: 100%;
  max-width: 188px;
  max-height: 88px;
  object-fit: contain;
  transition: transform 200ms ease;
}

.brand-logo-box img[alt="IKEA"],
.brand-logo-box img[alt="Peacocks"],
.brand-logo-box img[alt="Stradivarius"],
.brand-logo-box img[alt="JCPenney"] {
  max-width: 222px;
  max-height: 106px;
}

.brand-logo-box img[alt="Levi's"] {
  max-width: 242px;
  max-height: 116px;
}

.brand-logo-box img[alt="Old Navy"] {
  max-width: 282px;
  max-height: 130px;
}

.brand-logo-box img[alt="U.S. Polo Assn."] {
  max-width: 324px;
  max-height: 152px;
}

.brand-profile:hover img {
  transform: scale(1.04);
}

.brand-profile h2 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.brand-profile p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-profile:hover p {
  color: rgba(16, 27, 28, 0.7);
}

.brand-profile > span {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certifications-page {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(0, 181, 226, 0.1), transparent 24%),
    linear-gradient(180deg, #122129 0%, #173039 52%, #1d3b45 100%);
}

.certifications-page .catalog-intro > p {
  color: rgba(255, 255, 255, 0.6);
}

.certifications-page .catalog-intro h2 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.1vw, 5.2rem);
  line-height: 0.98;
}

.certifications-page.catalog-section {
  padding: 62px 0 76px;
}

.certifications-page .catalog-intro {
  margin-bottom: 28px;
  gap: 34px;
}

.certifications-page .catalog-intro > p {
  font-size: 0.98rem;
  line-height: 1.45;
}

.accreditations-spotlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(0, 181, 226, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 210, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(9, 20, 24, 0.84) 0%, rgba(12, 26, 31, 0.92) 100%);
  box-shadow: 0 26px 70px rgba(6, 14, 18, 0.22);
}

.accreditations-spotlight__nav,
.accreditation-panel {
  min-width: 0;
}

.accreditations-spotlight__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accreditations-spotlight__header {
  margin-bottom: 0;
}

.accreditations-spotlight__header h3 {
  margin: 0 0 7px;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 0.98;
}

.accreditations-spotlight__header > p:last-child {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.45;
}

.accreditations-spotlight__belt-shell {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.accreditations-spotlight__focus-frame {
  position: absolute;
  z-index: 5;
  top: -11px;
  bottom: -11px;
  left: 50%;
  width: calc(var(--accreditation-card-width, 190px) + 24px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(0, 181, 226, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.16);
  pointer-events: none;
  transform: translateX(-50%);
}

.accreditations-spotlight__focus-corner {
  position: absolute;
  width: 36px;
  height: 34px;
  box-sizing: border-box;
  pointer-events: none;
}

.accreditations-spotlight__focus-corner--cyan {
  top: -1px;
  left: -1px;
  --focus-color: var(--cyan);
  border-top: 4px solid var(--focus-color);
  border-left: 4px solid var(--focus-color);
  border-radius: 24px 0 0 0;
}

.accreditations-spotlight__focus-corner--magenta {
  top: -1px;
  right: -1px;
  --focus-color: var(--magenta);
  border-top: 4px solid var(--focus-color);
  border-right: 4px solid var(--focus-color);
  border-radius: 0 24px 0 0;
}

.accreditations-spotlight__focus-corner--yellow {
  bottom: -1px;
  left: -1px;
  --focus-color: var(--yellow);
  border-bottom: 4px solid var(--focus-color);
  border-left: 4px solid var(--focus-color);
  border-radius: 0 0 0 24px;
}

.accreditations-spotlight__focus-corner--black {
  right: -1px;
  bottom: -1px;
  --focus-color: #858b8e;
  border-right: 4px solid var(--focus-color);
  border-bottom: 4px solid var(--focus-color);
  border-radius: 0 0 24px 0;
}

.accreditations-spotlight__belt-button {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.accreditations-spotlight__belt-button:hover,
.accreditations-spotlight__belt-button:focus-visible {
  border-color: var(--cyan);
  background: rgba(0, 181, 226, 0.18);
  transform: scale(1.06);
}

.accreditations-spotlight__belt-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.accreditations-spotlight__selector-grid {
  display: flex;
  flex: 1 1 auto;
  gap: 32px;
  align-items: stretch;
  min-width: 0;
  box-sizing: border-box;
  padding: 4px var(--accreditation-side-padding, 0px) 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  user-select: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.accreditations-spotlight__selector-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.accreditations-spotlight__selector-grid::-webkit-scrollbar {
  display: none;
}

.accreditation-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  box-sizing: border-box;
  flex: 0 0 var(--accreditation-card-width, 190px);
  min-height: 112px;
  padding: 11px;
  position: relative;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  cursor: pointer;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
  scroll-snap-align: center;
}

.accreditation-selector:hover,
.accreditation-selector:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(6, 14, 18, 0.18);
}

.accreditation-selector.is-active {
  z-index: 4;
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(0, 181, 226, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 22px 48px rgba(0, 181, 226, 0.08);
}

.accreditation-selector figure {
  display: grid;
  width: 100%;
  height: 66px;
  padding: 8px 12px;
  margin: 0;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2f3 100%);
}

.accreditation-selector img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.accreditation-selector[data-title="TQP / Trim Supplier Qualification Program"] img {
  max-height: 52px;
}

.accreditation-selector span {
  position: static;
  min-width: 0;
  height: auto;
  padding: 0;
  color: var(--white);
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.accreditations-spotlight__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 0;
}

.accreditations-spotlight__counter {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.accreditations-spotlight__pause {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.accreditations-spotlight__pause:hover,
.accreditations-spotlight__pause:focus-visible,
.accreditations-spotlight.is-held .accreditations-spotlight__pause {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
  transform: translateY(-1px);
}

.accreditations-spotlight__pause-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.8;
}

.accreditations-spotlight__play-glyph {
  display: none;
  fill: currentColor;
  stroke: none;
}

.accreditations-spotlight.is-held .accreditations-spotlight__pause-glyph {
  display: none;
}

.accreditations-spotlight.is-held .accreditations-spotlight__play-glyph {
  display: block;
}

.accreditations-spotlight__loader {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
}

.accreditations-spotlight__loader-ring {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--cyan) 0deg,
    var(--magenta) 115deg,
    var(--yellow) 220deg,
    #10171a 302deg,
    var(--cyan) 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: accreditation-loader-ring-spin var(--accreditation-loader-duration, 7.8s) linear infinite;
}

.accreditations-spotlight__loader-mark {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
}

.accreditations-spotlight__loader-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(0.72);
}

.accreditations-spotlight__loader-layer--cyan {
  animation-delay: 80ms;
}

.accreditations-spotlight__loader-layer--magenta {
  animation-delay: 240ms;
}

.accreditations-spotlight__loader-layer--yellow {
  animation-delay: 400ms;
}

.accreditations-spotlight__loader-layer--dark {
  animation-delay: 560ms;
}

.accreditations-spotlight__loader-layer--white {
  animation-delay: 720ms;
}

.accreditations-spotlight__loader.is-running .accreditations-spotlight__loader-layer {
  animation: accreditation-loader-layer-in 780ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.accreditations-spotlight__loader.is-paused .accreditations-spotlight__loader-ring,
.accreditations-spotlight__loader.is-paused .accreditations-spotlight__loader-layer {
  animation-play-state: paused;
}

.accreditations-spotlight__progress {
  position: relative;
  flex: 1 1 auto;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.accreditations-spotlight__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
  transition: width var(--accreditation-loader-duration, 7.6s) linear;
}

.accreditations-spotlight.is-held .accreditations-spotlight__progress span {
  transition: none !important;
}

.accreditation-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 210, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.accreditation-panel__figure {
  display: grid;
  min-height: 132px;
  padding: 14px 16px;
  margin: 0;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2f3 100%);
}

.accreditation-panel__figure img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.accreditation-panel__figure img[src*="/TQP-detail.png"] {
  max-height: 150px;
}

.accreditation-panel__content h3 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1;
}

.accreditation-panel__content > p {
  margin: 0;
}

.accreditation-panel__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.accreditation-panel__content > p:not(.accreditation-panel__eyebrow):not(.accreditation-panel__impact) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.5;
}

.accreditation-panel__divider {
  width: 100%;
  height: 1px;
  margin: 12px 0 10px;
  background: rgba(255, 255, 255, 0.12);
}

.accreditation-panel__impact {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.5;
}

@keyframes accreditation-loader-ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes accreditation-loader-layer-in {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.72);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.accreditations-group {
  margin-top: 76px;
}

.accreditations-group--affiliations {
  margin-top: 58px;
}

.accreditations-group__intro {
  margin-bottom: 36px;
}

.accreditations-group__intro h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  line-height: 0.98;
}

.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.accreditation-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 18px 40px rgba(7, 16, 19, 0.12);
}

.accreditation-card--priority {
  background:
    radial-gradient(circle at top right, rgba(0, 181, 226, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.accreditation-card figure {
  display: grid;
  width: 118px;
  height: 94px;
  padding: 14px;
  margin: 0;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2f3 100%);
}

.accreditation-card img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.accreditation-card h4 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.accreditation-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .page-ctp main .container {
    width: min(calc(100% - 26px), 1100px);
  }

  .ctp-steps-grid,
  .ctp-shared-specs,
  .ctp-machine-grid,
  .ctp-densitometer-panel,
  .service-detail-grid,
  .service-detail-capacity {
    grid-template-columns: 1fr;
  }

  .service-detail-stat-grid,
  .technologies-page-grid,
  .brand-profile-grid,
  .product-sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offset-machine-facts {
    grid-template-columns: 1fr 1fr;
  }

  .accreditations-spotlight__selector-grid {
    gap: 10px;
  }

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

  .accreditations-grid,
  .accreditations-grid--compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .page-ctp main .container {
    width: min(calc(100% - 22px), 100%);
  }

  .page-ctp .catalog-section,
  .page-ctp .catalog-section-alt {
    padding: 54px 0 62px;
  }

  .page-offset .catalog-section {
    padding: 58px 0 66px;
  }

  .ctp-section-panel {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .catalog-hero {
    padding: 145px 0 80px;
  }

  .catalog-section {
    padding: 80px 0 95px;
  }

  .catalog-intro {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
    gap: 24px;
  }

  .technologies-page-grid,
  .brand-profile-grid,
  .product-sector-grid {
    grid-template-columns: 1fr;
  }

  .products-future-panel {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .products-future-panel__icon {
    width: 96px;
    height: 96px;
  }

  .products-future-panel__icon svg {
    width: 40px;
    height: 40px;
  }

  .service-detail-stat-grid {
    grid-template-columns: 1fr;
  }

  .offset-machine-facts {
    grid-template-columns: 1fr;
  }

  .ctp-machine-facts {
    grid-template-columns: 1fr;
  }

  .offset-machine-facts article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-detail-copy,
  .service-detail-capacity-panel,
  .service-detail-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .service-detail-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail-image-card,
  .service-detail-capacity-image,
  .service-detail-gallery-card {
    border-radius: 24px;
  }

  .service-detail-image-card-ctp img {
    min-height: 300px;
  }

  .ctp-intro-media-support img {
    min-height: 190px;
  }

  .service-detail-image-card-compact img {
    min-height: 220px;
    padding: 14px;
  }

  .ctp-machine-copy {
    padding: 20px;
  }

  .ctp-densitometer-panel {
    gap: 22px;
  }

  .ctp-densitometer-points {
    grid-template-columns: 1fr;
  }

  .ctp-densitometer-media {
    min-height: 0;
  }

  .ctp-densitometer-media img {
    max-height: 300px;
  }
  .service-page-card {
    min-height: 215px;
  }

  .accreditations-spotlight {
    padding: 24px;
    border-radius: 30px;
  }

  .accreditations-spotlight__selector-grid {
    gap: 18px;
  }

  .accreditations-spotlight__belt-shell {
    gap: 8px;
  }

  .accreditations-spotlight__focus-frame {
    top: -9px;
    bottom: -9px;
    width: calc(var(--accreditation-card-width, 172px) + 24px);
  }

  .accreditations-spotlight__focus-corner {
    width: 28px;
    height: 26px;
    border-radius: 18px;
  }

  .accreditations-spotlight__focus-corner--cyan {
    top: -1px;
    left: -1px;
    border-radius: 18px 0 0 0;
  }

  .accreditations-spotlight__focus-corner--magenta {
    top: -1px;
    right: -1px;
    border-radius: 0 18px 0 0;
  }

  .accreditations-spotlight__focus-corner--yellow {
    bottom: -1px;
    left: -1px;
    border-radius: 0 0 0 18px;
  }

  .accreditations-spotlight__focus-corner--black {
    right: -1px;
    bottom: -1px;
    border-radius: 0 0 18px 0;
  }

  .accreditations-spotlight__belt-button {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .accreditations-spotlight__belt-button svg {
    width: 18px;
    height: 18px;
  }

  .accreditation-selector {
    flex-basis: var(--accreditation-card-width, 172px);
    min-height: 128px;
    padding: 14px;
  }

  .accreditation-selector figure {
    height: 74px;
  }

  .accreditation-selector img {
    max-height: 48px;
  }

  .accreditation-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .accreditation-panel__figure {
    min-height: 148px;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .catalog-hero > .container {
    box-sizing: border-box;
    width: calc(100% - 22px);
    max-width: none;
    min-width: 0;
  }

  .catalog-hero h1,
  .catalog-hero > .container > p:last-child {
    width: 100%;
    max-width: none;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal !important;
  }

  .catalog-hero h1 {
    font-size: clamp(1.85rem, 8.7vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .catalog-hero > .container > p:last-child {
    font-size: 1rem;
  }

  body.page-certifications {
    overflow-x: hidden;
  }

  body.page-certifications .accreditations-spotlight,
  body.page-certifications .accreditations-spotlight__nav,
  body.page-certifications .accreditations-spotlight__belt-shell {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.page-certifications .accreditations-spotlight__belt-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  body.page-certifications .accreditations-spotlight__belt-button {
    display: none;
  }

  body.page-certifications .accreditations-spotlight__selector-grid {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    min-width: 0;
  }

  body.page-certifications .accreditations-spotlight__focus-frame {
    width: calc(var(--accreditation-card-width, 148px) + 16px);
  }

  body.page-certifications .accreditation-selector {
    width: var(--accreditation-card-width, 148px);
    flex-basis: var(--accreditation-card-width, 148px);
  }

  body.page-certifications .accreditations-spotlight__pause {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  body.page-certifications .accreditations-spotlight__pause span {
    display: none;
  }

  .page-loader__inner,
  .page-loader__brand {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .offset-intro-panel .service-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .offset-intro-panel .service-detail-copy,
  .offset-intro-panel .service-detail-image-card {
    width: 100%;
    min-width: 0;
  }

  .page-thermal-printing .service-detail-image-card-thermal {
    min-height: 0;
  }

  .page-thermal-printing .service-detail-image-card-thermal img {
    min-height: 0;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }

  .page-folding-gluing .folding-gluing-machine-media-rongda img {
    transform: none;
    object-fit: cover;
    object-position: center center;
  }
}
