/* Pricing - app table + 1:1 coaching cards */
.pr-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: 1.75rem;
  padding: 5px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
}

.pr-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.35rem;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pr-tab.is-active {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.pr-panel[hidden] {
  display: none;
}

.pr-panel {
  animation: pr-fade 0.35s ease;
}

@keyframes pr-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
  text-align: start;
}

.pr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem 1.4rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pr-card--featured {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.16);
}

.pr-badge {
  position: absolute;
  top: -0.75rem;
  inset-inline-start: 1.6rem;
  padding: 0.28rem 0.8rem;
  border-radius: 9999px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pr-name {
  margin: 0.35rem 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-color);
}

.pr-desc {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  min-height: 2.7em;
}

.pr-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pr-amount {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-color);
}

.pr-billed {
  margin: 0.4rem 0 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pr-cta {
  display: block;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-xl);
  background: var(--accent-light);
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.pr-cta--primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

.pr-features {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 1.3rem 0 0;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pr-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-color);
}

.pr-features i {
  flex: 0 0 auto;
  margin-top: 0.22rem;
  font-size: 0.75rem;
  color: var(--accent-color);
}

.pr-people {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.pr-avatars {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.pr-avatars > * {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  box-sizing: border-box;
  position: relative;
}

.pr-avatars > * + * {
  margin-inline-start: -0.55rem;
}

.pr-avatars > *:nth-child(1) { z-index: 3; }
.pr-avatars > *:nth-child(2) { z-index: 2; }
.pr-avatars > *:nth-child(3) { z-index: 1; }

.pr-avatars img {
  object-fit: cover;
  display: block;
}

.pr-avatars img[src*="noy"] { object-position: 50% 18%; }
.pr-avatars img[src*="nitzan"] { object-position: 50% 28%; }
.pr-avatars img[src*="roni"] { object-position: 50% 22%; }

.pr-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

.pr-avatar--yael { background: #059669; }
.pr-avatar--dana { background: #2563eb; }
.pr-avatar--michal { background: #db2777; }
.pr-avatar--noa { background: #7c3aed; }
.pr-avatar--liat { background: #d97706; }

.pr-people-names {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
}

.plans-note {
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 560px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plans-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

@media (max-width: 900px) {
  .pr-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 27rem;
    gap: 1.25rem;
  }

  .pr-desc {
    min-height: 0;
  }

  .pr-card--featured {
    order: -1;
  }
}

@media (max-width: 640px) {
  .pr-tab {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }

  .pr-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .pr-amount {
    font-size: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pr-panel {
    animation: none;
  }
}
