/* =============================================================================
   Landing public premium — layering, marquee, secțiuni
   Încărcat doar pe / (vizitatori). Variabile din style.css (:root).
   ============================================================================= */

.public-landing-body {
  position: relative;
  isolation: isolate;
}

/* JS: html.pl-reduced-motion / pl-no-three — dezactivare animații grele */
html.pl-reduced-motion .pl-webgl-wrap,
html.pl-no-three .pl-webgl-wrap {
  display: none !important;
}

html.pl-reduced-motion .pl-marquee__track,
html.pl-reduced-motion .pl-text-shimmer,
html.pl-reduced-motion .pl-float-badge,
html.pl-reduced-motion .pl-hero__pulse-ring,
html.pl-reduced-motion .pl-dock__meter-fill,
html.pl-reduced-motion .pl-dock__live-dot,
html.pl-reduced-motion .pl-dock__spark,
html.pl-reduced-motion .pl-trust-flow__icon,
html.pl-reduced-motion .pl-trust-flow__rail-fill,
html.pl-reduced-motion .pl-cta-finale__particles {
  animation: none !important;
}

html.pl-reduced-motion .pl-ambient-bg__mesh {
  animation: none !important;
  transform: none;
}

html.pl-reduced-motion .pl-flare {
  animation: none !important;
  opacity: 0.25;
}

@media (prefers-reduced-motion: reduce) {
  .pl-webgl-wrap {
    display: none !important;
  }
  .pl-marquee__track,
  .pl-text-shimmer,
  .pl-float-badge,
  .pl-hero__pulse-ring,
  .pl-dock__meter-fill,
  .pl-dock__live-dot,
  .pl-dock__spark,
  .pl-trust-flow__icon,
  .pl-trust-flow__rail-fill,
  .pl-cta-finale__particles {
    animation: none !important;
  }
  .pl-ambient-bg__mesh {
    animation: none !important;
  }
  .pl-flare {
    animation: none !important;
  }
}

/* Strat ambient sub hero/canvas decorativ */
.pl-ambient-bg {
  position: fixed;
  inset: 0;
  left: var(--nav-left);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pl-ambient-bg__mesh {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 90% 65% at 12% 18%, rgba(99, 102, 241, 0.42), transparent 58%),
    radial-gradient(ellipse 75% 55% at 88% 12%, rgba(139, 92, 246, 0.32), transparent 52%),
    radial-gradient(ellipse 70% 80% at 50% 105%, rgba(6, 182, 212, 0.22), transparent 48%);
  animation: pl-mesh-drift 22s ease-in-out infinite alternate;
}

.pl-ambient-bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 92% 82% at 52% 35%, black 15%, transparent 76%);
}

@keyframes pl-mesh-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(4%, -3%) scale(1.07);
  }
}

/* Canvas decorativ full-viewport (fundal), fără interacțiune */
.pl-webgl-wrap {
  position: fixed;
  inset: 0;
  left: var(--nav-left);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#pl-webgl-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.pl-webgl-wrap__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 30%, rgba(5, 6, 13, 0.88) 100%);
  mix-blend-mode: multiply;
  opacity: 0.75;
  pointer-events: none;
}

.pl-webgl-wrap__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Flăcări colorate */
.pl-flare {
  position: fixed;
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
  left: var(--nav-left);
  mix-blend-mode: screen;
}
.pl-flare--1 {
  top: -8%;
  left: calc(var(--nav-left) + 2%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.55) 0%, transparent 70%);
  animation: pl-flare-pulse 9s ease-in-out infinite alternate;
}
.pl-flare--2 {
  bottom: -5%;
  right: -5%;
  left: auto;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 0%, transparent 70%);
  animation: pl-flare-pulse 12s ease-in-out infinite alternate-reverse;
}

@keyframes pl-flare-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.22;
  }
  100% {
    transform: scale(1.08);
    opacity: 0.42;
  }
}

@media (max-width: 767px) {
  .pl-ambient-bg,
  .pl-webgl-wrap {
    left: 0;
  }
  .pl-flare {
    left: 0;
  }
  .pl-flare--2 {
    right: -15%;
    left: auto;
  }
  body.public-landing-body {
    padding-left: 0;
    padding-bottom: var(--bottombar-h);
  }

  /* Footer clasic în flux (fără dockhide): spațiu deasupra barei fixe de navigare */
  body.public-landing-body .site-footer.site-footer--premium:not(.site-footer--dockhide) {
    padding-bottom: calc(var(--bottombar-h, 56px) + env(safe-area-inset-bottom, 0px));
  }
}

/* Linkuri externe discret, un rând — doar landing public */
.public-landing-body .pl-affil-strip {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.2rem clamp(1rem, 3vw, 2rem) 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.28);
}

.public-landing-body .pl-affil-strip a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.15s ease;
}

.public-landing-body .pl-affil-strip a:hover {
  color: rgba(199, 210, 254, 0.88);
}

.public-landing-body .pl-affil-strip__sep {
  user-select: none;
  color: rgba(255, 255, 255, 0.18);
  padding: 0 0.05rem;
}

@media (prefers-reduced-motion: reduce) {
  .public-landing-body .pl-affil-strip a {
    transition: none;
  }
}

/* Main column */
.pl-main {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1rem, 3.5vw, 2.5rem) clamp(1rem, 3vw, 2rem) 5rem;
}

/* Hero */
.pl-hero {
  position: relative;
  padding: clamp(0.75rem, 2.5vw, 2rem) 0 clamp(2.25rem, 5vw, 4rem);
  min-height: min(76vh, 720px);
  display: flex;
  align-items: center;
}

.pl-hero__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .pl-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  }
}

.pl-hero__stage {
  position: relative;
}

.pl-hero__kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  margin-bottom: var(--spacing-md);
}

.pl-hero__ribbon {
  display: inline-block;
  margin-bottom: 0;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.35), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.15);
}

.pl-hero__content {
  position: relative;
}

.pl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--font-sm);
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.pl-hero__title {
  font-size: clamp(var(--font-2xl), 5vw, 3.35rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-lg);
  max-width: min(42rem, 100%);
  text-wrap: balance;
}

.pl-hero__title-core {
  display: block;
}

.pl-hero__title-accent {
  display: block;
  margin-top: 0.32em;
  font-size: clamp(0.82rem, 2.6vw, 1.18rem);
  line-height: 1.25;
  letter-spacing: -0.024em;
  font-weight: 800;
  max-width: 28rem;
}

.pl-text-shimmer {
  display: inline;
  background: linear-gradient(
    115deg,
    #c7d2fe 0%,
    #67e8f9 35%,
    #e879f9 55%,
    #a5b4fc 80%,
    #c7d2fe 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pl-shimmer 7s linear infinite;
}

@keyframes pl-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.pl-hero__lead {
  font-size: clamp(var(--font-md), 1.75vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 46rem;
  line-height: 1.58;
  margin-bottom: var(--spacing-2xl);
}

.pl-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  max-width: 560px;
}

.pl-stats__item {
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.pl-stats__label {
  font-size: var(--font-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pl-stats__value {
  font-size: clamp(var(--font-xl), 3.5vw, var(--font-2xl));
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.28rem;
  font-variant-numeric: tabular-nums;
}

.pl-hero__cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
  margin-bottom: var(--spacing-lg);
  max-width: 520px;
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 3.05rem;
  padding: 0.72rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-md);
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  white-space: normal;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.2s ease;
  border: 1px solid transparent;
}

.pl-btn:focus-visible {
  outline: 2px solid rgba(103, 232, 249, 0.85);
  outline-offset: 3px;
}

.pl-btn--login {
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.45) 0%, rgba(6, 30, 50, 0.55) 100%);
  border-color: rgba(103, 232, 249, 0.38);
  color: #f0fdff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.35);
}

.pl-btn--login:hover {
  border-color: rgba(165, 243, 252, 0.6);
  background: linear-gradient(180deg, rgba(12, 74, 110, 0.55) 0%, rgba(8, 51, 80, 0.65) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 28px rgba(34, 211, 238, 0.12);
  transform: translateY(-2px);
}

.pl-btn--login:active {
  transform: translateY(0);
}

.pl-btn--login i {
  opacity: 0.95;
}

.pl-btn--primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 45%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.35), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.pl-btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 56px rgba(99, 102, 241, 0.5);
}

.pl-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.18);
}
.pl-btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.pl-btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.22);
}
.pl-btn--outline:hover {
  border-color: rgba(165, 180, 252, 0.5);
  background: rgba(99, 102, 241, 0.14);
  transform: translateY(-2px);
}

.pl-hero__micro {
  font-size: var(--font-sm);
  color: var(--text-tertiary);
}

.pl-inline-link {
  color: #67e8f9;
  text-decoration: none;
  border-bottom: 1px solid rgba(103, 232, 249, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.pl-inline-link:hover {
  color: #a5fffc;
  border-bottom-color: rgba(165, 255, 252, 0.6);
}

/* Hero mobil & tablet — text și CTA întâi; mock sesiune după legăturile legale */
@media (max-width: 1023px) {
  .pl-main {
    padding-top: clamp(0.35rem, 2.2vw, 1.35rem);
    padding-left: max(clamp(0.85rem, 3.2vw, 1.65rem), env(safe-area-inset-left));
    padding-right: max(clamp(0.85rem, 3.2vw, 1.65rem), env(safe-area-inset-right));
  }

  .pl-hero {
    min-height: 0;
    padding: 0 0 clamp(1.5rem, 4.5vw, 2.75rem);
    align-items: flex-start;
  }

  .pl-hero__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(0.88rem, 2.8vw, 1.2rem);
  }

  .pl-hero__viz {
    align-self: center;
    --pl-hero-bleed: max(clamp(0.85rem, 3.2vw, 1.65rem), env(safe-area-inset-left), env(safe-area-inset-right));
    width: calc(100% + 2 * var(--pl-hero-bleed));
    margin-inline: calc(-1 * var(--pl-hero-bleed));
    margin-top: clamp(0.25rem, 1.5vw, 0.65rem);
    min-height: 0;
  }

  .pl-hero__kicker-row {
    margin-bottom: 0.55rem;
    gap: 0.32rem 0.55rem;
  }

  .pl-hero__ribbon {
    padding: 0.26rem 0.68rem;
    font-size: 0.61rem;
  }

  .pl-hero__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.038em;
  }

  .pl-hero__title {
    max-width: none;
    margin-bottom: 0.52rem;
    font-size: clamp(1.65rem, 6.5vw + 0.3rem, 2.55rem);
    line-height: 1.06;
    letter-spacing: -0.038em;
  }

  .pl-hero__title-accent {
    margin-top: 0.3em;
    font-size: clamp(0.74rem, 3.1vw, 0.92rem);
    line-height: 1.22;
    max-width: none;
  }

  .pl-hero__lead {
    font-size: 0.9rem;
    line-height: 1.52;
    margin-bottom: clamp(0.8rem, 2.8vw, 1.15rem);
    max-width: none;
  }

  .pl-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    max-width: none;
    margin-bottom: 1rem;
  }

  .pl-stats__item {
    padding: 0.52rem 0.32rem;
    text-align: center;
    border-radius: 14px;
    min-height: 4.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .pl-stats__label {
    font-size: 0.52rem;
    line-height: 1.2;
    letter-spacing: 0.055em;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .pl-stats__value {
    margin-top: 0.3rem;
    font-size: clamp(1.15rem, 5.5vw, 1.6rem);
  }

  .pl-hero__cta {
    gap: 0.48rem;
    max-width: none;
    margin-bottom: 0.72rem;
  }

  .pl-btn {
    min-height: 2.86rem;
    padding: 0.52rem 0.55rem;
    font-size: 0.805rem;
    font-weight: 700;
    line-height: 1.22;
    border-radius: 999px;
  }

  .pl-hero__micro {
    font-size: 0.73rem;
    line-height: 1.42;
    text-align: center;
  }

  .pl-marquee {
    margin-top: clamp(1.35rem, 4vw, 2rem);
  }

  .pl-float-badge--3 {
    left: 4%;
    top: 48%;
  }

  .pl-float-badge--4 {
    right: 5%;
    top: 42%;
  }
}

@media (max-width: 400px) {
  .pl-float-badge--5,
  .pl-float-badge--6 {
    display: none;
  }
}

@media (max-width: 360px) {
  .pl-hero__cta {
    grid-template-columns: 1fr;
  }

  .pl-btn {
    min-height: 3rem;
    font-size: 0.875rem;
  }
}

/* Coloana vizuală dreapta — densitate mare: dock UI + deco + badge-uri flotante */
.pl-hero__viz {
  position: relative;
  padding: 1rem 1rem 1.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 92% 88%, rgba(34, 211, 238, 0.1) 0%, transparent 45%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.07) 0%, rgba(3, 4, 12, 0.92) 48%, rgba(5, 6, 13, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(99, 102, 241, 0.4);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pl-hero__viz {
    min-height: 420px;
  }
}

/* Mobil: stil „spectaculos” pentru card — după regulile de bază, altfel sunt suprascrise */
@media (max-width: 1023px) {
  .pl-hero__viz {
    padding: clamp(0.75rem, 3vw, 1rem) clamp(0.65rem, 3vw, 1rem) clamp(1.1rem, 3.5vw, 1.5rem);
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 20px 50px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(99, 102, 241, 0.18),
      0 0 80px rgba(99, 102, 241, 0.2);
    transform: perspective(760px) rotateX(1.35deg);
    transform-origin: 50% 100%;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  .pl-hero__viz {
    transform: none;
  }
}

.pl-hero__viz-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pl-hero__pulse-ring {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 118%;
  height: 128%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 50%;
  opacity: 0.6;
  animation: pl-ring-breathe 5.5s ease-in-out infinite;
}
.pl-hero__pulse-ring--delayed {
  width: 95%;
  height: 102%;
  border-color: rgba(34, 211, 238, 0.1);
  animation-delay: -2.75s;
  animation-duration: 6.5s;
}

@keyframes pl-ring-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.35;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0.65;
  }
}

.pl-hero__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(165, 180, 252, 0.35);
  border-style: solid;
  opacity: 0.7;
}
.pl-hero__corner--tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
  border-radius: 6px 0 0 0;
}
.pl-hero__corner--tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
  border-radius: 0 6px 0 0;
}
.pl-hero__corner--bl {
  bottom: 36px;
  left: 10px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 6px;
}
.pl-hero__corner--br {
  bottom: 36px;
  right: 10px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 6px 0;
}

.pl-hero__viz-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.025) 2px,
    rgba(255, 255, 255, 0.025) 3px
  );
  opacity: 0.5;
  mask-image: linear-gradient(180deg, black 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.pl-hero__viz-dots {
  position: absolute;
  inset: 14% 10% 24%;
  opacity: 0.11;
  background-image: radial-gradient(rgba(255, 255, 255, 0.85) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

/* Badge-uri orbitoare discrete (nu un singur spin global) */
.pl-float-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.pl-float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.28rem 0.62rem;
  border-radius: var(--radius-full);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.95);
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  animation: pl-badge-drift 5.8s ease-in-out infinite;
}
.pl-float-badge i {
  font-size: 0.68rem;
  opacity: 0.92;
}

.pl-float-badge--1 {
  top: 6%;
  left: 8%;
  color: #c7d2fe;
  animation-delay: 0s;
}
.pl-float-badge--2 {
  top: 10%;
  right: 12%;
  color: #a5f3fc;
  animation-delay: -0.9s;
}
.pl-float-badge--3 {
  top: 52%;
  left: 5%;
  color: #e9d5ff;
  animation-delay: -1.8s;
}
.pl-float-badge--4 {
  top: 40%;
  right: 8%;
  color: #86efac;
  animation-delay: -2.4s;
}
.pl-float-badge--5 {
  bottom: 32%;
  left: 12%;
  color: #fde68a;
  animation-delay: -3.2s;
}
.pl-float-badge--6 {
  bottom: 28%;
  right: 14%;
  color: #fca5a5;
  animation-delay: -4.1s;
}

@keyframes pl-badge-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  35% {
    transform: translate(3px, -5px);
  }
  70% {
    transform: translate(-4px, 4px);
  }
}

/* Dock — mock sesiune */
.pl-hero__dock {
  position: relative;
  z-index: 2;
  margin: 0.25rem auto 0;
  max-width: 100%;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.4);
}

.pl-dock__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pl-dock__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.pl-dock__live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px #34d399;
  animation: pl-live-dot 2s ease-in-out infinite;
}
@keyframes pl-live-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.68;
    transform: scale(0.88);
  }
}

.pl-dock__title {
  font-weight: 800;
  font-size: var(--font-sm);
  letter-spacing: 0.03em;
}

.pl-dock__badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #6ee7b7;
}

.pl-dock__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.55);
}

.pl-dock__clock {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-variant-numeric: tabular-nums;
}

.pl-dock__chip {
  padding: 0.12rem 0.42rem;
  border-radius: 4px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(129, 140, 248, 0.3);
  color: #c7d2fe;
  font-weight: 700;
  font-size: 0.58rem;
}

.pl-dock__pulse-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: var(--spacing-sm) 0 var(--spacing-md);
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.5);
}

.pl-dock__kpi strong {
  color: #e0e7ff;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-right: 0.15rem;
}

.pl-dock__session {
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  background: rgba(3, 7, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.pl-dock__row {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.pl-dock__row--device {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.pl-dock__thumb {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.35), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c7d2fe;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.pl-dock__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pl-dock__lot {
  font-weight: 700;
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-dock__spec {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.45);
}

.pl-dock__type {
  flex-shrink: 0;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.42rem;
  border-radius: 6px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: #67e8f9;
}

.pl-dock__row--bids {
  justify-content: space-between;
  margin-bottom: 0.6rem;
  gap: 0.75rem;
}

.pl-dock__row--bids > div:first-child small,
.pl-dock__lead small {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.12rem;
}

.pl-dock__row--bids strong {
  font-size: var(--font-md);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.pl-dock__row--bids > div:first-child strong {
  color: #a5b4fc;
}

.pl-dock__lead strong {
  color: #4ade80;
}

.pl-dock__spark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.32);
  color: #fcd34d;
  font-size: 0.95rem;
  animation: pl-spark 2.2s ease-in-out infinite;
}
@keyframes pl-spark {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.25);
  }
}

.pl-dock__meter {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.pl-dock__meter-fill {
  display: block;
  height: 100%;
  width: 71%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6366f1, #22d3ee, #a78bfa);
  animation: pl-meter 3.8s ease-in-out infinite alternate;
}
@keyframes pl-meter {
  from {
    width: 58%;
    opacity: 0.85;
  }
  to {
    width: 84%;
    opacity: 1;
  }
}

.pl-dock__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.5);
}

.pl-dock__org {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pl-dock__rating {
  letter-spacing: 0.06rem;
  color: #fcd34d;
}

.pl-dock__tg {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #67e8f9;
}

.pl-dock__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--spacing-md);
  justify-content: flex-end;
}

.pl-dock__fake-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.pl-dock__fake-btn--solid {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(79, 70, 229, 0.95));
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 520px) {
  .pl-float-badge {
    font-size: 0.52rem;
    padding: 0.22rem 0.45rem;
  }
  .pl-dock__actions {
    justify-content: stretch;
  }
  .pl-dock__fake-btn {
    flex: 1;
    justify-content: center;
  }
}

/* Marquee infinit */
.pl-marquee {
  position: relative;
  margin: var(--spacing-2xl) 0;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 0.62rem 0;
}

.pl-marquee__viewport {
  overflow: hidden;
}

.pl-marquee__track {
  display: flex;
  gap: var(--spacing-lg);
  width: max-content;
  animation: pl-marquee-x 38s linear infinite;
  align-items: center;
}

@keyframes pl-marquee-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.pl-marquee__tag {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: rgba(226, 232, 255, 0.92);
}

.pl-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(56px, 14vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.pl-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, #05060d 0%, transparent);
}
.pl-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, #05060d 0%, transparent);
}

/* Secțiuni + bento */
.pl-section {
  padding: clamp(2.25rem, 6vw, 4rem) 0;
}

.pl-section__head {
  margin-bottom: var(--spacing-xl);
}

.pl-section__head h2 {
  font-size: clamp(var(--font-xl), 2.75vw, 2.05rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
}

.pl-section__sub {
  color: var(--text-tertiary);
  font-size: clamp(var(--font-sm), 1.4vw, var(--font-md));
  max-width: 58ch;
  line-height: 1.55;
}

.pl-section--topics .pl-section__head {
  margin-bottom: 0;
}

.pl-topics-copy {
  display: grid;
  gap: var(--spacing-lg);
  max-width: 62rem;
}

.pl-topics-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(var(--font-sm), 1.45vw, var(--font-md));
  line-height: 1.65;
}

.pl-topics-copy p strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.pl-section--topics .pl-section__head h2 {
  max-width: 36ch;
  text-wrap: balance;
}

@media (max-width: 1023px) {
  .pl-section--topics {
    padding-top: clamp(1.5rem, 4vw, 2.25rem);
  }

  .pl-topics-copy {
    gap: var(--spacing-md);
  }
}

/* Features: predictable grid + plain-language cards */
.pl-features {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.pl-features__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: var(--font-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.pl-features__label i {
  color: #a5b4fc;
  font-size: 0.95em;
}

.pl-features__label--second {
  margin-top: 0.25rem;
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pl-features__grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .pl-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pl-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pl-features__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.pl-features__card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.pl-features__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
}

.pl-features__icon--indigo {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(79, 70, 229, 0.15));
  color: #c7d2fe;
}
.pl-features__icon--violet {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(109, 40, 217, 0.15));
  color: #ddd6fe;
}
.pl-features__icon--cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.35), rgba(8, 145, 178, 0.15));
  color: #a5f3fc;
}
.pl-features__icon--teal {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.35), rgba(13, 148, 136, 0.15));
  color: #99f6e4;
}
.pl-features__icon--sky {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.35), rgba(2, 132, 199, 0.15));
  color: #bae6fd;
}
.pl-features__icon--amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), rgba(217, 119, 6, 0.15));
  color: #fde68a;
}
.pl-features__icon--slate {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.3), rgba(100, 116, 139, 0.12));
  color: #e2e8f0;
}

.pl-features__title {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 var(--spacing-sm);
}

.pl-features__lead {
  margin: 0;
  color: var(--text-tertiary);
  font-size: var(--font-sm);
  line-height: 1.6;
}

.pl-features__bullets {
  margin: var(--spacing-md) 0 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--font-sm);
  line-height: 1.65;
}

.pl-features__legal {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.pl-features__legal:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

@media (min-width: 640px) {
  .pl-features__legal {
    flex-direction: row;
    align-items: flex-start;
  }
  .pl-features__legal .pl-features__icon {
    margin-bottom: 0;
  }
}

.pl-features__legal-body {
  min-width: 0;
}

/* Trust spectral strip */
.pl-section--spectral {
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.75rem);
  background:
    radial-gradient(ellipse 80% 100% at 0% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 90% at 100% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 55%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.pl-trust-split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .pl-trust-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

/* Trust — fragment explicativ (fără recenzie fictivă) + flux animat */
.pl-trust-review-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  min-width: 0;
}

.pl-trust-snippet-card {
  margin: 0;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(99, 102, 241, 0.11) 0%, rgba(0, 0, 0, 0.45) 42%, rgba(5, 8, 20, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 20px 52px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.pl-trust-snippet-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
  pointer-events: none;
}

.pl-trust-snippet-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(199, 210, 254, 0.92);
  margin: 0 0 0.62rem;
  padding-bottom: 0.72rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pl-trust-snippet-card__eyebrow i {
  font-size: 0.95rem;
  opacity: 0.85;
  color: #a5b4fc;
}

.pl-trust-snippet-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.1rem, 2.8vw, 1.38rem);
  font-weight: 800;
  line-height: 1.28;
  color: #f8fafc;
  letter-spacing: -0.015em;
}

.pl-trust-snippet-card__lead {
  margin: 0 0 1.05rem;
  font-size: clamp(var(--font-sm), 1.55vw, 1.03rem);
  line-height: 1.62;
  color: rgba(248, 250, 252, 0.88);
}

.pl-trust-snippet-card__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.pl-trust-snippet-card__checks li {
  position: relative;
  padding-left: 1.42rem;
  font-size: var(--font-sm);
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.9);
}

.pl-trust-snippet-card__checks i {
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-size: 0.72rem;
  color: #4ade80;
  opacity: 0.92;
}

/* Flux animat între pași rating */
.pl-trust-flow {
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.pl-trust-flow__label {
  margin: 0 0 var(--spacing-md);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.pl-trust-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.pl-trust-flow__step {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  max-width: 88px;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(226, 232, 240, 0.75);
}

.pl-trust-flow__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(79, 70, 229, 0.18);
  border: 1px solid rgba(129, 140, 248, 0.38);
  color: #c7d2fe;
  font-size: 1rem;
  animation: pl-trust-pop 2.85s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(99, 102, 241, 0);
}

.pl-trust-flow__step:nth-of-type(1) .pl-trust-flow__icon {
  animation-delay: 0s;
}
.pl-trust-flow__step:nth-of-type(3) .pl-trust-flow__icon {
  animation-delay: -0.55s;
}
.pl-trust-flow__step:nth-of-type(5) .pl-trust-flow__icon {
  animation-delay: -1.05s;
}
.pl-trust-flow__step:nth-of-type(7) .pl-trust-flow__icon {
  animation-delay: -1.65s;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(253, 224, 71, 0.35);
  color: #fde047;
}

@keyframes pl-trust-pop {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(99, 102, 241, 0);
  }
  40% {
    transform: scale(1.06);
    box-shadow: 0 0 22px rgba(99, 102, 241, 0.22);
  }
}

.pl-trust-flow__rail {
  flex: 1 1 24px;
  min-width: 16px;
  align-self: center;
  height: 4px;
  margin-top: 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.pl-trust-flow__rail-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.2) 0%,
    rgba(34, 211, 238, 0.75) 50%,
    rgba(167, 139, 250, 0.5) 100%
  );
  background-size: 200% 100%;
  animation: pl-trust-rail-scan 2.4s ease-in-out infinite;
}

.pl-trust-flow__rail:nth-of-type(2) .pl-trust-flow__rail-fill {
  animation-delay: 0s;
}
.pl-trust-flow__rail:nth-of-type(4) .pl-trust-flow__rail-fill {
  animation-delay: -0.5s;
}
.pl-trust-flow__rail:nth-of-type(6) .pl-trust-flow__rail-fill {
  animation-delay: -1s;
}

@keyframes pl-trust-rail-scan {
  0% {
    transform: translateX(-60%);
    opacity: 0.35;
  }
  55% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(65%);
    opacity: 0.45;
  }
}

.pl-feature-list {
  list-style: none;
  display: grid;
  gap: var(--spacing-lg);
  max-width: 52ch;
  margin-top: var(--spacing-lg);
}
.pl-feature-list li {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: var(--font-md);
}

.pl-feature-list i {
  color: #34d399;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

/* FAQ */
.pl-faq {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.pl-faq__item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  padding: 0 var(--spacing-xl);
}

.pl-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: var(--spacing-lg) 0;
  list-style: none;
  font-size: var(--font-md);
}

.pl-faq__item summary::-webkit-details-marker {
  display: none;
}

.pl-faq__item summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease;
}

.pl-faq__item[open] summary::after {
  transform: rotate(45deg);
  color: #a5b4fc;
}

.pl-faq__item p {
  padding-bottom: var(--spacing-lg);
  color: var(--text-tertiary);
  font-size: var(--font-sm);
  line-height: 1.62;
}

.pl-faq__item p a {
  color: #67e8f9;
}

.pl-faq__item[open] {
  border-color: rgba(99, 102, 241, 0.42);
}

/* CTA finale */
.pl-cta-finale {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.pl-cta-finale__box {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(99, 102, 241, 0.18) 0%, rgba(15, 23, 42, 0.92) 45%, rgba(5, 6, 13, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.pl-cta-finale__box--glare::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 200%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
  animation: pl-cta-glare 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pl-cta-glare {
  0%,
  100% {
    transform: translateX(-20%) rotate(12deg);
  }
  50% {
    transform: translateX(40%) rotate(12deg);
  }
}

.pl-cta-finale__particles {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    radial-gradient(1px 1px at 20% 40%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(165, 180, 252, 0.5), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(34, 211, 238, 0.4), transparent),
    radial-gradient(1px 1px at 85% 75%, rgba(255, 255, 255, 0.35), transparent);
  background-size: 280px 280px;
  animation: pl-particle-drift 24s linear infinite;
  pointer-events: none;
}

@keyframes pl-particle-drift {
  to {
    background-position:
      -280px 140px,
      140px -280px,
      280px 80px,
      -140px -80px;
  }
}

.pl-cta-finale__box h2 {
  font-size: clamp(var(--font-xl), 3vw, 2.35rem);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.pl-cta-finale__box > p {
  position: relative;
  z-index: 1;
  color: var(--text-tertiary);
  margin-bottom: var(--spacing-xl);
  font-size: var(--font-md);
}

.pl-cta-finale__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .pl-features__card:hover,
  .pl-features__legal:hover {
    transform: none;
  }
  .pl-btn--primary:hover,
  .pl-btn--ghost:hover,
  .pl-btn--outline:hover,
  .pl-btn--login:hover,
  .pl-btn--imei:hover {
    transform: none;
  }
}

/* ========== IMEI Hero — gsmOS verificare one-time payment ========== */
.pl-imei-hero {
  position: relative;
  margin: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.25rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 80% at 15% 20%, rgba(6, 182, 212, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 85% 75%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
    linear-gradient(155deg, rgba(8, 51, 68, 0.55) 0%, rgba(5, 6, 13, 0.92) 42%, rgba(3, 7, 18, 0.98) 100%);
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(6, 182, 212, 0.08);
}

.pl-imei-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
}

.pl-imei-hero__glow--left {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -60px;
  background: rgba(6, 182, 212, 0.35);
  animation: pl-imei-glow-drift 12s ease-in-out infinite;
}

.pl-imei-hero__glow--right {
  width: 240px;
  height: 240px;
  bottom: -70px;
  right: -40px;
  background: rgba(16, 185, 129, 0.28);
  animation: pl-imei-glow-drift 14s ease-in-out infinite reverse;
}

@keyframes pl-imei-glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, 12px) scale(1.08); }
}

.pl-imei-hero__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(34, 211, 238, 0.025) 3px,
    rgba(34, 211, 238, 0.025) 4px
  );
  pointer-events: none;
  opacity: 0.6;
}

.pl-imei-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .pl-imei-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.pl-imei-hero__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(207, 250, 254, 0.95);
  background: rgba(6, 182, 212, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.pl-imei-hero__ribbon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.85);
  animation: pl-imei-pulse-dot 2s ease-in-out infinite;
}

@keyframes pl-imei-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(0.85); }
}

.pl-imei-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-size: var(--font-sm);
  color: rgba(165, 243, 252, 0.88);
  font-weight: 500;
}

.pl-imei-hero__eyebrow i {
  color: #22d3ee;
}

.pl-imei-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.pl-imei-hero__title-accent {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(120deg, #22d3ee 0%, #34d399 45%, #06b6d4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: pl-imei-title-shimmer 6s ease-in-out infinite;
}

@keyframes pl-imei-title-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.pl-imei-hero__lead {
  margin: 0 0 1.35rem;
  font-size: clamp(var(--font-sm), 1.65vw, 1.05rem);
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
  max-width: 38rem;
}

.pl-imei-hero__checks {
  list-style: none;
  margin: 0 0 1.65rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pl-imei-hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.72rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(240, 253, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.pl-imei-hero__checks li i {
  font-size: 0.78rem;
  color: #34d399;
  opacity: 0.9;
}

.pl-imei-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
  max-width: 420px;
}

.pl-btn--imei {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 35%, #10b981 100%);
  color: #fff;
  box-shadow:
    0 0 48px rgba(6, 182, 212, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.4);
  width: auto;
  min-width: min(100%, 320px);
  padding-inline: 1.45rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.pl-btn--imei:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 64px rgba(34, 211, 238, 0.45),
    0 12px 32px rgba(0, 0, 0, 0.45);
}

.pl-imei-hero__cta-arrow {
  margin-left: 0.15rem;
  opacity: 0.85;
  font-size: 0.82em;
}

.pl-imei-hero__micro {
  margin: 0;
  font-size: var(--font-xs);
  color: rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pl-imei-hero__micro i {
  color: #34d399;
}

/* Visual card mock */
.pl-imei-hero__viz {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-imei-hero__card {
  position: relative;
  width: min(100%, 340px);
  padding: 1.25rem 1.35rem 1.1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.95) 0%, rgba(8, 47, 73, 0.88) 100%);
  border: 1px solid rgba(34, 211, 238, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(6, 182, 212, 0.12);
  overflow: hidden;
}

.pl-imei-hero__card-shine {
  position: absolute;
  top: -60%;
  left: -40%;
  width: 70%;
  height: 180%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.07) 50%, transparent 65%);
  animation: pl-imei-card-shine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pl-imei-card-shine {
  0%, 100% { transform: translateX(-10%) rotate(8deg); opacity: 0.5; }
  50%      { transform: translateX(60%) rotate(8deg); opacity: 1; }
}

.pl-imei-hero__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pl-imei-hero__card-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #22d3ee;
  font-size: 1.1rem;
}

.pl-imei-hero__card-brand {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #f8fafc;
}

.pl-imei-hero__card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #34d399;
}

.pl-imei-hero__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
  animation: pl-imei-pulse-dot 1.8s ease-in-out infinite;
}

.pl-imei-hero__card-field label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
  margin-bottom: 0.35rem;
}

.pl-imei-hero__card-input {
  position: relative;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(34, 211, 238, 0.2);
  margin-bottom: 1rem;
  overflow: hidden;
}

.pl-imei-hero__card-imei {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #a5f3fc;
}

.pl-imei-hero__card-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.9), transparent);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
  animation: pl-imei-scan 3s ease-in-out infinite;
}

@keyframes pl-imei-scan {
  0%   { top: 0; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.pl-imei-hero__card-results {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.pl-imei-hero__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.42rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
}

.pl-imei-hero__card-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(226, 232, 240, 0.88);
}

.pl-imei-hero__card-row strong {
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pl-imei-hero__card-row--ok span i {
  color: #34d399;
}

.pl-imei-hero__card-row--ok strong {
  color: #6ee7b7;
}

.pl-imei-hero__card-row--info strong {
  color: #67e8f9;
}

.pl-imei-hero__card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  color: rgba(148, 163, 184, 0.9);
}

.pl-imei-hero__card-foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pl-imei-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  color: #f0fdff;
  background: rgba(8, 47, 73, 0.85);
  border: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  animation: pl-imei-float 5s ease-in-out infinite;
}

.pl-imei-hero__float i {
  color: #22d3ee;
  font-size: 0.75rem;
}

.pl-imei-hero__float--1 {
  top: 8%;
  right: 2%;
  animation-delay: 0s;
}

.pl-imei-hero__float--2 {
  bottom: 18%;
  left: -2%;
  animation-delay: 1.6s;
}

.pl-imei-hero__float--3 {
  top: 42%;
  right: -4%;
  animation-delay: 0.8s;
}

@keyframes pl-imei-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 899px) {
  .pl-imei-hero__float--2 {
    left: 4%;
  }
  .pl-imei-hero__float--3 {
    right: 4%;
  }
}

html.pl-reduced-motion .pl-imei-hero__glow,
html.pl-reduced-motion .pl-imei-hero__title-accent,
html.pl-reduced-motion .pl-imei-hero__ribbon-dot,
html.pl-reduced-motion .pl-imei-hero__live-dot,
html.pl-reduced-motion .pl-imei-hero__card-shine,
html.pl-reduced-motion .pl-imei-hero__card-scan-line,
html.pl-reduced-motion .pl-imei-hero__float {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .pl-imei-hero__glow,
  .pl-imei-hero__title-accent,
  .pl-imei-hero__ribbon-dot,
  .pl-imei-hero__live-dot,
  .pl-imei-hero__card-shine,
  .pl-imei-hero__card-scan-line,
  .pl-imei-hero__float {
    animation: none !important;
  }
}