
.products-page .container {
  position: relative;
  z-index: 1;
}
.products-page .pricing {
  padding: 4rem 1rem;
  background: #eef6ff;
}
.products-page .pricing h2 {
  text-align: center;
  color: #004080;
  margin-bottom: 2rem;
}
.products-page .pricing .pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.products-page .pricing .pricing-cards .card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  width: 280px;
  text-align: center;
  transition: 0.3s ease;
}
.products-page .pricing .pricing-cards .card:hover {
  transform: translateY(-8px);
}
.products-page .pricing .pricing-cards .card.highlight {
  border: 2px solid #00c3ff;
}
.products-page .pricing .pricing-cards .card h3 {
  font-size: 1.5rem;
  color: #004080;
}
.products-page .pricing .pricing-cards .card p {
  font-size: 1.2rem;
  color: #00c3ff;
  margin: 1rem 0;
}
.products-page .pricing .pricing-cards .card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.products-page .pricing .pricing-cards .card ul li {
  margin-bottom: 0.5rem;
  color: #555;
}
.products-page .pricing .pricing-cards .card .btn,
.products-page .pricing .pricing-cards .card .btn-outline {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}
.products-page .pricing .pricing-cards .card .btn {
  background: #004080;
  color: white;
}
.products-page .pricing .pricing-cards .card .btn:hover {
  background: #003266;
}
.products-page .pricing .pricing-cards .card .btn-outline {
  border: 2px solid #004080;
  color: #004080;
  background: transparent;
}
.products-page .pricing .pricing-cards .card .btn-outline:hover {
  background: #004080;
  color: white;
}
.products-page .testimonials {
  padding: 4rem 1rem;
  background: #fff;
}
.products-page .testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #004080;
  margin-bottom: 2rem;
}
.products-page .testimonials .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.products-page .testimonials .testimonials-grid .testimonial {
  background: #f0f6ff;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.products-page .testimonials .testimonials-grid .testimonial p {
  font-size: 15px;
  color: #333;
  margin-bottom: 0.8rem;
}
.products-page .testimonials .testimonials-grid .testimonial span {
  font-size: 14px;
  color: #007bff;
}
.products-page .template-showcase {
  background: #f9fbff;
  padding: 4rem 1rem;
  text-align: center;
}
.products-page .template-showcase h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 0.5rem;
}
.products-page .template-showcase .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}
.products-page .template-showcase .templates-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: center;
}
.products-page .template-showcase .templates-grid .template-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  padding: 1rem;
}
.products-page .template-showcase .templates-grid .template-card:hover {
  transform: translateY(-8px);
}
.products-page .template-showcase .templates-grid .template-card svg {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.products-page .template-showcase .templates-grid .template-card h3 {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #333;
}
.products-page .why-choose-builder {
  background: #f5f9ff;
  padding: 5rem 1rem;
  text-align: center;
}
.products-page .why-choose-builder .container {
  max-width: 1200px;
  margin: auto;
}
.products-page .why-choose-builder h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 0.5rem;
}
.products-page .why-choose-builder .subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
}
.products-page .why-choose-builder .reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.products-page .why-choose-builder .reasons-grid .reason-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products-page .why-choose-builder .reasons-grid .reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 64, 128, 0.1);
}
.products-page .why-choose-builder .reasons-grid .reason-card svg {
  width: 60px;
  height: 60px;
  margin-bottom: 1.2rem;
}
.products-page .why-choose-builder .reasons-grid .reason-card h3 {
  font-size: 1.2rem;
  color: #004080;
  margin-bottom: 0.5rem;
}
.products-page .why-choose-builder .reasons-grid .reason-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/*# sourceMappingURL=products.css.map */
