 /* ================= PRODUCT HERO SECTION START =================  */

#products-page .products-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../assets/images/product-page/product-hero-bg.jpeg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 100px 0;
}


#products-page .products-hero-content {
  text-align: center;
  max-width: 900px;
}

#products-page .hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}

#products-page .hero-title-light {
  display: block;
  color: #ffffff;
}

#products-page .hero-title-accent {
  display: block;
  color: #f8332c; /* Brand Red */
}

#products-page .hero-subtitle {
  font-size: 1.1rem;
  color: #cfd3ff;
  line-height: 1.6;
  margin-bottom: 40px;
}

#products-page .products-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 36px;
  border-radius: 999px;

  background-color: #f8332c; /* Brand Red */
  color: #ffffff;

  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;

  border: 2px solid #f8332c;
  transition: all 0.3s ease;
}

#products-page .products-hero-btn:hover {
  background-color: transparent;
  color: #f8332c;
}


#products-page .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

#products-page .hero-link {
  color: #cfd3ff;
  font-size: 0.95rem;
  text-decoration: none;
}

#products-page .hero-link:hover {
  color: #ffffff;
}



/* ================= PRODUCT HERO SECTION END =================  */





/* ==============================
   PRODUCTS / PRICING SECTION
   ============================== */

#products-page .products-pricing-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #0d1224, #070a14 70%);
}

/* Section header */
#products-page .section-header {
  text-align: center;
  margin-bottom: 80px;
}

#products-page .section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(80, 120, 255, 0.15);
  color: #6f8cff;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

#products-page .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
}

/* Cards grid */
#products-page .pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual card */
#products-page .pricing-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(120, 140, 255, 0.18);
  box-shadow: none; /* IMPORTANT */
  border-radius: 24px;
  padding: 36px 30px;
  color: #cfd3ff;
  transition: all 0.35s ease;
  z-index: 1;
}

/* gradient glow border */
#products-page .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(90, 120, 255, 0.35),
    rgba(180, 90, 255, 0.25),
    rgba(255, 90, 200, 0.2)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}

#products-page .pricing-card:hover::before {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(90, 140, 255, 0.9),
    rgba(90, 140, 255, 0.6)
  );
}

#products-page .pricing-card:hover {
  box-shadow:
    0 0 0 1px rgba(90, 140, 255, 0.9),
    0 0 30px rgba(90, 140, 255, 0.35);
}


/* Card title */
#products-page .pricing-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Description */
#products-page .pricing-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

/* Price */
#products-page .pricing-card .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 26px;
}

#products-page .pricing-card .price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: #aab0ff;
  margin-left: 6px;
}

/* Get Started button */
#products-page .pricing-card .card-btn {
  position: relative;
  display: block;
  text-align: center;
  padding: 14px 0;
  margin-bottom: 30px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}


#products-page .pricing-card .card-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #5f8cff,
    #9b6bff,
    #f05cff
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

#products-page .pricing-card .btn-text {
  display: inline-block;
  position: relative;
  z-index: 1;

  background: linear-gradient(
    90deg,
    #5f8cff 0%,
    #5f8cff 25%,
    #9b6bff 50%,
    #f05cff 75%,
    #f05cff 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 500;
}



#products-page .pricing-card .card-btn:hover {
  background: linear-gradient(
    135deg,
    #5f8cff,
    #9b6bff,
    #f05cff
  );
}

#products-page .pricing-card .card-btn:hover .btn-text {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}



#products-page .pricing-card .card-btn:hover::before {
  opacity: 0;
  /* display: none; */
}

/* Features list */
#products-page .pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 0;
}

#products-page .pricing-card .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

/* Feature icon */
#products-page .pricing-card .features img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}




/* ================= PRODUCTS / PRICING SECTION END =================  */




/* ==============================
   AI SECURITY CTA SECTION
   ============================== */

#products-page .ai-security-section {
  position: relative;
  padding: 140px 0;
  background-image: url("../assets/images/product-page/Product-ai-security.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay for readability */
#products-page .ai-security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 10, 20, 0.85) 0%,
      rgba(7, 10, 20, 0.65) 40%,
      rgba(7, 10, 20, 0.65) 60%,
      rgba(7, 10, 20, 0.85) 100%
    );
  z-index: 1;
}

/* Content above overlay */
#products-page .ai-security-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}


#products-page .ai-security-content h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 22px;
}


#products-page .ai-security-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
}


#products-page .ai-security-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 36px;
  border-radius: 999px;

  background: transparent;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;

  cursor: pointer;
}


#products-page .ai-security-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #5f8cff,
    #9b6bff,
    #f05cff
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}


#products-page .ai-security-btn .btn-text {
  position: relative;
  z-index: 1;

  background: linear-gradient(
    90deg,
    #5f8cff,
    #9b6bff,
    #f05cff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#products-page .ai-security-btn:hover {
  background: linear-gradient(
    135deg,
    #5f8cff,
    #9b6bff,
    #f05cff
  );
}

#products-page .ai-security-btn:hover::before {
  opacity: 0;
}

#products-page .ai-security-btn:hover .btn-text {
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}




/* ================= AI SECURITY CTA SECTION END =================  */



