/* Pricing Cards */
.hh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hh-pricing-card {
  background: var(--hh-card-bg);
  border: 2px solid var(--hh-card-border);
  border-radius: var(--hh-radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--hh-fast);
  display: flex;
  flex-direction: column;
}

.hh-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hh-shadow);
}

.hh-pricing-card--featured {
  border-color: var(--hh-brand-orange);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.08), rgba(4, 7, 21, 0.95));
}

.hh-pricing-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hh-brand-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.hh-pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--hh-text);
}

.hh-pricing-card .hh-pricing-tagline {
  font-size: 0.95rem;
  color: var(--hh-muted);
  margin-bottom: 1.5rem;
}

.hh-pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--hh-brand-orange);
  margin-bottom: 0.25rem;
}

.hh-pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--hh-muted);
}

.hh-pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.hh-pricing-features li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--hh-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hh-pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--hh-brand-teal);
  font-weight: 700;
}

.hh-pricing-card .hh-cta {
  display: block;
  text-align: center;
  margin-top: auto;
}

/* Add-on pricing table */
.hh-addon-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.hh-addon-table th,
.hh-addon-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--hh-card-border);
}

.hh-addon-table th {
  color: var(--hh-brand-teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hh-addon-table td {
  color: var(--hh-muted);
}

.hh-addon-table td:last-child {
  color: var(--hh-brand-orange);
  font-weight: 600;
  white-space: nowrap;
}

.hh-addon-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Travel fee schedule */
.hh-travel-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.hh-travel-table th,
.hh-travel-table td {
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--hh-card-border);
  color: var(--hh-muted);
}

.hh-travel-table th {
  color: var(--hh-brand-teal);
  font-weight: 600;
}

.hh-travel-free {
  color: var(--hh-brand-teal);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hh-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
