.subs-page {
  background: #fdfdfd;
  padding-bottom: 5rem;
  font-family: 'Inter', sans-serif;
}

.max-1400 {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.subs-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(to bottom, #f0f7ff, #ffffff);
  text-align: center;
}

.subs-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.subs-hero p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.subs-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Section Headers */
.subs-section-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1.5rem;
}

.subs-section-header h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1e293b;
}

/* Pricing Grid */
.subs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.subs-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.subs-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
}

.subs-card.popular {
  border: 2px solid #2563eb;
  background: #f0f7ff;
}

.popular-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #2563eb;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.subs-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
}

.subs-price {
  margin-bottom: 2rem;
}

.subs-price .amount {
  font-size: 3rem;
  font-weight: 900;
  color: #1e293b;
}

.subs-price .period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

.subs-desc {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.subs-features {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
  flex-grow: 1;
}

.subs-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.subs-features li i {
  color: #10b981;
  width: 18px;
  height: 18px;
}

.subs-btn {
  display: block;
  text-align: center;
  background: #2563eb;
  color: white;
  padding: 1.25rem;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.subs-btn:hover {
  background: #1d4ed8;
}

.subs-btn-outline {
  display: block;
  text-align: center;
  background: white;
  color: #2563eb;
  padding: 1.25rem;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid #2563eb;
  transition: 0.3s;
}

.subs-btn-outline:hover {
  background: #f0f7ff;
}

/* Category Specific Styles */
.cat-bedding .subs-card:hover { border-color: #0ea5e9; }
.cat-bedding .subs-btn { background: #0ea5e9; }
.cat-bedding .subs-btn:hover { background: #0284c7; }

.cat-dryclean .subs-card:hover { border-color: #6366f1; }
.cat-dryclean .subs-btn { background: #6366f1; }
.cat-dryclean .subs-btn:hover { background: #4f46e5; }

.cat-business .subs-card:hover { border-color: #10b981; }
.cat-business .subs-btn { background: #10b981; }
.cat-business .subs-btn:hover { background: #059669; }

/* Responsive */
@media (max-width: 768px) {
  .max-1400 { padding: 0 1.5rem; }
  .subs-grid { grid-template-columns: 1fr; }
  .subs-hero h1 { font-size: 2.25rem; }
}
