/* Modern Pricing Section Styles - matches screenshot exactly */
.pricing-section {
    background-color: #F2F6F7;
    padding: 60px 0 182px 0;
    margin-bottom: -129px;
}
.pricing-header {
  margin-bottom: 40px;
}
.pricing-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #23244a;
  margin-bottom: 8px;
}
.pricing-subtitle {
  font-size: 1.15rem;
  color: #6c6e8e;
  margin-bottom: 24px;
}
.pricing-toggle-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pricing-toggle {
  background: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #23244a;
  padding: 8px 28px;
  box-shadow: 0 2px 8px rgba(80,80,120,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pricing-toggle.active {
  background: #edeaff;
  color: #6c4ae4;
}
.pricing-toggle-info {
  font-size: 0.95rem;
  color: #6c6e8e;
  margin-left: 10px;
}
.pricing-card.modern {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(80,80,120,0.10);
  padding: 32px 28px 28px 28px;
  text-align: left;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.pricing-plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #23244a;
  margin-bottom: 2px;
}
.pricing-plan-desc {
  font-size: 1rem;
  color: #6c6e8e;
  margin-bottom: 18px;
}
.pricing-plan-price {
  margin-bottom: 18px;
}
.current-price {
  font-size: 2.1rem;
  font-weight: 700;
  color: #23244a;
  margin-right: 8px;
}
.old-price {
  font-size: 1.1rem;
  color: #bdbdbd;
  text-decoration: line-through;
  margin-right: 8px;
}
.per-month {
  font-size: 1rem;
  color: #6c6e8e;
  margin-right: 8px;
}
.additional-brand {
  font-size: 0.95rem;
  color: #6c6e8e;
  display: block;
  margin-top: 2px;
}
.pricing-btn {
  display: block;
  width: 100%;
  margin: 0 auto 18px auto;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 16px;
  border: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(80,80,120,0.08);
  cursor: pointer;
  text-decoration: none;
}
.pricing-btn.black {
  background: rgb(10 31 68);
  color: #fff;
}
.pricing-btn.purple {
  background: rgb(56 200 137);
  color: #fff;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.pricing-features li {
  font-size: 1rem;
  color: #23244a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  line-height: 20px;
}
.pricing-features .check {
  color: #4fd18b;
  font-size: 1.2rem;
  margin-right: 8px;
}
.add-coach-btn {
  background: #f7f7fa;
  color: #23244a;
  border: none;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(80,80,120,0.06);
  cursor: pointer;
}
.add-coach-info {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #23244a;
}
.add-coach-label {
  font-weight: 700;
  margin-right: 8px;
}
.add-coach-desc {
  color: #6c6e8e;
}
.coach-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 18px;
}
.coach-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.coach-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #edeaff;
  object-fit: cover;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #6c4ae4;
}
.coach-avatar-placeholder {
  background: #edeaff;
  color: #6c4ae4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach-name {
  font-size: 1rem;
  font-weight: 700;
  color: #23244a;
  margin-bottom: 2px;
}
.coach-role {
  font-size: 0.95rem;
  color: #6c6e8e;
  text-align: center;
}
@media (max-width: 991px) {
  .pricing-card.modern {
    min-height: 0;
    padding: 24px 12px;
  }
  .coach-list {
    gap: 12px;
  }
}
