@charset "utf-8";
/* CSS Document */


.why-grid {
  counter-reset: tibh-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
#wa-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
}

.wa-box {
  width: 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.wa-header {
  background: #25D366;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

#wa-start {
  display: block;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
}

#wa-close {
  cursor: pointer;
}

.why-card {
  background: #ffffff;
  padding: 35px 22px 25px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  position: relative;
  overflow: visible;
  margin-bottom:30px
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.15);
  border-color: #0f7cf4;
}

/* NUMBER BADGE – increment on EACH card */
.why-card::before {
  counter-increment: tibh-counter;
  content: counter(tibh-counter);
  position: absolute;
  top: -18px;
  left: -18px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #0f7cf4;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transform: rotate(-12deg);
  transition: 0.3s ease;
}

.why-card:hover::before {
  transform: rotate(0deg) scale(1.05);
  background: #0c6adf;
}

/* TITLE */
.why-card .sppb-feature-box-title {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* TEXT */
.why-card .sppb-text {
  font-size: 0.95rem !important;
  line-height: 1.55;
  color: #475569;
}

/* OPTIONAL: hide default icon, we use numbers instead */
.why-card .sppb-icon {
  display: none !important;
}

