/* ============================================
   INVENOVA — Hardware Section Styles
   /hardware/printers/ and all sub-pages
   ============================================ */

/* ─── BREADCRUMBS ─────────────────────────────── */
.hw-breadcrumb {
  padding: 14px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.hw-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hw-breadcrumb-inner a {
  color: var(--text-secondary);
  transition: color 0.15s;
}
.hw-breadcrumb-inner a:hover { color: var(--indigo); }
.hw-breadcrumb-sep { color: var(--text-muted); }
.hw-breadcrumb-current { color: var(--text-primary); font-weight: 500; }

/* ─── HERO ────────────────────────────────────── */
.hw-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #032555 0%, #0a3d7a 50%, #1a5fa0 100%);
  color: #fff;
  overflow: hidden;
}
.hw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 60%, rgba(124,58,237,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.hw-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.hw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hw-hero-badge svg { flex-shrink: 0; }
.hw-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}
.hw-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hw-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.88;
  max-width: 580px;
  margin-bottom: 28px;
}
.hw-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hw-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hw-hero-stat-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.hw-hero-stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 3px;
}
.hw-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hw-hero-inner { grid-template-columns: 1fr; }
  .hw-hero-visual { display: none; }
  .hw-hero { padding: 100px 0 60px; }
}

/* ─── BRANDS STRIP ───────────────────────────── */
.hw-brands {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hw-brands-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hw-brands-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.hw-brands-list { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hw-brand-chip {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}

/* ─── SECTION SHELL ──────────────────────────── */
.hw-section { padding: 72px 0; }
.hw-section-alt { background: var(--bg-subtle); }
.hw-section-dark {
  background: linear-gradient(135deg, #032555 0%, #0a3d7a 100%);
  color: #fff;
}
.hw-section-header { text-align: center; margin-bottom: 48px; }
.hw-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}
.hw-section-dark .hw-section-header h2 { color: #fff; }
.hw-section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.hw-section-dark .hw-section-header p { color: rgba(255,255,255,0.75); }
.hw-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  margin-bottom: 10px;
}
.hw-section-dark .hw-eyebrow { color: #a78bfa; }

/* ─── CATEGORY CARDS ─────────────────────────── */
.hw-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.hw-cat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.hw-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo);
}
.hw-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  flex-shrink: 0;
}
.hw-cat-card:hover .hw-cat-icon { background: var(--indigo); }
.hw-cat-card:hover .hw-cat-icon svg { stroke: #fff; }
.hw-cat-card:hover .hw-cat-icon svg path[fill] { fill: #fff; }
.hw-cat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.hw-cat-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.hw-cat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.hw-cat-price { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.hw-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: #ede9fe;
  color: var(--violet);
  padding: 2px 8px;
  border-radius: 20px;
}
.hw-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--indigo);
}
.hw-cat-link svg { transition: transform 0.15s; }
.hw-cat-card:hover .hw-cat-link svg { transform: translateX(3px); }

/* ─── FEATURED PRODUCTS ──────────────────────── */
.hw-featured { padding: 72px 0; }
.hw-featured-group { margin-bottom: 56px; }
.hw-featured-group:last-child { margin-bottom: 0; }
.hw-featured-group-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.hw-featured-group-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}
.hw-see-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hw-see-all:hover { text-decoration: underline; }

.hw-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.hw-product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.hw-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hw-product-img {
  aspect-ratio: 4/3;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hw-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.hw-product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hw-product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hw-product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--indigo);
  color: #fff;
  align-self: flex-start;
}
.hw-product-brand { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hw-product-name { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); line-height: 1.35; }
.hw-product-price { font-size: 1.05rem; font-weight: 800; color: var(--indigo); }
.hw-product-price-sub { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; margin-left: 2px; }
.hw-product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.hw-product-features li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}
.hw-product-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
  margin-top: 6px;
}
.hw-product-pos-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 4px;
}
.hw-product-cta {
  margin-top: auto;
  padding-top: 12px;
}

/* ─── COMPARISON TABLE ───────────────────────── */
.hw-compare { padding: 72px 0; background: var(--bg-subtle); }
.hw-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.hw-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  min-width: 700px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hw-compare-table th {
  background: var(--indigo);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  white-space: nowrap;
}
.hw-compare-table th:first-child { text-align: left; background: #021a38; }
.hw-compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
  color: var(--text-secondary);
}
.hw-compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-subtle);
  white-space: nowrap;
}
.hw-compare-table tr:last-child td { border-bottom: none; }
.hw-compare-table tr:hover td { background: #f0f9ff; }
.hw-compare-table tr:hover td:first-child { background: #e0f2fe; }
.hw-compare-avail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald);
}
.hw-compare-soon {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── INDUSTRY ROUTING ───────────────────────── */
.hw-industries { padding: 72px 0; }
.hw-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.hw-industry-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hw-industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--indigo);
}
.hw-industry-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hw-industry-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-industry-name { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.hw-industry-rec {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}
.hw-industry-rec strong { color: var(--indigo); font-weight: 600; }
.hw-industry-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--indigo);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s;
  text-decoration: none;
}
.hw-industry-cta:hover { background: #021a38; }

/* ─── WHY INVENOVA ───────────────────────────── */
.hw-why { padding: 72px 0; background: var(--bg-subtle); }
.hw-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.hw-why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.hw-why-card:hover { box-shadow: var(--shadow); }
.hw-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-why-icon svg { stroke: var(--violet); }
.hw-why-body h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.hw-why-body p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── BUYING GUIDE ───────────────────────────── */
.hw-guide { padding: 72px 0; }
.hw-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.hw-guide-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hw-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--indigo);
}
.hw-guide-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-guide-icon svg { stroke: var(--blue); }
.hw-guide-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; line-height: 1.35; }
.hw-guide-text p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }
.hw-guide-arrow { margin-left: auto; flex-shrink: 0; color: var(--text-muted); }
.hw-guide-card:hover .hw-guide-arrow { color: var(--indigo); }

/* ─── FAQ ────────────────────────────────────── */
.hw-faq { padding: 72px 0; background: var(--bg-subtle); }
.hw-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.hw-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.hw-faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-primary);
}
.hw-faq-item summary::-webkit-details-marker { display: none; }
.hw-faq-item summary::after {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hw-faq-item[open] summary::after { transform: rotate(180deg); }
.hw-faq-item[open] summary { color: var(--indigo); }
.hw-faq-item p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.hw-faq-item a { color: var(--indigo); font-weight: 600; }

/* ─── CTA BLOCK ──────────────────────────────── */
.hw-cta { padding: 80px 0; background: linear-gradient(135deg, #032555, #0a3d7a); color: #fff; }
.hw-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.hw-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.hw-cta-inner p { font-size: 1rem; opacity: 0.85; line-height: 1.7; margin-bottom: 28px; }
.hw-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── PRODUCT DETAIL PAGE (PDP) ──────────────── */
.hw-pdp { padding: 60px 0; }
.hw-pdp-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: start;
}
.hw-pdp-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.hw-pdp-main-img {
  aspect-ratio: 4/3;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hw-pdp-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 32px; }
.hw-pdp-brand { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 6px; }
.hw-pdp-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.hw-pdp-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.hw-pdp-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.hw-pdp-badge-primary { background: var(--indigo); color: #fff; }
.hw-pdp-badge-success { background: #dcfce7; color: #166534; }
.hw-pdp-badge-warning { background: #fef3c7; color: #92400e; }
.hw-pdp-price-block { margin-bottom: 20px; }
.hw-pdp-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
}
.hw-pdp-price-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.hw-pdp-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hw-pdp-pos-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--emerald);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 8px 14px;
  border-radius: 8px;
}

/* specs card on PDP */
.hw-pdp-specs-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.hw-pdp-specs-title {
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--indigo);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hw-pdp-specs-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hw-pdp-specs-table td { padding: 10px 18px; border-bottom: 1px solid var(--border); }
.hw-pdp-specs-table tr:last-child td { border-bottom: none; }
.hw-pdp-specs-table td:first-child { font-weight: 600; color: var(--text-primary); width: 45%; }
.hw-pdp-specs-table td:last-child { color: var(--text-secondary); }
.hw-pdp-specs-table tr:nth-child(even) td { background: #fff; }

/* features list on PDP */
.hw-pdp-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.hw-pdp-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hw-pdp-features-list li svg { flex-shrink: 0; color: var(--emerald); margin-top: 1px; }

/* in the box */
.hw-pdp-inbox { margin-bottom: 24px; }
.hw-pdp-inbox h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.hw-pdp-inbox-list { display: flex; flex-wrap: wrap; gap: 8px; }
.hw-pdp-inbox-item {
  font-size: 0.8rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 6px;
  color: var(--text-secondary);
}

/* downloads */
.hw-pdp-downloads { margin-bottom: 24px; }
.hw-pdp-downloads h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.hw-pdp-dl-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--indigo);
  font-weight: 600;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  margin-right: 8px;
  margin-bottom: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.hw-pdp-dl-item:hover { background: #e0e7ff; border-color: var(--indigo); }

/* related products */
.hw-pdp-related { padding: 56px 0; background: var(--bg-subtle); }
.hw-pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

@media (max-width: 900px) {
  .hw-pdp-layout { grid-template-columns: 1fr; }
  .hw-pdp-gallery { position: static; }
}

/* ─── SUBCATEGORY PAGE ───────────────────────── */
.hw-subcat-hero {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 36px;
}
.hw-subcat-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.hw-subcat-hero p { font-size: 0.95rem; color: var(--text-secondary); max-width: 560px; line-height: 1.7; }
.hw-subcat-meta { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.hw-subcat-meta-item { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }

.hw-subcat-products { padding: 56px 0; }
.hw-subcat-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hw-filter-btn {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.hw-filter-btn:hover { border-color: var(--indigo); color: var(--indigo); }
.hw-filter-btn.active { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.hw-filter-btn[disabled] { opacity: 0.45; cursor: default; }

/* ─── HARDWARE HUB ───────────────────────────── */
.hw-hub { padding: 72px 0; }
.hw-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.hw-hub-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hw-hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--indigo); }
.hw-hub-card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hw-hub-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
.hw-hub-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }
.hw-hub-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .hw-section { padding: 52px 0; }
  .hw-featured { padding: 52px 0; }
  .hw-cat-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .hw-industry-grid { grid-template-columns: 1fr; }
  .hw-why-grid { grid-template-columns: 1fr; }
  .hw-guide-grid { grid-template-columns: 1fr; }
  .hw-product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .hw-section-header { margin-bottom: 32px; }
  .hw-cta { padding: 56px 0; }
  .hw-faq-list { max-width: 100%; }
}
@media (max-width: 480px) {
  .hw-cat-grid { grid-template-columns: 1fr 1fr; }
  .hw-product-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HARDWARE HUB — /hardware/ central hub page styles (hwh-*)
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.hwh-hero {
  position: relative;
  padding: 96px 0 72px;
  background: linear-gradient(135deg, #020f2a 0%, #032555 45%, #0a3d7a 100%);
  color: #fff;
  overflow: hidden;
}
.hwh-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hwh-hero-glow--1 {
  width: 480px; height: 480px;
  background: rgba(124,58,237,0.18);
  top: -120px; left: -100px;
}
.hwh-hero-glow--2 {
  width: 360px; height: 360px;
  background: rgba(16,185,129,0.1);
  bottom: -80px; right: 10%;
}
.hwh-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hwh-hero-text { max-width: 640px; }
.hwh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hwh-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hwh-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 28px;
  max-width: 560px;
}
.hwh-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
}
.hwh-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  opacity: 0.88;
}
.hwh-trust-item svg { flex-shrink: 0; color: #4ade80; }
.hwh-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stats panel */
.hwh-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  min-width: 220px;
}
.hwh-stat {
  padding: 20px 22px;
  text-align: center;
  background: rgba(255,255,255,0.03);
}
.hwh-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.hwh-stat-label {
  font-size: 0.72rem;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Hub Buttons ──────────────────────────────────────────── */
.hwh-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.hwh-btn-wa:hover { background: #1ebe58; transform: translateY(-1px); }
.hwh-btn-wa--light {
  background: #fff;
  color: #032555;
}
.hwh-btn-wa--light:hover { background: #f1f5f9; transform: translateY(-1px); }
.hwh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.hwh-btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }
.hwh-btn-outline--dark {
  color: var(--text-primary);
  border-color: var(--border);
}
.hwh-btn-outline--dark:hover { border-color: var(--indigo); color: var(--indigo); background: transparent; }
.hwh-btn-view {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: var(--indigo);
  color: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.hwh-btn-view:hover { background: #021d3f; }
.hwh-btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.hwh-btn-enquire:hover { border-color: var(--indigo); color: var(--indigo); }

/* ── Section Head ─────────────────────────────────────────── */
.hwh-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.hwh-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.hwh-section-head p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Category Grid ────────────────────────────────────────── */
.hwh-cats-section { padding: 72px 0; }
.hwh-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hwh-cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hwh-cat-card:hover {
  box-shadow: 0 8px 32px rgba(3,37,85,0.12);
  transform: translateY(-3px);
}

/* Card header — gradient image area */
.hwh-cat-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.hwh-cat-card-header-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hwh-cat-card-header-circles::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hwh-cat-card-header-circles::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hwh-cat-card-header svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* Badge on card header */
.hwh-header-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 2;
}
.hwh-header-badge--indigo { background: rgba(3,37,85,0.85); color: #fff; }
.hwh-header-badge--coming-soon { background: rgba(0,0,0,0.45); color: rgba(255,255,255,0.85); }

/* Card body */
.hwh-cat-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hwh-cat-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hwh-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
}
.hwh-count-pill--active {
  background: #dcfce7;
  color: #166534;
}
.hwh-count-pill--soon {
  background: #fef3c7;
  color: #92400e;
}
.hwh-cat-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hwh-cat-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.hwh-cat-card-title a {
  color: inherit;
  text-decoration: none;
}
.hwh-cat-card-title a:hover { color: var(--indigo); }
.hwh-cat-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Quick-link pills */
.hwh-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.hwh-quick-link {
  padding: 4px 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.hwh-quick-link:hover { border-color: var(--indigo); color: var(--indigo); }

/* Card footer */
.hwh-cat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.hwh-price-from {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--indigo);
}

/* ── Setup Strip ──────────────────────────────────────────── */
.hwh-setup-strip {
  background: linear-gradient(135deg, #032555 0%, #1a5fa0 100%);
  padding: 56px 0;
  color: #fff;
}
.hwh-setup-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
}
.hwh-setup-text h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.hwh-setup-text p {
  font-size: 0.9rem;
  opacity: 0.82;
  line-height: 1.65;
  max-width: 420px;
}
.hwh-setup-components {
  display: flex;
  gap: 20px;
}
.hwh-setup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.hwh-setup-item svg {
  width: 36px;
  height: 36px;
  opacity: 0.85;
}
.hwh-setup-item span {
  font-size: 0.72rem;
  opacity: 0.75;
  white-space: nowrap;
}

/* ── Why Section ──────────────────────────────────────────── */
.hwh-why-section {
  padding: 72px 0;
  background: var(--bg-subtle);
}
.hwh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hwh-why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.hwh-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hwh-why-icon--indigo { background: #e0e7ff; color: var(--indigo); }
.hwh-why-icon--violet { background: #ede9fe; color: #7c3aed; }
.hwh-why-icon--emerald { background: #d1fae5; color: #065f46; }
.hwh-why-icon--amber { background: #fef3c7; color: #92400e; }
.hwh-why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}
.hwh-why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── SEO Block ────────────────────────────────────────────── */
.hwh-seo-block {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.hwh-seo-inner h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hwh-seo-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.hwh-seo-cols p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.hwh-seo-cols p:last-child { margin-bottom: 0; }

/* ── CTA Section ──────────────────────────────────────────── */
.hwh-cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #032555 0%, #0a3d7a 100%);
  color: #fff;
  text-align: center;
}
.hwh-cta-inner { max-width: 560px; margin: 0 auto; }
.hwh-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.hwh-cta-inner p {
  font-size: 1rem;
  opacity: 0.82;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hwh-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Coming Soon box (category-landing) ──────────────────── */
.hwh-coming-soon-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(3,37,85,0.07);
}
.hwh-coming-soon-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-muted);
}
.hwh-coming-soon-box h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.hwh-coming-soon-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hwh-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hwh-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hwh-hero-inner { grid-template-columns: 1fr; }
  .hwh-hero-stats { display: none; }
  .hwh-setup-inner { grid-template-columns: 1fr; text-align: center; }
  .hwh-setup-components { justify-content: center; }
  .hwh-setup-text p { max-width: 100%; }
  .hwh-seo-cols { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 700px) {
  .hwh-cat-grid { grid-template-columns: 1fr; }
  .hwh-why-grid { grid-template-columns: 1fr; }
  .hwh-cat-card-header { height: 160px; }
  .hwh-hero { padding: 64px 0 48px; }
  .hwh-setup-components { flex-wrap: wrap; gap: 16px; }
  .hwh-coming-soon-box { padding: 40px 24px; }
}
