:root {
  --pb-green: #00e676;
  --pb-green2: #69ff47;
  --pb-glow: rgba(0,230,118,0.38);
}

.pb-cta-wrap {
  max-width: 700px;
  width: 100%;
  position: relative;
  margin: 24px auto;
  border-radius: 12px;
}
.pb-cta-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: conic-gradient(from var(--pb-angle, 0deg), #00e676, #00b300, #00e676, #69ff47, #00b300, #00e676);
  animation: pb-spin 4s linear infinite;
  z-index: 0;
}
@property --pb-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes pb-spin { to { --pb-angle: 360deg; } }

.pb-cta-bg {
  position: relative;
  z-index: 1;
  border-radius: 11px;
  overflow: hidden;
  background: #060f08;
}
.pb-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,230,118,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pb-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 24px;
}

/* Price block */
.pb-price-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 10px;
  padding: 14px 22px;
  min-width: 110px;
  overflow: hidden;
}
.pb-price-block::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: pb-shimmer 3s ease-in-out infinite;
}
@keyframes pb-shimmer {
  0%   { left: -75%; }
  60%, 100% { left: 125%; }
}
.pb-price-amount {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 36px;
  color: var(--pb-green);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(0,230,118,0.7), 0 0 40px rgba(0,230,118,0.3), 0 2px 4px rgba(0,0,0,0.9);
}
.pb-price-duration {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,230,118,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Copy */
.pb-copy-block {
  flex: 1;
  text-align: center;
}
.pb-headline {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 21px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}
.pb-headline .pb-accent {
  color: var(--pb-green);
  text-shadow: 0 0 16px rgba(0,230,118,0.6), 0 2px 6px rgba(0,0,0,0.9);
}
.pb-sub {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.pb-sub strong { color: rgba(255,255,255,0.7); font-weight: 700; }

/* Right */
.pb-right-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pb-right-block img {
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.7));
}

/* Button */
.pb-btn {
  font-family: 'Inter', Arial, sans-serif !important;
  font-weight: 900 !important;
  font-style: italic !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  color: #000 !important;
  background: var(--pb-green) !important;
  padding: 14px 30px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  display: inline-block !important;
  box-shadow: 0 0 0 0 rgba(0,230,118,0.5), 0 2px 8px rgba(0,0,0,0.5) !important;
  animation: pb-pulse 2.5s ease-out infinite !important;
  transition: background 0.15s, transform 0.1s !important;
}
@keyframes pb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,230,118,0.55), 0 2px 8px rgba(0,0,0,0.5); }
  60%  { box-shadow: 0 0 0 8px rgba(0,230,118,0), 0 2px 8px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(0,230,118,0), 0 2px 8px rgba(0,0,0,0.5); }
}
.pb-btn:hover {
  background: #fff !important;
  transform: scale(1.05) !important;
  animation: none !important;
  box-shadow: 0 4px 20px rgba(0,230,118,0.5) !important;
}

@media (max-width: 520px) {
  .pb-cta-inner { flex-direction: column; align-items: center; text-align: center; }
  .pb-price-block { flex-direction: row; gap: 10px; align-items: baseline; }
  .pb-right-block { flex-direction: row; }
}
