/* ============================================================
   All Products Listing — products.css (Page 2)
   Brand colours: Blue #1e5bfa | Dark #03091a
   BG: Hero #f7f9ff | Wave #bfd1ff | Content #fafafa | Impact #1e5bfa
   ============================================================ */

.products-page {
  overflow-x: hidden;
}

.products-page .main-container {
  height: auto;
  min-height: 0;
  display: block;
  justify-content: unset;
}

.products-page .main-container .header-container {
  position: relative;
  width: 100%;
  margin: 0;
  display: block;
}

.prod-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.prod-blue {
  color: #1e5bfa;
}

.prod-btn-primary {
  display: inline-block;
  background: #1e5bfa;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #1e5bfa;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
}

.prod-btn-primary:hover {
  background: #133fb3;
  border-color: #133fb3;
  color: #fff;
  text-decoration: none;
}

/* ---- Hero ---- */
.prod-hero {
  position: relative;
  background: #f7f9ff;
  padding: 100px 0 140px;
  text-align: center;
  overflow: hidden;
}

.prod-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.prod-hero-headline {
  font-size: 44px;
  font-weight: 700;
  color: #03091a;
  line-height: 1.25;
  margin: 0 0 20px;
}

.prod-hero-rule {
  width: 56px;
  height: 4px;
  background: #1e5bfa;
  border-radius: 2px;
  margin: 0 auto 22px;
}

.prod-hero-sub {
  font-size: 17px;
  color: #03091acc;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 32px;
}

.prod-hero-wave {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 140%;
  max-width: 1600px;
  height: 120px;
  background: #bfd1ff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 0;
  pointer-events: none;
}

/* ---- Solutions grid ---- */
.prod-section {
  padding: 80px 0;
}

.prod-solutions {
  background: #fafafa;
  padding-top: 56px;
}

.prod-section-head {
  font-size: 34px;
  font-weight: 700;
  color: #03091a;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 16px;
}

.prod-section-rule {
  width: 48px;
  height: 4px;
  background: #1e5bfa;
  border-radius: 2px;
  margin: 0 auto 18px;
}

.prod-section-sub {
  font-size: 16px;
  color: #03091acc;
  text-align: center;
  margin: 0 0 48px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prod-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: 0 4px 18px rgba(3, 9, 26, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.prod-card:hover {
  box-shadow: 0 10px 28px rgba(30, 91, 250, 0.12);
  transform: translateY(-3px);
}

.prod-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e8efff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.prod-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.prod-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #03091a;
  margin: 0 0 10px;
  line-height: 1.3;
}

.prod-card-desc {
  font-size: 14.5px;
  color: #03091a99;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

.prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e5bfa;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.prod-card-link:hover {
  color: #133fb3;
  text-decoration: none;
}

/* ---- Impact ---- */
.prod-impact {
  background: #1e5bfa;
  padding: 72px 0;
  text-align: center;
}

.prod-impact-head {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 40px;
}

.prod-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-impact-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: left;
}

.prod-impact-num {
  font-size: 48px;
  font-weight: 700;
  color: #1e5bfa;
  line-height: 1;
  margin-bottom: 14px;
}

.prod-impact-desc {
  font-size: 15px;
  color: #03091acc;
  line-height: 1.6;
}

/* ---- Final CTA ---- */
.prod-final-cta {
  background: #fafafa;
  padding: 80px 0;
  text-align: center;
}

.prod-final-cta-head {
  font-size: 30px;
  font-weight: 700;
  color: #1e5bfa;
  line-height: 1.35;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .prod-hero-headline {
    font-size: 36px;
  }

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

  .prod-impact-grid {
    grid-template-columns: 1fr;
  }

  .prod-section-head {
    font-size: 28px;
  }

  .prod-impact-head {
    font-size: 28px;
  }

  .prod-impact-card {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .prod-container {
    padding: 0 24px;
  }

  .prod-hero {
    padding: 64px 0 110px;
  }

  .prod-hero-headline {
    font-size: 28px;
  }

  .prod-hero-wave {
    height: 80px;
    width: 180%;
  }

  .prod-section {
    padding: 56px 0;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .prod-section-head,
  .prod-impact-head,
  .prod-final-cta-head {
    font-size: 24px;
  }

  .prod-impact {
    padding: 56px 0;
  }

  .prod-final-cta {
    padding: 56px 0;
  }

  .prod-btn-primary {
    width: 100%;
    max-width: 320px;
  }
}
