/* Pricing page */
body { background: #f9fafb; }

.pricing-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.pricing-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
}
.pricing-sub {
  margin-top: 16px;
  font-size: 18px;
  color: #6b7280;
}

.pricing-cards { padding: 0 0 80px; }
.pricing-cards .wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Period toggle */
.period-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.period-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  transition: all 0.15s;
}
.period-btn:hover { background: #f3f4f6; }
.period-btn.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.card-pro {
  border: 2px solid #2563eb;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 12px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tier selector */
.tier-select {
  margin-top: 12px;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
  background: #fff;
  cursor: pointer;
}
.tier-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Price display */
.price { margin-top: 16px; }
.price .amount {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
}
.price .period {
  font-size: 16px;
  color: #6b7280;
}
.billed-note {
  margin-left: 8px;
  font-size: 13px;
  color: #6b7280;
}
.card-note {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7280;
}

/* Buttons */
.btn-outline, .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  margin-top: 24px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-outline {
  border: 1px solid #d1d5db;
  color: #374151;
  background: #fff;
}
.btn-outline:hover { background: #f9fafb; }
.btn-primary {
  background: #2563eb;
  color: #fff;
  border: none;
}
.btn-primary:hover { background: #1d4ed8; }

/* Features list */
.features {
  list-style: none;
  margin-top: 24px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}
.features svg { vertical-align: middle; }
.feature-yes { color: #22c55e; }
.feature-no { color: #d1d5db; }
.feature-disabled { color: #9ca3af; }

/* Credits note */
.credits-note {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .pricing-hero h1 { font-size: 32px; }
  .cards-grid { grid-template-columns: 1fr; }
}
