/* Product page & Feature cards - same theme as home */
.products-page-hero {
  text-align: center;
  padding: 50px 20px 40px;
  background-color: #f8faff;
}
.products-page-hero h1 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 12px;
}
.products-page-hero p {
  font-size: 18px;
  color: #546371;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-section {
  width: 100%;
  background-color: #F9FAFB;
  padding: 50px 20px 70px;
  scroll-margin-top: var(--navbar-total-height);
}
.features-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.features-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e45;
  margin-bottom: 8px;
}
.features-section .features-subheading {
  font-size: 16px;
  color: #4A6078;
  margin-bottom: 40px;
  font-weight: 400;
}
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.feature-card-link:hover {
  transform: translateY(-4px);
}
.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  min-height: 180px;
  text-align: center;
  border: 2px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
}
.feature-card-link:hover .feature-card {
  box-shadow: 0 10px 28px rgba(0, 74, 173, 0.15);
  border-color: #3366CC;
}
.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3366CC;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2e45;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: #4A6078;
  line-height: 1.55;
  margin: 0;
}
.product-back-bar {
  padding: 20px 40px 0;
  max-width: 1400px;
  margin: 0 auto;
}
.product-back-link {
  color: #004aad;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-back-link:hover {
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-section h2 { font-size: 24px; }
  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature-card { padding: 22px 20px; }
}
