/* ══════════════════════════════
   FoxAds365 — Pricing Section
   ══════════════════════════════ */

#pricing { padding: 60px 20px 80px; }

/* ── Device Toggle ── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin: 0 auto 48px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 12px; padding: 6px; width: fit-content;
}
.ptog-btn {
  padding: 10px 24px; border-radius: 8px; font-size: 14px;
  font-weight: 600; border: none; cursor: pointer;
  background: transparent; color: var(--text2);
  transition: all .2s; font-family: 'Outfit', sans-serif; white-space: nowrap;
}
.ptog-btn:hover { color: var(--text); }
.ptog-btn.active {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 12px rgba(99,102,241,.35);
}

/* ── Cards Grid ── */
.plan-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
  align-items: start;
}

/* ── Single Card ── */
.plan-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 20px; padding: 36px 28px 32px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }

/* Featured — 1 Year */
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(99,102,241,.18);
}

/* Semi-featured — 6 Months */
.plan-card.semi-featured {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.plan-card.semi-featured:hover { transform: translateY(-7px); }

/* Badge */
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  padding: 4px 16px; border-radius: 20px;
  white-space: nowrap; text-transform: uppercase;
}
.plan-badge.amber { background: linear-gradient(135deg,#f59e0b,#fbbf24); color: #1a1000; }

/* Name */
.plan-name { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.plan-card.featured .plan-name { color: var(--accent2); }

/* Monthly rate — BIG */
.plan-monthly-price {
  display: flex; align-items: baseline; gap: 3px; margin-bottom: 10px;
}
.plan-amount {
  font-family: 'Outfit', sans-serif; font-size: 54px;
  font-weight: 800; color: var(--text); line-height: 1; transition: all .2s;
}
.plan-period { font-size: 13px; color: var(--text3); font-weight: 500; }

/* One-time total block */
.plan-one-time {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-bottom: 24px; flex-wrap: wrap;
}
.plan-original {
  font-size: 13px; color: var(--text3);
  text-decoration: line-through; opacity: .7;
}
.plan-total-price {
  font-size: 15px; font-weight: 700; color: var(--text); transition: all .2s;
}
.plan-card.featured .plan-total-price { color: var(--accent); }
.plan-ot-label { font-size: 12px; color: var(--text3); }

/* Features */
.plan-features {
  list-style: none; width: 100%; margin-bottom: 28px;
  text-align: left; border-top: 1px solid var(--border2); padding-top: 18px;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 14px; color: var(--text2);
  border-bottom: 1px solid var(--border2);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--green); font-size: 16px; flex-shrink: 0; }

/* CTA */
.plan-btn {
  display: block; width: 100%; padding: 14px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  text-align: center; transition: all .2s; border: 2px solid transparent;
  cursor: pointer; font-family: 'Outfit', sans-serif; margin-top: auto; letter-spacing: .02em;
}
.plan-btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.plan-btn.primary:hover { background: var(--accent2); border-color: var(--accent2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(99,102,241,.4); }
.plan-btn.outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.plan-btn.outline:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

/* Responsive */
@media (max-width: 768px) {
  .plan-cards { grid-template-columns: 1fr; max-width: 420px; }
  .plan-card.semi-featured { transform: none; }
  .plan-card.featured { order: -1; }
  .ptog-btn { padding: 9px 16px; font-size: 13px; }
  .plan-amount { font-size: 44px; }
}