/* ================================
   Products Page
================================ */

/* Main wrapper */
.sys-products-page,
.sys-products-why {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Section heading */
.sys-section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

/* Small label */
.sys-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(44, 116, 179, 0.1);
  color: #2c74b3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* Section title */
.sys-section-head h2 {
  margin: 0 0 16px;
  color: #0a2647;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
}

/* Section paragraph */
.sys-section-head p {
  margin: 0;
  color: #5f6f82;
  font-size: 18px;
  line-height: 1.8;
}

/* Products grid */
.sys-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* Product card */
.sys-product-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #e6edf5;
  box-shadow: 0 18px 45px rgba(10, 38, 71, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Product hover */
.sys-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 116, 179, 0.35);
  box-shadow: 0 26px 60px rgba(10, 38, 71, 0.13);
}

/* Product icon */
.sys-product-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2647, #2c74b3);
  font-size: 34px;
}

/* Product tag */
.sys-product-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #2c74b3;
  font-size: 14px;
  font-weight: 800;
}

/* Product title */
.sys-product-content h3 {
  margin: 0 0 14px;
  color: #0a2647;
  font-size: 30px;
  font-weight: 900;
}

/* Product text */
.sys-product-content p {
  margin: 0 0 18px;
  color: #5f6f82;
  font-size: 17px;
  line-height: 1.8;
}

/* Product list */
.sys-product-content ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #203246;
}

/* Product list item */
.sys-product-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Product link */
.sys-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #0a2647;
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 0.25s ease, background 0.25s ease;
}

/* Product link hover */
.sys-product-link:hover {
  transform: translateY(-3px);
  background: #2c74b3;
}

/* Features grid */
.sys-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Feature box */
.sys-feature-box {
  padding: 28px;
  border-radius: 24px;
  background: #f7faff;
  border: 1px solid #e6edf5;
}

/* Feature title */
.sys-feature-box h3 {
  margin: 0 0 12px;
  color: #0a2647;
  font-size: 22px;
  font-weight: 900;
}

/* Feature text */
.sys-feature-box p {
  margin: 0;
  color: #5f6f82;
  line-height: 1.7;
}

/* CTA section */
.sys-products-cta {
  padding: 40px 20px 90px;
}

/* CTA inner */
.sys-products-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 36px;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(135deg, #0a2647, #144b7d, #2c74b3);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(10, 38, 71, 0.22);
}

/* CTA title */
.sys-products-cta-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
}

/* CTA paragraph */
.sys-products-cta-inner p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* Main button */
.sys-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a2647 !important;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Main button hover */
.sys-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.22);
}

/* Mobile */
@media (max-width: 900px) {
  .sys-product-card {
    grid-template-columns: 1fr;
  }

  .sys-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile */
@media (max-width: 600px) {
  .sys-products-page,
  .sys-products-why {
    padding: 60px 16px;
  }

  .sys-product-card {
    padding: 26px;
  }

  .sys-features-grid {
    grid-template-columns: 1fr;
  }

  .sys-products-cta-inner {
    padding: 42px 22px;
  }
}