/* login/landingPricing.css — the pricing bubbles, FAQ and footer for the
   landing page (login/login.php). Loads after landing.css (shares its
   :root tokens). */

/* ---------------- Pricing ---------------- */
.lp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  text-align: left;
  max-width: 1020px;
  margin: 0 auto;
}
.lp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 22px;
  padding: 30px 26px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow); }
.lp-plan--hot {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--lp-grad) border-box;
  box-shadow: 0 24px 60px rgba(106, 27, 154, 0.14);
}
.lp-plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-grad);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}
.lp-plan__name { font-size: 15px; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 8px; }
.lp-plan__price { color: var(--lp-muted); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.lp-plan__price span {
  font-size: 40px;
  font-weight: 800;
  color: var(--lp-ink);
  letter-spacing: -0.03em;
  margin-right: 2px;
}
.lp-plan__pitch { font-size: 13.5px; color: var(--lp-muted); margin-bottom: 18px; line-height: 1.55; }
.lp-plan__list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.lp-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.8px;
  font-weight: 600;
  color: var(--lp-ink-soft);
  padding: 7px 0;
  border-bottom: 1px dashed #eef2f8;
}
.lp-plan__list li:last-child { border-bottom: 0; }
.lp-plan__list em { font-style: normal; font-weight: 600; color: var(--lp-faint); font-size: 12.5px; }
.lp-tick {
  overflow: hidden;
  flex: none;
  font-size: 15px;
  color: #fff;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--lp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.lp-plan--hot .lp-tick { background: var(--lp-purple); }
.lp-plan__cta { width: 100%; }
.lp-plans__foot {
  margin-top: 26px;
  font-size: 13px;
  color: var(--lp-faint);
  font-weight: 600;
}

/* ---------------- FAQ ---------------- */
.lp-faq { text-align: left; display: flex; flex-direction: column; gap: 12px; }
.lp-faq__item {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 0 20px;
  transition: box-shadow 0.2s ease;
}
.lp-faq__item[open] { box-shadow: var(--lp-shadow); }
.lp-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  padding: 17px 0;
  position: relative;
  padding-right: 34px;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 600;
  color: var(--lp-faint);
  transition: transform 0.2s ease, color 0.2s ease;
}
.lp-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--lp-purple); }
.lp-faq__item p { font-size: 14px; color: var(--lp-muted); line-height: 1.65; padding: 0 0 18px; }

/* ---------------- Footer ---------------- */
.lp-foot { background: #0a1930; color: #b7c3d8; padding: 56px 24px 28px; }
.lp-foot__inner {
  max-width: var(--lp-max);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
  text-align: left;
}
.lp-foot__brand { font-weight: 800; font-size: 17px; color: #fff; }
.lp-foot__brand .lp-brand__dot { vertical-align: -3px; margin-right: 6px; }
.lp-foot__brand p { margin-top: 12px; font-size: 13px; font-weight: 500; color: #8fa7c8; line-height: 1.6; }
.lp-foot__col { display: flex; flex-direction: column; gap: 9px; }
.lp-foot__col h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fa7c8;
  margin-bottom: 4px;
}
.lp-foot__col a { font-size: 13.5px; font-weight: 600; color: #d4deee; text-decoration: none; }
.lp-foot__col a:hover { color: #fff; }
.lp-foot__legal {
  max-width: var(--lp-max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 12px;
  color: #8fa7c8;
  text-align: left;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .lp-plans { grid-template-columns: 1fr; max-width: 460px; }
  .lp-plan--hot { order: -1; }
  .lp-foot__inner { grid-template-columns: 1fr; gap: 24px; }
}
