/* ================= PLANS SECTION ================= */
.plans-section {
  padding: 90px 0;
  background: #fff;
}

/* SECTION INTRO */
.plans-section .section-intro h2 {
  font-weight: 800;
  margin-bottom: 10px;
}

.plans-section .section-intro p {
  max-width: 650px;
  margin: auto;
  color: #666;
}

/* ================= PLANS GRID ================= */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* FORCE 4 PER ROW */
  gap: 24px;
}

/* ================= PLAN CARD ================= */
.plan-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 28px 32px;
  border: 1px solid #eee;
  text-align: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* BADGE */
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d6efd;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* PRICE */
.plan-card h3 {
  font-size: 34px;
  font-weight: 800;
  margin: 22px 0 8px;
}

/* BONUS */
.plan-bonus {
  font-weight: 600;
  margin-bottom: 20px;
  color: #444;
  font-size: 15px;
}

/* FEATURES */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex-grow: 1;
}

.plan-card ul li {
  padding: 7px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px dashed #eee;
}

.plan-card ul li:last-child {
  border-bottom: none;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  transition: background .25s ease, transform .25s ease;
}

.plan-btn:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

/* ================= HIGHLIGHTED PLAN ================= */
.plan-card.highlight {
  border: 2px solid #0d6efd;
}

.plan-card.highlight .plan-badge {
  background: #198754;
}

/* ================= PRO / EMPIRE STYLE ================= */
.plan-card.pro {
  background: linear-gradient(180deg, #111 0%, #000 100%);
  color: #fff;
  border: none;
}

.plan-card.pro h3,
.plan-card.pro strong {
  color: #fff;
}

.plan-card.pro .plan-bonus,
.plan-card.pro ul li {
  color: #ddd;
  border-color: rgba(255,255,255,.15);
}

.plan-card.pro .plan-badge {
  background: gold;
  color: #000;
}

.plan-card.pro .plan-btn {
  background: gold;
  color: #000;
}

.plan-card.pro .plan-btn:hover {
  background: #ffd700;
}

/* ================= PLANS NOTE ================= */
.plans-note {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-top: 25px;
}

/* ================= DARK MODE ================= */
body.dark .plans-section {
  background: #0f0f0f;
}

body.dark .plan-card {
  background: #121212;
  border-color: #1f1f1f;
}

body.dark .plan-bonus,
body.dark .plan-card ul li {
  color: #bbb;
}

body.dark .plan-card ul li {
  border-color: #1f1f1f;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1200px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 30px 22px;
  }

  .plan-card h3 {
    font-size: 30px;
  }
}
