/* V15: professional license-specific Buy Now buttons on Home + Pricing */
.pm-home-price-card .pm-plan-buy{
  position:relative;
  width:100%;
  min-height:52px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:1px solid transparent!important;
  color:#fff!important;
  font-size:12px;
  font-weight:900;
  letter-spacing:.05px;
  text-decoration:none!important;
  overflow:hidden;
  isolation:isolate;
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease,border-color .2s ease;
}
.pm-home-price-card .pm-plan-buy:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:0;
  background:linear-gradient(110deg,transparent 15%,rgba(255,255,255,.20) 45%,transparent 72%);
  transform:translateX(-70%);
  transition:transform .5s ease,opacity .2s ease;
}
.pm-home-price-card .pm-plan-buy:after{
  content:"→";
  font-size:15px;
  line-height:1;
  transform:translateX(0);
  transition:transform .2s ease;
}
.pm-home-price-card .pm-buy-personal{
  background:linear-gradient(135deg,#0f766e 0%,#0d9488 100%)!important;
  box-shadow:0 10px 24px rgba(13,148,136,.20);
}
.pm-home-price-card .pm-buy-commercial{
  background:linear-gradient(135deg,#2563eb 0%,#4f46e5 100%)!important;
  box-shadow:0 11px 28px rgba(37,99,235,.25);
}
.pm-home-price-card .pm-buy-reseller{
  background:linear-gradient(135deg,#6d28d9 0%,#7c3aed 100%)!important;
  box-shadow:0 10px 24px rgba(124,58,237,.22);
}
.pm-home-price-card .pm-plan-buy:hover{
  color:#fff!important;
  transform:translateY(-3px);
  filter:saturate(1.08) brightness(1.03);
}
.pm-home-price-card .pm-buy-personal:hover{box-shadow:0 16px 34px rgba(13,148,136,.30)}
.pm-home-price-card .pm-buy-commercial:hover{box-shadow:0 17px 38px rgba(37,99,235,.34)}
.pm-home-price-card .pm-buy-reseller:hover{box-shadow:0 16px 34px rgba(124,58,237,.32)}
.pm-home-price-card .pm-plan-buy:hover:before{opacity:1;transform:translateX(70%)}
.pm-home-price-card .pm-plan-buy:hover:after{transform:translateX(4px)}
.pm-home-price-card .pm-plan-buy:active{transform:translateY(-1px) scale(.995)}
.pm-home-price-card .pm-plan-buy:focus-visible{outline:3px solid rgba(37,99,235,.20);outline-offset:3px}
@media (prefers-reduced-motion:reduce){
  .pm-home-price-card .pm-plan-buy,.pm-home-price-card .pm-plan-buy:before,.pm-home-price-card .pm-plan-buy:after{transition:none}
}
