/* ================================================
   PRICING — Toggle, 3-tier cards, Popular highlight
   ================================================ */

/* ── Monthly / Annual toggle ── */
.tog-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.tog-lbl {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}

.tog-lbl.a {
  color: var(--text);
}

.tog {
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.tog.a {
  background: var(--accent);
}

.tog-k {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.tog.a .tog-k {
  transform: translateX(24px);
}

.disc {
  padding: 3px 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 100px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

/* ── Pricing grid ── */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1.14fr 1fr;
  gap: 18px;
  align-items: start;
}

/* ── Pricing card ── */
.pc {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.3s ease;
}

.pc.on {
  opacity: 1;
  transform: none;
}

.pc:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pc.pop {
  background: rgba(13, 74, 47, 0.28);
  border-color: rgba(34, 197, 94, 0.38);
  box-shadow: 0 0 50px rgba(34, 197, 94, 0.1);
}

.pc.pop:hover {
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.2), 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ── Most Popular badge ── */
.pop-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 12px;
  background: var(--accent);
  color: #000;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  animation: badge-glow 2.2s ease-in-out infinite;
}

/* ── Plan content ── */
.pn {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.pp {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
}

.pp sup {
  font-size: 17px;
  font-weight: 700;
  vertical-align: super;
}

.pperiod {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.pdiv {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.pfeats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}

.pf {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}

.pck {
  width: 17px;
  height: 17px;
  background: rgba(34, 197, 94, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  color: var(--accent);
}

/* ── Plan CTA buttons ── */
.btn-plan {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  display: block;
  transition: all 0.22s;
  font-family: 'Inter', sans-serif;
  border: none;
  text-decoration: none;
}

.btn-po {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-po:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.btn-pf {
  background: var(--accent);
  color: #000;
  font-size: 15px;
  padding: 15px;
}

.btn-pf:hover {
  background: var(--accent-light);
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.42);
  transform: translateY(-2px);
}
