/*====================================================
  SellerChat pricing tiers (scoped, scp-* only)
  Used only on the pricing page. Does not touch the
  global .single_pricing styles shared by other pages.
======================================================*/

.scp-area {
  background: #f6f8fc;
}

/* Intro "prices from" note above the grid */
.scp-note {
  max-width: 760px;
  margin: 0 auto 44px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 22px;
  background: #eef3ff;
  border: 1px solid #d7e2ff;
  border-radius: 12px;
  text-align: left;
}
.scp-note i {
  color: #0c5adb;
  font-size: 20px;
  line-height: 1.5;
  flex-shrink: 0;
}
.scp-note p {
  margin: 0;
  color: #41506e;
  font-size: 15px;
  line-height: 1.6;
}

/* Grid: 3 per row, wraps to 2 rows */
.scp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* Card */
.scp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  padding: 34px 30px 32px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.scp-card:hover {
  transform: translateY(-6px);
  border-color: #c2d3f7;
  box-shadow: 0 18px 40px rgba(12, 90, 219, 0.12);
}

/* Popular card */
.scp-card--popular {
  border: 2px solid #0c5adb;
  box-shadow: 0 18px 44px rgba(12, 90, 219, 0.16);
}

/* Head */
.scp-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.scp-card__name {
  font-size: 22px;
  font-weight: 700;
  color: #1a2233;
  margin: 0;
  line-height: 1.2;
}
.scp-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: #0c5adb;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Price */
.scp-card__price {
  margin: 14px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eef0f6;
}
.scp-card__amount {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: #0c5adb;
  line-height: 1.1;
}
.scp-card__period {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #8b93a7;
}

/* Features */
.scp-card__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-grow: 1;
}
.scp-card__features li {
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: #4a5468;
}
.scp-card__features li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #0c5adb;
  font-size: 17px;
}

/* CTA */
.scp-card__cta {
  margin-top: auto;
}
.scp-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid #0c5adb;
  color: #0c5adb;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.scp-btn:hover {
  background: #0c5adb;
  color: #fff;
}
.scp-btn--primary {
  background: #0c5adb;
  color: #fff;
}
.scp-btn--primary:hover {
  background: #0a4cbb;
  color: #fff;
}

/* Bottom disclaimer */
.scp-disclaimer {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 14px;
  color: #8b93a7;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .scp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (max-width: 575px) {
  .scp-grid {
    grid-template-columns: 1fr;
  }
  .scp-card {
    padding: 28px 24px;
  }
}
