.pzik-process-page .hero h1 {
  max-width: 820px;
}

.pzik-process-page .sample-panel {
  width: 196px;
}

.pzik-process-page .sample-panel strong {
  font-size: 25px;
}

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

.stage-grid,
.timeline-grid,
.qc-grid,
.faq-grid,
.packing-grid {
  display: grid;
  gap: 18px;
}

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

.stage-card,
.timeline-grid article,
.qc-grid article,
.faq-grid article,
.packing-grid article,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stage-card {
  min-height: 310px;
  padding: 24px;
  position: relative;
}

.stage-card span,
.timeline-grid span {
  display: inline-flex;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stage-card svg,
.timeline-grid svg,
.qc-grid svg,
.packing-grid svg {
  width: 42px;
  height: 42px;
  margin-top: 18px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
}

.stage-card:nth-child(even) svg,
.timeline-grid article:nth-child(even) svg,
.qc-grid article:nth-child(even) svg,
.packing-grid article:nth-child(even) svg {
  background: var(--blue-soft);
  color: var(--blue);
}

.stage-card h3,
.timeline-grid h3,
.qc-grid h3,
.faq-grid h3,
.packing-grid h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.stage-card p,
.timeline-grid p,
.qc-grid p,
.faq-grid p,
.packing-grid p,
.cta-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.stage-card strong {
  display: block;
  margin-top: 18px;
  color: #24313d;
  font-size: 13px;
  line-height: 1.55;
}

.timeline-grid,
.qc-grid,
.packing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-grid article,
.qc-grid article,
.packing-grid article {
  min-height: 238px;
  padding: 24px;
}

.qc-grid article {
  background: #fbfdfc;
}

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

.faq-grid article {
  min-height: 178px;
  padding: 24px;
}

.process-photo-section {
  padding-top: 36px;
  background: #ffffff;
}

.factory-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 18px;
}

.factory-photo-card {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0f1720;
}

.factory-photo-card.large {
  grid-row: span 2;
  min-height: 500px;
}

.factory-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.factory-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.02) 0%, rgba(15, 23, 32, 0.74) 100%);
}

.factory-photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #ffffff;
}

.factory-photo-card strong,
.factory-photo-card span,
.packing-grid span {
  display: block;
}

.factory-photo-card strong {
  font-size: 24px;
  line-height: 1.2;
}

.factory-photo-card span {
  max-width: 620px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.62;
}

.packaging-shipment-section {
  background: #ffffff;
}

.packing-grid span {
  margin-top: 16px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cta-section {
  padding-top: 32px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 32px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, #f7fbf8 0%, #edf6fc 100%);
}

.cta-panel h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: 0;
}

.cta-panel p:not(.eyebrow) {
  max-width: 690px;
  font-size: 15px;
}

@media (max-width: 1120px) {
  .stage-grid,
  .timeline-grid,
  .qc-grid,
  .packing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .factory-photo-card.large {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 1000px) {
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .primary-btn {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .stage-grid,
  .timeline-grid,
  .qc-grid,
  .faq-grid,
  .packing-grid {
    grid-template-columns: 1fr;
  }

  .stage-card,
  .timeline-grid article,
  .qc-grid article,
  .faq-grid article,
  .packing-grid article {
    min-height: auto;
  }

  .factory-photo-card,
  .factory-photo-card.large {
    min-height: 320px;
  }

  .cta-panel {
    padding: 24px;
  }

  .cta-panel h2 {
    font-size: 30px;
  }
}
