<!--
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* karta */
.plan {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* nadpis */
.plans-grid .plan__header {
  padding: 20px 15px;
  color: #fff;
  font-weight: 900 !important;
  font-size: 28px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

/* telo karty */
.plan__body {
  padding: 20px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* vyhody a nevyhody */
.plan__section-title {
  margin: 22px 0 12px;
  font-weight: 700;
  font-size: 16px;
}

/* zoznamy */
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.ok::before {
  content: "✔";
  display: inline-block;
  margin-right: 6px;
  color: #34c759;
  font-weight: 700;
}

.bad::before {
  content: "✖";
  display: inline-block;
  margin-right: 6px;
  color: #ff4f4f;
  font-weight: 700;
}


.plan__list li {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.ok { color: #34c759; font-weight: 700; }
.bad { color: #ff4f4f; font-weight: 700; }

/* spacer na spodne buttony */
.spacer {
  flex: 1;
}

/* spodne buttony */
.plan__btn {
  width: 100%;
  padding: 14px;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
  user-select: none;
}

/* farby headerov */
.plan--servis .plan__header { background: linear-gradient(90deg,#86e4ff,#3b86ff); }
.plan--original .plan__header { background: linear-gradient(90deg,#fdd273,#bfa05a); }
.plan--premium .plan__header { background: linear-gradient(90deg,#ffb15c,#ff7a2f); }
.plan--glass .plan__header { background: linear-gradient(90deg,#d6dde7,#a0b3c9); }

/* toto je tu na to aby detekovalo mobil - aby si vedel ked toto citas */
@media (max-width: 768px) {

  /* skrytie obsahu */
  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  /* pri otvorení (cez JS class) */
  .accordion-body.open {
    max-height: 1500px; /* dosť veľké, aby pojalo celý obsah */
  }

  /* indikator rozkliknutia */
  .accordion-toggle {
    cursor: pointer;
    position: relative;
  }

  .accordion-toggle::after {
    content: "▼";
    font-size: 14px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s;
  }

  .accordion-toggle.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

/* desktop bez skryvania */
@media (min-width: 769px) {
  .accordion-body {
    max-height: none !important;
    overflow: visible !important;
  }
}

/* farby buttonov */
.plan--servis-btn   { background: linear-gradient(90deg,#9cf0ff,#3e83ff); }
.plan--original-btn { background: linear-gradient(90deg,#fdd273,#bfa05a); }
.plan--premium-btn  { background: linear-gradient(90deg,#ffb15c,#ff7a2f); }
.plan--glass-btn    { background: linear-gradient(90deg,#d4dbe7,#a5b7cf); }
-->