/* Axencia.co — Plans & Pricing · World-Class Premium */

.ax-pl-page.ax-pl-worldclass {
  --pl-teal: #00d4ff;
  --pl-blue: #3b82f6;
  --pl-glass: rgba(8, 18, 42, 0.78);
  --pl-border: rgba(59, 130, 246, 0.28);
}

/* ── Hero ── */
.ax-pl-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height, 72px) + 88px) 24px 56px;
  text-align: center;
  z-index: 1;
}

.ax-pl-hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ax-pl-hero-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 15%, transparent 72%);
  animation: plGridDrift 52s linear infinite;
}

@keyframes plGridDrift {
  to { transform: translate3d(56px, 56px, 0); }
}

.ax-pl-hero-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 520px;
  max-height: 520px;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 68%);
  filter: blur(70px);
  animation: plGlowPulse 8s ease-in-out infinite;
}

@keyframes plGlowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.08); }
}

.ax-pl-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.ax-pl-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ax-pl-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: plLivePulse 2s ease-in-out infinite;
}

@keyframes plLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.ax-pl-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 20px 0 16px;
  background: linear-gradient(135deg, #f0f9ff 0%, #93c5fd 45%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ax-pl-hero-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(148, 163, 184, 0.95);
  max-width: 640px;
  margin: 0 auto 28px;
}

.ax-pl-hud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 32px;
  max-width: 760px;
}

.ax-pl-hud-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(8, 16, 36, 0.72);
  border: 1px solid rgba(59, 130, 246, 0.22);
  backdrop-filter: blur(12px);
  min-width: 120px;
}

.ax-pl-hud-item strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.05rem;
  color: var(--pl-teal);
  font-weight: 600;
}

.ax-pl-hud-item span {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.85);
  letter-spacing: 0.04em;
}

.ax-pl-quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ax-pl-quick-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ax-pl-quick-link:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.18);
  color: #e8e8ed;
}

/* ── Scroll reveal ── */
.ax-pl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ax-pl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Sections ── */
.ax-pl-worldclass .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.ax-pl-worldclass .section-header h2 {
  letter-spacing: -0.02em;
}

.ax-pl-worldclass .section-plans {
  padding: 72px 0;
}

/* ── Plan cards ── */
.ax-pl-worldclass .plan-card {
  position: relative;
  background: linear-gradient(155deg, rgba(12, 20, 42, 0.88), rgba(6, 12, 28, 0.82));
  border: 1px solid rgba(59, 130, 246, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
  overflow: hidden;
}

.ax-pl-worldclass .plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 212, 255, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ax-pl-worldclass .plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.38);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.1);
}

.ax-pl-worldclass .plan-card:hover::after {
  opacity: 1;
}

.ax-pl-worldclass .plan-card.featured {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38), 0 0 48px rgba(0, 212, 255, 0.12);
}

.ax-pl-tier-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.28);
}

.ax-pl-worldclass .plan-card.featured .ax-pl-tier-badge {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.ax-pl-worldclass .plan-price {
  font-family: "JetBrains Mono", monospace;
  font-size: 2rem;
  background: linear-gradient(135deg, #93c5fd, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ax-pl-worldclass .plan-card-service {
  display: flex;
  flex-direction: column;
}

.ax-pl-worldclass .plan-card-service .btn {
  margin-top: auto;
}

.ax-pl-service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #60a5fa;
}

.ax-pl-service-icon svg {
  width: 22px;
  height: 22px;
}

/* Cyber plans polish */
.ax-pl-worldclass .ax-cyber-plan {
  backdrop-filter: blur(14px);
}

.ax-pl-worldclass .plan-price-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  color: rgba(0, 212, 255, 0.85);
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.18);
}

/* Trust row */
.ax-pl-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 48px auto 0;
  max-width: 900px;
}

.ax-pl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.9);
  background: rgba(8, 16, 36, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.ax-pl-trust-item svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
}

/* Testimonials */
.ax-pl-testimonials {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(72px, 10vw, 100px) 0;
}

.ax-pl-testimonials .ax-reviews-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

.ax-pl-testimonials .testimonial-product-badge--cyber {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.12);
}

.ax-pl-testimonials .testimonial-product-badge--cyber::before {
  background: #60a5fa;
  box-shadow: 0 0 10px #60a5fa;
}

/* Live strip */
.ax-pl-live-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 48px auto 0;
  padding: 14px 24px;
  max-width: 720px;
  border-radius: 100px;
  background: rgba(8, 16, 36, 0.65);
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 0.88rem;
  color: rgba(148, 163, 184, 0.95);
  transition: opacity 0.35s ease;
}

.ax-pl-live-strip span:last-child {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
}

/* CTA */
.ax-pl-cta .cta-box {
  position: relative;
  background: linear-gradient(155deg, rgba(12, 20, 42, 0.92), rgba(6, 12, 28, 0.88));
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.ax-pl-cta .cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 212, 255, 0.08), transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .ax-pl-hud-item {
    min-width: calc(50% - 8px);
    padding: 10px 14px;
  }

  .ax-pl-live-strip {
    border-radius: 16px;
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }

  .ax-pl-trust-row {
    gap: 10px;
  }

  .ax-pl-trust-item {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ax-pl-hero-grid,
  .ax-pl-hero-glow,
  .ax-pl-tag-dot {
    animation: none;
  }

  .ax-pl-reveal {
    opacity: 1;
    transform: none;
  }
}
