
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

.hz-handheld-compare,
.hz-handheld-compare * {
  box-sizing: border-box;
}

.hz-handheld-compare {
  --hz-orange: #f26a21;
  --hz-orange-dark: #d95416;
  --hz-navy: #071d33;
  --hz-dark: #111827;
  --hz-text: #4b5563;
  --hz-light-text: #6b7280;
  --hz-border: #e5e7eb;
  --hz-soft-bg: #f6f8fb;
  --hz-card-bg: #ffffff;

  width: 100%;
  overflow: hidden;
  background: #ffffff;
  color: var(--hz-dark);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hz-handheld-compare h2,
.hz-handheld-compare h3,
.hz-handheld-compare p {
  margin: 0;
}

.hz-handheld-compare a {
  color: inherit;
  text-decoration: none !important;
}

.hz-handheld-section {
  padding: 84px 0;
}

.hz-handheld-section-soft {
  background: var(--hz-soft-bg);
}

.hz-handheld-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}

.hz-handheld-head {
  max-width: 980px;
  margin-bottom: 46px;
}

.hz-handheld-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hz-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hz-handheld-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--hz-orange);
  display: inline-block;
}

.hz-handheld-title {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.hz-handheld-desc {
  max-width: 980px;
  color: var(--hz-text);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
}

/* Product Cards */
.hz-handheld-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.hz-handheld-table-4 {
  min-width: 1120px;
}

@media (max-width: 1280px) {
  .hz-handheld-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hz-handheld-product-grid {
    grid-template-columns: 1fr;
  }

  .hz-handheld-table {
    min-width: 1120px;
  }
}

.hz-handheld-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--hz-border);
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.045);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hz-handheld-product-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 4px;
  height: 72px;
  border-radius: 0 999px 999px 0;
  background: var(--hz-orange);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hz-handheld-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 106, 33, 0.35);
  box-shadow: 0 24px 65px rgba(7, 29, 51, 0.12);
}

.hz-handheld-product-card:hover::before {
  opacity: 1;
}

.hz-handheld-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.1);
  color: var(--hz-orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hz-handheld-product-card h3 {
  margin-bottom: 16px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.7px;
}

.hz-handheld-product-card p {
  margin-bottom: 22px;
  color: var(--hz-text);
  font-size: 15.8px;
  line-height: 1.76;
  font-weight: 300;
}

.hz-handheld-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--hz-border);
}

.hz-handheld-list li {
  position: relative;
  padding-left: 22px;
  color: var(--hz-text);
  font-size: 14.6px;
  line-height: 1.62;
  font-weight: 300;
}

.hz-handheld-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hz-orange);
}

.hz-handheld-list strong {
  color: var(--hz-navy);
  font-weight: 700;
}

/* Diagnostics */
.hz-handheld-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.hz-handheld-feature-card {
  padding: 30px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--hz-border);
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.045);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hz-handheld-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 106, 33, 0.35);
  box-shadow: 0 22px 52px rgba(7, 29, 51, 0.1);
}

.hz-handheld-feature-num {
  display: block;
  margin-bottom: 18px;
  color: var(--hz-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.hz-handheld-feature-card h3 {
  margin-bottom: 12px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.hz-handheld-feature-card p {
  color: var(--hz-text);
  font-size: 15.5px;
  line-height: 1.72;
  font-weight: 300;
}

/* Specs Table */
.hz-handheld-table-wrap {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--hz-border);
  box-shadow: 0 18px 45px rgba(7, 29, 51, 0.06);
}

.hz-handheld-table {
  width: 100%;
  border-collapse: collapse;
}

.hz-handheld-table th,
.hz-handheld-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--hz-border);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.62;
}

.hz-handheld-table tr:last-child td {
  border-bottom: 0;
}

.hz-handheld-table thead th {
  background:
    radial-gradient(circle at 88% 18%, rgba(242, 106, 33, 0.24), transparent 32%),
    linear-gradient(135deg, #071d33 0%, #0d304f 100%);
  color: #ffffff;
  font-weight: 700;
}

.hz-handheld-table tbody td:first-child {
  background: #f9fafb;
  color: var(--hz-navy);
  font-weight: 700;
}

.hz-handheld-note {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--hz-border);
  color: var(--hz-text);
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 300;
  box-shadow: 0 12px 30px rgba(7, 29, 51, 0.04);
}

.hz-handheld-note strong {
  color: var(--hz-navy);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .hz-handheld-product-grid,
  .hz-handheld-feature-grid {
    grid-template-columns: 1fr;
  }

  .hz-handheld-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hz-handheld-container {
    padding: 0 22px;
  }

  .hz-handheld-section {
    padding: 62px 0;
  }

  .hz-handheld-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .hz-handheld-desc {
    font-size: 16px;
  }

  .hz-handheld-product-card,
  .hz-handheld-feature-card {
    padding: 28px 24px;
  }

  .hz-handheld-product-card h3 {
    font-size: 25px;
  }

  .hz-handheld-table-wrap {
    overflow-x: auto;
  }

  .hz-handheld-table {
    min-width: 860px;
  }
}
