.subscription-container {
  background: #ecf0f0;
  display: flex;
  align-items: flex-start; 
  justify-content: center;
  padding: 40px 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1400px;
  align-items: start;
  justify-items: center;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.subscription-card, .feature-card {
  width: 100%;
  flex: 1;
  min-width: 350px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.subscription-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.pricing-box {
  border: 2px solid #60a5fa;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  background: white;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.price-left {
  flex: 1;
}

.estimated-label {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: #94a3b8;
}

.per-room-badge {
  background: #dbeafe;
  color: #1d4ed8;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.rooms-selector {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.rooms-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rooms-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.room-count {
  color: #0f172a;
  font-weight: 600;
}

.counter-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #cbd5e1;
  background: white;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.counter-btn:hover {
  background: #f1f5f9;
}

.room-input {
  width: 60px;
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.room-input:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 0;
}

.slider-container {
  margin-top: 16px;
}

.room-slider {
  width: 100%;
  height: 8px;
  background: #cbd5e1;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.room-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #14b8a6;
  border-radius: 50%;
  cursor: pointer;
}

.room-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #14b8a6;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #94a3b8;
}

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

.breakdown-item {
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.breakdown-label {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.breakdown-value {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.breakdown-description {
  font-size: 12px;
  color: #64748b;
}

.disclaimer {
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.continue-btn {
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.continue-btn:active {
  transform: translateY(0);
}

/* Feature Card Styles */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.feature-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #475569;
}

.feature-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: 600;
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

.feature-btn {
  width: 100%;
  height: 44px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.feature-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}
