/* Listing Plans (/pricing) page. Beautiful shell (hero + wave) + a Companies /
   Professionals switch over two 3-up card grids. Each card carries a "Key
   Features" block (headline 3) and a fuller "Includes" list. Tokens from
   style.css: --primary #6865e7, --ink #150d15, --line #e6e9f2, Nunito. */

.pkg-page { padding: 46px 0 64px; }

/* ---- Companies / Professionals switch (centred) ---- */
.pkg-switch {
  display: flex; justify-content: center; gap: 5px;
  width: max-content; max-width: 100%; margin: 0 auto 38px;
  background: #f1edfa; padding: 6px; border-radius: 14px;
  border: 1px solid var(--line, #e6e9f2);
}
.pkg-switch button {
  font: inherit; font-size: 1rem; font-weight: 700;
  padding: 11px 26px; border: 0; background: transparent;
  color: var(--muted, #656d80); border-radius: 9px; cursor: pointer;
  transition: background .18s, color .18s;
}
.pkg-switch button[aria-pressed="true"] {
  background: #fff; color: #150d15;
  box-shadow: var(--shadow-sm, 0 8px 24px rgba(30, 38, 109, .08));
}
.pkg-switch button:hover:not([aria-pressed="true"]) { color: #150d15; }

/* ---- Grids ---- */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.pkg-grid.is-hidden { display: none; }

/* ---- Card ---- */
.pkg-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line, #e6e9f2);
  border-radius: 16px; padding: 30px 26px 28px;
  box-shadow: 0 1px 2px rgba(30, 38, 109, .04);
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.pkg-card:hover {
  border-color: #c9c0f2;
  box-shadow: 0 16px 40px rgba(104, 101, 231, .12);
  transform: translateY(-2px);
}

/* Featured (Recognized) — brand outline + stronger shadow. No vertical offset,
   so all three cards in a tab line up to the same top and bottom. */
.pkg-card--featured {
  border-width: 2px;
  border-color: var(--primary, #6865e7);
  box-shadow: 0 20px 46px rgba(104, 101, 231, .18);
}

/* Badge pill top-right */
.pkg-card__badge {
  position: absolute; top: -12px; right: 22px;
  font-size: .72rem; font-weight: 800; letter-spacing: .02em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
  background: var(--primary, #6865e7); color: #fff;
  box-shadow: 0 6px 16px rgba(104, 101, 231, .35);
}

.pkg-card__head { border-bottom: 1px solid var(--line, #e6e9f2); padding-bottom: 20px; }
.pkg-card__name {
  margin: 0; font-size: 1.15rem; font-weight: 800; color: #150d15;
  letter-spacing: -.01em;
}
.pkg-card__price { margin: 12px 0 0; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pkg-card__amt { font-size: 2.5rem; font-weight: 800; color: #150d15; line-height: 1; letter-spacing: -.02em; }
.pkg-card__cad { font-size: .92rem; font-weight: 600; color: var(--muted, #656d80); }
.pkg-card__summary { margin: 14px 0 0; font-size: .92rem; line-height: 1.55; color: var(--text, #5a6478); }

/* Body fills the middle so the CTA sits at the same bottom line on every card. */
.pkg-card__body { flex: 1; }

/* ---- Key Features (headline 3) ---- */
.pkg-card__key { margin-top: 22px; }
.pkg-card__key-h {
  display: flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: #150d15;
}
.pkg-card__key-h svg { width: 16px; height: 16px; color: #f5b301; flex: none; }
.pkg-card__feats { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 12px; }
.pkg-card__feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; line-height: 1.4; font-weight: 700; color: #2c3345; }
.pkg-card__check {
  flex: none; width: 21px; height: 21px; margin-top: 1px;
  color: var(--primary, #6865e7);
  background: #f1edfa; border-radius: 50%; padding: 2px;
}
.pkg-card--featured .pkg-card__check { background: #e6e2f7; }

/* ---- Includes / Everything in X, plus ---- */
.pkg-card__incl { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line, #e6e9f2); }
.pkg-card__incl-h { display: block; font-size: .82rem; font-weight: 700; color: var(--muted, #656d80); margin-bottom: 12px; }
.pkg-card__incl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.pkg-card__incl-list li { position: relative; padding-left: 20px; font-size: .88rem; line-height: 1.4; color: var(--text, #5a6478); }
.pkg-card__incl-list li::before {
  content: ""; position: absolute; left: 4px; top: .52em;
  width: 6px; height: 6px; border-radius: 50%; background: #c9c0f2;
}

/* CTA — full width, bold, text centred. Gap above it via margin (NOT padding,
   which would push the label off-centre inside the button). */
.pkg-card__cta {
  width: 100%; margin-top: 28px;
  display: flex; justify-content: center; align-items: center;
  text-align: center; font-weight: 800; font-size: 1rem;
}

/* ---- Reassurance callout under the grids ---- */
.pkg-note {
  margin: 42px 0 0;
  display: flex; gap: 16px; align-items: flex-start;
  background: linear-gradient(180deg, #f7f6fd, #f4f2fb);
  border: 1px solid #e6e2f7; border-radius: 16px;
  padding: 22px 26px; text-align: left;
}
.pkg-note__ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: #ece9fb; color: var(--primary, #6865e7);
  display: grid; place-items: center;
}
.pkg-note__ic svg { width: 22px; height: 22px; }
.pkg-note__title { display: block; font-weight: 800; color: #150d15; font-size: 1rem; margin-bottom: 4px; }
.pkg-note__body p { margin: 0; font-size: .9rem; line-height: 1.6; color: var(--text, #5a6478); }
.pkg-note strong { color: #150d15; font-weight: 800; }

@media (max-width: 560px) {
  .pkg-note { flex-direction: column; gap: 12px; padding: 20px; }
}

/* ---- Responsive ---- */
@media (max-width: 920px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* Monthly/Yearly toggle (shares .wz-billing look from start.css markup) */
.pkg-billing { display:flex; justify-content:center; margin:-6px 0 26px; }
.pkg-billing .wz-billing__b { font:inherit; font-size:.9rem; font-weight:800; color:#656d80; background:#fff; border:1px solid #e0e2ee; padding:9px 20px; cursor:pointer; }
.pkg-billing .wz-billing__b:first-child { border-radius:999px 0 0 999px; }
.pkg-billing .wz-billing__b:last-child { border-radius:0 999px 999px 0; border-left:0; }
.pkg-billing .wz-billing__b.is-on { background:#6865e7; border-color:#6865e7; color:#fff; }
.pkg-billing .wz-billing__save { display:inline-block; margin-left:6px; font-size:.68rem; font-weight:800; text-transform:uppercase; background:#e3f6ec; color:#0f7a4d; border-radius:999px; padding:2px 8px; }
.pkg-billing .wz-billing__b.is-on .wz-billing__save { background:rgba(255,255,255,.2); color:#fff; }
