/* HERO PRICING */
.pricing-hero {
  height: 60vh;
  background: url('assets/hero.jpg') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.7);
  padding: 40px;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 48px;
  letter-spacing: 2px;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* PRICE CARD */
.price-card {
  background: #111;
  padding: 30px;
  border: 1px solid #222;
  transition: 0.3s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: #444;
}

.price-card h3 {
  margin-bottom: 10px;
}

.time {
  color: #aaa;
  font-size: 13px;
}

.price {
  font-size: 32px;
  margin: 15px 0;
  font-weight: bold;
}

.price-card ul {
  list-style: none;
  padding: 0;
}

.price-card ul li {
  padding: 6px 0;
  color: #ccc;
  font-size: 14px;
}

/* FEATURED CARD */
.featured {
  border: 1px solid white;
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  color: black;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: bold;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px;
  text-align: center;
  border: 1px solid white;
  color: white;
  text-decoration: none;
}

.btn.primary {
  background: white;
  color: black;
}

/* POLICIES */
.policy-box {
  background: #111;
  padding: 25px;
  border: 1px solid #222;
  color: #aaa;
}