:root {
  --white: #ffffff;
  --off-white: #f7f6f3;
  --paper: #faf9f7;
  --ink: #000000;
  --ink-light: #4a4845;
  --ink-muted: #9a9690;
  --accent-blue: #1a4fd6;
  --accent-blue-light: #e8eeff;
  --accent-orange: #e8470a;
  --accent-orange-light: #fff1eb;
  --accent-green: #0d8a5a;
  --accent-green-light: #e6f7f0;
  --accent-purple: #6b3fa0;
  --accent-purple-light: #f2ebff;
  --accent-teal: #0891a8;
  --accent-teal-light: #e6f6f9;
  --border: #e4e1db;
  --shadow: 0 2px 20px rgba(15,14,13,0.07);
  --shadow-hover: 0 12px 48px rgba(15,14,13,0.14);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .category-name, .card-title, .hero-title, .banner-text h2, .modal-title, .intro-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

h2 {
  text-transform: uppercase;
}

.header-main,
.navbar {
  background: #fff !important
}

.header-main a,
.navbar a,
header a {
  color: #0b1b2b !important
}

header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 60px 65px 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; 
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 14px; font-size: 12px;
  font-weight: 500; color: var(--ink-light); letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 25px 0 16px;
}

.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green); }

.hero-title { font-size: clamp(52px, 6vw, 88px); font-weight: 800; line-height: 0.95; letter-spacing: -0.01em; margin: 8px 0; }
.hero-title span { color: var(--accent-orange); }

.hero-sub { margin-top: 0; font-size: 17px; color: var(--ink);  margin-bottom: 12px; }

.hero-stats{
  display:flex;
  gap:20px;
  justify-content:center;
  align-self:center;
  margin-top:20px;
}

.stat{
  min-width:170px;
  padding:18px 24px;
  text-align:center;
  border-radius:16px;
  background:linear-gradient(135deg,#fff5ef,#ffe3d6);
  border:1px solid rgba(232,71,10,.15);
  box-shadow:0 6px 20px rgba(232,71,10,.08);
}

.stat + .stat{
  border-left:none;
  padding-left:24px;
}

.stat-num{
  color:#cf3d08;
  font-size:42px;
  font-weight:700;
}

.stat-label{
  color:#333;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  margin-top:4px;
}

@media (max-width:768px){

  .hero-stats{
    gap:12px;
    width:100%;
  }

  .stat{
    flex:1;
    min-width:auto;
    padding:14px 10px;
  }

  .stat-num{
    font-size:28px;
  }

}

@media (max-width:576px){

  .stat{
    padding:12px 8px;
  }

  .stat-num{
    font-size:24px;
  }

  .stat-label{
    font-size:10px;
  }

}

/* ===== FILTER NAV ===== */
.catalog-filter {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: 80px;
  z-index: 50;
}

.catalog-filter-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}

.filter-btn {
  padding: 16px 20px; border: none; background: transparent;
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--ink-muted); cursor: pointer; border-bottom: 2px solid transparent;
  white-space: nowrap; transition: color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--ink); border-bottom-color: var(--ink); }

/* ===== MAIN CONTENT ===== */
main { max-width: 1320px; margin: 0 auto; padding: 12px 10px 10px; }

.catalog-intro {
  margin: 0 auto 12px;
  text-align: left;
  background: rgba(232, 71, 10, 0.05);
  border: 1px solid rgba(232, 71, 10, 0.15);
  border-radius: 24px;
  padding: 36px 40px;
}

.catalog-intro h2 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}

.catalog-intro p {
  font-size: 1px;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Intro grid: two-column bullet highlights */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.intro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(232, 71, 10, 0.25);
  border-left: 4px solid var(--accent-orange);
  border-radius: 10px;
  padding: 12px 16px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.intro-list li:hover {
  background: rgba(232, 71, 10, 0.08);
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(232, 71, 10, 0.12);
}

.intro-key {
  font-weight: 700;
  color: var(--accent-orange);
  min-width: 110px;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.intro-note {
  color: var(--ink-light);
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 840px) {
  .intro-grid { grid-template-columns: 1fr; }
}

.catalog-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 12px;
}

.catalog-keywords span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
}

/* ===== CATEGORIES ===== */
.category-section {
  margin-bottom: 40px;
  padding-left: 48px;
  padding-right: 48px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.5s ease forwards;
}

.category-section:nth-child(1) { animation-delay: 0.05s; }
.category-section:nth-child(2) { animation-delay: 0.12s; }
.category-section:nth-child(3) { animation-delay: 0.18s; }
.category-section:nth-child(4) { animation-delay: 0.24s; }
.category-section:nth-child(5) { animation-delay: 0.30s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.category-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:15px;
    margin-bottom:12px;
    padding-bottom:18px;
    border-bottom:1px solid var(--border);
}

.category-meta{
    width:100%;
    text-align:center;
}

.category-desc{
    max-width:900px;
    margin:10px auto 0;
}

.category-applications{
    justify-content:center;
}

.category-icon {
  /* hide small icon visually while keeping markup */
  display: none;
}


.category-name { font-size: 32px; letter-spacing: 0.01em; line-height: 1; color: var(--accent-orange); }
.category-desc { font-size: 14px; color: var(--ink); margin-top: 6px; max-width: 720px; }

.category-count {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-muted);
  border: 1px solid var(--border); border-radius: 100px; padding: 3px 12px; 
}

.category-applications { display: flex; flex-wrap: wrap; gap: 8px; justify-content:center ; margin-top: 8px; }

.app-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(64, 65, 151, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), #eeeeff);
  color: #404197;
  box-shadow: 0 3px 10px rgba(64, 65, 151, 0.08);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.app-tag:hover {
  transform: translateY(-2px);
  border-color: #404197;
  box-shadow: 0 6px 16px rgba(64, 65, 151, 0.16);
}

/* ===== GRID ===== */
.printer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  gap: 20px;
  justify-content: center;
}

/* ===== CARD ===== */
.printer-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1); position: relative;
  border-top: 3px solid transparent;
}

.printer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent; border-top-color: var(--accent-orange); }

.printer-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 100px; z-index: 2;
}

.printer-image {
  height: 300px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}

.printer-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; }
.printer-card:hover .printer-image img { transform: scale(1.04); }

.printer-content { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.printer-title { font-size: 22px; letter-spacing: 0.01em; line-height: 1.1; color: var(--accent-orange); }
.printer-description { font-size: 14px; color: var(--ink-light); line-height: 1.6; flex: 1; }

.printer-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.printer-specs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 9px;
  background: #cf3d08;
  color:#e4e1db  ;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.spec-chip {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; padding: 4px 10px;
  border-radius: 6px; background: var(--off-white); color: var(--ink-light); border: 1px solid var(--border);
}

.printer-actions { padding: 0 22px 20px; display: flex; gap: 5px; }

.btn-primary {
  flex: none; padding: 6px 8px; border-radius: 5px; font-family: 'Barlow', sans-serif; width: auto;
  font-size: 11px; font-weight: 600; cursor: pointer; text-decoration: none; text-align: center;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.2s;
  border: 1.5px solid var(--ink); background: var(--ink); color: var(--white);
}

.btn-primary:hover { background: #2c2a27; transform: translateY(-1px); }

.btn-outline {
  padding: 6px 9px; border-radius: 5px; font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 600; cursor: pointer; text-decoration: none; text-align: center;
  display: inline-flex; align-items: center; justify-content: center; gap: 5px; transition: all 0.2s;
  border: 1.5px solid var(--border); background: var(--white); color: var(--ink); white-space: nowrap;
}

.btn-outline:hover { background: var(--off-white); border-color: var(--ink-muted); transform: translateY(-1px); }

/* COMPARE */
.compare-check {
  display: flex; align-items: center; gap: 8px; padding: 0 22px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink-light); cursor: pointer; user-select: none;
}
.compare-check input { width: 16px; height: 16px; accent-color: var(--accent-orange); cursor: pointer; }

/* COMPARE BAR */
.compare-bar {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--white); border-radius: 100px;
  padding: 10px 10px 10px 22px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-hover); z-index: 200; transition: transform 0.3s ease;
  max-width: calc(100% - 32px);
}
.compare-bar.visible { transform: translateX(-50%) translateY(0); }
.compare-bar-label { font-size: 13px; font-weight: 600; white-space: nowrap; }
.compare-bar-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.compare-bar-chip {
  display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500;
  background: rgba(255,255,255,0.1); border-radius: 100px; padding: 4px 6px 4px 12px;
  white-space: nowrap;
}
.compare-bar-chip button {
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  width: 18px; height: 18px; border-radius: 50%; cursor: pointer; font-size: 11px;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.compare-bar-chip button:hover { background: rgba(255,255,255,0.3); }
.compare-bar-actions { display: flex; gap: 8px; align-items: center; }
.compare-bar-go {
  padding: 9px 20px; background: var(--accent-orange); color: var(--white); border: none;
  border-radius: 100px; font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.compare-bar-go:hover { background: #cf3d08; }
.compare-bar-go:disabled { opacity: 0.4; cursor: not-allowed; }
.compare-bar-clear {
  background: transparent; border: none; color: rgba(255,255,255,0.55); font-size: 12px;
  cursor: pointer; text-decoration: underline; padding: 0; white-space: nowrap;
}
.compare-bar-clear:hover { color: var(--white); }

/* COMPARE MODAL */
.compare-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(15,14,13,0.55);
  backdrop-filter: blur(4px); z-index: 1000; align-items: center; justify-content: center; padding: 24px;
}
.compare-modal-overlay.open { display: flex; }
.compare-modal {
  background: var(--white); border-radius: 16px; padding: 32px;
  max-width: 920px; width: 100%; max-height: 85vh; overflow: auto; position: relative;
  animation: modalIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.compare-modal .modal-close { position: sticky; float: right; top: 0; margin-left: 16px; }
.compare-modal-title { font-size: 30px; letter-spacing: 0.02em; margin-bottom: 20px; }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: top; }
.compare-table th { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; background: var(--off-white); color: var(--accent-orange); }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 600; color: var(--ink-light); width: 160px; background: var(--off-white); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table-actions { margin-top: 8px; display: flex; gap: 8px; }
.compare-view-link { font-size: 13px; font-weight: 600; color: var(--accent-orange); text-decoration: none; }
.compare-view-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .compare-bar { left: 16px; right: 16px; transform: translateX(0) translateY(120%); max-width: none; flex-wrap: wrap; }
  .compare-bar.visible { transform: translateX(0) translateY(0); }
}

/* Responsive: revert category header to stacked on small screens */
@media (max-width: 840px) {
  .category-header { flex-direction: column; align-items: center; text-align: center; padding-bottom: 28px; }
  .category-meta { width: 100%; }
  .category-applications { justify-content: center; }
}

/* ===== THEMES ===== */
.theme-blue .category-icon { background: var(--accent-blue-light); color: var(--accent-blue); }
.theme-blue .category-name { color: var(--accent-orange); }
.theme-blue .printer-badge { background: var(--accent-blue-light); color: var(--accent-blue); }

.theme-green .category-icon { background: var(--accent-green-light); color: var(--accent-green); }
.theme-green .category-name { color: var(--accent-orange); }
.theme-green .printer-badge { background: var(--accent-green-light); color: var(--accent-green); }

.theme-purple .category-icon { background: var(--accent-purple-light); color: var(--accent-purple); }
.theme-purple .category-name { color: var(--accent-orange); }
.theme-purple .printer-badge { background: var(--accent-purple-light); color: var(--accent-purple); }

.theme-teal .category-icon { background: var(--accent-teal-light); color: var(--accent-teal); }
.theme-teal .category-name { color: var(--accent-orange); }
.theme-teal .printer-badge { background: var(--accent-teal-light); color: var(--accent-teal); }

.theme-orange .category-icon { background: var(--accent-orange-light); color: var(--accent-orange); }
.theme-orange .category-name { color: var(--accent-orange); }
.theme-orange .printer-badge { background: var(--accent-orange-light); color: var(--accent-orange); }

/* ===== BANNER ===== */
.catalog-cta {
  background: var(--ink); border-radius: 16px; padding: 48px 56px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; margin: 40px 48px 40px 48px; position: relative; overflow: hidden;
  text-align: center;
}

.catalog-cta::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
}

.catalog-cta > * {
  position: relative;
  z-index: 1;
}

.cta-content {
  width: 100%;
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; color: var(--white); letter-spacing: 0.02em; }
.cta-content p { color:#fff; font-size: 15px; margin-top: 6px; }

.cta-primary {
  padding: 12px 8px; background: var(--accent-orange); color: var(--white); border: none;
  border-radius: 8px; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}

.cta-primary:hover { background: #cf3d08; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,71,10,0.4); }

.cta-secondary {
  padding: 12px 8px; background: transparent; color: var(--white);
  border: 1.5px solid var(--accent-orange); border-radius: 8px; font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s;
}

.cta-secondary:hover { background: var(--accent-orange); transform: translateY(-2px); }

/* ===== TRUST & INDUSTRIES ===== */
.trust-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, auto));
  justify-content: center;
  gap: 12px;
  padding: 20px 20px;
  text-align: center;
margin-top: 12px;}

.trust-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 8px;

  
}

.industries-banner {
  text-align: center;
  margin-top: 20px;
}

.industries-banner h2 { font-size: 32px; margin-bottom: 28px; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(123px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-item {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 24px 16px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.2s;
}

.industry-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-top: 3px solid #cf3d08; }

.industry-icon {
  font-size: 46px;
  line-height: 1;
}

.industry-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  main { padding: 60px 30px 100px; }
  .hero { padding: 50px 30px 40px; margin-bottom: 40px; }
  .catalog-filter { padding: 0 30px; margin-bottom:20px; }
  .category-section { margin-bottom: 40px; padding-left: 30px; padding-right: 30px; }
  .trust-section { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .hero { padding: 40px 24px 30px; margin-bottom: 40px; align-items: center; text-align: center; }
  .hero-eyebrow { margin: 12px auto 16px; }
  .hero-stats { gap: 20px; }
  .catalog-filter { padding: 0 24px; margin-bottom: 40px; }
  main { padding: 50px 24px 80px; }
  .category-section { margin-bottom: 40px; padding-left: 24px; padding-right: 24px; }
  .printer-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .catalog-cta { padding: 32px 28px; flex-direction: column; align-items: center; margin: 40px 24px 40px 24px; }
  .cta-actions { width: 100%; }
  .cta-primary, .cta-secondary { width: 100%; text-align: center; }
  .trust-section { grid-template-columns: repeat(2, 1fr); padding: 50px 24px; }
  .industries-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .industries-banner { padding: 60px 24px 60px 24px; }
}

@media (max-width: 768px) {
  header { padding: 0 16px; }
  .hero { padding: 79px 16px 0px; margin-bottom: 40px; align-items: center; text-align: center; }
  .hero-eyebrow { margin: 12px auto 16px; }
  .hero-stats { flex-direction: row; gap: 16px; font-size: 14px; }
  .stat-num { font-size: 32px; }
  .stat + .stat { border-left: none; padding-left: 16px; }
@media (max-width: 768px) {

  .catalog-filter {
    overflow: visible;
    padding: 10px 16px;
  }

  .catalog-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

}
  main { padding: 0px 16px 0px; }
  .category-section { margin-bottom: 40px; padding-left: 16px; padding-right: 16px; }
  .printer-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { border-radius: 10px; }
  .printer-image { height: 160px; }
  .printer-image img{
    height: auto; width: auto;
  }
  .printer-content { padding: 16px; }
  .printer-actions { padding: 0 16px 16px; flex-direction: column; gap: 6px; }
  .btn-primary, .btn-outline { width: 100%; padding: 7px 9px; }
  .catalog-cta { padding: 24px 16px; border-radius: 12px; margin: 40px 16px 40px 16px; }
  .cta-content h3 { font-size: 24px; }
  .trust-section { grid-template-columns: 1fr; padding: 0px 16px; }
  .industries-banner { padding: 0px 16px; }
  .industries-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 12px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 14px; }
  .hero-stats { gap: 12px; }
  .stat-label { font-size: 10px; }
  .intro-title { font-size: 24px; }
  .category-name { font-size: 22px; }
  .printer-title { font-size: 18px; }
}


.trust-section{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    margin:40px 48px;
}

.trust-item{
    background:linear-gradient(135deg,#fff5ef,#ffe3d6);
    border-radius:12px;
    padding:18px;
    text-align:center;
    font-weight:700;
}

@media(max-width:991px){
    .trust-section{
        grid-template-columns:repeat(2,1fr);
        margin:30px 24px;
    }
}

@media(max-width:576px){
    .trust-section{
        grid-template-columns:1fr;
        margin:20px 16px;
    }
}
.catalog-intro-list{
    margin:0;
    padding-left:22px;
}

.catalog-intro-list li{
    margin-bottom:12px;
    font-size:16px;
    line-height:1.8;
    color:var(--ink-light);
    list-style-type: disc;
}

@media(max-width:768px){

    .catalog-intro-list{
        padding-left:18px;
    }

    .catalog-intro-list li{
        font-size:14px;
        line-height:1.7;
    }

}

/* ===== SECTION GALLERY ===== */
.section-gallery {
  margin: 32px 0 8px;
  padding: 24px 28px;
  background: rgba(0,0,0,0.04);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
}
.gallery-heading {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  margin: 0 0 14px;
}
.gallery-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-orange) transparent;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 2px; }
.gallery-thumb {
  flex-shrink: 0;
  width: 184px;
  height: 199px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.gallery-thumb:hover {
  border-color: var(--accent-orange);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* ===== GALLERY LIGHTBOX ===== */
#gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 999998;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#gallery-lightbox.open { display: flex; }
#gallery-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: lbIn 0.25s ease;
}
@keyframes lbIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
#gallery-lightbox-caption {
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-align: center;
}
#gallery-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
#gallery-lightbox-close:hover { background: var(--accent-orange); }
#gallery-lb-prev, #gallery-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  line-height: 44px;
  text-align: center;
  transition: background 0.2s;
}
#gallery-lb-prev { left: 16px; }
#gallery-lb-next { right: 16px; }
#gallery-lb-prev:hover, #gallery-lb-next:hover { background: var(--accent-orange); }
@media (max-width: 600px) {
  .gallery-thumb { width: 110px; height: 78px; }
  .section-gallery { padding: 16px; }
}

/* =================================================================
   COMPREHENSIVE MOBILE RESPONSIVE — appended
   Breakpoints: 768px | 576px | 480px
   ================================================================= */

/* ---- 768px ---- */
@media (max-width: 768px) {

  /* --- Hero --- */
  .hero {
    padding: 72px 16px 20px;
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-eyebrow {
    margin: 10px auto 14px;
  }

  /* --- Filter nav --- */
  .catalog-filter {
    padding: 10px 12px;
    overflow-x: visible;
    top: 64px;
  }
  .catalog-filter-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .filter-btn {
    padding: 8px 12px;
    font-size: 12px;
    border-bottom: none;
    border: 1.5px solid var(--border);
    border-radius: 100px;
  }
  .filter-btn.active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }

  /* --- Main content area --- */
  main {
    padding: 12px 12px 20px;
  }

  /* --- Catalog intro --- */
  .catalog-intro {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .catalog-intro h2 {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .intro-key {
    min-width: 90px;
    font-size: 12px;
  }
  .intro-note {
    font-size: 13px;
  }
  .intro-list li {
    padding: 10px 12px;
  }

  /* --- Category sections --- */
  .category-section {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 32px;
  }
  .category-name {
    font-size: 26px;
  }
  .category-desc {
    font-size: 13px;
  }
  .category-header {
    padding-bottom: 16px;
    gap: 10px;
  }
  .app-tag {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* --- Printer grid: single column --- */
  .printer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* --- Printer card --- */
  .printer-card {
    border-radius: 10px;
  }
  .printer-image {
    height: 200px;
  }
  .printer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .printer-content {
    padding: 14px 16px;
    gap: 10px;
  }
  .printer-title {
    font-size: 20px;
  }
  .printer-description {
    font-size: 13px;
  }
  .printer-specs {
    gap: 6px;
  }
  .printer-specs span {
    font-size: 11px;
    padding: 5px 8px;
  }
  .printer-actions {
    padding: 0 16px 14px;
    flex-direction: column;
    gap: 6px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 9px 12px;
    font-size: 12px;
    justify-content: center;
  }
  .compare-check {
    padding: 0 16px 12px;
    font-size: 12px;
  }

  /* --- Compare bar --- */
  .compare-bar {
    left: 12px;
    right: 12px;
    bottom: 16px;
    transform: translateX(0) translateY(120%);
    max-width: none;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 16px;
    padding: 12px 14px;
  }
  .compare-bar.visible {
    transform: translateX(0) translateY(0);
  }
  .compare-bar-label {
    font-size: 12px;
  }
  .compare-bar-chips {
    flex-wrap: wrap;
    gap: 4px;
  }
  .compare-bar-chip {
    font-size: 11px;
  }
  .compare-bar-actions {
    width: 100%;
    justify-content: space-between;
  }
  .compare-bar-go {
    flex: 1;
    padding: 8px 14px;
    font-size: 12px;
  }

  /* --- Compare modal --- */
  .compare-modal-overlay {
    padding: 12px;
    align-items: flex-end;
  }
  .compare-modal {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
    border-radius: 16px 16px 0 0;
    max-height: 88vh;
  }
  .compare-modal-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .compare-table th,
  .compare-table td {
    padding: 9px 10px;
    font-size: 12px;
  }
  .compare-table th {
    font-size: 13px;
  }
  .compare-table td:first-child,
  .compare-table th:first-child {
    width: 100px;
  }

  /* --- CTA banner --- */
  .catalog-cta {
    padding: 24px 16px;
    border-radius: 12px;
    margin: 24px 12px;
    gap: 16px;
  }
  .cta-content h3 {
    font-size: 22px;
  }
  .cta-content p {
    font-size: 14px;
  }
  .cta-actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  /* --- Trust section --- */
  .trust-section {
    grid-template-columns: repeat(2, 1fr);
    margin: 20px 12px;
    gap: 10px;
  }

  /* --- Industries banner --- */
  .industries-banner {
    padding: 0 12px 24px;
    margin-top: 16px;
  }
  .industries-banner h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
  }
  .industry-item {
    padding: 16px 10px;
    gap: 10px;
  }
  .industry-icon {
    font-size: 34px;
  }
  .industry-label {
    font-size: 13px;
  }

  /* --- Section gallery --- */
  .section-gallery {
    padding: 16px 12px;
    margin: 20px 0 6px;
  }
  .gallery-thumb {
    width: 120px;
    height: 86px;
  }

  /* --- Lightbox nav buttons: give more space on small screens --- */
  #gallery-lb-prev { left: 8px; }
  #gallery-lb-next { right: 8px; }
  #gallery-lb-prev,
  #gallery-lb-next {
    width: 38px;
    height: 38px;
    font-size: 22px;
    line-height: 38px;
  }
  #gallery-lightbox img {
    max-width: 94vw;
    max-height: 70vh;
  }

  /* --- General image safety --- */
  img {
    max-width: 100%;
  }
}

/* ---- 576px ---- */
@media (max-width: 576px) {

  /* --- Hero --- */
  .hero {
    padding: 68px 12px 16px;
  }
  .hero-title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1;
  }
  .hero-sub {
    font-size: 13px;
  }
  .hero-stats {
    gap: 8px;
    width: 100%;
  }
  .stat {
    padding: 10px 8px;
    border-radius: 12px;
  }
  .stat-num {
    font-size: 22px;
  }
  .stat-label {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  /* --- Filter tabs --- */
  .catalog-filter {
    padding: 8px 10px;
    top: 56px;
  }
  .filter-btn {
    padding: 7px 10px;
    font-size: 11px;
  }

  /* --- Intro --- */
  .catalog-intro {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .catalog-intro h2 {
    font-size: 19px;
    margin-bottom: 12px;
  }
  .intro-key {
    min-width: 80px;
    font-size: 11px;
  }
  .intro-note {
    font-size: 12px;
  }

  /* --- Category sections --- */
  .category-section {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 24px;
  }
  .category-name {
    font-size: 22px;
  }
  .app-tag {
    font-size: 11px;
    padding: 5px 8px;
  }

  /* --- Cards --- */
  .printer-image {
    height: 180px;
  }
  .printer-title {
    font-size: 18px;
  }
  .printer-content {
    padding: 12px 14px;
  }
  .printer-actions {
    padding: 0 14px 12px;
  }

  /* --- Trust section --- */
  .trust-section {
    grid-template-columns: 1fr;
    margin: 16px 10px;
    gap: 8px;
  }
  .trust-item {
    padding: 14px 12px;
    font-size: 14px;
  }

  /* --- Industries --- */
  .industries-banner h2 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
  }
  .industry-icon {
    font-size: 28px;
  }
  .industry-label {
    font-size: 12px;
  }

  /* --- CTA --- */
  .catalog-cta {
    padding: 20px 12px;
    margin: 20px 10px;
  }
  .cta-content h3 {
    font-size: 19px;
  }
  .cta-content p {
    font-size: 13px;
  }

  /* --- Compare modal: full-screen sheet --- */
  .compare-modal {
    padding: 16px 12px;
    max-height: 92vh;
  }
  .compare-modal-title {
    font-size: 18px;
  }
  .compare-table th,
  .compare-table td {
    padding: 7px 8px;
    font-size: 11px;
  }
  .compare-table th {
    font-size: 12px;
  }
  .compare-table td:first-child,
  .compare-table th:first-child {
    width: 80px;
  }

  /* --- Gallery --- */
  .gallery-thumb {
    width: 100px;
    height: 72px;
  }
}

/* ---- 480px ---- */
@media (max-width: 480px) {

  /* --- Hero --- */
  .hero {
    padding: 64px 10px 14px;
  }
  .hero-title {
    font-size: clamp(26px, 8.5vw, 34px);
  }
  .hero-eyebrow {
    font-size: 10px;
    padding: 3px 10px;
  }
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .stat {
    flex: none;
    min-width: 0;
    width: 100%;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
  }
  .stat-num {
    font-size: 20px;
  }
  .stat-label {
    font-size: 10px;
    margin-top: 0;
  }

  /* --- Filter tabs: full-width pill row --- */
  .catalog-filter {
    padding: 8px;
    top: 52px;
  }
  .catalog-filter-wrap {
    gap: 4px;
  }
  .filter-btn {
    padding: 6px 9px;
    font-size: 10px;
  }

  /* --- Main --- */
  main {
    padding: 8px 8px 16px;
  }

  /* --- Intro --- */
  .catalog-intro {
    padding: 14px 10px;
  }
  .catalog-intro h2 {
    font-size: 17px;
  }
  .intro-list li {
    padding: 8px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .intro-key {
    min-width: auto;
  }

  /* --- Category --- */
  .category-section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .category-name {
    font-size: 20px;
  }
  .category-desc {
    font-size: 12px;
  }
  .category-applications {
    gap: 5px;
  }
  .app-tag {
    font-size: 10px;
    padding: 4px 7px;
    border-radius: 6px;
  }

  /* --- Printer card --- */
  .printer-image {
    height: 160px;
  }
  .printer-title {
    font-size: 16px;
  }
  .printer-description {
    font-size: 12px;
  }
  .printer-specs span {
    font-size: 10px;
    padding: 4px 6px;
  }
  .printer-content {
    padding: 10px 12px;
    gap: 8px;
  }
  .printer-actions {
    padding: 0 12px 10px;
    gap: 5px;
  }
  .btn-primary,
  .btn-outline {
    padding: 8px 10px;
    font-size: 11px;
  }

  /* --- Compare bar compact --- */
  .compare-bar {
    left: 8px;
    right: 8px;
    bottom: 12px;
    padding: 10px 12px;
    gap: 6px;
  }
  .compare-bar-chip {
    font-size: 10px;
    padding: 3px 5px 3px 10px;
  }
  .compare-bar-chip button {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .compare-bar-go {
    font-size: 11px;
    padding: 7px 10px;
  }

  /* --- Compare modal: keep readable on tiny screens --- */
  .compare-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .compare-modal {
    border-radius: 14px 14px 0 0;
    padding: 14px 10px 20px;
    max-height: 94vh;
  }

  /* --- Trust section --- */
  .trust-section {
    margin: 12px 8px;
    gap: 6px;
  }
  .trust-item {
    padding: 12px 10px;
    font-size: 13px;
    border-radius: 10px;
  }

  /* --- Industries --- */
  .industries-banner {
    padding: 0 8px 20px;
  }
  .industries-banner h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .industry-item {
    padding: 12px 6px;
    gap: 8px;
    border-radius: 10px;
  }
  .industry-icon {
    font-size: 24px;
  }
  .industry-label {
    font-size: 11px;
    line-height: 1.2;
  }

  /* --- CTA --- */
  .catalog-cta {
    padding: 18px 10px;
    margin: 16px 8px;
    border-radius: 10px;
  }
  .cta-content h3 {
    font-size: 17px;
  }
  .cta-content p {
    font-size: 12px;
  }
  .cta-primary,
  .cta-secondary {
    font-size: 13px;
    padding: 10px 12px;
  }

  /* --- Gallery lightbox on tiny phones --- */
  #gallery-lightbox img {
    max-width: 96vw;
    max-height: 65vh;
  }
  #gallery-lightbox-close {
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 32px;
  }
  #gallery-lb-prev,
  #gallery-lb-next {
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 32px;
  }
  #gallery-lb-prev { left: 4px; }
  #gallery-lb-next { right: 4px; }

  /* --- Gallery strip --- */
  .gallery-thumb {
    width: 90px;
    height: 64px;
  }
  .section-gallery {
    padding: 12px 8px;
    margin: 16px 0 4px;
  }
  .gallery-heading {
    font-size: 12px;
  }
}
/* === END MOBILE RESPONSIVE === */