.hardware-page {
  max-width: 100vw;
  margin: -1.5rem -1.5rem 0;
  padding: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.hardware-page .hero {
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
}

.hardware-page .hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 2px;
}

.hardware-page .hero p {
  font-size: 1.1rem;
  color: #999;
  margin: 0;
}

.hardware-page .product-section {
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.hardware-page .product-section h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 40px;
}

.hardware-page .product-layout {
  display: flex;
  gap: 48px;
  align-items: center;
}

.hardware-page .product-layout.reverse {
  flex-direction: row-reverse;
}

.hardware-page .product-media {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 12px;
  padding: 32px;
  min-height: 300px;
}

.hardware-page .product-media img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 8px;
}

.hardware-page .product-features {
  flex: 1;
  min-width: 0;
}

.hardware-page .product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hardware-page .product-features li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
}

.hardware-page .product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

.hardware-page .comparison {
  padding-top: 40px;
}

.hardware-page .comparison table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.hardware-page .comparison th,
.hardware-page .comparison td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(128, 128, 128, 0.2);
  font-size: 0.95rem;
}

.hardware-page .comparison th {
  font-weight: 600;
  background: rgba(59, 130, 246, 0.08);
}

.hardware-page .comparison td:first-child {
  text-align: left;
  font-weight: 500;
}

.hardware-page .contact {
  text-align: center;
  padding: 60px 24px 80px;
}

.hardware-page .contact p {
  color: #888;
  margin: 0 0 24px;
}

.hardware-page .contact-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #3b82f6;
  color: #fff !important;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.2s;
}

.hardware-page .contact-btn:hover {
  background: #2563eb;
}

@media (max-width: 768px) {
  .hardware-page .hero h1 {
    font-size: 1.6rem;
  }

  .hardware-page .product-layout,
  .hardware-page .product-layout.reverse {
    flex-direction: column;
  }

  .hardware-page .product-media {
    min-height: 200px;
  }
}
