/* Sherloq replica — pricing page styles */

.price-hero {
  padding-top: 120px;
  text-align: center;
}
.price-hero h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--text-soft);
}

/* Billing toggle */
.billing-toggle {
  margin-top: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.billing-toggle .bt-label {
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}
.billing-toggle .bt-label.active { color: #fff; }
.billing-switch {
  width: 64px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink));
  position: relative;
  cursor: pointer;
  padding: 0;
}
.billing-switch .knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s ease;
}
.billing-switch.on .knob { transform: translateX(32px); }

/* Plan cards */
.plans {
  margin-top: 76px;
  display: flex;
  justify-content: center;
  gap: 38px;
  align-items: stretch;
  flex-wrap: wrap;
}
.plan {
  width: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, #0e0e1e 0%, #0a0a16 60%, #0b0b15 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.plan-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.plan-name {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}
.plan-badge {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #2f9fd6;
  border-radius: 999px;
  padding: 5px 12px;
}
.plan-divider {
  margin-top: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.02));
}
.plan-price {
  margin-top: 30px;
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}
.plan-price.custom { font-size: 40px; }
.plan-per {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-main);
}
.plan-includes {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.plan-list {
  list-style: none;
  margin: 24px 0 34px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
}
.plan-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  color: var(--text-soft);
}
.plan-list li img { width: 14px; height: 10px; flex-shrink: 0; }
.plan-cta {
  align-self: flex-start;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  border-radius: 999px;
  padding: 16px 30px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.plan-cta:hover { transform: scale(1.03); filter: brightness(1.06); }
.plan-cta:active { transform: scale(0.98); }

/* FAQ */
.faq {
  margin-top: 120px;
  padding-bottom: 140px;
}
.faq h2 {
  text-align: center;
  font-size: 72px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: -1px;
}
.faq-card {
  max-width: 1000px;
  margin: 70px auto 0;
  background: #161618;
  border-radius: 16px;
  padding: 42px 40px;
}
.faq-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 21px 0;
  cursor: default;
}
.faq-item .plus {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  color: #6d6d74;
  margin-top: -1px;
}
.faq-item .q {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .plans { gap: 24px; }
}
@media (max-width: 720px) {
  .price-hero h1 { font-size: 34px; }
  .plans { flex-direction: column; align-items: center; }
  .faq h2 { font-size: 48px; }
  .faq-card { margin-left: 16px; margin-right: 16px; padding: 24px 20px; }
}
