/* TCF Pricing - Alternative Cards (isolated) */
.tcf-altcards {
  margin: 36px auto 0;
  max-width: 1200px;
  /* padding: 0 20px; */
}
.tcf-altcards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .tcf-altcards-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Base card */
.tcf-altcard {
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(19, 99, 223, 0.1); /* #1363DF subtle */
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(6, 30, 67, 0.08); /* #061E43 */
}
.tcf-altcard--primary {
  background: linear-gradient(135deg, #061e43 0%, #0b2f66 100%);
  color: #eaf1ff;
  border-color: rgba(6, 30, 67, 0.25);
}
.tcf-altcard--secondary {
  background: #ffffff;
  color: #061e43;
}

/* Spans for 3/5 and 2/5 */
@media (min-width: 768px) {
  .tcf-altcard--primary {
    grid-column: span 3 / span 3;
  }
  .tcf-altcard--secondary {
    grid-column: span 2 / span 2;
  }
}

/* Typography */
.tcf-altcard-title {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.2;
  color: inherit;
  font-family: "Montserrat", sans-serif !important;
}
.tcf-altcard--secondary .tcf-altcard-title {
  color: #061e43;
}

.tcf-altcard-desc {
  color: rgba(6, 30, 67, 0.85);
}
.tcf-altcard--primary .tcf-altcard-desc {
  color: #f2f6ff;
  opacity: 0.92;
}

/* CTA */
.tcf-altcard-cta {
  margin-top: 14px;
}
.tcf-altcard-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  /* font-weight: 600;
  color: #ffffff;
  border: 1px solid #1363DF;
  box-shadow: 0 6px 14px rgba(19, 99, 223, 0.22); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-weight: 400;
  font-size: 15px;
  border: 1px solid;
}
.tcf-altcard-button:hover {
  filter: brightness(1.05);
}

/* Outline variant for secondary */
.tcf-altcard-button--outline {
  background: transparent;
  color: #061e43;
  border-color: #061e43; /* brand navy */
  box-shadow: none;
}
.tcf-altcard--secondary .tcf-altcard-button--outline:hover {
  background: #1363DF;
  color: white;
  border-color: transparent;
}

/* Subtle accents */
.tcf-altcard--primary .tcf-altcard-button {
  background: #12bb6a;
  border-color: #12bb6a;
  color: white;
}
.tcf-altcard--primary .tcf-altcard-button:hover {
  filter: brightness(1.07);
}
