/* ─────────────────────────────────────────────────────────
   pricing-plans.css
   Styling for the "Our Animation Plans" pricing section
   (service tabs + Startup / Classic / Premium cards) and the
   order-info summary shown inside the quote modal.
───────────────────────────────────────────────────────── */

.splitarts-pricing-plans {
  width: 100%;
}

/* ── Service tabs ── */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.6rem;
}

.pricing-tab {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.62rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  transition:
    background 0.18s,
    color 0.18s,
    transform 0.14s;
}

.pricing-tab:hover {
  transform: translateY(-1px);
  background: var(--navy-2);
}

.pricing-tab.active {
  background: var(--brand);
  color: #000;
}

.pricing-tab.active:hover {
  background: var(--brand-hov);
}

/* ── Cards grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 1.6rem 1.5rem 1.75rem;
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  min-height: 465px;
  height: 100%;
}

.pricing-card.featured {
  min-height: 465px !important;
}

.pc-badge {
  display: inline-flex;
  align-self: flex-start;
  background: #eef1f6;
  color: var(--t3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.pc-badge.standard {
  background: var(--navy);
  color: #fff;
}

.pc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.pc-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--t1);
  line-height: 1.1;
}

.pc-was {
  font-size: 0.9rem;
  text-decoration: line-through;
  font-weight: 600;
}

.pc-was-startup {
  color: var(--brand-hov);
}

.pc-was-classic,
.pc-was-premium {
  color: var(--brand-hov);
  font-size: 0.85rem;
  font-weight: 500;
}

.pc-features {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pc-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--t2);
  line-height: 1.4;
}

.pc-tick {
  color: #1aa260;
  font-weight: 800;
  flex-shrink: 0;
}

.pc-actions {
  display: flex;
  gap: 0.6rem;
}

.pc-actions .btn {
  flex: 1;
  padding: 0.7rem 0.8rem;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

/* ── Order info box inside the quote modal ── */
.order-info-box {
  background: var(--brand-dim);
  border: 1px solid var(--brand-ring);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.25rem;
}

.order-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.2rem 0;
  color: var(--t2);
}

.order-info-row span {
  font-weight: 600;
  color: var(--t3);
}

.order-info-row strong {
  color: var(--navy);
  font-weight: 700;
}
