.dmv-host-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dmv-host-plan-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dmv-host-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2rem;
  font-weight: 900;
  color: #dc2626;
  margin-bottom: 1rem;
}

.plan-price-period {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
}

.plan-group-title {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.plan-cta {
  background: #0a3161;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.plan-cta:hover {
  background: #dc2626;
}

.plan-features {
  text-align: left;
}

.plan-features h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
}

.plan-features li {
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.plan-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.plan-loading,
.plan-empty {
  grid-column: 1 / -1;
  color: #6b7280;
}
