/* ─── PRODUCTS PAGE — DARK, BOLD, HITS HARD ─── */

/* PAGE HEADER */
.page-header {
  padding: 160px 0 64px;
  background: #0B0F1A;
  text-align: center;
}
.page-header .wrap { max-width: 800px; }
.page-title {
  font-size: clamp(40px, 5vw, 64px); font-weight: 800;
  color: #fff; line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.page-header .section-label { color: var(--blue); }
.page-desc {
  font-size: 17px; color: rgba(255,255,255,.45); max-width: 560px;
  line-height: 1.7; margin: 0 auto;
}

/* CATEGORY NAV */
.cat-nav {
  background: #0B0F1A; border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky; top: var(--nav-h); z-index: 100;
}
.cat-nav-inner {
  display: flex; align-items: center; justify-content: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 32px; font-family: var(--ff); font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.35); border: none; background: transparent;
  border-bottom: 2px solid transparent; cursor: pointer;
  white-space: nowrap; transition: color .2s, border-color .2s;
}
.cat-btn:hover { color: rgba(255,255,255,.7); }
.cat-btn.active { color: #fff; border-bottom-color: var(--blue); }
.cat-count {
  background: rgba(255,255,255,.06); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.3); padding: 2px 8px; border-radius: 100px;
}
.cat-btn.active .cat-count {
  background: rgba(0,102,255,.2); color: var(--blue);
}

/* SECTIONS */
.cat-section { padding: 80px 0; background: #0F1320; }
.cat-section:nth-child(even) { background: #0B0F1A; }
.cat-alt { background: #0B0F1A; }
.cat-section-hdr { margin-bottom: 48px; }
.cat-tag {
  display: inline-block; background: rgba(0,102,255,.12); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px; margin-bottom: 14px;
}
.cat-section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: #fff; line-height: 1.12; letter-spacing: -.5px;
  margin-bottom: 12px;
}
.cat-section-desc {
  font-size: 16px; color: rgba(255,255,255,.4); max-width: 540px; line-height: 1.7;
}

/* PRODUCT CARDS */
.prod-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.prod-card {
  border: 1px solid rgba(255,255,255,.06); border-radius: 16px;
  overflow: hidden; background: rgba(255,255,255,.03);
  display: grid; grid-template-columns: 1fr 1fr;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.prod-card:hover {
  border-color: rgba(0,102,255,.25);
  box-shadow: 0 16px 48px rgba(0,102,255,.08);
  transform: translateY(-2px);
}
.prod-img {
  background: linear-gradient(135deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.06) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 340px; padding: 24px;
}
.prod-img img {
  width: 80%; max-height: 360px; display: block; object-fit: contain;
  transition: transform .4s ease;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}
.prod-card:hover .prod-img img { transform: scale(1.08); }
.prod-body {
  padding: 40px; display: flex; flex-direction: column; justify-content: center;
}
.prod-name {
  font-size: 32px; font-weight: 800; color: #fff;
  margin-bottom: 10px; letter-spacing: -.5px;
}
.prod-tagline {
  font-size: 15px; color: rgba(255,255,255,.45); margin-bottom: 28px; line-height: 1.7;
}
.prod-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px;
}
.prod-col h6 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.prod-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prod-col ul li {
  font-size: 14px; color: rgba(255,255,255,.65); padding-left: 14px;
  position: relative; line-height: 1.55;
}
.prod-col ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}
.prod-industries { display: flex; flex-wrap: wrap; gap: 8px; }
.prod-industries span {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  padding: 5px 14px; border-radius: 100px;
}
.prod-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 24px;
  font-size: 14px; font-weight: 700; color: #fff;
  padding: 12px 24px; background: var(--blue); border-radius: 6px;
  transition: gap .2s, background .2s;
}
.prod-link:hover { gap: 10px; background: #0052CC; }

/* CTA */
.products-cta {
  background: rgba(0,102,255,.08); border: 1px solid rgba(0,102,255,.15);
  padding: 56px; border-radius: 16px; margin-top: 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
}
.products-cta h3 {
  font-size: 26px; font-weight: 700; color: #fff;
  margin-bottom: 8px; letter-spacing: -.3px;
}
.products-cta p { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.65; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .prod-card { grid-template-columns: 1fr; }
  .prod-img { min-height: 260px; }
  .products-cta { flex-direction: column; text-align: center; padding: 40px 28px; }
}
@media (max-width: 768px) {
  .page-header { padding: 120px 0 40px; }
  .cat-section { padding: 56px 0; }
  .prod-body { padding: 28px; }
  .prod-name { font-size: 24px; }
  .prod-specs { grid-template-columns: 1fr; }
  .products-cta { padding: 28px 20px; }
  .cat-btn { padding: 14px 20px; font-size: 13px; }
}
