/* TCF Pricing - Front Styles */
.tcf-pricing-section {
  padding: 64px 20px;
  /* background: #f6f8ff; */
}
.tcf-pricing-header {
  text-align: center;
  margin-bottom: 32px;
}
.tcf-pricing-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  color: #1363df;
  text-transform: capitalize;
}
.tcf-pricing-subtitle {
  color: #4c5a7a;
  max-width: 500px;
  text-align: center;
  margin: 8px auto;
  font-size: 18px;
  margin-bottom: 51px;
}

.tcf-pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .tcf-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .tcf-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.is-popular .colored__blue {
  color: #12bb6a !important;
  font-weight: 500;
}
.colored__blue {
  color: #1363df !important;
  font-weight: 500;
}
.tcf-pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 15px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(6, 30, 67, 0.08);
  overflow: hidden;
  border: 1px solid rgba(19, 99, 223, 0.08);
}
.tcf-pricing-card.is-popular {
  background: linear-gradient(135deg, #1363df 0%, #082a5e 100%);
  color: #eaf1ff;
}
.tcf-pricing-card.is-popular .tcf-pricing-name,
.tcf-pricing-card.is-popular .tcf-pricing-duration {
  color: #eaf1ff;
  opacity: 0.9;
}
.tcf-pricing-card.is-popular .tcf-pricing-amount {
  color: #ffffff;
}
.tcf-pricing-card.is-popular .tcf-feature-label {
  color: #f2f6ff;
}

/* Badge oblique */
.tcf-pricing-badge {
  position: absolute;
  top: 16px;
  right: -48px;
  display: inline-block;
  background: #12bb6a;
  color: #fff;
  padding: 8px 64px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  transform: rotate(45deg);
  box-shadow: 0 6px 16px rgba(18, 187, 106, 0.35);
}
.tcf-pricing-card.is-popular .tcf-pricing-badge {
  background: #12bb6a;
}

/* Head */
.tcf-pricing-head {
  margin-bottom: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tcf-pricing-name {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #6a78a4;
  background: rgba(19, 99, 223, 0.08);
  padding: 6px 25px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tcf-pricing-price {
  margin: 14px 0 4px;
}
.tcf-pricing-amount {
  font-size: 35px;
  font-weight: 800;
  color: #061e43;
}
.tcf-pricing-duration {
  display: block;
  font-size: 13px;
  color: #6a78a4;
  font-weight: 600;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

/* Features */
.tcf-pricing-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
  padding-left: 0 !important;
}
.tcf-feature-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}
.tcf-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  margin-top: 5px;
}
.tcf-feature-item.included .tcf-feature-icon {
  background: rgba(18, 187, 106, 0.15);
  color: #12bb6a;
}
.tcf-feature-item.included .tcf-feature-icon::before {
  content: "\2713";
} /* check */
.tcf-feature-item.excluded .tcf-feature-icon {
  background: rgba(255, 0, 0, 0.12);
  color: #d64545;
}
.tcf-feature-item.excluded .tcf-feature-icon::before {
  content: "\00D7";
} /* cross */
.tcf-feature-item.available .tcf-feature-icon {
  background: rgba(18, 187, 106, 0.15);
  color: #12bb6a;
}
.tcf-feature-item.available .tcf-feature-icon::before {
  content: "\2713";
} /* check */
.tcf-feature-label {
  color: #061e43;
  font-size: 15px;
  font-family: 'Poppins';
}
/* .second__duration {
  color: black;
  width:100%;
} */

/* CTA */
.tcf-pricing-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.tcf-pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: #1363df;
  color: #fff;
  box-shadow: 0 6px 14px rgba(19, 99, 223, 0.22);
  border: 0;
  border-color: transparent;
  font-weight: 400;
  font-size: 15px;
}
.tcf-pricing-button:hover {
  filter: brightness(1.05);
}
.tcf-pricing-card.is-popular .tcf-pricing-button {
  /* background: linear-gradient(135deg, #7fc3ff 0%, #a68cff 100%); */
  background: #12bb6a;
}

/* Subtle hover */
.tcf-pricing-card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
.tcf-pricing-section {
    padding-left: 10px;
    padding-right: 10px;
}
}
