/* =========================================
   WAHAB WAYPOINT LANDING
========================================= */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.section-head p {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.products,
.how {
  margin-top: 64px;
}

/* =========================================
   PRODUCT CARDS
========================================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transition: 0.35s;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #60a5fa;
  box-shadow: 0 20px 60px var(--shadow);
}

.product-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.product-desc {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-1);
  font-size: 13.5px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.product-card .cta-btn {
  align-self: flex-start;
  margin-top: auto;
}

/* =========================================
   HOW IT WORKS
========================================= */

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.how-step {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(20px);
  transition: 0.35s;
}

.how-step:hover {
  transform: translateY(-4px);
  border-color: #60a5fa;
}

.how-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-violet));
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.5);
  margin-bottom: 14px;
}

.how-step h3 {
  font-size: 17px;
  font-weight: 700;
}

.how-step p {
  margin-top: 10px;
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.6;
}

/* =========================================
   CTA BANNER
========================================= */

.cta-banner {
  margin-top: 64px;
  text-align: center;
  padding: 48px 30px;
  border-radius: 24px;
  background:
    radial-gradient(
      closest-side,
      rgba(96, 165, 250, 0.16),
      transparent 70%
    ),
    var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.cta-banner p {
  max-width: 560px;
  margin: 12px auto 26px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .cta-banner h2 {
    font-size: 23px;
  }
}
