/* =========================
   PRICING PAGE (Outcome-Based)
   Matches Homepage PGA UI Language
========================== */

.pga-wrap{ max-width:1200px; margin:0 auto; padding:0 16px; }
#pgaPricingRoot{ padding:28px 0 90px; }

.dot{
  width:8px; height:8px; border-radius:99px;
  background:linear-gradient(135deg,#6366F1 0%, #4F46F5 100%);
  display:inline-block;
}
.grad{
  background:linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Buttons (fallback) */
.pga-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
  transition:.2s ease;
  border:1px solid transparent;
  white-space:nowrap;
}
.pga-btn-primary{
  background:linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  color:#fff;
  box-shadow:0 14px 30px rgba(99,102,241,.18);
}
.pga-btn-primary:hover{ transform:translateY(-1px); filter:brightness(1.03); }
.pga-btn-ghost{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.12);
  color:#0f172a;
}
.pga-btn-ghost:hover{ transform:translateY(-1px); background:#fff; }
.pga-btn-outline{
  background:transparent;
  border:1px solid rgba(15,23,42,.18);
  color:#0f172a;
}
.pga-btn-outline:hover{ transform:translateY(-1px); background:rgba(255,255,255,.7); }

/* Hero */
.pga-pricing-hero{
  border-radius:26px;
  padding:34px 22px;
  border:1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(1100px 460px at 55% -30%, rgba(99,102,241,.22), transparent 60%),
    radial-gradient(900px 420px at 15% 10%, rgba(236,72,153,.12), transparent 55%),
    linear-gradient(180deg, #ffffff, #f6f7fb);
  box-shadow:0 30px 70px rgba(2,6,23,.08);
  position:relative;
  overflow:hidden;
}

.pga-crumbs{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  color:#64748b;
  font-size:13px;
  margin-bottom:10px;
}
.pga-crumbs a{ text-decoration:none; opacity:.9; color:inherit; }
.pga-crumbs a:hover{ text-decoration:underline; }

.pga-hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(99,102,241,.08);
  border:1px solid rgba(99,102,241,.18);
  color:#3730a3;
  font-weight:900;
  font-size:12px;
  letter-spacing:.3px;
  width:fit-content;
}
.pga-pricing-hero h1{
  margin:12px 0 10px;
  font-size:40px;
  line-height:1.1;
  letter-spacing:-0.6px;
}
.pga-pricing-hero p{
  margin:0;
  max-width:92ch;
  color:#475569;
  line-height:1.75;
  font-size:15px;
}
.pga-hero-cta{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* Proof Sprint block */
.pga-proof{ margin-top:18px; }
.pga-proof-card{
  border-radius:26px;
  padding:18px 18px;
  border:1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(99,102,241,.14), transparent 60%),
    radial-gradient(700px 340px at 95% 20%, rgba(236,72,153,.10), transparent 55%),
    rgba(255,255,255,.82);
  box-shadow:0 24px 60px rgba(2,6,23,.10);
}
.pga-proof h2{
  margin:10px 0 6px;
  font-size:22px;
  letter-spacing:-.2px;
}
.pga-proof p{
  margin:0;
  color:#475569;
  line-height:1.75;
  font-size:14px;
  max-width:92ch;
}
.pga-proof-list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pga-proof-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  line-height:1.55;
  color:#334155;
}
.pga-proof-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.pga-proof-note{
  margin-top:10px;
  color:#64748b;
  font-size:12px;
  line-height:1.6;
}

/* Trust strip */
.pga-pricing-strip{ margin-top:14px; }
.pga-pricing-strip-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.pga-pricing-strip-card{
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.78);
  padding:12px 14px;
  box-shadow:0 18px 46px rgba(2,6,23,.08);
}
.pga-pricing-strip-card strong{
  display:block;
  font-size:13px;
  letter-spacing:-.1px;
  margin-bottom:4px;
}
.pga-pricing-strip-card span{
  color:#64748b;
  font-size:13px;
  line-height:1.65;
}

/* Section head */
.pga-section{ margin-top:22px; }
.pga-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin:18px 0 12px;
  flex-wrap:wrap;
}
.pga-head h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.2px;
}
.pga-sub{
  margin:0;
  color:#64748b;
  font-size:13px;
  line-height:1.6;
  max-width:90ch;
}

/* Goal badge */
.pga-goal-badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  width:fit-content;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.75);
  font-weight:950;
  font-size:12px;
  color:#0f172a;
  margin-bottom:6px;
}
.pga-goal-ico{
  width:30px; height:30px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg, #5550F4 0%, #E84997 100%);
  box-shadow:0 12px 30px rgba(99,102,241,.18);
  flex:0 0 auto;
  font-weight:950;
}

/* Cards grid */
.pga-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  align-items:stretch;
}

/* Card */
.pga-card{
  border-radius:28px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 24px 60px rgba(2,6,23,.10);
  overflow:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pga-card:hover{
  transform:translateY(-4px);
  box-shadow:0 34px 90px rgba(2,6,23,.14);
  border-color:rgba(99,102,241,.22);
}
.pga-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(700px 220px at 20% 0%, rgba(99,102,241,.12), transparent 55%);
  opacity:.55;
  pointer-events:none;
}

.pga-card-top{
  position:relative;
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(15,23,42,.08);
  background:linear-gradient(180deg, rgba(99,102,241,.10), rgba(255,255,255,0));
}
.pga-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.10);
  font-size:12px;
  font-weight:950;
  color:#0f172a;
  width:fit-content;
}
.pga-mini-dot{
  width:8px; height:8px; border-radius:99px;
  background:linear-gradient(135deg,#6366F1 0%, #4F46F5 100%);
}

.pga-card h3{
  position:relative;
  margin:10px 0 6px;
  font-size:18px;
  letter-spacing:-.2px;
}
.pga-card p{
  position:relative;
  margin:0;
  color:#475569;
  font-size:13px;
  line-height:1.7;
  max-width:64ch;
}

/* Price block */
.pga-price{
  position:relative;
  margin-top:12px;
  display:flex;
  align-items:flex-end;
  gap:8px;
}
.pga-amt{
  font-size:34px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-0.8px;
}
.pga-per{
  color:#64748b;
  font-weight:900;
  font-size:13px;
  padding-bottom:4px;
}
.pga-typical{
  position:relative;
  margin-top:6px;
  font-size:12px;
  color:#64748b;
}

/* Body */
.pga-card-body{
  position:relative;
  padding:14px 16px 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1 1 auto;
}
.pga-list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pga-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  line-height:1.55;
  color:#334155;
}
.pga-tick{
  width:18px; height:18px;
  border-radius:999px;
  background:rgba(99,102,241,.12);
  border:1px solid rgba(99,102,241,.22);
  display:grid;
  place-items:center;
  color:#4F46F5;
  font-weight:950;
  flex:0 0 auto;
  margin-top:2px;
}

/* Footer */
.pga-card-foot{
  position:relative;
  padding:14px 16px 16px;
  border-top:1px solid rgba(15,23,42,.08);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  background:rgba(255,255,255,.65);
}
.pga-btn-lite{
  height:44px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.85);
  font-weight:950;
  font-size:14px;
  cursor:pointer;
  transition:.18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  color:#0f172a;
}
.pga-btn-lite:hover{ transform:translateY(-1px); background:#fff; }
.pga-btn-lite.primary{
  background:rgba(99,102,241,.10);
  border-color:rgba(99,102,241,.28);
}
.pga-btn-lite.primary:hover{
  box-shadow:0 18px 40px rgba(99,102,241,.18);
  background:rgba(99,102,241,.14);
}

/* Highlight */
.pga-card.featured{
  border-color:rgba(99,102,241,.28);
  box-shadow:0 34px 90px rgba(2,6,23,.14);
  transform:translateY(-4px);
}
.pga-ribbon{
  position:absolute;
  top:14px;
  right:14px;
  z-index:2;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(99,102,241,.12);
  border:1px solid rgba(99,102,241,.26);
  color:#3730a3;
  font-weight:950;
  font-size:12px;
  backdrop-filter:blur(10px);
}

/* Notes / disclaimers */
.pga-note{
  margin-top:14px;
  border-radius:22px;
  border:1px dashed rgba(15,23,42,.14);
  background:rgba(255,255,255,.75);
  padding:12px 14px;
  color:#64748b;
  font-size:13px;
  line-height:1.7;
}
.pga-note strong{ color:#0f172a; }

/* CTA */
.pga-cta{
  margin-top:18px;
  border-radius:24px;
  padding:22px;
  color:#fff;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(99,102,241,.28), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(236,72,153,.22), transparent 55%),
    linear-gradient(135deg, #0f172a, #020617);
  box-shadow:0 40px 90px rgba(2,6,23,.35);
  border:1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.pga-cta h2{
  margin:0 0 6px;
  font-size:22px;
  letter-spacing:-.2px;
}
.pga-cta p{
  margin:0;
  color:rgba(229,231,235,.92);
  line-height:1.7;
  font-size:14px;
  max-width:70ch;
}

/* Responsive */
@media (max-width: 980px){
  .pga-pricing-hero h1{ font-size:30px; }
  .pga-pricing-strip-grid{ grid-template-columns:1fr; }
  .pga-grid{ grid-template-columns:1fr; }
  .pga-card.featured{ transform:none; }
}