/* ── Packages ─────────────────────────────────────────────── */
.packages {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: scale(1.02);
}

.pricing-card.featured {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 20px 48px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, var(--bg-card) 0%, #0F233D 100%);
  z-index: 1;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-sub);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
}

.full-width {
  width: 100%;
  justify-content: center;
}

.service-plan {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.service-plan-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-plan-content p {
  color: var(--text-sub);
  font-size: 0.95rem;
  max-width: 600px;
}

/* Included Features Card */
.included-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  margin-bottom: 32px;
  width: 100%;
  box-sizing: border-box;
}

.included-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #3B82F6 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
}

.included-card .pricing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  margin-bottom: 0;
}

.included-card .pricing-features li {
  border-bottom: none;
  padding: 6px 0;
}

.included-card .pricing-features .admin-add-item-li {
  grid-column: span 3;
}
