/* =========================
   PRODUCTS
========================= */
.products{
  padding: 120px 0;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* =========================
   PRODUCT CARD
========================= */
.product-card{
  border-radius: 30px;
  padding: 40px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );

  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);

  transition: all 0.4s ease;
}

.product-card:hover{
  transform: translateY(-10px);
  border-color: rgba(88,213,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* =========================
   PRODUCT HEADER
========================= */
.product-header{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

/* =========================
   PRODUCT ICON
========================= */
.product-icon{
  width: 72px;
  height: 72px;
  min-width: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(0,180,216,0.22),
    rgba(0,119,182,0.12)
  );

  font-size: 34px;
  color: #58d5ff;

  transition: all 0.3s ease;
}

.product-card:hover .product-icon{
  transform: translateY(-4px);
  background: linear-gradient(
    135deg,
    rgba(0,180,216,0.35),
    rgba(0,119,182,0.18)
  );

  color: #ffffff;
}

/* =========================
   PRODUCT TITLE
========================= */
.product-header h2{
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: white;
}

/* SUBTITLE */
.product-header h2 span{
  font-size: 16px;
  font-weight: 400;
  color: #9fb3c8;
}

/* =========================
   PRODUCT DESCRIPTION
========================= */
.product-card p{
  color: #b7c7d8;
  line-height: 1.9;
  margin-bottom: 28px;
  font-size: 15px;
}

/* =========================
   PRODUCT LINK
========================= */
.product-link{
  color: #58d5ff;
  font-weight: 600;
  transition: 0.3s;
}

.product-link:hover{
  color: #ffffff;
}