/* ════════════════════════════════════════════════════════════════════
   Lumina Flow — Landing V2 (index2.css)
   Suporta light & dark via variáveis CSS do global.css
   ════════════════════════════════════════════════════════════════════ */

/* ── 0.  Page-level custom properties (bridge over global.css vars) ── */
.lp2 {
  /* Derivados do tema atual (dark por padrão no global.css) */
  --lp-bg: var(--bg-main);
  --lp-bg-alt: var(--bg-alt);
  --lp-card: var(--bg-card);
  --lp-text: var(--text-main);
  --lp-muted: var(--text-sec);
  --lp-border: var(--border-brand);
  --lp-blue: var(--brand-blue);
  --lp-cyan: var(--brand-glow);

  /* Glow — reduzido no light para não pisar no layout */
  --lp-glow-b: rgba(21, 101, 255, 0.22);
  --lp-glow-c: rgba(41, 214, 255, 0.13);
  --lp-scene-bg: var(--bg-sec);

  /* Easing */
  --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lp-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light theme overrides para variáveis específicas */
[data-theme="light"] .lp2 {
  --lp-glow-b: rgba(21, 101, 255, 0.09);
  --lp-glow-c: rgba(41, 214, 255, 0.05);
  --lp-scene-bg: #f0f4ff;
}

/* ── 1. Wrapper reset ─────────────────────────────────────────────── */
.lp2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--lp-bg);
  color: var(--lp-text);
  overflow-x: clip;
  /* clip is better than hidden for preventing layout shifts */
}

.lp2 *,
.lp2 *::before,
.lp2 *::after {
  box-sizing: border-box;
}

.lp2 h1,
.lp2 h2,
.lp2 h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--lp-text);
}

.lp2 p {
  margin: 0;
}

.lp2 a {
  text-decoration: none;
}

.lp2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── 2. Layout ────────────────────────────────────────────────────── */
.lp2-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.lp2-container--md {
  max-width: 860px;
}

.lp2-container--sm {
  max-width: 680px;
}

.lp2-section {
  padding: 120px 0;
  position: relative;
}

/* ── 3. Common components ─────────────────────────────────────────── */

.lp2-gradient-text {
  background: linear-gradient(110deg, var(--lp-blue) 0%, var(--lp-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp2-overline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-cyan);
  opacity: 0.9;
  margin-bottom: 16px;
}

[data-theme="light"] .lp2-overline {
  color: var(--lp-blue);
}

/* Badge */
.lp2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(21, 101, 255, 0.08);
  border: 1px solid rgba(21, 101, 255, 0.20);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-cyan);
  margin-bottom: 28px;
}

[data-theme="light"] .lp2-badge {
  background: rgba(21, 101, 255, 0.06);
  color: var(--lp-blue);
}

.lp2-badge__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22D3A4;
  box-shadow: 0 0 8px #22D3A4;
  animation: lp2-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes lp2-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

/* ─── Border beam: rotating light trail on primary buttons ─────── */
@property --lp-btn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Buttons */
.lp2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 13px 26px;
  transition: transform .22s var(--lp-ease), box-shadow .22s var(--lp-ease), background .22s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  will-change: transform;
}

.lp2-btn--primary {
  background: linear-gradient(130deg, var(--lp-blue) 0%, #0d47c0 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(21, 101, 255, 0.35);
  isolation: isolate;
  /* z-index:-1 fica dentro deste contexto */
}

.lp2-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21, 101, 255, 0.5);
}

/* ── Raio laser: leque irradiando do centro para as bordas ── */
.lp2-btn--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  /* estende levemente fora do botão */
  border-radius: inherit;
  background: conic-gradient(from var(--lp-btn-angle),
      transparent 0deg,
      transparent 244deg,
      rgba(41, 214, 255, 0.06) 264deg,
      rgba(41, 214, 255, 0.20) 292deg,
      rgba(41, 214, 255, 0.60) 324deg,
      rgba(41, 214, 255, 0.92) 342deg,
      rgba(255, 255, 255, 1) 350deg,
      rgba(41, 214, 255, 0.45) 357deg,
      transparent 360deg);
  animation: lp2-btn-spin 3s linear infinite;
  z-index: -1;
  /* interior tapado pelo fundo do botão;
                           exterior visível como leque laser */
  pointer-events: none;
}

/* ── Halo difuso que amplifica o glow externo ── */
.lp2-btn--primary::after {
  content: '';
  position: absolute;
  inset: -10px;
  /* anel maior para o glow externo */
  border-radius: inherit;
  background: conic-gradient(from var(--lp-btn-angle),
      transparent 0deg,
      transparent 248deg,
      rgba(21, 101, 255, 0.03) 268deg,
      rgba(21, 101, 255, 0.08) 296deg,
      rgba(41, 214, 255, 0.28) 326deg,
      rgba(41, 214, 255, 0.48) 344deg,
      rgba(255, 255, 255, 0.20) 351deg,
      rgba(41, 214, 255, 0.10) 357deg,
      transparent 360deg);
  animation: lp2-btn-spin 3s linear infinite;
  z-index: -2;
  filter: blur(9px);
  pointer-events: none;
}

@keyframes lp2-btn-spin {
  to {
    --lp-btn-angle: 360deg;
  }
}

/* Hover: congela o raio, mantém lift */
.lp2-btn--primary:hover::before,
.lp2-btn--primary:hover::after {
  animation-play-state: paused;
}


.lp2-btn--ghost {
  background: transparent;
  color: var(--lp-muted);
  border: 1px solid var(--lp-border);
}

.lp2-btn--ghost:hover {
  background: rgba(21, 101, 255, 0.05);
  border-color: rgba(21, 101, 255, 0.3);
  color: var(--lp-text);
  transform: translateY(-1px);
}

.lp2-btn--lg {
  padding: 16px 36px;
  font-size: 15px;
}

.lp2-btn--full {
  width: 100%;
  justify-content: center;
}


/* Section header */
.lp2-sec-hdr {
  text-align: center;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp2-sec-h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: var(--lp-text);
}

.lp2-sec-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-muted);
  max-width: 500px;
  margin-top: 16px;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--lp-ease), transform .65s var(--lp-ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background utils */
.lp2-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--lp-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--lp-border) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 100%);
  opacity: .5;
}

.lp2-glow-spot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: .55;
  will-change: transform;
}

/* ════════════════════════════════════════════════════════════════════
   § 1  HERO
   ════════════════════════════════════════════════════════════════════ */
.lp2-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height, 120px) + 48px) 0 80px;
  position: relative;
  /* overflow:hidden breaks filter:blur() clipping; use clip instead */
  overflow-x: clip;
  overflow-y: hidden;
  background: var(--lp-bg);
}

/* All BG elements clipped to hero bounds */
.lp2-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: clip;
}

/* Animated orbs — kept well inside bounds, drift is subtle to avoid overflow */
.lp2-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  /* filter:blur must be on the element, not a wrapper, to avoid clip bugs */
}

.lp2-orb--1 {
  width: 800px;
  height: 650px;
  top: -250px;
  left: -150px;
  background: radial-gradient(circle, var(--lp-glow-b) 0%, transparent 65%);
  animation: lp2-orb-drift-1 12s ease-in-out infinite;
}

.lp2-orb--2 {
  width: 550px;
  height: 450px;
  top: -80px;
  right: -120px;
  background: radial-gradient(circle, var(--lp-glow-c) 0%, transparent 65%);
  animation: lp2-orb-drift-2 10s ease-in-out infinite;
}

.lp2-orb--3 {
  width: 450px;
  height: 450px;
  bottom: -180px;
  left: 30%;
  background: radial-gradient(circle, rgba(21, 101, 255, 0.09) 0%, transparent 65%);
  animation: lp2-orb-drift-3 14s ease-in-out infinite;
}

/* Drift is purely vertical/small to stay within clipped bg */
@keyframes lp2-orb-drift-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

@keyframes lp2-orb-drift-2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

@keyframes lp2-orb-drift-3 {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.06);
  }
}

/* Light beams */
.lp2-beam {
  position: absolute;
  pointer-events: none;
  width: 2px;
  opacity: 0;
  animation: lp2-beam-fade 8s ease-in-out infinite;
}

.lp2-beam--1 {
  height: 320px;
  top: -50px;
  left: 25%;
  background: linear-gradient(to bottom, transparent, rgba(21, 101, 255, 0.15), transparent);
  transform: rotate(-10deg);
  animation-delay: 0s;
}

.lp2-beam--2 {
  height: 280px;
  top: -30px;
  right: 30%;
  background: linear-gradient(to bottom, transparent, rgba(41, 214, 255, 0.10), transparent);
  transform: rotate(8deg);
  animation-delay: 4s;
}

@keyframes lp2-beam-fade {

  0%,
  100% {
    opacity: 0;
  }

  30%,
  70% {
    opacity: 1;
  }
}

/* Top center spotlight */
.lp2-hero__spot {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(21, 101, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

[data-theme="light"] .lp2-hero__spot {
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(21, 101, 255, 0.08) 0%, transparent 70%);
}

.lp2-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  /* max-width and padding handled by .lp2-container on the same element */
}

/* ── Hero Badge — reliable gradient border approach ───────────── */
.lp2-hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 36px;
  /* Gradient border via background + inner padding */
  background: linear-gradient(var(--lp-card), var(--lp-card)) padding-box,
    linear-gradient(135deg, rgba(21, 101, 255, 0.6), rgba(41, 214, 255, 0.4), rgba(21, 101, 255, 0.2)) border-box;
  border: 1px solid transparent;
}

/* Animated shimmer overlay */
.lp2-hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 40%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.06) 60%,
      transparent 100%);
  background-size: 200% 100%;
  animation: lp2-badge-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lp2-badge-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* The border div is no longer needed, but kept in HTML — make it invisible */
.lp2-hero-badge__border {
  display: none;
}

.lp2-hero-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #22D3A4;
  box-shadow: 0 0 10px #22D3A4;
  animation: lp2-pulse 2.4s ease-in-out infinite;
}

@keyframes lp2-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.5);
  }
}

.lp2-hero-badge__text {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
}

/* Headline */
.lp2-hero__h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--lp-text);
  margin-bottom: 24px;
  max-width: 850px;
}

.lp2-hero__h1 em {
  font-style: normal;
}

.lp2-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.72;
  color: var(--lp-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.lp2-br-desk {
  display: none;
}

@media (min-width:768px) {
  .lp2-br-desk {
    display: block;
  }
}

.lp2-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.lp2-hero__micro {
  font-size: 12px;
  color: var(--lp-muted);
  letter-spacing: .02em;
  opacity: .65;
  margin-bottom: 56px;
}

/* ── Hero Product Preview (browser mockup) ────────────────────── */
.lp2-hero-preview {
  width: 100%;
  max-width: 880px;
  position: relative;
  /* Clip so 3D children cannot escape and cause horizontal scroll */
  overflow: hidden;
  border-radius: 16px;
  /* Shadow on the wrapper itself won't render inside overflow:hidden;
     so we push it via the card's own shadow (see .lp2-hprev__card) */
}

/* Ambient glow rendered OUTSIDE the overflow:hidden wrapper */
.lp2-hero-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  border-radius: inherit;
  box-shadow: 0 60px 120px rgba(21, 101, 255, 0.12), 0 30px 60px rgba(0, 0, 0, 0.20);
}

.lp2-hprev {
  position: relative;
}

/* glow sits below card, no negative inset to avoid overflow */
.lp2-hprev__glow {
  display: none;
}

.lp2-hprev__card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  /* Main card shadow — safe inside overflow wrapper */
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset;
}

[data-theme="light"] .lp2-hprev__card {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}

/* Title bar */
.lp2-hprev__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg);
}

.lp2-hprev__dots {
  display: flex;
  gap: 6px;
}

.lp2-hprev__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-border);
}

.lp2-hprev__dots span:nth-child(1) {
  background: #ff5f56;
}

.lp2-hprev__dots span:nth-child(2) {
  background: #ffbd2e;
}

.lp2-hprev__dots span:nth-child(3) {
  background: #27c93f;
}

.lp2-hprev__url {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--lp-muted);
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 5px 14px;
  flex: 1;
  max-width: 280px;
}

/* Body */
.lp2-hprev__body {
  display: flex;
  min-height: 240px;
}

/* Sidebar */
.lp2-hprev__side {
  width: 56px;
  flex-shrink: 0;
  background: var(--lp-bg);
  border-right: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 14px;
}

.lp2-hprev__logo-sm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(130deg, var(--lp-blue), var(--lp-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: white;
}

.lp2-hprev__nav-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 0 10px;
}

.lp2-hprev__nav-item {
  height: 6px;
  border-radius: 4px;
  background: var(--lp-border);
}

.lp2-hprev__nav-item--active {
  background: rgba(21, 101, 255, 0.35);
}

/* Main area */
.lp2-hprev__main {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp2-hprev__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lp2-hprev__stat-card {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp2-hprev__stat-label {
  width: 50%;
  height: 5px;
  border-radius: 3px;
  background: var(--lp-border);
}

.lp2-hprev__stat-value {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--lp-text);
}

.lp2-hprev__stat-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--lp-border);
  overflow: hidden;
}

.lp2-hprev__stat-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--lp-blue);
}

.lp2-hprev__stat-fill--cyan {
  background: var(--lp-cyan);
}

.lp2-hprev__stat-fill--green {
  background: #22D3A4;
}

/* Table */
.lp2-hprev__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp2-hprev__trow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp2-hprev__trow--hdr {
  border-bottom-width: 2px;
}

.lp2-hprev__tcell {
  height: 6px;
  border-radius: 3px;
  background: var(--lp-border);
}

.lp2-hprev__tcell--w40 {
  width: 40%
}

.lp2-hprev__tcell--w35 {
  width: 35%
}

.lp2-hprev__tcell--w42 {
  width: 42%
}

.lp2-hprev__tcell--w20 {
  width: 20%
}

.lp2-hprev__tcell--w18 {
  width: 18%
}

.lp2-hprev__tcell--w22 {
  width: 22%
}

.lp2-hprev__tcell--w15 {
  width: 15%
}

.lp2-hprev__tcell--w14 {
  width: 14%
}

.lp2-hprev__tcell--w12 {
  width: 12%
}

.lp2-hprev__status {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.lp2-hprev__status--green {
  background: #22D3A4;
  box-shadow: 0 0 6px rgba(34, 211, 164, 0.4);
}

.lp2-hprev__status--yellow {
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.4);
}

/* lp2-hprev__reflect removed — was causing layout height bugs */



/* ════════════════════════════════════════════════════════════════════
   § 2  PHONE SCENE
   ════════════════════════════════════════════════════════════════════ */
.lp2-scene {
  padding: 120px 0 160px;
  position: relative;
  background: var(--lp-scene-bg);
  overflow-x: clip;
  overflow-y: visible;
}

.lp2-scene__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lp2-orb--scene-1 {
  width: 900px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--lp-glow-b) 0%, transparent 60%);
  animation: lp2-orb-drift-1 15s ease-in-out infinite;
}

.lp2-orb--scene-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--lp-glow-c) 0%, transparent 65%);
  animation: lp2-orb-drift-2 12s ease-in-out infinite;
}

.lp2-scene__headline {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp2-scene__h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lp-text);
}

.lp2-scene__sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-muted);
  max-width: 480px;
  margin-top: 14px;
}

/* Stage */
.lp2-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 860px;
  z-index: 1;
}

/* Radial spotlight behind phone */
.lp2-stage__spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 800px;
  background: radial-gradient(ellipse 100% 100% at 50% 50%,
      rgba(21, 101, 255, 0.12) 0%,
      rgba(21, 101, 255, 0.04) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .lp2-stage__spotlight {
  background: radial-gradient(ellipse 100% 100% at 50% 50%,
      rgba(21, 101, 255, 0.06) 0%, transparent 60%);
}

/* ── Floating elements ──────────────────────────────────────────── */
.lp2-float {
  position: absolute;
  z-index: 10;
  /* No will-change here — it causes compositor resets */
  /* No opacity:0 here — controlled entirely by keyframes */
}

/* Initial hidden state — ONLY applied before stage becomes active */
.lp2-stage:not(.lp2-stage--active) .lp2-float--from-left {
  opacity: 0;
  transform: translateX(calc(-50vw - 200px)) scale(0.8) rotate(-3deg);
}

.lp2-stage:not(.lp2-stage--active) .lp2-float--from-right {
  opacity: 0;
  transform: translateX(calc(50vw + 200px)) scale(0.8) rotate(3deg);
}

/* Fly-in animations — 'forwards' keeps final state, never resets */
.lp2-stage.lp2-stage--active .lp2-float--from-left {
  animation: lp2-flyInLeft 1.1s var(--lp-ease) var(--fd, 0s) forwards;
}

.lp2-stage.lp2-stage--active .lp2-float--from-right {
  animation: lp2-flyInRight 1.1s var(--lp-ease) var(--fd, 0s) forwards;
}

/* After animation ends, JS adds .is-landed — locks position statically */
.lp2-float.is-landed {
  animation: none !important;
  opacity: 1 !important;
  transform: translateX(0) scale(1) rotate(0deg) !important;
  filter: none !important;
}

@keyframes lp2-flyInLeft {
  0% {
    opacity: 0;
    transform: translateX(calc(-50vw - 200px)) scale(0.85) rotate(-2deg);
    filter: blur(10px);
  }

  70% {
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes lp2-flyInRight {
  0% {
    opacity: 0;
    transform: translateX(calc(50vw + 200px)) scale(0.85) rotate(2deg);
    filter: blur(10px);
  }

  70% {
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}


/* ══════════════════════════════════════════════════════
   FLOATING CARDS — redesigned lp2-fc system
   ══════════════════════════════════════════════════════ */

/* Base card */
.lp2-fc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 16px 18px;
  min-width: 230px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow .25s, border-color .25s;
}

.lp2-fc:hover {
  border-color: rgba(21, 101, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.lp2-fc--sm {
  padding: 12px 15px;
  min-width: 200px;
  gap: 8px;
}

/* Variant accents */
.lp2-fc--approved {
  border-color: rgba(34, 197, 94, 0.2);
}

.lp2-fc--viewed {
  border-color: rgba(41, 214, 255, 0.18);
}

/* Card head row */
.lp2-fc__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp2-fc__head-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

/* Icon */
.lp2-fc__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp2-fc__icon--blue {
  background: rgba(21, 101, 255, 0.14);
  border: 1px solid rgba(21, 101, 255, 0.22);
  color: #60a5fa;
}

.lp2-fc__icon--green {
  background: rgba(34, 197, 94, 0.13);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #4ade80;
}

.lp2-fc__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.22);
  color: #25D366;
}

.lp2-fc__icon--cyan {
  background: rgba(41, 214, 255, 0.10);
  border: 1px solid rgba(41, 214, 255, 0.18);
  color: #67e8f9;
}

[data-theme="light"] .lp2-fc__icon--blue {
  color: #1565ff;
}

[data-theme="light"] .lp2-fc__icon--cyan {
  color: #0891b2;
}

[data-theme="light"] .lp2-fc__icon--green {
  color: #16a34a;
}

/* Text */
.lp2-fc__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp2-fc__time {
  font-size: 10px;
  color: var(--lp-muted);
  opacity: .65;
  margin-top: 1px;
}

/* Big amount */
.lp2-fc__amount {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--lp-text);
  line-height: 1;
}

.lp2-fc__amount span {
  font-size: 18px;
  opacity: .55;
}

/* Client row */
.lp2-fc__row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 10px;
  border-top: 1px solid var(--lp-border);
}

/* Avatar initial */
.lp2-fc__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1565ff 0%, #29d6ff 100%);
  color: white;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp2-fc__avatar--sm {
  width: 22px;
  height: 22px;
  font-size: 9px;
}

.lp2-fc__client-info {
  flex: 1;
  min-width: 0;
}

.lp2-fc__client-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp2-fc__client-service {
  font-size: 10px;
  color: var(--lp-muted);
  margin-top: 1px;
}

/* Badge pill */
.lp2-fc__badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
}

.lp2-fc__badge--yellow {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.lp2-fc__badge--green {
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Small card content */
.lp2-fc__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.lp2-fc__value {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--lp-text);
}

.lp2-fc__sub {
  font-size: 10.5px;
  color: var(--lp-muted);
}

.lp2-fc__sub-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
}

/* Pulse dot */
.lp2-fc__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: lp2-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

.lp2-fc__pulse--cyan {
  background: #29d6ff;
  box-shadow: 0 0 0 0 rgba(41, 214, 255, 0.5);
  animation: lp2-pulse-cyan 1.8s ease-out infinite;
}

@keyframes lp2-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes lp2-pulse-cyan {
  0% {
    box-shadow: 0 0 0 0 rgba(41, 214, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(41, 214, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(41, 214, 255, 0);
  }
}

/* Link preview (card 4) */
.lp2-fc__link-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp2-fc__link-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 10px;
  color: var(--lp-muted);
  font-family: 'SF Mono', monospace;
}

[data-theme="light"] .lp2-fc__link-bar {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.09);
}

.lp2-fc__checks {
  display: flex;
  gap: 10px;
}

.lp2-fc__check {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}

.lp2-fc__check--done {
  color: #22c55e;
}

.lp2-fc__check--wait {
  color: var(--lp-muted);
  opacity: .55;
}

/* Chip pill (card 3) */
.lp2-fchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}

.lp2-fchip--pdf {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #fca5a5;
}

[data-theme="light"] .lp2-fchip--pdf {
  color: #dc2626;
}

.lp2-fchip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp2-fchip__dot--red {
  background: #ef4444;
  animation: lp2-pulse 2s ease-out infinite;
}

/* Keep old chip style for backward compat */
.lp2-fchip--blue {
  background: rgba(21, 101, 255, 0.12);
  border: 1px solid rgba(21, 101, 255, 0.25);
  color: #93c5fd;
}

/* ── Stat card (card 6) ── */
.lp2-fstat {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 18px 22px;
  text-align: center;
  min-width: 170px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp2-fstat__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.lp2-fstat__ico {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(34, 197, 94, 0.13);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp2-fstat__trend {
  font-size: 10px;
  font-weight: 800;
  color: #4ade80;
}

.lp2-fstat__num {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(120deg, var(--lp-blue), var(--lp-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp2-fstat__pct {
  font-size: 26px;
}

.lp2-fstat__txt {
  font-size: 10.5px;
  color: var(--lp-muted);
  font-weight: 600;
  margin-top: 2px;
}

.lp2-fstat__bar {
  height: 5px;
  border-radius: 3px;
  background: var(--lp-border);
  margin: 8px 0 4px;
  overflow: hidden;
}

.lp2-fstat__fill {
  width: 68%;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--lp-blue), var(--lp-cyan));
}

.lp2-fstat__legend {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--lp-muted);
  font-weight: 600;
}

/* Keep old fcard/fchip for any remaining usage */
.lp2-fcard {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 16px 18px;
  min-width: 210px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .20), 0 1px 0 rgba(255, 255, 255, .05) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lp2-fcard__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp2-fcard__icon-wrap--blue {
  background: rgba(21, 101, 255, 0.12);
  border: 1px solid rgba(21, 101, 255, 0.2);
  color: #60a5fa;
}

.lp2-fcard__icon-wrap--cyan {
  background: rgba(41, 214, 255, 0.10);
  border: 1px solid rgba(41, 214, 255, 0.18);
  color: #67e8f9;
}

.lp2-fcard__icon-wrap--green {
  background: rgba(34, 211, 164, 0.12);
  border: 1px solid rgba(34, 211, 164, 0.2);
  color: #22D3A4;
}

.lp2-fcard__icon-wrap--wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.22);
  color: #25D366;
}

.lp2-fcard__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lp2-fcard__label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lp2-fcard__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -.03em;
}

.lp2-fcard__meta {
  font-size: 11px;
  color: var(--lp-muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}


/* ── PHONE ──────────────────────────────────────────────────────── */
/* .lp2-phone = JS parallax target (translateX/Y) */
/* .lp2-phone__shell = CSS float animation target (translateY) */
/* These are on DIFFERENT elements so they never conflict */
.lp2-phone {
  position: relative;
  z-index: 5;
  /* JS parallax applies transform here via inline style */
}

.lp2-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 52px;
  pointer-events: none;
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(21, 101, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  z-index: 6;
}

/* Aura glow behind phone — separate stacking context, no blur contamination */
.lp2-phone__aura {
  position: absolute;
  inset: -40px;
  border-radius: 90px;
  /* Static blurred gradient — no animation on blurred element */
  background: radial-gradient(ellipse at 50% 50%,
      rgba(21, 101, 255, 0.35) 0%,
      rgba(41, 214, 255, 0.15) 45%,
      transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  opacity: .7;
  /* Animate only opacity — no GPU-intensive rotation */
  animation: lp2-aura-pulse 4s ease-in-out infinite;
}

@keyframes lp2-aura-pulse {

  0%,
  100% {
    opacity: .55;
    transform: scale(1);
  }

  50% {
    opacity: .80;
    transform: scale(1.04);
  }
}

[data-theme="light"] .lp2-phone__aura {
  opacity: .25;
}

/* Phone float animation — transform only, GPU-safe */
@keyframes lp2-phone-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Shell — float animation lives HERE; JS parallax is on parent .lp2-phone */
.lp2-phone__shell {
  width: 360px;
  background: linear-gradient(165deg, #1e2235 0%, #0c0f20 100%);
  border-radius: 52px;
  padding: 12px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: lp2-phone-float 6s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

/* Inner border highlight */
.lp2-phone__border-light {
  position: absolute;
  inset: 0;
  border-radius: 52px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

/* Hardware buttons */
.lp2-phone__hw {
  position: absolute;
  background: linear-gradient(180deg, #252840, #16182c);
  border-radius: 3px;
}

.lp2-phone__hw--silent {
  left: -3px;
  top: 90px;
  width: 3px;
  height: 22px;
}

.lp2-phone__hw--volu {
  left: -3px;
  top: 125px;
  width: 3px;
  height: 36px;
}

.lp2-phone__hw--vold {
  left: -3px;
  top: 170px;
  width: 3px;
  height: 36px;
}

.lp2-phone__hw--pwr {
  right: -3px;
  top: 150px;
  width: 3px;
  height: 52px;
}

/* Screen — dark bg matching Lumina Flow dashboard dark theme */
.lp2-phone__screen {
  background: #0f172a;
  border-radius: 42px;
  overflow: hidden;
  height: 680px;
  display: flex;
  flex-direction: column;
  position: relative;
  /* Force crisp GPU layer for text */
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Dynamic island */
.lp2-phone__island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

.lp2-phone__island-cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a1a2e, #0a0a15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Status bar */
.lp2-sbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 6px;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.lp2-sbar__right {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ═══════════════════════════════════════════════════
   LUMINA FLOW MOBILE DASHBOARD
   ═══════════════════════════════════════════════════ */
.lp2-dash {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0f172a;
  /* Dark, matching dashboard dark theme */
}

/* Top nav bar */
.lp2-dash__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.lp2-dash__nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp2-dash__nav-logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1565ff 0%, #29d6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp2-dash__nav-name {
  font-size: 13px;
  font-weight: 800;
  color: white;
  letter-spacing: -.02em;
}

.lp2-dash__nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp2-dash__nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1565ff, #29d6ff);
  color: white;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scrollable body */
.lp2-dash__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  padding: 14px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp2-dash__body::-webkit-scrollbar {
  display: none;
}

/* Greeting */
.lp2-dash__greeting {}

.lp2-dash__greeting-text {
  font-size: 15px;
  font-weight: 800;
  color: white;
  letter-spacing: -.02em;
}

.lp2-dash__greeting-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* Metric cards row */
.lp2-dash__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp2-dash__metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 10px 9px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lp2-dash__metric-ico {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp2-dash__metric-ico--blue {
  background: rgba(21, 101, 255, 0.15);
  color: #60a5fa;
}

.lp2-dash__metric-ico--green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.lp2-dash__metric-ico--orange {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.lp2-dash__metric-val {
  font-size: 12px;
  font-weight: 800;
  color: white;
  letter-spacing: -.03em;
  line-height: 1;
}

.lp2-dash__metric-lbl {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  line-height: 1.2;
}

/* Section header */
.lp2-dash__section-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp2-dash__section-hdr span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.lp2-dash__see-all {
  font-size: 10px;
  font-weight: 700;
  color: #60a5fa;
}

/* List rows */
.lp2-dash__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp2-dash__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp2-dash__row:last-child {
  border-bottom: none;
}

.lp2-dash__row-ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp2-dash__row-info {
  flex: 1;
  min-width: 0;
}

.lp2-dash__row-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.lp2-dash__row-date {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 1px;
}

.lp2-dash__row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.lp2-dash__row-val {
  font-size: 12px;
  font-weight: 800;
  color: white;
}

/* Status pills — exact colors from dashboard.html */
.lp2-dash__pill {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 2px 7px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.lp2-dash__pill--accepted {
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.2);
}

.lp2-dash__pill--pending {
  background: rgba(217, 119, 6, 0.15);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.2);
}

.lp2-dash__pill--rejected {
  background: rgba(220, 38, 38, 0.15);
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.2);
}

/* FAB button */
.lp2-dash__fab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 14px;
  padding: 12px;
  background: linear-gradient(135deg, #1565ff, #0e47d8);
  color: white;
  font-size: 11.5px;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(21, 101, 255, 0.4);
  flex-shrink: 0;
  letter-spacing: -.01em;
}

/* Bottom navigation */
.lp2-dash__bottom-nav {
  display: flex;
  align-items: center;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  padding: 0 4px;
}

.lp2-dash__bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 4px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
  font-weight: 700;
}

.lp2-dash__bnav-item--active {
  color: #1565ff;
}

/* Reflection overlay */
.lp2-phone__reflection {
  position: absolute;
  inset: 0;
  border-radius: 42px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.01) 25%,
      transparent 55%);
  pointer-events: none;
}


/* ════════════════════════════════════════════════════════════════════
   § 3  BEFORE / AFTER — Split layout
   ════════════════════════════════════════════════════════════════════ */
.lp2-compare {
  background: var(--lp-bg);
  position: relative;
}

.lp2-compare__header {
  padding: 100px 0 60px;
}

.lp2-sec-hdr--left {
  text-align: left !important;
  align-items: flex-start !important;
}

.lp2-compare__split {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 100px;
  gap: 0;
}

/* Side panels */
.lp2-compare__side {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-radius: 28px;
}

.lp2-compare__side--before {
  background: rgba(248, 113, 113, 0.04);
  border: 1px solid rgba(248, 113, 113, 0.14);
}

.lp2-compare__side--after {
  background: rgba(21, 101, 255, 0.04);
  border: 1px solid rgba(21, 101, 255, 0.16);
  box-shadow: 0 0 60px rgba(21, 101, 255, 0.06);
}

[data-theme="light"] .lp2-compare__side--before {
  background: rgba(254, 226, 226, 0.5);
  border-color: rgba(239, 68, 68, 0.15);
}

[data-theme="light"] .lp2-compare__side--after {
  background: rgba(239, 246, 255, 0.7);
  border-color: rgba(21, 101, 255, 0.18);
}

.lp2-compare__side-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lp-muted);
}

.lp2-compare__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp2-compare__label-dot--red {
  background: #f87171;
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.5);
}

.lp2-compare__label-dot--blue {
  background: var(--lp-blue);
  box-shadow: 0 0 8px rgba(21, 101, 255, 0.5);
}

/* WhatsApp phone mock */
.lp2-wa-phone {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #111b21;
}

[data-theme="light"] .lp2-wa-phone {
  border-color: rgba(0, 0, 0, 0.1);
  background: #fff;
}

.lp2-wa-phone__bar {
  background: #202c33;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-theme="light"] .lp2-wa-phone__bar {
  background: #075E54;
}

.lp2-wa-phone__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.lp2-wa-phone__av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp2-wa-phone__name {
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.lp2-wa-phone__status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
}

.lp2-wa-phone__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #0b141a;
}

[data-theme="light"] .lp2-wa-phone__body {
  background: #eae6df;
}

.lp2-wa-phone__date {
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 3px 10px;
  width: fit-content;
  margin: 0 auto;
}

[data-theme="light"] .lp2-wa-phone__date {
  color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.06);
}

.lp2-wa-msg {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lp2-wa-msg--in {
  align-items: flex-start;
}

.lp2-wa-msg--out {
  align-items: flex-end;
}

.lp2-wa-msg__bubble {
  max-width: 88%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.55;
  position: relative;
}

.lp2-wa-msg--in .lp2-wa-msg__bubble {
  background: #202c33;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 4px 14px 14px 14px;
}

[data-theme="light"] .lp2-wa-msg--in .lp2-wa-msg__bubble {
  background: white;
  color: #111;
}

.lp2-wa-msg--out .lp2-wa-msg__bubble {
  background: #005c4b;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 14px 14px 4px 14px;
}

[data-theme="light"] .lp2-wa-msg--out .lp2-wa-msg__bubble {
  background: #dcf8c6;
  color: #111;
}

.lp2-wa-msg__time {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .lp2-wa-msg__time {
  color: rgba(0, 0, 0, 0.35);
}

/* Typing indicator */
.lp2-wa-msg--typing .lp2-wa-msg__bubble {
  background: #202c33;
  padding: 13px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
}

[data-theme="light"] .lp2-wa-msg--typing .lp2-wa-msg__bubble {
  background: white;
}

.lp2-wa-msg--typing .lp2-wa-msg__bubble span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: wa-typing 1.2s ease-in-out infinite;
}

[data-theme="light"] .lp2-wa-msg--typing .lp2-wa-msg__bubble span {
  background: rgba(0, 0, 0, 0.3);
}

.lp2-wa-msg--typing .lp2-wa-msg__bubble span:nth-child(2) {
  animation-delay: .15s;
}

.lp2-wa-msg--typing .lp2-wa-msg__bubble span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes wa-typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: .4;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* Pain / Gain lists */
.lp2-compare__pain-list,
.lp2-compare__gain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp2-pain-item,
.lp2-gain-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--lp-muted);
}

.lp2-pain-item__ico {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.lp2-gain-item__ico {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(34, 211, 164, 0.15);
  color: #22d3a4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.lp2-gain-item {
  color: var(--lp-text);
  opacity: .85;
}

/* Divider */
.lp2-compare__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
}

.lp2-compare__divider-line {
  flex: 1;
  width: 1px;
  background: var(--lp-border);
}

.lp2-compare__divider-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(21, 101, 255, 0.1);
  border: 1px solid rgba(21, 101, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-blue);
  flex-shrink: 0;
  margin: 12px 0;
  box-shadow: 0 4px 16px rgba(21, 101, 255, 0.15);
}

/* Proposal preview */
.lp2-prop-preview {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(21, 101, 255, 0.18);
  background: var(--lp-card);
}

.lp2-prop-preview__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--lp-bg-alt);
  border-bottom: 1px solid var(--lp-border);
}

.lp2-prop-preview__dots {
  display: flex;
  gap: 4px;
}

.lp2-prop-preview__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.lp2-prop-preview__dots span:nth-child(1) {
  background: #f87171;
}

.lp2-prop-preview__dots span:nth-child(2) {
  background: #fbbf24;
}

.lp2-prop-preview__dots span:nth-child(3) {
  background: #4ade80;
}

.lp2-prop-preview__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--lp-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10.5px;
  color: var(--lp-muted);
  font-family: monospace;
}

[data-theme="dark"] .lp2-prop-preview__url {
  background: rgba(255, 255, 255, 0.04);
}

.lp2-prop-preview__viewed {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--lp-cyan);
  background: rgba(41, 214, 255, 0.08);
  border: 1px solid rgba(41, 214, 255, 0.18);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}

[data-theme="light"] .lp2-prop-preview__viewed {
  color: #0891b2;
}

.lp2-prop-preview__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp2-prop-preview__logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp2-prop-preview__logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--lp-blue), var(--lp-cyan));
}

.lp2-prop-preview__company {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp2-prop-preview__tagline {
  font-size: 10.5px;
  color: var(--lp-muted);
  margin-top: 1px;
}

.lp2-prop-preview__badge {
  margin-left: auto;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 999px;
  padding: 3px 10px;
  flex-shrink: 0;
}

.lp2-prop-preview__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp2-prop-preview__items {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lp2-prop-preview__item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--lp-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .lp2-prop-preview__item {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.lp2-prop-preview__total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
  border-top: 1px solid var(--lp-border);
  padding-top: 10px;
  margin-top: 4px;
}

.lp2-prop-preview__total {
  color: var(--lp-cyan);
  font-size: 15px;
}

[data-theme="light"] .lp2-prop-preview__total {
  color: var(--lp-blue);
}

.lp2-prop-preview__meta {
  display: flex;
  gap: 16px;
  font-size: 10.5px;
  color: var(--lp-muted);
}

.lp2-prop-preview__cta {}

.lp2-prop-preview__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, var(--lp-blue), #0d47c0);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  gap: 6px;
}


/* ════════════════════════════════════════════════════════════════════
   § 4  FEATURES — alternating rows
   ════════════════════════════════════════════════════════════════════ */
.lp2-features {
  background: var(--lp-bg-alt);
}

.lp2-feat-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Large alternating row */
.lp2-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lp2-feat-row--rev .lp2-feat-row__text {
  order: 2;
}

.lp2-feat-row--rev .lp2-feat-row__visual {
  order: 1;
}

.lp2-feat-row__tag {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

.lp2-feat-row__tag--blue {
  background: rgba(21, 101, 255, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(21, 101, 255, 0.2);
}

.lp2-feat-row__tag--cyan {
  background: rgba(41, 214, 255, 0.09);
  color: #67e8f9;
  border: 1px solid rgba(41, 214, 255, 0.18);
}

[data-theme="light"] .lp2-feat-row__tag--blue {
  color: var(--lp-blue);
}

[data-theme="light"] .lp2-feat-row__tag--cyan {
  color: #0891b2;
}

.lp2-feat-row__h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.lp2-feat-row__p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-muted);
  margin-bottom: 20px;
}

.lp2-feat-row__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp2-feat-chip {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--lp-muted);
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 5px 13px;
}

/* Template showcase */
.lp2-tpl-showcase {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  padding: 32px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
}

.lp2-tpl-s {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}

.lp2-tpl-s--active {
  border-color: rgba(21, 101, 255, 0.4);
  box-shadow: 0 0 0 2px rgba(21, 101, 255, 0.2), 0 8px 30px rgba(21, 101, 255, 0.15);
  transform: scale(1.04) translateY(-4px);
}

.lp2-tpl-s:hover:not(.lp2-tpl-s--active) {
  transform: translateY(-2px);
}

.lp2-tpl-s__top {
  height: 36px;
}

.lp2-tpl-s__lines {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp2-tpl-s__line {
  height: 5px;
  border-radius: 3px;
  background: var(--lp-border);
}

.lp2-tpl-s__line--price {
  height: auto;
  background: transparent;
  color: var(--lp-text);
  font-size: 10px;
  font-weight: 800;
  margin-top: 4px;
}

.lp2-tpl-s__check {
  margin: 0 10px 10px;
  padding: 6px;
  border-radius: 7px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
  background: linear-gradient(130deg, var(--lp-blue), #0d47c0);
}

.lp2-tpl-s__badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--lp-blue);
  color: white;
  font-size: 7.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 0 14px 0 8px;
}

/* Track visual */
.lp2-track-visual {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp2-track-url {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 11.5px;
  color: var(--lp-muted);
  font-family: monospace;
}

[data-theme="light"] .lp2-track-url {
  background: rgba(0, 0, 0, 0.03);
}

.lp2-track-events {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp2-track-ev {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--lp-border);
  position: relative;
}

.lp2-track-ev:last-child {
  border-bottom: none;
}

.lp2-track-ev__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.lp2-track-ev--sent .lp2-track-ev__dot {
  background: var(--lp-muted);
  opacity: .5;
}

.lp2-track-ev__dot--pulse {
  background: #60a5fa;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
  animation: lp2-pulse-g 2s infinite;
}

.lp2-track-ev__dot--green {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

.lp2-track-ev__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text);
}

.lp2-track-ev__time {
  font-size: 11px;
  color: var(--lp-muted);
  margin-top: 2px;
}

.lp2-track-ev--approved .lp2-track-ev__title {
  color: #4ade80;
}

/* Mini feature cards row */
.lp2-feat-mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp2-feat-mini {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.lp2-feat-mini:hover {
  border-color: rgba(21, 101, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.lp2-feat-mini__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.lp2-feat-mini__h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.25;
}

.lp2-feat-mini__p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--lp-muted);
  flex: 1;
}

.lp2-feat-mini__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lp2-mini-chip {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

.lp2-mini-chip--pdf {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.lp2-mini-chip--img {
  background: rgba(21, 101, 255, 0.1);
  color: #93c5fd;
  border: 1px solid rgba(21, 101, 255, 0.2);
}

.lp2-mini-chip--wa {
  background: rgba(37, 211, 102, 0.1);
  color: #6ee7b7;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

[data-theme="light"] .lp2-mini-chip--pdf {
  color: #dc2626;
}

[data-theme="light"] .lp2-mini-chip--img {
  color: var(--lp-blue);
}

.lp2-feat-mini__stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.lp2-feat-mini__stat-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.05em;
  background: linear-gradient(120deg, #4ade80, #22d3a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp2-feat-mini__stat-lbl {
  font-size: 12px;
  color: var(--lp-muted);
}

.lp2-feat-mini__pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 999px;
  padding: 5px 12px;
  width: fit-content;
}

[data-theme="light"] .lp2-feat-mini__pill {
  color: #16a34a;
}

@keyframes lp2-pulse-g {
  0% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(96, 165, 250, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }
}


/* ════════════════════════════════════════════════════════════════════
   § 5  HOW IT WORKS — v2
   ════════════════════════════════════════════════════════════════════ */
.lp2-how {
  background: var(--lp-bg);
}

.lp2-steps-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.lp2-steps-v2::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(21, 101, 255, 0.25) 15%,
      rgba(21, 101, 255, 0.25) 85%,
      transparent 100%);
}

.lp2-step-v2 {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.lp2-step-v2__num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-blue);
  margin-bottom: 8px;
  opacity: .8;
}

.lp2-step-v2__line {
  position: absolute;
  top: 34px;
  right: 0;
  left: 50%;
  height: 1px;
  background: rgba(21, 101, 255, 0.22);
  display: none;
  /* connector in ::before on parent */
}

.lp2-step-v2__card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.lp2-step-v2__card:hover {
  border-color: rgba(21, 101, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.lp2-step-v2__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp2-step-v2__icon--1 {
  background: rgba(21, 101, 255, 0.1);
  border: 1px solid rgba(21, 101, 255, 0.2);
  color: #60a5fa;
}

.lp2-step-v2__icon--2 {
  background: rgba(41, 214, 255, 0.09);
  border: 1px solid rgba(41, 214, 255, 0.18);
  color: #67e8f9;
}

.lp2-step-v2__icon--3 {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #4ade80;
}

.lp2-step-v2__icon--4 {
  background: rgba(21, 101, 255, 0.15);
  border: 1px solid rgba(21, 101, 255, 0.28);
  color: var(--lp-blue);
}

[data-theme="light"] .lp2-step-v2__icon--1 {
  color: var(--lp-blue);
}

[data-theme="light"] .lp2-step-v2__icon--2 {
  color: #0891b2;
}

[data-theme="light"] .lp2-step-v2__icon--3 {
  color: #16a34a;
}

.lp2-step-v2__h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp2-step-v2__p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp2-step-v2__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  background: rgba(21, 101, 255, 0.07);
  border: 1px solid rgba(21, 101, 255, 0.14);
  color: var(--lp-muted);
  border-radius: 8px;
  padding: 4px 11px;
  width: fit-content;
}

.lp2-step-v2__tag--green {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.18);
  color: #4ade80;
}

[data-theme="light"] .lp2-step-v2__tag--green {
  color: #16a34a;
}


/* ════════════════════════════════════════════════════════════════════
   § 6  TESTIMONIALS
   ════════════════════════════════════════════════════════════════════ */
.lp2-testi {
  background: var(--lp-bg-alt);
}

/* Featured testimonial — large */
.lp2-testi-feat {
  position: relative;
  overflow: hidden;
  background: var(--lp-card);
  border: 1px solid rgba(21, 101, 255, 0.2);
  border-radius: 32px;
  padding: 56px 64px;
  margin-bottom: 24px;
  box-shadow: 0 0 60px rgba(21, 101, 255, 0.07);
}

.lp2-testi-feat__glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lp-glow-b) 0%, transparent 70%);
  pointer-events: none;
}

.lp2-testi-feat__quote-mark {
  font-size: 120px;
  line-height: .8;
  font-family: Georgia, serif;
  color: var(--lp-blue);
  opacity: .12;
  position: absolute;
  top: 24px;
  left: 40px;
  user-select: none;
}

.lp2-testi-feat__text {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--lp-text);
  opacity: .9;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 36px;
}

.lp2-testi-feat__author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.lp2-testi-feat__av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.lp2-testi-feat__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp2-testi-feat__role {
  font-size: 12.5px;
  color: var(--lp-muted);
  margin-top: 2px;
}

.lp2-testi-feat__stars {
  margin-left: auto;
  font-size: 18px;
  color: #facc15;
  letter-spacing: 2px;
}

/* 3-column testimonial grid */
.lp2-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.lp2-testi-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.lp2-testi-card:hover {
  border-color: rgba(21, 101, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.lp2-testi-card__stars {
  font-size: 14px;
  color: #facc15;
  letter-spacing: 2px;
}

.lp2-testi-card__text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--lp-text);
  opacity: .88;
  flex: 1;
}

.lp2-testi-card__author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.lp2-testi-card__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.lp2-testi-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp2-testi-card__role {
  font-size: 11px;
  color: var(--lp-muted);
  margin-top: 2px;
}

/* Social proof strip */
.lp2-proof-strip {
  display: flex;
  align-items: center;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  overflow: hidden;
}

.lp2-proof-item {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
}

.lp2-proof-num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(120deg, var(--lp-blue), var(--lp-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.lp2-proof-lbl {
  font-size: 12.5px;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp2-proof-div {
  width: 1px;
  height: 64px;
  background: var(--lp-border);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════════════════
   § 7  PRICING
   ════════════════════════════════════════════════════════════════════ */
.lp2-pricing {
  background: var(--lp-bg);
}

.lp2-ptoggle {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.lp2-ptoggle-inner {
  display: inline-flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 4px;
}

[data-theme="dark"] .lp2-ptoggle-inner {
  background: rgba(255, 255, 255, 0.05);
}

.lp2-pt__btn {
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--lp-muted);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp2-pt__btn--on {
  background: var(--lp-card);
  color: var(--lp-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.lp2-pt__badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(34, 211, 164, 0.13);
  color: #22D3A4;
  border: 1px solid rgba(34, 211, 164, 0.2);
  padding: 2px 8px;
  border-radius: 999px;
}

[data-theme="light"] .lp2-pt__badge {
  background: rgba(34, 211, 164, 0.1);
  color: #0f766e;
}

.lp2-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.lp2-plan {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 28px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: box-shadow .3s, border-color .3s;
}

.lp2-plan:hover {
  border-color: rgba(21, 101, 255, 0.2);
}

.lp2-plan--feat {
  border-color: rgba(21, 101, 255, 0.28);
  box-shadow: 0 0 60px rgba(21, 101, 255, 0.1), 0 0 0 1px rgba(21, 101, 255, 0.1);
}

.lp2-plan__pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(130deg, var(--lp-blue), var(--lp-cyan));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.lp2-plan__hdr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp2-plan__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp2-plan__icon--free {
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.2);
  color: var(--lp-muted);
}

.lp2-plan__icon--pro {
  background: rgba(21, 101, 255, 0.1);
  border: 1px solid rgba(21, 101, 255, 0.2);
  color: var(--lp-blue);
}

.lp2-plan__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--lp-text);
}

.lp2-plan__desc {
  font-size: 12.5px;
  color: var(--lp-muted);
}

.lp2-plan__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.lp2-plan__cur {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp2-plan__amount {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--lp-text);
  line-height: 1;
}

.lp2-plan__period {
  font-size: 13px;
  color: var(--lp-muted);
  margin-left: 4px;
}

.lp2-plan__divider {
  height: 1px;
  background: var(--lp-border);
}

.lp2-plan__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.lp2-pi {
  font-size: 13.5px;
  font-weight: 500;
  padding-left: 28px;
  position: relative;
}

.lp2-pi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
}

.lp2-pi--on {
  color: var(--lp-text);
  opacity: .85;
}

.lp2-pi--on::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322D3A4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 11'/%3E%3C/svg%3E") no-repeat center/15px;
}

.lp2-pi--off {
  color: var(--lp-muted);
  opacity: .4;
}

.lp2-pi--off::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center/13px;
}

.lp2-plan__note {
  text-align: center;
  font-size: 11.5px;
  color: var(--lp-muted);
  opacity: .6;
}

.lp2-pricing__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
  font-size: 13px;
  color: var(--lp-muted);
}

.lp2-sep {
  opacity: .4;
}


/* ════════════════════════════════════════════════════════════════════
   § 8  FINAL CTA
   ════════════════════════════════════════════════════════════════════ */
.lp2-final {
  padding: 160px 24px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--lp-bg-alt);
}

.lp2-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Dot-grid mesh */
.lp2-final__mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(21, 101, 255, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, black, transparent);
}

[data-theme="light"] .lp2-final__mesh {
  background-image: radial-gradient(rgba(21, 101, 255, 0.1) 1px, transparent 1px);
}

.lp2-final__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.lp2-final__glow--1 {
  width: 700px;
  height: 500px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--lp-glow-b) 0%, transparent 65%);
}

.lp2-final__glow--2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  right: 12%;
  background: radial-gradient(circle, var(--lp-glow-c) 0%, transparent 70%);
}

.lp2-final__glow--3 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: 8%;
  background: radial-gradient(circle, rgba(21, 101, 255, 0.08) 0%, transparent 70%);
}


/* ════════════════════════════════════════════════════════════════════
   NUDGE WIDGET — barra compacta: logo + botão
   ════════════════════════════════════════════════════════════════════ */

/* ── Wrapper ────────────────────────────────────────────────────── */
.lf-nudge {
  position: fixed;
  z-index: 99999 !important;
  /* acima de todos os elementos flutuantes */

  /* Desktop: ancora bottom-left, começa fora da tela */
  bottom: 32px;
  left: 24px;
  width: 440px;
  transform: translateX(calc(-100% - 48px));
  opacity: 0;

  /* Fundo sólido — NÃO transparente */
  background: #0b1120 !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;

  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition:
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light mode: fundo branco sólido */
[data-theme="light"] .lf-nudge {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lf-nudge.is-visible {
  transform: translateX(0);
  opacity: 1;
}

/* ── Timer bar ─────────────────────────────────────────────────── */
.lf-nudge__timer-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .lf-nudge__timer-track {
  background: rgba(0, 0, 0, 0.06);
}

.lf-nudge__timer-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lp-blue), var(--lp-cyan));
  transform-origin: left;
  transform: scaleX(1);
}

.lf-nudge.is-counting .lf-nudge__timer-fill {
  animation: nudge-timer-run 10s linear forwards;
}

@keyframes nudge-timer-run {
  to {
    transform: scaleX(0);
  }
}

/* ── Linha única: logo · botão · fechar ─────────────────────────── */
.lf-nudge__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px 20px 20px;
}

/* ── Logo ──────────────────────────────────────────────────────── */
.lf-nudge__logo {
  height: 80px;
  width: auto;
  max-width: 200px;  /* ampliado para não cortar a logo */
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  display: none;
}

.lf-nudge__logo--dark {
  display: block;
}

.lf-nudge__logo--light {
  display: none;
}

[data-theme="light"] .lf-nudge__logo--dark {
  display: none;
}

[data-theme="light"] .lf-nudge__logo--light {
  display: block;
}

/* ── CTA button ─────────────────────────────────────────────────── */
.lf-nudge__btn {
  flex: 1;
  /* ocupa o espaço entre logo e X */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(130deg, var(--lp-blue) 0%, #0d47c0 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 10px;
  padding: 11px 16px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(21, 101, 255, 0.42);
  transition: transform .22s var(--lp-ease), box-shadow .22s;
}

.lf-nudge__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 255, 0.58);
}

/* Border beam */
.lf-nudge__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(from var(--lp-btn-angle),
      transparent 0deg,
      transparent 194deg,
      rgba(41, 214, 255, 0.01) 208deg,
      rgba(41, 214, 255, 0.08) 250deg,
      rgba(41, 214, 255, 0.42) 300deg,
      rgba(255, 255, 255, 0.72) 314deg,
      rgba(255, 255, 255, 1.00) 342deg,
      rgba(255, 255, 255, 0.88) 350deg,
      rgba(41, 214, 255, 0.32) 357deg,
      transparent 360deg);
  animation: lp2-btn-spin 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.lf-nudge__btn:hover::before {
  animation-play-state: paused;
}

/* ── Fechar ─────────────────────────────────────────────────────── */
.lf-nudge__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: rgba(255, 255, 255, 0.40);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s, color .18s, transform .2s;
}

.lf-nudge__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: rotate(90deg);
}

[data-theme="light"] .lf-nudge__close {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .lf-nudge__close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #000;
}

/* ── MOBILE: barra no rodapé, largura total ──────────────────────── */
@media (max-width: 640px) {
  .lf-nudge {
    width: 100%;
    left: 0 !important;
    right: 0;
    bottom: 0;
    border-radius: 18px 18px 0 0;
    border-bottom: none;
    transform: translateY(100%);
    opacity: 1;
    transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .lf-nudge.is-visible {
    transform: translateY(0);
  }

  .lf-nudge__row {
    padding: 14px 14px 20px 18px;
  }

  .lf-nudge__logo {
    height: 48px;
  }
}


.lp2-final__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 101, 255, 0.08);
  border: 1px solid rgba(21, 101, 255, 0.18);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lp-cyan);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

[data-theme="light"] .lp2-final__pill {
  color: var(--lp-blue);
}

.lp2-final__h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: var(--lp-text);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.lp2-final__sub {
  font-size: 17px;
  color: var(--lp-muted);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.lp2-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.lp2-final__micro {
  font-size: 12.5px;
  color: var(--lp-muted);
  position: relative;
  z-index: 2;
  opacity: .6;
}


/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .lp2-float {
    display: none;
  }

  .lp2-stage__spotlight {
    display: none;
  }

  .lp2-hprev__side {
    display: none;
  }

  .lp2-feat-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp2-feat-row--rev .lp2-feat-row__text {
    order: unset;
  }

  .lp2-feat-row--rev .lp2-feat-row__visual {
    order: unset;
  }

  .lp2-feat-mini-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .lp2-compare__split {
    grid-template-columns: 1fr;
    padding: 0 20px 80px;
  }

  .lp2-compare__divider {
    flex-direction: row;
    padding: 20px 0;
    height: auto;
  }

  .lp2-compare__divider-line {
    height: 1px;
    width: auto;
    flex: 1;
  }

  .lp2-compare__divider-badge {
    margin: 0 12px;
  }

  .lp2-steps-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .lp2-steps-v2::before {
    display: none;
  }

  .lp2-testi-grid {
    grid-template-columns: 1fr;
  }

  .lp2-testi-feat {
    padding: 40px 36px;
  }

  .lp2-plans {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .lp2-hprev__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp2-proof-strip {
    flex-direction: column;
  }

  .lp2-proof-div {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .lp2-section {
    padding: 80px 0;
  }

  .lp2-hero {
    padding: calc(var(--header-height, 120px) + 24px) 0 48px;
  }

  .lp2-scene {
    padding: 80px 0 100px;
  }

  .lp2-stage {
    min-height: 660px;
  }

  .lp2-phone__shell {
    width: 300px;
  }

  .lp2-phone__screen {
    height: 580px;
  }

  .lp2-phone__aura {
    inset: -20px;
    filter: blur(30px);
  }

  .lp2-steps-v2 {
    grid-template-columns: 1fr;
  }

  .lp2-feat-mini-row {
    grid-template-columns: 1fr;
  }

  .lp2-final {
    padding: 100px 24px;
  }

  .lp2-hprev {
    transform: perspective(1200px) rotateX(2deg);
  }

  .lp2-hprev__stats {
    grid-template-columns: 1fr;
  }

  .lp2-hero__micro {
    margin-bottom: 36px;
  }

  .lp2-testi-feat {
    padding: 36px 28px;
  }

  .lp2-testi-feat__quote-mark {
    font-size: 80px;
  }
}

@media (max-width: 540px) {
  .lp2-hero__h1 {
    font-size: 2.4rem;
  }

  .lp2-phone__shell {
    width: 260px;
  }

  .lp2-phone__screen {
    height: 500px;
  }

  .lp2-phone__island {
    width: 88px;
    height: 22px;
  }

  .lp2-plan {
    padding: 32px 24px;
  }

  .lp2-hero-preview {
    max-width: 100%;
  }

  .lp2-hprev__table {
    display: none;
  }

  .lp2-compare__side {
    padding: 24px;
  }

  .lp2-testi-feat__stars {
    display: none;
  }
}