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

  .hz-product-hub,
  .hz-product-hub * {
    box-sizing: border-box;
  }

  .hz-product-hub {
    --hz-orange: #f26a21;
    --hz-orange-dark: #d95416;
    --hz-navy: #071d33;
    --hz-dark: #111827;
    --hz-text: #4b5563;
    --hz-muted: #6b7280;
    --hz-border: #e5e7eb;
    --hz-soft: #f6f8fb;
    --hz-card: #ffffff;

    font-family: 'Inter', Arial, sans-serif;
    color: var(--hz-dark);
    background:
      radial-gradient(circle at 8% 8%, rgba(242, 106, 33, 0.065), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
  }

  .hz-product-hub a {
    color: inherit;
    text-decoration: none !important;
  }

  .hz-product-hub h1,
  .hz-product-hub h2,
  .hz-product-hub h3,
  .hz-product-hub p {
    margin: 0;
  }

  .hz-product-hub img {
    display: block;
    width: 100%;
  }

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

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

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

  /* Hero */
  .hz-product-hero {
    padding: 118px 0 72px;
  }

  .hz-product-hero-inner {
    max-width: 1080px;
  }

  .hz-product-hero h1 {
    max-width: 980px;
    margin-bottom: 26px;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--hz-navy);
    font-size: 62px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -2px;
  }

  .hz-product-hero h1 span {
    color: var(--hz-orange);
  }

  .hz-product-hero p {
    max-width: 900px;
    color: var(--hz-text);
    font-size: 18px;
    line-height: 1.82;
  }

  .hz-product-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
  }

  .hz-product-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--hz-border);
    color: var(--hz-navy);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 10px 24px rgba(7, 29, 51, 0.04);
  }

  .hz-product-pill:hover {
    color: var(--hz-orange);
    border-color: rgba(242, 106, 33, 0.38);
    transform: translateY(-2px);
  }

  /* Sections */
  .hz-product-section {
    padding: 82px 0;
  }

  .hz-product-section-head {
    max-width: 940px;
    margin-bottom: 44px;
  }

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

  .hz-product-section-desc {
    color: var(--hz-text);
    font-size: 17px;
    line-height: 1.8;
  }

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

  .hz-product-family-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--hz-border);
    box-shadow: 0 16px 40px rgba(7, 29, 51, 0.055);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .hz-product-family-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 106, 33, 0.36);
    box-shadow: 0 26px 68px rgba(7, 29, 51, 0.12);
  }

  .hz-product-family-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef2f6;
    border-bottom: 1px solid var(--hz-border);
  }

  .hz-product-family-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease, filter 0.55s ease;
    filter: saturate(0.96) contrast(1.02);
  }

  .hz-product-family-card:hover .hz-product-family-image img {
    transform: scale(1.06);
  }

  .hz-product-family-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7, 29, 51, 0.02) 0%, rgba(7, 29, 51, 0.28) 100%);
    pointer-events: none;
  }

  .hz-product-family-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--hz-orange-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(7, 29, 51, 0.08);
  }

  .hz-product-family-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 30px;
  }

  .hz-product-family-body h3 {
    margin-bottom: 13px;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--hz-navy);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
  }

  .hz-product-family-body p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--hz-text);
    font-size: 15.5px;
    line-height: 1.72;
  }

  .hz-product-models {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hz-product-models span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--hz-border);
    color: var(--hz-text);
    font-size: 12px;
    font-weight: 700;
  }

  .hz-product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: var(--hz-orange);
    font-size: 14px;
    font-weight: 800;
  }

  .hz-product-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
  }

  .hz-product-family-card:hover .hz-product-card-link svg {
    transform: translateX(6px);
  }

  /* How to Choose */
  .hz-product-guide {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
    padding: 56px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 88% 14%, rgba(242, 106, 33, 0.2), transparent 34%),
      linear-gradient(135deg, #071d33 0%, #0d304f 100%);
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(7, 29, 51, 0.16);
  }

  .hz-product-guide .hz-product-eyebrow {
    color: #ff9a5c;
  }

  .hz-product-guide .hz-product-eyebrow::before {
    background: #ff9a5c;
  }

  .hz-product-guide h2 {
    margin-bottom: 18px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
  }

  .hz-product-guide p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16.5px;
    line-height: 1.8;
  }

  .hz-product-guide-list {
    display: grid;
    gap: 16px;
  }

  .hz-product-guide-item {
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hz-product-guide-item strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
  }

  .hz-product-guide-item span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14.5px;
    line-height: 1.65;
  }

  /* Solution Links */
  .hz-product-solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 42px;
  }

  .hz-product-solution-card {
    padding: 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--hz-border);
    box-shadow: 0 14px 34px rgba(7, 29, 51, 0.045);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .hz-product-solution-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-product-solution-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--hz-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .hz-product-solution-card h3 {
    margin-bottom: 10px;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--hz-navy);
    font-size: 20px;
    line-height: 1.32;
  }

  .hz-product-solution-card p {
    color: var(--hz-text);
    font-size: 14.5px;
    line-height: 1.65;
  }

  /* CTA */
  .hz-product-cta {
    margin: 28px 0 110px;
    padding: 58px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 12% 20%, rgba(242, 106, 33, 0.22), transparent 32%),
      linear-gradient(135deg, #071d33 0%, #0c2c4a 100%);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 28px 80px rgba(7, 29, 51, 0.18);
  }

  .hz-product-cta h2 {
    max-width: 820px;
    margin: 0 auto 18px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 600;
  }

  .hz-product-cta p {
    max-width: 780px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
  }

  .hz-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--hz-orange);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 14px 28px rgba(242, 106, 33, 0.22);
  }

  .hz-product-btn:hover {
    background: var(--hz-orange-dark);
    transform: translateY(-2px);
  }

  @media (max-width: 1180px) {
    .hz-product-hero h1 {
      font-size: 52px;
    }

    .hz-product-family-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .hz-product-guide {
      grid-template-columns: 1fr;
    }

    .hz-product-solution-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

    .hz-product-hero {
      padding: 88px 0 50px;
    }

    .hz-product-hero h1 {
      font-size: 38px;
      letter-spacing: -1.2px;
    }

    .hz-product-hero p,
    .hz-product-section-desc {
      font-size: 16px;
    }

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

    .hz-product-section-title {
      font-size: 32px;
    }

    .hz-product-family-grid,
    .hz-product-solution-grid {
      grid-template-columns: 1fr;
    }

    .hz-product-family-image {
      aspect-ratio: 16 / 11;
    }

    .hz-product-family-body {
      padding: 26px 24px 28px;
    }

    .hz-product-guide {
      padding: 36px 24px;
      border-radius: 22px;
    }

    .hz-product-guide h2 {
      font-size: 30px;
    }

    .hz-product-cta {
      padding: 38px 24px;
      margin-bottom: 72px;
    }

    .hz-product-cta h2 {
      font-size: 30px;
    }
  }
