
.hero-wrap .hero-body h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
}

/* ========================================================= */
/* VARIABLE BARCODE LABELS — PROCESS SECTION                 */
/* ========================================================= */

.process-section .product-container {
  background-color: #e8e8e8;
}

.process-section .product-container::before {
  background-image: url('../images/watermark-intro.svg');
}

.process-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.process-heading .product-label {
  text-align: center;
}

.process-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #333;
}

.process-heading p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
  color: #333;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  position: relative;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.92);
  border-top: 4px solid #ffc857;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.process-card h3 {
  margin: 0 0 0.75rem;
  color: #333;
  font-size: 1.15rem;
  line-height: 1.3;
}

.process-card p {
  margin: 0;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.6;
}


/* Two-column layout on tablets */
@media (max-width: 1023px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card:last-child {
    grid-column: 1 / -1;
  }
}


/* Single-column layout on mobile */
@media (max-width: 600px) {
  .process-section .product-container {
    padding: 2rem 1.25rem;
  }

  .process-heading {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .process-heading .product-label {
    text-align: left;
  }

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

  .process-card:last-child {
    grid-column: auto;
  }

  .process-card {
    padding: 1.25rem;
  }
}

/* ========================================================= */
/* VARIABLE BARCODE LABELS — SPREADSHEET EXAMPLE             */
/* ========================================================= */

.data-example-section .product-container {
  background-color: #fff;
}

.data-example-section .product-container::before {
  display: none;
}

.data-example-heading {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.data-example-heading .product-label {
  text-align: center;
}

.data-example-heading h2 {
  margin: 0 0 1rem;
  color: #333;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.data-example-heading p {
  margin: 0;
  color: #333;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.data-example-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
  gap: 2rem;
  align-items: start;
}


/* Spreadsheet */

.spreadsheet-wrap {
  overflow: hidden;
  border: 1px solid #c9c9c9;
  background-color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.spreadsheet-titlebar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0 1rem;
  background-color: #333;
  color: #fff;
}

.spreadsheet-titlebar span {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #ffc857;
}

.spreadsheet-titlebar strong {
  overflow: hidden;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spreadsheet-scroll {
  overflow-x: auto;
}

.spreadsheet-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  color: #333;
  font-size: 0.92rem;
}

.spreadsheet-table th,
.spreadsheet-table td {
  padding: 0.85rem 1rem;
  border-right: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  text-align: left;
  white-space: nowrap;
}

.spreadsheet-table thead th {
  background-color: #eee;
  font-weight: 700;
}

.spreadsheet-table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}

.spreadsheet-table th:last-child,
.spreadsheet-table td:last-child {
  border-right: 0;
}

.spreadsheet-table tbody tr:last-child th,
.spreadsheet-table tbody tr:last-child td {
  border-bottom: 0;
}

.spreadsheet-table .row-number {
  width: 2.75rem;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  background-color: #eee;
  color: #666;
  text-align: center;
}


/* Explanatory notes */

.data-example-notes {
  display: grid;
  gap: 1.25rem;
}

.data-note {
  padding: 0 0 1.25rem 1.25rem;
  border-left: 4px solid #ffc857;
  border-bottom: 1px solid #ddd;
}

.data-note:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.data-note h3 {
  margin: 0 0 0.5rem;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.35;
}

.data-note p {
  margin: 0;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.6;
}


/* Tablet and mobile */

@media (max-width: 900px) {
  .data-example-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .data-example-section .product-container {
    padding: 2rem 1.25rem;
  }

  .data-example-heading {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .data-example-heading .product-label {
    text-align: left;
  }

  .data-example-notes {
    grid-template-columns: 1fr;
  }

  .spreadsheet-table th,
  .spreadsheet-table td {
    padding: 0.75rem;
  }
}

/* ========================================================= */
/* VARIABLE BARCODE LABELS — VARIABLE FIELDS                 */
/* ========================================================= */

.variable-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}

.variable-field {
  padding: 1rem 0 1rem 1rem;
  border-left: 4px solid #ffc857;
}

.variable-field h3 {
  margin: 0 0 0.4rem;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.3;
}

.variable-field p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .variable-fields-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }
}

/* ========================================================= */
/* VARIABLE BARCODE LABELS — VARIABLE VS SEQUENTIAL          */
/* ========================================================= */

.comparison-section .product-container {
  background-color: #fff;
}

.comparison-section .product-container::before {
  display: none;
}

.comparison-heading {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.comparison-heading .product-label {
  text-align: center;
}

.comparison-heading h2 {
  margin: 0 0 1rem;
  color: #333;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.comparison-heading p {
  margin: 0;
  color: #333;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.comparison-card {
  padding: 2rem;
  border: 1px solid #d7d7d7;
  background-color: #f4f4f4;
}

.comparison-card-variable {
  border-top: 5px solid #ffc857;
}

.comparison-card-sequential {
  border-top: 5px solid #333;
}

.comparison-card-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.comparison-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.comparison-card-variable .comparison-marker {
  background-color: #ffc857;
  color: #333;
}

.comparison-card h3 {
  margin: 0;
  color: #333;
  font-size: 1.35rem;
  line-height: 1.3;
}

.comparison-card p {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.65;
}

.comparison-example {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.5rem 0;
  border: 1px solid #ccc;
  background-color: #fff;
}

.comparison-example span {
  padding: 0.85rem 0.5rem;
  border-right: 1px solid #ccc;
  color: #333;
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.comparison-example span:last-child {
  border-right: 0;
}

.comparison-summary {
  padding-top: 1.25rem;
  border-top: 1px solid #d2d2d2;
}

.comparison-footer {
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.comparison-footer p {
  margin: 0 0 1.25rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.65;
}


/* Mobile */

@media (max-width: 700px) {
  .comparison-section .product-container {
    padding: 2rem 1.25rem;
  }

  .comparison-heading {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .comparison-heading .product-label {
    text-align: left;
  }

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

  .comparison-card {
    padding: 1.5rem;
  }

  .comparison-example span {
    padding: 0.75rem 0.35rem;
    font-size: 0.85rem;
  }

  .comparison-footer {
    text-align: left;
  }
}

/* ========================================================= */
/* VARIABLE BARCODE LABELS — PRACTICAL APPLICATIONS          */
/* ========================================================= */

.applications-section .product-container {
  background-color: #e8e8e8;
}

.applications-section .product-container::before {
  background-image: url('../images/watermark-intro.svg');
}

.applications-heading {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.applications-heading .product-label {
  text-align: center;
}

.applications-heading h2 {
  margin: 0 0 1rem;
  color: #333;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.applications-heading p {
  margin: 0;
  color: #333;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.applications-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.application-card {
  padding: 1.5rem;
  border-top: 4px solid #ffc857;
  background-color: rgba(255, 255, 255, 0.94);
}

.application-card h3 {
  margin: 0 0 0.75rem;
  color: #333;
  font-size: 1.15rem;
  line-height: 1.35;
}

.application-card p {
  margin: 0;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.6;
}

.applications-footer {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.applications-footer p {
  margin: 0 0 1.25rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}


/* Tablet */

@media (max-width: 900px) {
  .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Mobile */

@media (max-width: 600px) {
  .applications-section .product-container {
    padding: 2rem 1.25rem;
  }

  .applications-heading {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .applications-heading .product-label {
    text-align: left;
  }

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

  .application-card {
    padding: 1.25rem;
  }

  .applications-footer {
    text-align: left;
  }
}

/* ========================================================= */
/* VARIABLE BARCODE LABELS — QUOTATION REQUIREMENTS          */
/* ========================================================= */

.quote-requirements-section .product-container {
  background-color: #fff;
}

.quote-requirements-section .product-container::before {
  display: none;
}

.quote-requirements-heading {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.quote-requirements-heading .product-label {
  text-align: center;
}

.quote-requirements-heading h2 {
  margin: 0 0 1rem;
  color: #333;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.quote-requirements-heading p {
  margin: 0;
  color: #333;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.quote-requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.quote-requirement {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
}

.quote-requirement-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: #ffc857;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
}

.quote-requirement h3 {
  margin: 0 0 0.5rem;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.35;
}

.quote-requirement p {
  margin: 0;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.6;
}

.quote-requirements-footer {
  max-width: 780px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.quote-requirements-footer p {
  margin: 0 0 1.25rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}


/* Mobile */

@media (max-width: 700px) {
  .quote-requirements-section .product-container {
    padding: 2rem 1.25rem;
  }

  .quote-requirements-heading {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .quote-requirements-heading .product-label {
    text-align: left;
  }

  .quote-requirements-grid {
    grid-template-columns: 1fr;
  }

  .quote-requirement {
    padding: 1.25rem;
  }

  .quote-requirements-footer {
    text-align: left;
  }
}

