/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

/* Hero — extend behind transparent navbar (matches About/Careers) */
.page-hero {
  margin-top: 0;
  padding-top: calc(var(--nav-h) + 80px);
}

/* Hero entrance — staggered, CSS-driven */
@keyframes hero-item-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero-eyebrow {
  animation: hero-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.page-hero h1 {
  animation: hero-item-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.page-hero p {
  animation: hero-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

/* Products accordion section — standalone below the hero */
.products-section {
  padding: 80px 0;
}

/* CORELine card: Polar Technology Solutions partner logo */
.coreline-partner-logo {
  display: flex;
  justify-content: flex-end;
  margin-top: -20px;
  margin-bottom: 28px;
}
.coreline-partner-logo img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(33%) sepia(94%) saturate(604%) hue-rotate(174deg) brightness(98%) contrast(106%);
  opacity: 0.9;
}
