/* ==========================================================
   Zeekeo Pricing v1.3.0
   All rules scoped to #zeekeo-pricing-app.
   NO global reset — uses box-sizing only, no margin/padding zero
   so Elementor / theme styles are not broken.
   ========================================================== */

/* Only box-sizing reset — safe for all page builders */
#zeekeo-pricing-app {
  box-sizing: border-box;
}
#zeekeo-pricing-app *,
#zeekeo-pricing-app *::before,
#zeekeo-pricing-app *::after {
  box-sizing: inherit;
}

/* ---- Tokens ---- */
#zeekeo-pricing-app {
  --zc-blue:      #1a6cff;
  --zc-blue-d:    #0050cc;
  --zc-blue-l:    #e8f1ff;
  --zc-blue-ll:   #f4f7ff;
  --zc-green:     #16a34a;
  --zc-green-bg:  #f0fdf4;
  --zc-green-bd:  #86efac;
  --zc-orange:    #f97316;
  --zc-red:       #dc2626;
  --zc-text:      #0f172a;
  --zc-muted:     #64748b;
  --zc-border:    #e2e8f0;
  --zc-bg:        #f8fafc;
  --zc-white:     #ffffff;
  --zc-shadow:    0 1px 3px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.05);
  --zc-shadow-lg: 0 4px 24px rgba(0,0,0,.10);
  --zc-r:         14px;
  --zc-r-sm:      8px;
  --zt:           .18s cubic-bezier(.4,0,.2,1);
  --zt-spring:    .32s cubic-bezier(.34,1.56,.64,1);

  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  color: var(--zc-text);
  line-height: 1.6;
  background: var(--zc-bg);
  padding: 32px 20px 80px;
  -webkit-font-smoothing: antialiased;
}

/* ---- Page SPA routing ---- */
#zeekeo-pricing-app .zkp-page         { display: none; }
#zeekeo-pricing-app .zkp-page--active {
  display: block;
  animation: zkp-fade .22s ease;
}
@keyframes zkp-fade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

/* ============================================================
   BILLING TOGGLE
   ============================================================ */
#zeekeo-pricing-app .zkp-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}
#zeekeo-pricing-app .zkp-tog-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--zc-muted);
  transition: color var(--zt), font-weight var(--zt);
  cursor: default;
  user-select: none;
  line-height: 1;
}
#zeekeo-pricing-app .zkp-tog-label.on {
  color: var(--zc-text);
  font-weight: 700;
}
/* The pill */
#zeekeo-pricing-app .zkp-tog-btn {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  border-radius: 14px;
  background: var(--zc-blue);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: background var(--zt);
  flex-shrink: 0;
  vertical-align: middle;
}
#zeekeo-pricing-app .zkp-tog-btn:focus-visible { box-shadow: 0 0 0 3px rgba(26,108,255,.3); }
/* Thumb */
#zeekeo-pricing-app .zkp-tog-btn .zkp-thumb {
  position: absolute;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: left var(--zt);
  pointer-events: none;
}
/* QUARTERLY = thumb right, MONTHLY = thumb left */
#zeekeo-pricing-app .zkp-tog-btn[data-b="quarterly"] .zkp-thumb { left: 27px; }
#zeekeo-pricing-app .zkp-tog-btn[data-b="monthly"]   .zkp-thumb { left: 3px; }
#zeekeo-pricing-app .zkp-tog-btn[data-b="monthly"]   { background: var(--zc-muted); }

#zeekeo-pricing-app .zkp-off-badge {
  display: inline-block;
  background: var(--zc-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 5px;
  letter-spacing: .3px;
  vertical-align: middle;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
#zeekeo-pricing-app .zkp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  #zeekeo-pricing-app .zkp-grid { grid-template-columns: 1fr; }
}

#zeekeo-pricing-app .zkp-card {
  background: var(--zc-white);
  border-radius: var(--zc-r);
  border: 2px solid var(--zc-border);
  padding: 32px;
  box-shadow: var(--zc-shadow);
  transition: box-shadow var(--zt), transform var(--zt), border-color var(--zt);
  position: relative;
}
#zeekeo-pricing-app .zkp-card:hover {
  box-shadow: var(--zc-shadow-lg);
  transform: translateY(-3px);
}
#zeekeo-pricing-app .zkp-card--featured {
  border-color: var(--zc-blue);
  box-shadow: 0 0 0 2px var(--zc-blue), var(--zc-shadow);
}
/* Popular label */
#zeekeo-pricing-app .zkp-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 18px;
  right: 0;
  background: var(--zc-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 12px 3px 10px;
  border-radius: 4px 0 0 4px;
}

#zeekeo-pricing-app .zkp-plan-name { font-size: 22px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2; }
#zeekeo-pricing-app .zkp-plan-sub  { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--zc-muted); margin-top: 4px; }
#zeekeo-pricing-app .zkp-plan-desc { font-size: 14px; color: var(--zc-muted); margin-top: 10px; line-height: 1.65; }

#zeekeo-pricing-app .zkp-accent        { color: var(--zc-blue); }
#zeekeo-pricing-app .zkp-accent-orange { color: var(--zc-orange); }

/* ============================================================
   PRICE BLOCK
   ============================================================ */
#zeekeo-pricing-app .zkp-price-block { margin: 22px 0 18px; }

#zeekeo-pricing-app .zkp-savings-pill {
  display: inline-flex;
  align-items: center;
  background: var(--zc-blue-l);
  color: var(--zc-blue-d);
  border: 1.5px solid var(--zc-blue);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: all var(--zt);
}
#zeekeo-pricing-app .zkp-savings-pill.muted {
  background: var(--zc-bg);
  color: var(--zc-muted);
  border-color: var(--zc-border);
}
#zeekeo-pricing-app .zkp-savings-pill.contact {
  background: #fff7ed;
  color: #9a3412;
  border-color: var(--zc-orange);
}
#zeekeo-pricing-app .zkp-start-badge {
  display: inline-block;
  border: 1.5px solid var(--zc-border);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--zc-muted);
  margin-bottom: 12px;
}
#zeekeo-pricing-app .zkp-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
#zeekeo-pricing-app .zkp-price-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
#zeekeo-pricing-app .zkp-price-num.pop { animation: zkp-pop .28s ease; }
@keyframes zkp-pop {
  0%  { transform: scale(1);    color: inherit; }
  40% { transform: scale(1.08); color: var(--zc-blue); }
  100%{ transform: scale(1);    color: inherit; }
}
#zeekeo-pricing-app .zkp-price-meta { font-size: 14px; color: var(--zc-muted); }
#zeekeo-pricing-app .zkp-bill-note  { font-size: 13px; color: var(--zc-muted); margin-top: 4px; }
#zeekeo-pricing-app .zkp-mo-total   { font-size: 14px; margin-top: 6px; }
#zeekeo-pricing-app .zkp-elite-note {
  font-size: 12px; color: var(--zc-muted); margin-top: 8px;
  padding: 8px 12px;
  background: var(--zc-bg);
  border-left: 3px solid var(--zc-border);
  border-radius: 0 4px 4px 0;
  line-height: 1.5;
}

/* ============================================================
   SEAT CONTROL
   ============================================================ */
#zeekeo-pricing-app .zkp-seat-block { margin: 16px 0; }
#zeekeo-pricing-app .zkp-seat-lbl   { display: block; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--zc-muted); margin-bottom: 8px; }

#zeekeo-pricing-app .zkp-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: var(--zc-blue-l);
}
#zeekeo-pricing-app .zkp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--zc-blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(26,108,255,.5);
  cursor: pointer;
  transition: transform var(--zt);
}
#zeekeo-pricing-app .zkp-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
#zeekeo-pricing-app .zkp-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--zc-blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(26,108,255,.5);
  cursor: pointer;
}
#zeekeo-pricing-app .zkp-seat-bounds {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--zc-muted); margin-top: 4px;
}
#zeekeo-pricing-app .zkp-seat-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px; background: var(--zc-bg);
  border-radius: 50px; padding: 4px; width: fit-content;
  border: 1px solid var(--zc-border);
}
#zeekeo-pricing-app .zkp-seat-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--zc-white);
  font-size: 20px; line-height: 1; font-weight: 300;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  transition: all var(--zt); color: var(--zc-text);
}
#zeekeo-pricing-app .zkp-seat-btn:hover { background: var(--zc-blue); color: #fff; }
#zeekeo-pricing-app .zkp-seat-btn:active { transform: scale(.9); }
#zeekeo-pricing-app .zkp-seat-num {
  width: 50px; text-align: center;
  border: none; background: transparent;
  font-size: 18px; font-weight: 800;
  color: var(--zc-text);
  -moz-appearance: textfield; outline: none;
}
#zeekeo-pricing-app .zkp-seat-num::-webkit-inner-spin-button,
#zeekeo-pricing-app .zkp-seat-num::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ============================================================
   ANNUAL SAVINGS
   ============================================================ */
#zeekeo-pricing-app .zkp-annual {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--zc-green-bg);
  border: 1.5px solid var(--zc-green-bd);
  border-radius: var(--zc-r-sm);
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--zc-green);
  margin: 14px 0;
}
#zeekeo-pricing-app .zkp-annual.on {
  display: flex;
  animation: zkp-slidein .25s ease;
}
@keyframes zkp-slidein { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:translateY(0); } }

/* ============================================================
   BUTTONS
   ============================================================ */
#zeekeo-pricing-app .zkp-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%;
  padding: 14px 22px;
  margin-top: 10px;
  border-radius: var(--zc-r-sm);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--zt);
  text-decoration: none !important;
  letter-spacing: -.1px;
  font-family: inherit;
  line-height: 1.4;
}
#zeekeo-pricing-app .zkp-btn:active { transform: scale(.97); }
#zeekeo-pricing-app .zkp-btn.primary  { background: var(--zc-blue); color: #fff !important; }
#zeekeo-pricing-app .zkp-btn.primary:hover  { background: var(--zc-blue-d); box-shadow: 0 6px 20px rgba(26,108,255,.4); transform: translateY(-1px); }
#zeekeo-pricing-app .zkp-btn.primary:disabled { background: #94a3b8; cursor: not-allowed; transform: none; box-shadow: none; }
#zeekeo-pricing-app .zkp-btn.outline  { background: transparent; color: var(--zc-text) !important; border-color: var(--zc-border); }
#zeekeo-pricing-app .zkp-btn.outline:hover  { border-color: var(--zc-blue); color: var(--zc-blue) !important; background: var(--zc-blue-ll); }
#zeekeo-pricing-app .zkp-btn.dark     { background: transparent; color: var(--zc-text) !important; border-color: var(--zc-text); }
#zeekeo-pricing-app .zkp-btn.dark:hover     { background: var(--zc-text); color: #fff !important; }
#zeekeo-pricing-app .zkp-btn.ghost    { background: transparent; color: var(--zc-muted) !important; border-color: var(--zc-border); }
#zeekeo-pricing-app .zkp-btn.ghost:hover    { background: var(--zc-bg); color: var(--zc-text) !important; }

/* ============================================================
   FEATURES LIST
   ============================================================ */
#zeekeo-pricing-app .zkp-feats { margin-top: 22px; border-top: 1px solid var(--zc-border); padding-top: 18px; }
#zeekeo-pricing-app .zkp-fg    { margin-bottom: 16px; }
#zeekeo-pricing-app .zkp-fg-h  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--zc-muted); margin-bottom: 6px; }
#zeekeo-pricing-app .zkp-fg ul { list-style: none; padding: 0; margin: 0; }
#zeekeo-pricing-app .zkp-fg li {
  font-size: 13.5px; color: #334155;
  padding: 3px 0 3px 20px;
  position: relative;
  line-height: 1.5;
}
#zeekeo-pricing-app .zkp-fg li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--zc-blue-l) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5 3.5-4' stroke='%231a6cff' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/9px no-repeat;
  border: 1.5px solid var(--zc-blue);
}

/* ============================================================
   AUTH USER BAR
   ============================================================ */
#zeekeo-pricing-app .zkp-userbar {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
  max-width: 1060px; margin: 0 auto 14px;
  padding: 8px 16px;
  background: var(--zc-white);
  border-radius: var(--zc-r-sm);
  border: 1px solid var(--zc-border);
}
#zeekeo-pricing-app .zkp-username { font-size: 13px; font-weight: 600; }
#zeekeo-pricing-app .zkp-logout   { font-size: 12px; color: var(--zc-muted); background: none; border: 1px solid var(--zc-border); border-radius: 20px; padding: 3px 12px; cursor: pointer; transition: all var(--zt); }
#zeekeo-pricing-app .zkp-logout:hover { color: var(--zc-red); border-color: var(--zc-red); }

/* ============================================================
   CHECKOUT
   ============================================================ */
#zeekeo-pricing-app .zkp-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--zc-white); border: 1.5px solid var(--zc-border);
  border-radius: var(--zc-r-sm);
  padding: 9px 18px; font-size: 14px; font-weight: 600;
  color: var(--zc-muted); cursor: pointer; margin-bottom: 28px;
  transition: all var(--zt); font-family: inherit;
}
#zeekeo-pricing-app .zkp-back:hover { background: var(--zc-bg); color: var(--zc-text); }

/* Steps */
#zeekeo-pricing-app .zkp-steps { display: flex; align-items: center; justify-content: center; max-width: 480px; margin: 0 auto 32px; }
#zeekeo-pricing-app .zkp-step  { display: flex; align-items: center; gap: 8px; color: var(--zc-muted); }
#zeekeo-pricing-app .zkp-step-n {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  transition: all .22s; flex-shrink: 0;
}
#zeekeo-pricing-app .zkp-step-t { font-size: 13px; font-weight: 600; }
#zeekeo-pricing-app .zkp-step.active { color: var(--zc-blue); }
#zeekeo-pricing-app .zkp-step.active .zkp-step-n { background: var(--zc-blue); color: #fff; border-color: var(--zc-blue); }
#zeekeo-pricing-app .zkp-step.done   { color: var(--zc-green); }
#zeekeo-pricing-app .zkp-step.done   .zkp-step-n { background: var(--zc-green); color: #fff; border-color: var(--zc-green); }
#zeekeo-pricing-app .zkp-step-line { flex: 1; height: 2px; background: var(--zc-border); margin: 0 8px; transition: background .22s; max-width: 150px; }
#zeekeo-pricing-app .zkp-step-line.done { background: var(--zc-green); }

/* Checkout layout */
#zeekeo-pricing-app .zkp-co-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1060px; margin: 0 auto; align-items: start; }
@media (max-width: 780px) { #zeekeo-pricing-app .zkp-co-wrap { grid-template-columns: 1fr; } }

#zeekeo-pricing-app .zkp-step-panel { display: none; }
#zeekeo-pricing-app .zkp-step-panel.active { display: block; animation: zkp-step-in .24s ease; }
@keyframes zkp-step-in { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }

#zeekeo-pricing-app .zkp-co-card {
  background: var(--zc-white); border: 1.5px solid var(--zc-border);
  border-radius: var(--zc-r); padding: 26px; margin-bottom: 12px;
  box-shadow: var(--zc-shadow);
}
#zeekeo-pricing-app .zkp-co-title { font-size: 16px; font-weight: 800; margin-bottom: 18px; }

#zeekeo-pricing-app .zkp-plan-box {
  background: var(--zc-blue-ll); border: 1px solid var(--zc-blue-l);
  border-radius: var(--zc-r-sm); padding: 14px; margin-bottom: 20px;
}
#zeekeo-pricing-app .zkp-plan-box-name  { font-weight: 700; font-size: 15px; }
#zeekeo-pricing-app .zkp-plan-box-price { font-size: 13px; color: var(--zc-muted); margin-top: 3px; }

/* Forms */
#zeekeo-pricing-app .zkp-fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { #zeekeo-pricing-app .zkp-fg-row { grid-template-columns: 1fr; } }
#zeekeo-pricing-app .zkp-fg-item { margin-bottom: 14px; }
#zeekeo-pricing-app .zkp-lbl { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--zc-muted); margin-bottom: 5px; }
#zeekeo-pricing-app .zkp-input {
  width: 100%; border: 1.5px solid var(--zc-border); border-radius: var(--zc-r-sm);
  padding: 10px 13px; font-size: 14px; color: var(--zc-text);
  background: var(--zc-white); outline: none; font-family: inherit;
  transition: border-color var(--zt), box-shadow var(--zt);
}
#zeekeo-pricing-app .zkp-input::placeholder { color: #94a3b8; }
#zeekeo-pricing-app .zkp-input:focus { border-color: var(--zc-blue); box-shadow: 0 0 0 3px rgba(26,108,255,.12); }
#zeekeo-pricing-app .zkp-input.err  { border-color: var(--zc-red); }
#zeekeo-pricing-app .zkp-input.ok   { border-color: var(--zc-green); }
#zeekeo-pricing-app .zkp-sel-wrap   { position: relative; }
#zeekeo-pricing-app .zkp-sel {
  width: 100%; border: 1.5px solid var(--zc-border); border-radius: var(--zc-r-sm);
  padding: 10px 34px 10px 13px; font-size: 14px; color: var(--zc-text);
  background: var(--zc-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center / 11px;
  -webkit-appearance: none; appearance: none; outline: none; cursor: pointer; font-family: inherit;
  transition: border-color var(--zt);
}
#zeekeo-pricing-app .zkp-sel:focus { border-color: var(--zc-blue); }

/* Seat adjuster in checkout */
#zeekeo-pricing-app .zkp-adj-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--zc-bg); border-radius: 50px; padding: 4px;
  width: fit-content; border: 1px solid var(--zc-border);
}
#zeekeo-pricing-app .zkp-adj-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--zc-white);
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.08); transition: all var(--zt); font-family: inherit; line-height: 1;
}
#zeekeo-pricing-app .zkp-adj-btn:hover { background: var(--zc-blue); color: #fff; }
#zeekeo-pricing-app .zkp-adj-n { min-width: 34px; text-align: center; font-size: 17px; font-weight: 800; }
#zeekeo-pricing-app .zkp-disc-chip {
  background: var(--zc-blue); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 10px; border-radius: 20px;
}
#zeekeo-pricing-app .zkp-disc-chip:empty { display: none; }
#zeekeo-pricing-app .zkp-cap-note { font-size: 11px; color: var(--zc-muted); font-weight: 400; margin-left: 4px; }

/* Auth inline toggle */
#zeekeo-pricing-app .zkp-auth-link-row { margin-top: 8px; font-size: 13px; }
#zeekeo-pricing-app .zkp-auth-link { color: var(--zc-blue); font-weight: 600; text-decoration: underline; cursor: pointer; background: none; border: none; font-size: 13px; font-family: inherit; padding: 0; }

#zeekeo-pricing-app .zkp-auth-inline {
  margin-top: 14px;
  background: var(--zc-blue-ll);
  border: 1.5px solid var(--zc-blue-l);
  border-radius: var(--zc-r-sm);
  padding: 18px;
  animation: zkp-slidein .22s ease;
}
#zeekeo-pricing-app .zkp-auth-tabs { display: flex; background: var(--zc-border); border-radius: 6px; padding: 2px; margin-bottom: 14px; gap: 0; }
#zeekeo-pricing-app .zkp-auth-tab  { flex: 1; padding: 7px; border: none; background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; border-radius: 4px; color: var(--zc-muted); transition: all var(--zt); font-family: inherit; }
#zeekeo-pricing-app .zkp-auth-tab.on { background: var(--zc-white); color: var(--zc-blue); box-shadow: 0 1px 3px rgba(0,0,0,.1); }
#zeekeo-pricing-app .zkp-auth-close { float: right; background: none; border: none; font-size: 16px; cursor: pointer; color: var(--zc-muted); line-height: 1; padding: 0; margin-top: -2px; }
#zeekeo-pricing-app .zkp-auth-err  { color: var(--zc-red); font-size: 12px; min-height: 16px; margin-top: 4px; }

/* When auth inline is open, hide the main account form fields */
#zeekeo-pricing-app .zkp-main-fields.auth-open { opacity: .4; pointer-events: none; }

#zeekeo-pricing-app .zkp-divider { border: none; border-top: 1px solid var(--zc-border); margin: 18px 0; }
#zeekeo-pricing-app .zkp-check-label { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; cursor: pointer; margin-top: 8px; line-height: 1.5; }
#zeekeo-pricing-app .zkp-check-label input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--zc-blue); flex-shrink: 0; margin-top: 3px; cursor: pointer; }
#zeekeo-pricing-app .zkp-link { color: var(--zc-blue); text-decoration: underline; }

/* Summary */
#zeekeo-pricing-app .zkp-co-right { position: sticky; top: 24px; }
#zeekeo-pricing-app .zkp-sum-card { background: var(--zc-white); border: 1.5px solid var(--zc-border); border-radius: var(--zc-r); padding: 22px; box-shadow: var(--zc-shadow); }
#zeekeo-pricing-app .zkp-sum-hdr  { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 800; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--zc-border); }
#zeekeo-pricing-app .zkp-sum-badge { background: var(--zc-blue-l); color: var(--zc-blue-d); border: 1.5px solid var(--zc-blue); border-radius: 20px; padding: 2px 12px; font-size: 11px; font-weight: 700; transition: all var(--zt-spring); }
#zeekeo-pricing-app .zkp-sum-rows  { margin-bottom: 12px; }
#zeekeo-pricing-app .zkp-sum-row   { display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; border-bottom: 1px solid var(--zc-bg); }
#zeekeo-pricing-app .zkp-sum-row.disc span:last-child { color: var(--zc-green); font-weight: 700; }
#zeekeo-pricing-app .zkp-sum-total { display: flex; justify-content: space-between; font-size: 17px; font-weight: 800; padding: 12px 0 0; border-top: 2px solid var(--zc-text); }
#zeekeo-pricing-app .zkp-sum-save  { display: none; align-items: center; gap: 6px; background: var(--zc-green-bg); border: 1.5px solid var(--zc-green-bd); border-radius: var(--zc-r-sm); padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--zc-green); margin-top: 10px; }
#zeekeo-pricing-app .zkp-sum-save.on { display: flex; }
#zeekeo-pricing-app .zkp-sum-feats { margin-top: 18px; border-top: 1px solid var(--zc-border); padding-top: 14px; }

/* Sandbox hint */
#zeekeo-pricing-app .zkp-sandbox { background: var(--zc-blue-ll); border: 1px solid var(--zc-blue-l); border-radius: 6px; padding: 10px 14px; font-size: 12px; color: var(--zc-muted); margin: 14px 0; line-height: 1.6; }
#zeekeo-pricing-app .zkp-sandbox strong { color: var(--zc-blue); }

/* ============================================================
   TOAST
   ============================================================ */
#zeekeo-pricing-app .zkp-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: var(--zc-text); color: #fff;
  padding: 11px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  z-index: 999999; opacity: 0;
  transition: opacity .2s, transform .2s;
  white-space: nowrap; pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  font-family: inherit;
}
#zeekeo-pricing-app .zkp-toast.show  { opacity: 1; transform: translateX(-50%) translateY(0); }
#zeekeo-pricing-app .zkp-toast.ok    { background: #15803d; }
#zeekeo-pricing-app .zkp-toast.error { background: var(--zc-red); }

/* Spinner */
#zeekeo-pricing-app .zkp-spin {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: zkp-spin .7s linear infinite; vertical-align: middle;
}
@keyframes zkp-spin { to { transform: rotate(360deg); } }

/* Hidden utility */
#zeekeo-pricing-app .h { display: none !important; }

/* Mobile */
@media (max-width: 540px) {
  #zeekeo-pricing-app { padding: 18px 12px 60px; }
  #zeekeo-pricing-app .zkp-card { padding: 20px; }
  #zeekeo-pricing-app .zkp-price-num { font-size: 42px; }
  #zeekeo-pricing-app .zkp-co-card { padding: 18px; }
}
