/* Villex LP — cinematic campaign (navy / electric blue) */
:root {
  --navy: #001e5a;
  --navy-deep: #000d2e;
  --navy-void: #000714;
  --blue: #0d5bff;
  --blue-mid: #1e3d8f;
  --blue-soft: #d9e6ff;
  --blue-neon: #3d8bff;
  --ice: #eef3ff;
  --mist: #dce6f8;
  --steel: #5a6b85;
  --ink: #0a1228;
  --white: #ffffff;
  --whatsapp: #25d266;
  --radius: 2px;
  --shadow: 0 40px 100px rgba(0, 4, 20, 0.55);
  --container: 1180px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --lp-header-h: 0px;
  --lp-sticky-h: 0px;
  --letterbox: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .lp-reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .lp-hero__video,
  .lp-hero__aurora,
  .lp-marquee__track,
  .lp-logo-trust__track,
  .lp-logo-trust__sweep,
  .lp-logo-trust__aurora,
  .lp-logo-trust__item img,
  .lp-btn--primary::before,
  .lp-btn-wa,
  .lp-hero__logo,
  .lp-scanlines,
  .lp-light-sweep {
    animation: none !important;
  }
  .lp-hero__video { transform: scale(1.02) !important; }
}

body.lp {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-void);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--lp-sticky-h);
  overflow-x: clip;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

.lp-wrap {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* —— Scroll reveals —— */
.lp-reveal {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(6px);
  transition:
    opacity 1.05s var(--ease-out),
    transform 1.05s var(--ease-out),
    filter 1.05s var(--ease-out);
}
.lp-reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}
.lp-reveal-d1 { transition-delay: 0.08s; }
.lp-reveal-d2 { transition-delay: 0.18s; }
.lp-reveal-d3 { transition-delay: 0.3s; }
.lp-reveal-d4 { transition-delay: 0.42s; }
.lp-reveal-d5 { transition-delay: 0.55s; }

/* —— Letterbox disabled (full-bleed hero) —— */
.lp-letterbox { display: none; }

/* —— Header (actions removed — CTAs live in hero) —— */
.lp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 0;
  pointer-events: none;
  background: transparent;
  border: 0;
}
.lp-header__inner { display: none; }

.lp-btn--phone {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.lp-btn--phone:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 0 24px rgba(61, 139, 255, 0.2);
}

/* Round WhatsApp — same language as homepage .btn-wa */
.lp-btn-wa {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 10px rgba(37, 210, 102, 0.55)) drop-shadow(0 8px 18px rgba(20, 148, 71, 0.45));
  animation: lpWaGlow 2.4s ease-in-out infinite;
  transition: transform 0.3s var(--ease), filter 0.3s ease;
  overflow: visible;
  flex-shrink: 0;
}
.lp-btn-wa img {
  width: 54px;
  height: 54px;
  display: block;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.lp-btn-wa:hover {
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 0 16px rgba(37, 210, 102, 0.7)) drop-shadow(0 12px 24px rgba(20, 148, 71, 0.55));
}
.lp-btn-wa:hover img { transform: scale(1.04); }
.lp-btn-wa:focus-visible {
  outline: 3px solid var(--blue-neon);
  outline-offset: 3px;
}

@keyframes lpWaGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(37, 210, 102, 0.45)) drop-shadow(0 8px 18px rgba(20, 148, 71, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(37, 210, 102, 0.75)) drop-shadow(0 10px 26px rgba(20, 148, 71, 0.55));
  }
}

/* —— Buttons —— */
.lp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.9rem 1.55rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.lp-btn:focus-visible {
  outline: 3px solid var(--blue-neon);
  outline-offset: 2px;
}

.lp-btn--primary {
  background: linear-gradient(125deg, #001840 0%, #0a3fb8 40%, #0d5bff 72%, #3d8bff 100%);
  color: #fff;
  box-shadow:
    0 16px 40px rgba(13, 91, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.lp-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 28%,
    rgba(255, 255, 255, 0.35) 48%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
  pointer-events: none;
}
.lp-btn--primary > * { position: relative; z-index: 1; }
.lp-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 56px rgba(13, 91, 255, 0.6),
    0 0 40px rgba(61, 139, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.lp-btn--primary:hover::before { transform: translateX(130%); }

.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lp-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.lp-btn--wa {
  background: linear-gradient(135deg, #128c4a 0%, #25d266 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 210, 102, 0.28);
}
.lp-btn--wa:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.lp-btn--block { width: 100%; }

.lp-btn--sparks {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: lpBtnPulse 2.4s ease-in-out infinite;
  box-shadow:
    0 16px 40px rgba(13, 91, 255, 0.5),
    0 0 28px rgba(61, 139, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.lp-btn--sparks::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(160, 210, 255, 0.45) 48%,
    transparent 66%
  );
  transform: translateX(-120%);
  animation: lpBtnShine 3.2s ease-in-out infinite;
  mix-blend-mode: screen;
  will-change: transform;
}
.lp-btn--sparks > span {
  position: relative;
  z-index: 2;
}
.lp-btn__spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9ec5ff;
  box-shadow:
    0 0 6px 2px rgba(61, 139, 255, 0.95),
    0 0 14px 4px rgba(13, 91, 255, 0.65);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: lpBtnSpark 2.1s ease-out infinite;
  animation-delay: calc(var(--i) * 0.22s);
}
.lp-btn__spark:nth-child(2) { left: 12%; top: 22%; --sx: -4px; --sy: -8px; }
.lp-btn__spark:nth-child(3) { left: 28%; top: 68%; --sx: -3px; --sy: 7px; }
.lp-btn__spark:nth-child(4) { left: 46%; top: 18%; --sx: 2px; --sy: -9px; }
.lp-btn__spark:nth-child(5) { left: 58%; top: 72%; --sx: 4px; --sy: 8px; }
.lp-btn__spark:nth-child(6) { left: 74%; top: 26%; --sx: 6px; --sy: -6px; }
.lp-btn__spark:nth-child(7) { left: 86%; top: 64%; --sx: 5px; --sy: 5px; }
.lp-btn__spark:nth-child(8) { left: 10%; top: 52%; --sx: -5px; --sy: 3px; }
.lp-btn__spark:nth-child(9) { left: 90%; top: 42%; --sx: 6px; --sy: -3px; }
@keyframes lpBtnPulse {
  0%, 100% {
    box-shadow:
      0 16px 40px rgba(13, 91, 255, 0.45),
      0 0 22px rgba(61, 139, 255, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
  50% {
    box-shadow:
      0 20px 52px rgba(13, 91, 255, 0.7),
      0 0 42px rgba(61, 139, 255, 0.55),
      0 0 72px rgba(13, 91, 255, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}
@keyframes lpBtnShine {
  0%, 25% { transform: translateX(-120%); opacity: 0; }
  40% { opacity: 1; }
  60% { transform: translateX(120%); opacity: 0.7; }
  70%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes lpBtnSpark {
  0% { transform: translate(0, 0) scale(0.3); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translate(var(--sx, 8px), var(--sy, -12px)) scale(0); opacity: 0; }
}

.lp-btn--dark-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(0, 30, 90, 0.2);
}
.lp-btn--dark-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* —— HERO: full-bleed cinema —— */
.lp-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 0 3.5rem;
  color: #fff;
  isolation: isolate;
  overflow: clip;
  scroll-margin-top: 0;
}

/* Stage fills hero — critical for visible media */
.lp-hero__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: paint;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000a1c;
}
.lp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.02);
  animation: lpKenBurns 42s ease-in-out infinite alternate;
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: normal;
}

@keyframes lpKenBurns {
  from { transform: scale(1.02) translate(0, 0); }
  to { transform: scale(1.06) translate(-1%, -0.6%); }
}

.lp-hero__aurora {
  position: absolute;
  inset: -25%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 12% 25%, rgba(13, 91, 255, 0.55), transparent 58%),
    radial-gradient(ellipse 45% 35% at 88% 18%, rgba(61, 139, 255, 0.32), transparent 52%),
    radial-gradient(ellipse 55% 45% at 60% 90%, rgba(0, 30, 90, 0.5), transparent 58%);
  filter: blur(48px);
  animation: lpAuroraDrift 16s ease-in-out infinite alternate;
  mix-blend-mode: screen;
  opacity: 0.7;
}

@keyframes lpAuroraDrift {
  from { transform: translate(-4%, 3%) scale(1); }
  to { transform: translate(5%, -4%) scale(1.15); }
}

/* Left cinema shade — text legibility, photo/video edge-to-edge */
.lp-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      100deg,
      rgba(0, 5, 18, 0.72) 0%,
      rgba(0, 8, 28, 0.38) 28%,
      rgba(0, 12, 40, 0.1) 52%,
      transparent 72%
    ),
    linear-gradient(to top, rgba(0, 4, 14, 0.45) 0%, transparent 22%),
    radial-gradient(ellipse 55% 50% at 78% 42%, rgba(13, 91, 255, 0.14), transparent 60%);
}

.lp-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
  animation: lpGrainShift 0.4s steps(2) infinite;
}

@keyframes lpGrainShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-1.2%, 0.8%); }
}

.lp-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.07;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.55) 3px,
    transparent 4px
  );
  mix-blend-mode: multiply;
}

.lp-light-sweep {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(61, 139, 255, 0.12) 48%,
    transparent 62%
  );
  animation: lpSweep 9s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes lpSweep {
  0%, 100% { transform: translateX(-20%); opacity: 0; }
  40% { opacity: 1; }
  70% { transform: translateX(25%); opacity: 0; }
}

.lp-hero__watermark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.12);
  text-stroke: 1.5px rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  user-select: none;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  opacity: 0.85;
}

.lp-hero__grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 5;
}

.lp-hero__col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  min-width: 0;
}

.lp-hero__copy {
  min-width: 0;
}

/* Made in Germany — glass badge + waving flag */
.lp-mig {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.05rem;
  max-width: 34rem;
  background: linear-gradient(
    155deg,
    rgba(8, 18, 48, 0.78) 0%,
    rgba(2, 8, 24, 0.84) 100%
  );
  border: 1px solid rgba(61, 139, 255, 0.38);
  border-left: 3px solid var(--blue-neon);
  border-radius: 2px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(13, 91, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.lp-mig__flag {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  width: 4.6rem;
  height: 3.05rem;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  isolation: isolate;
}
.lp-mig__stripe--black { background: #0a0a0a; }
.lp-mig__stripe--red { background: #dd0000; }
.lp-mig__stripe--gold { background: #ffce00; }
.lp-mig__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 58%,
    transparent 72%
  );
  transform: translateX(-120%);
  animation: lpFlagSheen 3.6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 1;
}
@keyframes lpFlagSheen {
  0%, 18% { transform: translateX(-120%); opacity: 0; }
  28% { opacity: 1; }
  52% { transform: translateX(120%); opacity: 0.85; }
  60%, 100% { transform: translateX(120%); opacity: 0; }
}

.lp-mig__body {
  min-width: 0;
  display: grid;
  gap: 0.15rem;
}
.lp-mig__eyebrow {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-neon);
}
.lp-mig__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.lp-mig__sub {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

/* Google score strip under MIG */
.lp-gscore {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  max-width: 34rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(
    155deg,
    rgba(8, 18, 48, 0.82) 0%,
    rgba(2, 8, 24, 0.88) 100%
  );
  border: 1px solid rgba(251, 188, 5, 0.45);
  border-left: 3px solid #fbbc05;
  border-radius: 2px;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(251, 188, 5, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lp-gscore:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 188, 5, 0.75);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(251, 188, 5, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.lp-gscore__logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.lp-gscore__logo img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}
.lp-gscore__mid {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}
.lp-gscore__stars {
  display: flex;
  align-items: center;
  gap: 0.18rem;
}
.lp-gscore__star {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.lp-gscore__star svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #fbbc05;
  filter:
    drop-shadow(0 0 4px rgba(251, 188, 5, 0.85))
    drop-shadow(0 0 10px rgba(255, 200, 40, 0.45));
  animation: lpStarTwinkle 1.8s ease-in-out infinite;
}
.lp-gscore__star:nth-child(2) svg { animation-delay: 0.18s; }
.lp-gscore__star:nth-child(3) svg { animation-delay: 0.36s; }
.lp-gscore__star:nth-child(4) svg { animation-delay: 0.54s; }
.lp-gscore__star:nth-child(5) svg { animation-delay: 0.72s; }
.lp-gscore__star i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff7c2;
  box-shadow: 0 0 6px 2px rgba(255, 220, 80, 0.95);
  pointer-events: none;
  animation: lpStarSpark 1.6s ease-out infinite;
  opacity: 0;
}
.lp-gscore__star i:nth-child(2) { top: 0; left: 55%; animation-delay: 0.15s; }
.lp-gscore__star i:nth-child(3) { top: 35%; right: -2px; animation-delay: 0.45s; }
.lp-gscore__star i:nth-child(4) { bottom: 8%; left: 20%; animation-delay: 0.8s; }
.lp-gscore__star:nth-child(1) i { animation-delay: 0s; }
.lp-gscore__star:nth-child(2) i:nth-child(2) { animation-delay: 0.25s; }
.lp-gscore__star:nth-child(3) i:nth-child(2) { animation-delay: 0.5s; }
.lp-gscore__star:nth-child(4) i:nth-child(2) { animation-delay: 0.75s; }
.lp-gscore__star:nth-child(5) i:nth-child(2) { animation-delay: 1s; }
@keyframes lpStarTwinkle {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(251, 188, 5, 0.7)) drop-shadow(0 0 8px rgba(255, 200, 40, 0.35)); }
  45% { transform: scale(1.14); filter: drop-shadow(0 0 7px rgba(255, 230, 120, 1)) drop-shadow(0 0 16px rgba(251, 188, 5, 0.85)); }
}
@keyframes lpStarSpark {
  0% { transform: translate(0, 0) scale(0.4); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translate(var(--sx, 6px), var(--sy, -10px)) scale(0); opacity: 0; }
}
.lp-gscore__star i:nth-child(2) { --sx: 7px; --sy: -11px; }
.lp-gscore__star i:nth-child(3) { --sx: 10px; --sy: -2px; }
.lp-gscore__star i:nth-child(4) { --sx: -6px; --sy: 8px; }

.lp-gscore__label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.lp-gscore__label img {
  width: 3.4rem;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.lp-gscore__score {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: 0.08rem;
  line-height: 1;
  font-family: var(--font-display);
}
.lp-gscore__score strong {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 18px rgba(251, 188, 5, 0.35);
}
.lp-gscore__score small {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.lp-hero__logo {
  display: inline-block;
  margin-bottom: 1rem;
  max-width: min(100%, 300px);
  filter:
    brightness(1.35) contrast(1.08)
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 22px rgba(61, 139, 255, 0.75))
    drop-shadow(0 0 48px rgba(13, 91, 255, 0.55))
    drop-shadow(0 12px 36px rgba(13, 91, 255, 0.35));
  animation: lpLogoNeon 3.2s ease-in-out infinite alternate;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.lp-hero__logo img {
  width: 100%;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}
.lp-hero__logo:hover {
  transform: translateY(-2px) scale(1.02);
  filter:
    brightness(1.45) contrast(1.1)
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 28px rgba(61, 139, 255, 0.9))
    drop-shadow(0 0 56px rgba(13, 91, 255, 0.7))
    drop-shadow(0 14px 40px rgba(13, 91, 255, 0.45));
}

@keyframes lpLogoNeon {
  from {
    filter:
      brightness(1.28) contrast(1.06)
      drop-shadow(0 0 6px rgba(255, 255, 255, 0.7))
      drop-shadow(0 0 18px rgba(61, 139, 255, 0.55))
      drop-shadow(0 0 36px rgba(13, 91, 255, 0.4));
  }
  to {
    filter:
      brightness(1.42) contrast(1.1)
      drop-shadow(0 0 12px rgba(255, 255, 255, 0.95))
      drop-shadow(0 0 28px rgba(61, 139, 255, 0.85))
      drop-shadow(0 0 52px rgba(13, 91, 255, 0.65));
  }
}

.lp-eyebrow,
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-neon);
  margin-bottom: 1rem;
}
.lp-eyebrow::before,
.lp-kicker::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-neon), transparent);
  box-shadow: 0 0 12px var(--blue-neon);
}

.lp-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-size: clamp(2.35rem, 5.4vw, 4.1rem);
  color: #fff;
  margin-bottom: 1rem;
  text-wrap: balance;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
}

.lp-h1-line { display: block; }
.lp-h1-line + .lp-h1-line {
  margin-top: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.72em;
  letter-spacing: -0.03em;
}

.lp-h1-line--price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.45rem;
  margin-top: 0.5rem !important;
  margin-bottom: 0.2rem;
  padding: 0.55rem 1rem 0.6rem;
  max-width: 100%;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem) !important;
  letter-spacing: -0.015em !important;
  line-height: 1.15;
  background: rgba(0, 10, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid var(--blue-neon);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.lp-h1-line--price .lp-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.4vw, 3.65rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  white-space: nowrap;
  color: #fff;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.25),
    0 8px 28px rgba(0, 0, 0, 0.45);
}
.lp-h1-line--price .lp-price-note {
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
  align-self: flex-end;
  padding-bottom: 0.22em;
}

.lp-accent-line {
  display: block;
  width: 5.5rem;
  height: 3px;
  margin: 0 0 1.35rem;
  background: linear-gradient(90deg, var(--blue-neon), var(--blue), transparent);
  box-shadow: 0 0 22px rgba(61, 139, 255, 0.7);
}

.lp-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

.lp-usp {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.75rem;
}
.lp-usp li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}
.lp-usp li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  background: var(--blue-neon);
  box-shadow: 0 0 14px var(--blue-neon);
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
  max-width: 34rem;
  width: 100%;
}
.lp-hero__ctas .lp-btn {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 0.7rem;
  white-space: nowrap;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  gap: 0.4rem;
}
.lp-hero__ctas .lp-btn-wa {
  flex: 0 0 auto;
}
.lp-hero__ctas .octicon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: 0.95;
}

/* —— Form: dark cinema glass —— */
.lp-form-stage {
  position: relative;
  min-width: 0;
}
.lp-verified {
  position: absolute;
  top: -0.85rem;
  right: -0.75rem;
  z-index: 12;
  width: 3.35rem;
  height: 3.35rem;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(13, 91, 255, 0.55));
}
.lp-verified__seal {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #5aa2ff 0%, #0d5bff 42%, #001e5a 100%);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 3px rgba(13, 91, 255, 0.35),
    0 0 24px rgba(61, 139, 255, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: lpVerifiedPulse 2.2s ease-in-out infinite;
}
.lp-verified__seal::before {
  content: "";
  position: absolute;
  inset: -0.35rem;
  border-radius: 50%;
  border: 2px dashed rgba(61, 139, 255, 0.75);
  animation: lpVerifiedSpin 8s linear infinite;
  opacity: 0.9;
}
.lp-verified__seal::after {
  content: "";
  position: absolute;
  inset: -0.7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 139, 255, 0.45) 0%, transparent 68%);
  animation: lpVerifiedGlow 2.2s ease-in-out infinite;
  z-index: -1;
}
.lp-verified__seal .octicon {
  width: 1.35rem;
  height: 1.35rem;
  fill: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  position: relative;
  z-index: 1;
}
.lp-verified__spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cfe3ff;
  box-shadow:
    0 0 6px 2px rgba(61, 139, 255, 1),
    0 0 12px 4px rgba(13, 91, 255, 0.7);
  opacity: 0;
  animation: lpVerifiedSpark 1.7s ease-out infinite;
  animation-delay: calc(var(--i) * 0.22s);
}
.lp-verified__spark:nth-child(2) { left: 8%; top: 18%; --sx: -10px; --sy: -12px; }
.lp-verified__spark:nth-child(3) { left: 72%; top: 6%; --sx: 12px; --sy: -10px; }
.lp-verified__spark:nth-child(4) { left: 88%; top: 48%; --sx: 14px; --sy: 2px; }
.lp-verified__spark:nth-child(5) { left: 70%; top: 86%; --sx: 8px; --sy: 12px; }
.lp-verified__spark:nth-child(6) { left: 12%; top: 80%; --sx: -10px; --sy: 10px; }
.lp-verified__spark:nth-child(7) { left: 2%; top: 48%; --sx: -12px; --sy: 0; }
@keyframes lpVerifiedPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes lpVerifiedSpin {
  to { transform: rotate(360deg); }
}
@keyframes lpVerifiedGlow {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.12); }
}
@keyframes lpVerifiedSpark {
  0% { transform: translate(0, 0) scale(0.35); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(var(--sx, 8px), var(--sy, -10px)) scale(0); opacity: 0; }
}

.lp-form-card {
  position: relative;
  background: linear-gradient(
    165deg,
    rgba(8, 18, 48, 0.82) 0%,
    rgba(2, 8, 24, 0.88) 100%
  );
  border: 1px solid rgba(61, 139, 255, 0.4);
  border-radius: 2px;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(13, 91, 255, 0.2),
    0 0 100px rgba(13, 91, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 1.15rem 1.15rem 1.2rem;
  color: #fff;
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  animation: lpFormIn 1.15s var(--ease-out) 0.2s both;
  /* Desktop: keep form in viewport beside hero copy */
  max-height: calc(100svh - var(--lp-header-h) - 3rem);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(61, 139, 255, 0.45) transparent;
}
@keyframes lpFormIn {
  from { opacity: 0; transform: translateY(40px) scale(0.94); }
  to { opacity: 1; transform: none; }
}
.lp-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--blue-neon), var(--blue));
  box-shadow: 0 0 20px rgba(61, 139, 255, 0.7);
}
.lp-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.03em;
}
.lp-form-card > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
.lp-form-card .lp-kicker {
  color: var(--blue-neon);
  margin-bottom: 0.4rem;
}
.lp-form-card .lp-kicker::before {
  background: linear-gradient(90deg, var(--blue-neon), transparent);
}

.lp-form { display: grid; gap: 0.45rem; }
.lp-field { display: grid; gap: 0.15rem; }
.lp-field label {
  font-size: 0.62rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-field .req { color: var(--blue-neon); }
.lp-field .opt {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.lp-field input,
.lp-form textarea,
.lp-field select {
  width: 100%;
  min-height: 40px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lp-field input::placeholder,
.lp-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.lp-form textarea { min-height: 58px; resize: vertical; }
.lp-field input:focus,
.lp-form textarea:focus,
.lp-field select:focus {
  outline: none;
  border-color: var(--blue-neon);
  background: rgba(13, 91, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(13, 91, 255, 0.22), 0 0 24px rgba(13, 91, 255, 0.15);
}

.lp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.lp-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.35;
  margin-top: 0.1rem;
}
.lp-check a {
  color: var(--blue-neon);
  text-decoration: underline;
}

.lp-form__status {
  min-height: 1.1em;
  font-size: 0.82rem;
  font-weight: 600;
}
.lp-form__status[data-state="ok"] { color: #4ade80; }
.lp-form__status[data-state="error"] { color: #fb7185; }

.lp-captcha {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  padding: 0.75rem 0.8rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 12, 36, 0.45);
}
.lp-captcha__label {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.lp-captcha__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}
.lp-captcha__code {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
  width: 100%;
  align-content: start;
}
.lp-captcha__code .lp-field input {
  min-width: 0;
  width: 100%;
}
.lp-captcha__visual {
  display: grid;
  gap: 0.4rem;
  position: static;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  overflow: visible;
}
.lp-captcha__image-wrap {
  position: relative;
  display: block;
  width: 280px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(159, 208, 255, 0.28);
  background: #001440;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.lp-captcha__image {
  display: block;
  width: 280px;
  max-width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: left center;
}
.lp-captcha__image[hidden],
.lp-captcha__canvas[hidden] {
  display: none !important;
}
.lp-captcha__refresh {
  position: absolute;
  right: 6px;
  bottom: 6px;
  top: auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(159, 208, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 20, 64, 0.92);
  color: #9fd0ff;
  font-size: inherit;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lp-captcha__refresh svg {
  width: 15px;
  height: 15px;
}
.lp-captcha__refresh:hover {
  color: #fff;
  border-color: rgba(13, 91, 255, 0.7);
  background: rgba(13, 91, 255, 0.45);
}
.lp-captcha__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  line-height: 1.2;
}
.lp-captcha__credit:hover {
  color: var(--blue-neon);
}
.lp-captcha__credit img {
  height: 16px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.lp-captcha__credit-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.lp-captcha__hint {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.1rem 0 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.35;
}
.lp-form-card .lp-btn--dark-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.lp-form-card .lp-btn--dark-ghost:hover {
  border-color: var(--blue-neon);
  color: var(--blue-neon);
}
.lp-form-card .lp-btn--block {
  min-height: 48px;
  margin-top: 0.15rem;
}
.lp-form-card .lp-btn--sparks {
  margin-top: 0.35rem;
}

/* —— Marquee —— */
.lp-marquee {
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: #000;
  border-block: 1px solid rgba(61, 139, 255, 0.25);
  padding: 1.05rem 0;
}
.lp-marquee__track {
  display: flex;
  width: max-content;
  animation: lpMarquee 38s linear infinite;
}
.lp-marquee:hover .lp-marquee__track { animation-play-state: paused; }
.lp-marquee__item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.lp-marquee__icon {
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 14px;
  color: var(--blue-neon);
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(61, 139, 255, 0.55));
}

@keyframes lpMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— Main body —— */
.lp-main-panel {
  position: relative;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(13, 91, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #f2f6ff 0%, #ffffff 40%, #f7f9ff 100%);
  z-index: 5;
  overflow: clip;
}

.lp-section {
  padding: 5.5rem 0;
  position: relative;
}

.lp-section--ice {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(13, 91, 255, 0.1), transparent 50%),
    var(--ice);
}

.lp-section--dark {
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(13, 91, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 100%, rgba(61, 139, 255, 0.12), transparent 45%),
    linear-gradient(180deg, #000714 0%, #001028 50%, #001840 100%);
  color: #fff;
  overflow: hidden;
}

.lp-section--navy {
  background:
    radial-gradient(ellipse 70% 90% at 15% -10%, rgba(13, 91, 255, 0.5), transparent 55%),
    linear-gradient(165deg, #000714 0%, #001028 35%, #001e5a 70%, #0a2f6e 100%);
  color: #fff;
  overflow: hidden;
}

.lp-section__head {
  max-width: 46rem;
  margin-bottom: 3rem;
}
.lp-section__head--split {
  max-width: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem 2rem;
}
.lp-section__head--split .lp-section__head-copy {
  max-width: 46rem;
  flex: 1 1 auto;
  min-width: 0;
}
.lp-section__head .lp-kicker {
  color: var(--blue);
}
.lp-section--dark .lp-section__head .lp-kicker,
.lp-section--navy .lp-section__head .lp-kicker {
  color: var(--blue-neon);
}
.lp-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  line-height: 1.05;
  text-wrap: balance;
}
.lp-section--dark .lp-section__head h2,
.lp-section--navy .lp-section__head h2 { color: #fff; }
.lp-section--dark .lp-section__head p,
.lp-section--navy .lp-section__head p { color: rgba(255, 255, 255, 0.68); }
.lp-section__head p {
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 36rem;
}

/* Stock badge — compact CTA-style pill */
.lp-stock {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  flex: 0 0 auto;
  align-self: flex-start;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
  min-height: 54px;
  padding: 0.85rem 1.35rem 0.85rem 1.2rem;
  border-radius: var(--radius);
  border: 0;
  background: linear-gradient(105deg, #001a4d 0%, #0d5bff 100%);
  color: #fff;
  box-shadow:
    0 14px 32px rgba(13, 91, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.lp-stock__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 28%,
    rgba(255, 255, 255, 0.28) 48%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 72%
  );
  transform: translateX(-130%);
  animation: lpStockSweep 3.8s var(--ease) infinite;
  pointer-events: none;
}
.lp-stock__dot {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.7rem;
  border-radius: 999px;
  background: #5dff9a;
  box-shadow: 0 0 0 0 rgba(93, 255, 154, 0.45);
  animation: lpStockLive 2.4s ease-out infinite;
}
.lp-stock__text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff !important;
  white-space: nowrap;
}
.lp-stock__text strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.lp-stock__sep {
  opacity: 0.55;
  font-weight: 700;
}
.lp-stock__ring,
.lp-stock__spark,
.lp-stock__value,
.lp-stock__label,
.lp-stock__sub {
  display: none;
}

@keyframes lpStockSweep {
  0%, 30% { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}
@keyframes lpStockLive {
  0% { box-shadow: 0 0 0 0 rgba(93, 255, 154, 0.45); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(93, 255, 154, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-stock__shine,
  .lp-stock__dot {
    animation: none;
  }
}

/* Trust — film strip meters */
.lp-trust-wrap { padding: 0 0 0.25rem; }
.lp-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 30, 90, 0.1);
  border-bottom: 1px solid rgba(0, 30, 90, 0.1);
  background: transparent;
}
.lp-trust__item {
  text-align: left;
  padding: 1.75rem 1.1rem;
  border-right: 1px solid rgba(0, 30, 90, 0.08);
  transition: background 0.35s var(--ease);
}
.lp-trust__item:last-child { border-right: 0; }
.lp-trust__item:hover { background: rgba(13, 91, 255, 0.04); }
.lp-trust__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-trust__label {
  font-size: 0.72rem;
  color: var(--steel);
  margin-top: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-trust-note {
  font-size: 0.7rem;
  color: var(--steel);
  margin: 0.75rem 0 0;
}
.lp-trust--compact {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.75rem;
}
.lp-section--reviews {
  padding-top: 3.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Google reviews — same language as homepage */
.google-reviews {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}
.google-reviews__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.35rem 1.2rem;
  background: #eef1f4;
  border: 1px solid rgba(10, 31, 56, 0.1);
  text-align: center;
}
.google-reviews__kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.google-reviews__score {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.google-reviews__score small {
  font-size: 0.48em;
  font-weight: 600;
  margin-left: 0.05em;
}
.google-reviews__stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}
.google-reviews__stars span,
.gr-card__stars span {
  width: 1.05rem;
  height: 1.05rem;
  background: #fbbc04;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
    50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
}
.google-reviews__count {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.85rem;
  color: var(--steel);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.google-reviews__logo {
  height: 22px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.google-reviews__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.google-reviews__all svg { width: 1rem; height: 1rem; }
.google-reviews__all:hover {
  background: var(--navy);
  color: #fff;
}
.google-reviews__carousel {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.google-reviews__viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  touch-action: pan-y;
}
.google-reviews__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.gr-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem 0.95rem;
  background: #fff;
  border: 1px solid rgba(10, 31, 56, 0.1);
  box-shadow: 0 8px 24px rgba(10, 31, 56, 0.04);
}
.gr-card__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
}
.gr-card__avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
  flex-shrink: 0;
}
.gr-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gr-card__who { min-width: 0; }
.gr-card__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-card__when {
  margin: 0.1rem 0 0;
  font-size: 0.76rem;
  color: var(--steel);
}
.gr-card__g {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
}
.gr-card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.gr-card__stars {
  display: flex;
  gap: 0.12rem;
}
.gr-card__stars span {
  width: 0.95rem;
  height: 0.95rem;
}
.gr-card__verified {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: grid;
  place-items: center;
}
.gr-card__verified svg {
  width: 0.65rem;
  height: 0.65rem;
}
.gr-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gr-card__more {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  text-decoration: none;
}
.gr-card__more:hover {
  color: var(--navy);
  text-decoration: underline;
}
.google-reviews__nav {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(10, 31, 56, 0.14);
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.google-reviews__nav svg {
  width: 1.15rem;
  height: 1.15rem;
}
.google-reviews__nav:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}
.google-reviews__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 1100px) {
  .gr-card { flex-basis: calc((100% - 1rem) / 2); }
}
@media (max-width: 900px) {
  .google-reviews { grid-template-columns: 1fr; }
  .google-reviews__summary {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    gap: 0.65rem 1.25rem;
    align-items: center;
  }
  .google-reviews__kicker,
  .google-reviews__score,
  .google-reviews__stars,
  .google-reviews__count,
  .google-reviews__all { margin: 0; }
}
@media (max-width: 640px) {
  .gr-card { flex-basis: 85%; }
  .google-reviews__nav { display: none; }
  .google-reviews__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }
  .google-reviews__track { transform: none !important; }
  .gr-card { scroll-snap-align: start; }
  .lp-trust--compact { grid-template-columns: 1fr; }
}

/* Feature rows — not cards */
.lp-feat-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 30, 90, 0.1);
}
.lp-feat {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(0, 30, 90, 0.1);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}
.lp-feat:hover {
  background: linear-gradient(90deg, rgba(13, 91, 255, 0.06), transparent 60%);
  padding-left: 0.75rem;
}
.lp-feat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, var(--blue-neon), var(--blue), var(--navy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-feat h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 0.35rem;
}
.lp-feat p {
  color: var(--steel);
  font-size: 0.98rem;
  max-width: 42rem;
}

.lp-section--dark .lp-feat-list { border-top-color: rgba(255, 255, 255, 0.1); }
.lp-section--dark .lp-feat { border-bottom-color: rgba(255, 255, 255, 0.1); }
.lp-section--dark .lp-feat:hover {
  background: linear-gradient(90deg, rgba(13, 91, 255, 0.15), transparent 60%);
}
.lp-section--dark .lp-feat h3 { color: #fff; }
.lp-section--dark .lp-feat p { color: rgba(255, 255, 255, 0.65); }

/* Legacy card aliases (products / interactive) */
.lp-grid-3 {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, 1fr);
}
.lp-grid-4 {
  display: grid;
  gap: 1.35rem 1.15rem;
  grid-template-columns: repeat(4, 1fr);
}
.lp-grid-4.lp-products {
  align-items: stretch;
}
.lp-grid-2 {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, 1fr);
}

.lp-card {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  height: 100%;
  box-shadow: none;
}

.lp-card__icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.lp-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0.5rem 0 0.4rem;
  letter-spacing: -0.02em;
}
.lp-card p {
  color: var(--steel);
  font-size: 0.94rem;
}

/* Video — immersive */
.lp-video {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
}
.lp-video__player {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.lp-video__player::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(61, 139, 255, 0.25);
  pointer-events: none;
  z-index: 2;
}
.lp-video__player img,
.lp-video__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 7, 20, 0.35);
  border: 0;
  cursor: pointer;
  color: #fff;
  z-index: 1;
  transition: background 0.35s var(--ease);
}
.lp-video__play:hover { background: rgba(0, 7, 20, 0.18); }
.lp-video__play span {
  width: 5.5rem;
  height: 5.5rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #001d4d, #0d5bff);
  font-size: 1.45rem;
  padding-left: 0.25rem;
  box-shadow:
    0 16px 48px rgba(13, 91, 255, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.35s var(--ease);
}
.lp-video__play:hover span { transform: scale(1.1); }
.lp-video__play:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
}

/* Products — media-led tiles (CTA interaction) */
.lp-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(0, 30, 90, 0.08);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 520px;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease);
}
.lp-product:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 91, 255, 0.35);
}
.lp-product img,
.lp-product__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist);
  transition: transform 0.8s var(--ease);
}
.lp-product:hover img,
.lp-product:hover .lp-product__img { transform: scale(1.06); }
.lp-product h3,
.lp-product p,
.lp-product ul,
.lp-product .lp-btn {
  margin-left: 1.15rem;
  margin-right: 1.15rem;
}
.lp-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-bottom: 0.25rem;
}
.lp-product__body > p {
  /* Keep ~1 line of air above the price box even when cards are tight */
  margin-bottom: 1.35rem;
}
.lp-product__price {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Push price to a shared baseline across cards in the same row */
  margin: auto 1.15rem 0.75rem;
  padding: 0.85rem 0.95rem 0.8rem;
  border: 1.5px solid rgba(13, 91, 255, 0.35);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(13, 91, 255, 0.1) 0%, rgba(0, 30, 90, 0.04) 55%, rgba(61, 139, 255, 0.12) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 10px 28px rgba(13, 91, 255, 0.12);
}
.lp-product__price-glow {
  position: absolute;
  inset: -40% -20%;
  z-index: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(61, 139, 255, 0.35) 52%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: lpPriceShine 2.8s var(--ease) infinite;
  pointer-events: none;
}
.lp-product__price-main,
.lp-product__price-note {
  position: relative;
  z-index: 1;
}
.lp-product__price-main {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.lp-product__price strong {
  font-weight: 800;
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 55%, #3d8bff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lpPriceText 2.8s linear infinite;
}
.lp-product__price-note {
  display: block;
  margin-top: 0.28rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0;
}
.lp-product:hover .lp-product__price {
  border-color: rgba(13, 91, 255, 0.65);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 14px 36px rgba(13, 91, 255, 0.22),
    0 0 24px rgba(61, 139, 255, 0.28);
}
@keyframes lpPriceShine {
  0%, 35% { transform: translateX(-120%); }
  65%, 100% { transform: translateX(120%); }
}
@keyframes lpPriceText {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-product__price-glow,
  .lp-product__price strong {
    animation: none;
  }
}
.lp-product h3 { margin-top: 1.1rem; }
.lp-product ul {
  margin: 0.45rem 1.15rem 1.1rem;
  display: grid;
  gap: 0.35rem;
}
.lp-product li {
  position: relative;
  padding-left: 1rem;
  color: var(--steel);
  font-size: 0.88rem;
}
.lp-product li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--blue);
}
.lp-product .lp-btn {
  margin-bottom: 1.2rem;
  margin-top: 0;
  align-self: flex-start;
}

a.lp-product {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.lp-product:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.lp-product__kicker {
  margin-top: 1.1rem;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.lp-product__body > .lp-product__kicker { margin-bottom: 0.2rem; }
.lp-product__body > .lp-product__stock { margin-bottom: 0.85rem; }
.lp-product--shop h3 { margin-top: 0.2rem; }
.lp-product__stock {
  margin: 0 1.15rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f7a4a;
}
.lp-product__price-sub {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--steel);
}
.lp-product--shop {
  border-color: rgba(13, 91, 255, 0.28);
}

.lp-catalog-cta {
  margin-top: 1.75rem;
  text-align: center;
}
.lp-catalog-cta .lp-btn {
  min-width: min(100%, 22rem);
}
.lp-btn--catalog {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid rgba(0, 30, 90, 0.28);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.lp-btn--catalog:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(13, 91, 255, 0.04);
  transform: translateY(-2px);
}

/* —— Kunden-Logo Trust Bar (between Produkte & Referenzen) —— */
.lp-logo-trust {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.25rem 0 3.6rem;
  background:
    radial-gradient(ellipse 70% 120% at 12% 50%, rgba(13, 91, 255, 0.55), transparent 55%),
    radial-gradient(ellipse 55% 90% at 92% 40%, rgba(61, 139, 255, 0.28), transparent 50%),
    linear-gradient(180deg, #000714 0%, #001028 42%, #001e5a 100%);
  color: #fff;
  border-block: 1px solid rgba(61, 139, 255, 0.35);
  box-shadow:
    0 -30px 80px rgba(13, 91, 255, 0.12) inset,
    0 30px 80px rgba(0, 0, 0, 0.35) inset;
}
.lp-logo-trust__aurora {
  position: absolute;
  inset: -30% -15%;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 18% 40%, rgba(13, 91, 255, 0.45), transparent 62%),
    radial-gradient(ellipse 50% 40% at 82% 55%, rgba(61, 139, 255, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 20%, rgba(13, 91, 255, 0.18), transparent 55%);
  animation: lpLogoTrustAurora 14s ease-in-out infinite alternate;
  pointer-events: none;
  opacity: 0.9;
  will-change: transform, opacity;
}
.lp-logo-trust__sweep {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.04) 47%,
    rgba(61, 139, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.04) 53%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: lpLogoTrustSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}
.lp-logo-trust__scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 2px,
    rgba(255, 255, 255, 0.015) 2px 3px
  );
  pointer-events: none;
  opacity: 0.55;
}
.lp-logo-trust__head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 1.75rem;
}
.lp-logo-trust__head .lp-kicker {
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}
.lp-logo-trust__head .lp-kicker::before {
  background: var(--blue-neon);
  box-shadow: 0 0 12px rgba(61, 139, 255, 0.8);
}
.lp-logo-trust__head h2 {
  margin: 0.35rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 40px rgba(61, 139, 255, 0.35);
}
.lp-logo-trust__head p {
  margin: 0 auto;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}
.lp-logo-trust__marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 0.35rem;
  padding: 1.1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-logo-trust__marquee::before,
.lp-logo-trust__marquee::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 139, 255, 0.7), transparent);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
  opacity: 0.5;
}
.lp-logo-trust__marquee::before { left: 0; }
.lp-logo-trust__marquee::after { right: 0; }
.lp-logo-trust__track {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  width: max-content;
  padding-inline: 1.25rem;
  animation: lpLogoTrustMarquee 26s linear infinite;
}
.lp-logo-trust__item {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  height: 64px;
  padding: 0.55rem 1.05rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(13, 91, 255, 0.12) inset,
    0 10px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  animation: lpLogoTrustPulse 2.8s ease-in-out infinite;
}
.lp-logo-trust__item:nth-child(3n) { animation-delay: 0.35s; }
.lp-logo-trust__item:nth-child(3n + 1) { animation-delay: 0.7s; }
.lp-logo-trust__item:nth-child(3n + 2) { animation-delay: 1.05s; }
.lp-logo-trust__item:hover {
  transform: translateY(-6px) scale(1.08);
  background: rgba(13, 91, 255, 0.18);
  border-color: rgba(61, 139, 255, 0.65);
  box-shadow:
    0 0 0 1px rgba(61, 139, 255, 0.35) inset,
    0 0 28px rgba(61, 139, 255, 0.45),
    0 16px 36px rgba(0, 0, 0, 0.35);
  animation-play-state: paused;
}
.lp-logo-trust__item img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.05) drop-shadow(0 0 10px rgba(61, 139, 255, 0.25));
}
@keyframes lpLogoTrustMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes lpLogoTrustSweep {
  0%, 12% { transform: translateX(-120%); opacity: 0; }
  20% { opacity: 1; }
  55% { opacity: 1; }
  70%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes lpLogoTrustAurora {
  0% {
    transform: translate3d(-4%, -2%, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(3%, 3%, 0) scale(1.06);
    opacity: 1;
  }
  100% {
    transform: translate3d(5%, -3%, 0) scale(1.02);
    opacity: 0.85;
  }
}
@keyframes lpLogoTrustPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(13, 91, 255, 0.12) inset,
      0 10px 28px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(61, 139, 255, 0.35) inset,
      0 0 22px rgba(61, 139, 255, 0.35),
      0 12px 30px rgba(0, 0, 0, 0.28);
  }
}
@media (max-width: 720px) {
  .lp-logo-trust { padding: 2.5rem 0 2.75rem; }
  .lp-logo-trust__track { gap: 1.5rem; animation-duration: 20s; }
  .lp-logo-trust__item {
    height: 54px;
    padding: 0.4rem 0.75rem;
  }
  .lp-logo-trust__item img {
    height: 30px;
    max-width: 120px;
  }
}

/* —— References —— */

.lp-section-cta {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
}
.lp-section-cta .lp-btn {
  min-width: min(100%, 22rem);
}

/* Reference video tiles */
.lp-refs {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, 1fr);
}
.lp-ref {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease);
}
.lp-ref:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 139, 255, 0.45);
}
.lp-ref__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0f1c;
  overflow: hidden;
}
.lp-ref__video,
.lp-ref__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-ref__video {
  z-index: 1;
  opacity: 0;
}
.lp-ref__poster {
  z-index: 2;
}
.lp-ref.is-playing .lp-ref__video {
  opacity: 1;
}
.lp-ref.is-playing .lp-ref__poster {
  opacity: 0;
  pointer-events: none;
}
.lp-ref__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0, 16, 48, 0.22);
  cursor: pointer;
  padding: 1rem;
  transition: background 0.3s ease, opacity 0.35s ease;
}
.lp-ref__play:hover {
  background: rgba(0, 16, 48, 0.34);
}
.lp-ref__play-chip {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.65rem 1.2rem 0.65rem 1rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #001d4d 0%, #0d5bff 100%);
  color: #fff;
  box-shadow:
    0 10px 28px rgba(0, 29, 77, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.lp-ref__play-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.lp-ref__play:hover .lp-ref__play-chip {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(13, 91, 255, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}
.lp-ref__play:hover .lp-ref__play-chip::before {
  transform: translateX(120%);
}
.lp-ref__play-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}
.lp-ref__play-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  transform: translateX(1px);
}
.lp-ref__play-chip > span:last-child {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.lp-ref.is-playing .lp-ref__play {
  opacity: 0;
  pointer-events: none;
}
.lp-ref__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  flex: 1 1 auto;
  padding: 1rem 1.1rem 1.15rem;
}
.lp-ref__copy {
  min-width: 0;
  flex: 1 1 auto;
}
.lp-ref__tag {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.lp-ref__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.lp-ref__cta {
  flex: 0 0 auto;
  align-self: flex-end;
  margin-top: auto;
  min-height: 44px;
  padding: 0.7rem 1.05rem;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Use cases — premium cinema gallery */
.lp-cinema-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.lp-cinema-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  background: #040a16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  isolation: isolate;
  transition:
    transform 0.45s var(--ease-out),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.lp-cinema-frame:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 139, 255, 0.45);
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(13, 91, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Keep image heights consistent so row stretch doesn't create huge gaps */
.lp-cinema-frame__zoom {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: #000814;
  cursor: zoom-in;
  overflow: hidden;
  line-height: 0;
  flex: 0 0 auto;
}
.lp-cinema-frame__zoom img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 1s var(--ease-out), filter 1s var(--ease);
  filter: brightness(1.04) saturate(1.12) contrast(1.02);
}
.lp-cinema-frame:hover .lp-cinema-frame__zoom img {
  transform: scale(1.03);
  filter: brightness(1.08) saturate(1.16) contrast(1.03);
}
.lp-cinema-frame__zoom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 5, 18, 0.28) 0%,
    rgba(0, 8, 28, 0.06) 32%,
    transparent 55%
  );
  z-index: 1;
  pointer-events: none;
}
.lp-cinema-frame__zoom-chip {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 34px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  background: rgba(0, 12, 36, 0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.lp-cinema-frame:hover .lp-cinema-frame__zoom-chip,
.lp-cinema-frame__zoom:focus-visible .lp-cinema-frame__zoom-chip {
  opacity: 1;
  transform: none;
}
.lp-cinema-frame__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1 1 auto;
  padding: 0.95rem 1.05rem 1.05rem;
  background: linear-gradient(180deg, rgba(4, 10, 22, 0.92) 0%, rgba(2, 6, 16, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lp-cinema-frame__copy {
  flex: 0 0 auto;
}
.lp-cinema-frame h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.28rem;
  color: #fff;
  line-height: 1.2;
}
.lp-cinema-frame p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  line-height: 1.4;
}
.lp-cinema-frame__cta {
  align-self: flex-start;
  margin-top: auto;
  min-height: 42px;
  padding: 0.65rem 1.05rem;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

/* Lightbox */
.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.lp-lightbox[hidden] {
  display: none;
}
.lp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 4, 14, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.lp-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(92vh, 920px);
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 10, 22, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lp-lightbox__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  background: rgba(0, 12, 36, 0.72);
  color: #fff;
  cursor: pointer;
}
.lp-lightbox__close:hover {
  border-color: rgba(61, 139, 255, 0.6);
  color: var(--blue-neon);
}
.lp-lightbox__figure {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.lp-lightbox__figure img {
  width: 100%;
  max-height: min(78vh, 780px);
  object-fit: contain;
  background: #000;
}
.lp-lightbox__figure figcaption {
  padding: 0 0.35rem 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
body.lp-lightbox-open {
  overflow: hidden;
}

/* Gallery cinema strip */
.lp-gallery,
.lp-gallery--cinema {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 91, 255, 0.5) transparent;
}
.lp-gallery figure,
.lp-gallery--cinema figure {
  flex: 0 0 min(78vw, 520px);
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.lp-gallery img,
.lp-gallery--cinema img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 1s;
  filter: brightness(0.85) contrast(1.05);
}
.lp-gallery figure:hover img,
.lp-gallery--cinema figure:hover img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.08);
}
.lp-gallery figcaption,
.lp-gallery--cinema figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.15rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 5, 18, 0.92), transparent);
  z-index: 1;
}
.lp-gallery::-webkit-scrollbar,
.lp-gallery--cinema::-webkit-scrollbar { height: 5px; }
.lp-gallery::-webkit-scrollbar-thumb,
.lp-gallery--cinema::-webkit-scrollbar-thumb {
  background: rgba(13, 91, 255, 0.45);
}

/* Process — film frames */
.lp-steps {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  border: 1px solid rgba(0, 30, 90, 0.1);
}
.lp-step-rail { display: none; }

.lp-step {
  position: relative;
  text-align: left;
  padding: 1.5rem 1.1rem 1.6rem;
  border-right: 1px solid rgba(0, 30, 90, 0.1);
  background: #fff;
  transition: background 0.35s var(--ease);
}
.lp-step:last-child { border-right: 0; }
.lp-step:hover { background: var(--ice); }
.lp-step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-step h3 {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}
.lp-step p {
  font-size: 0.8rem;
  color: var(--steel);
}

.lp-section--dark .lp-steps { border-color: rgba(255, 255, 255, 0.12); }
.lp-section--dark .lp-step {
  background: transparent;
  border-right-color: rgba(255, 255, 255, 0.12);
}
.lp-section--dark .lp-step:hover { background: rgba(13, 91, 255, 0.1); }
.lp-section--dark .lp-step h3 { color: #fff; }
.lp-section--dark .lp-step p { color: rgba(255, 255, 255, 0.6); }

/* Why — compact rows */
.lp-why-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(0, 30, 90, 0.1);
}
.lp-why {
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-bottom: 1px solid rgba(0, 30, 90, 0.1);
  border-right: 1px solid rgba(0, 30, 90, 0.1);
}
.lp-why:nth-child(2n) {
  padding-left: 1.25rem;
  padding-right: 0;
  border-right: 0;
}
.lp-why h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.lp-why p {
  color: var(--steel);
  font-size: 0.94rem;
}

/* FAQ */
.lp-faq details {
  border: 0;
  border-bottom: 1px solid rgba(0, 30, 90, 0.12);
  border-radius: 0;
  padding: 1.25rem 0;
  background: transparent;
}
.lp-faq details + details { margin-top: 0; }
.lp-faq details[open] { border-bottom-color: rgba(13, 91, 255, 0.35); }
.lp-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-size: 1.08rem;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 800;
  font-size: 1.25rem;
}
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq details p {
  margin-top: 0.85rem;
  color: var(--steel);
  font-size: 0.95rem;
  max-width: 48rem;
}

/* Final CTA */
.lp-final {
  position: relative;
  text-align: center;
  padding: 7rem 0;
  overflow: hidden;
  isolation: isolate;
}
.lp-final::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(13, 91, 255, 0.55), transparent 58%),
    radial-gradient(ellipse 35% 30% at 25% 35%, rgba(61, 139, 255, 0.28), transparent 50%);
  filter: blur(10px);
  pointer-events: none;
  animation: lpBloomPulse 9s ease-in-out infinite alternate;
}
@keyframes lpBloomPulse {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.15); opacity: 1; }
}
.lp-final > * { position: relative; z-index: 1; }
.lp-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.lp-final p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 34rem;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
.lp-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Footer */
.lp-footer {
  background: #000510;
  color: rgba(255, 255, 255, 0.68);
  padding: 3.25rem 0 1.85rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(61, 139, 255, 0.12);
}
.lp-footer__grid {
  display: grid;
  gap: 1.85rem;
  grid-template-columns: 1.3fr 1fr 1fr;
  margin-bottom: 1.85rem;
}
.lp-footer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin: 0 0 1.85rem;
}
.lp-footer__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}
.lp-footer__ctas .lp-btn {
  min-height: 54px;
  min-width: 9.5rem;
}
.lp-footer__ctas .lp-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.lp-footer__ctas .lp-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.lp-footer__ctas .octicon {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.lp-footer__ctas .lp-btn-wa {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  align-self: center;
}
.lp-footer__ctas .lp-btn-wa img {
  width: 54px;
  height: 54px;
  filter: none;
  margin: 0;
}

/* Homepage link — noble shimmer + soft navy/blue glow */
.lp-btn--home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  max-width: 100%;
  padding: 0.9rem 1.45rem;
  gap: 0.65rem;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(61, 139, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(0, 24, 64, 0.92) 0%, rgba(10, 52, 140, 0.88) 48%, rgba(13, 91, 255, 0.55) 100%);
  box-shadow:
    0 14px 36px rgba(13, 91, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: lpHomePulse 3.6s ease-in-out infinite;
}
.lp-btn--home > * {
  position: relative;
  z-index: 1;
}
.lp-btn--home .octicon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.92;
}
.lp-btn--home__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.28) 46%,
    rgba(61, 139, 255, 0.18) 52%,
    transparent 72%
  );
  transform: translateX(-120%);
  animation: lpHomeShimmer 4.8s ease-in-out infinite;
}
.lp-btn--home:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 139, 255, 0.85);
  box-shadow:
    0 20px 48px rgba(13, 91, 255, 0.42),
    0 0 36px rgba(61, 139, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #fff;
}
.lp-btn--home:hover .lp-btn--home__glow {
  animation-duration: 1.6s;
}

@keyframes lpHomePulse {
  0%, 100% {
    box-shadow:
      0 14px 36px rgba(13, 91, 255, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow:
      0 16px 42px rgba(13, 91, 255, 0.4),
      0 0 28px rgba(61, 139, 255, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}
@keyframes lpHomeShimmer {
  0%, 18% { transform: translateX(-120%); }
  48% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-btn--home,
  .lp-btn--home__glow {
    animation: none !important;
  }
}
.lp-footer strong {
  color: #fff;
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
}
.lp-footer a:hover { color: var(--blue-neon); }
.lp-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
}
.lp-footer img {
  height: 34px;
  width: auto;
  margin-bottom: 0.9rem;
  filter: brightness(0) invert(1);
}
.lp-footer__ctas img,
.lp-footer .lp-btn-wa img {
  height: auto;
  margin-bottom: 0;
  filter: none;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  :root { --letterbox: 14px; }

  .lp-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }
  .lp-hero__grid,
  .lp-video { grid-template-columns: 1fr; }
  /* Stacked hero: form flows with page, no inner scrollbar */
  .lp-form-card {
    max-height: none;
    overflow: visible;
    /* Glass over video = major scroll jank on phones */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(
      165deg,
      rgba(6, 14, 36, 0.96) 0%,
      rgba(2, 6, 18, 0.98) 100%
    );
  }

  /* —— Mobile hero perf: kill expensive live layers —— */
  .lp-hero__video {
    animation: none;
    filter: none;
    transform: none;
  }
  .lp-hero__aurora,
  .lp-hero__grain,
  .lp-scanlines,
  .lp-light-sweep {
    display: none !important;
  }
  .lp-hero__logo {
    animation: none;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
  }
  .lp-mig,
  .lp-gscore {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(4, 12, 32, 0.88);
  }
  .lp-gscore__star,
  .lp-verified__seal,
  .lp-verified__seal::before,
  .lp-verified__seal::after,
  .lp-verified__spark,
  .lp-btn-wa,
  .lp-btn--primary::before,
  .lp-btn--sparks .lp-btn__spark {
    animation: none !important;
  }
  .lp-verified__spark { display: none; }
  .lp-reveal {
    filter: none;
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  }
  .lp-mig,
  .lp-gscore {
    max-width: none;
  }
  .lp-hero__watermark {
    font-size: clamp(4rem, 18vw, 9rem);
    top: 40%;
  }
  .lp-hero__logo { max-width: 220px; }
  .lp-hero__logo img { max-height: 56px; }
  .lp-trust { grid-template-columns: repeat(3, 1fr); }
  .lp-trust__item:nth-child(3) { border-right: 0; }
  .lp-trust__item:nth-child(n + 4) {
    border-top: 1px solid rgba(0, 30, 90, 0.08);
  }
  .lp-section__head--split {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-stock {
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }
  .lp-stock__text {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .lp-steps { grid-template-columns: repeat(3, 1fr); }
  .lp-step:nth-child(3) { border-right: 0; }
  .lp-step:nth-child(n + 4) { border-top: 1px solid rgba(0, 30, 90, 0.1); }
  .lp-section { padding: 4.25rem 0; }
}

@media (max-width: 720px) {
  :root { --letterbox: 10px; }

  .lp-hero__ctas {
    gap: 0.45rem;
  }
  .lp-hero__ctas .lp-btn {
    flex: 1 1 0;
    min-height: 48px;
    padding-inline: 0.55rem;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }
  .lp-btn-wa {
    width: 48px;
    height: 48px;
  }
  .lp-btn-wa img {
    width: 48px;
    height: 48px;
  }
  .lp-hero {
    padding: 1.5rem 0 2.5rem;
  }
  .lp-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }
  .lp-hero__watermark {
    font-size: 20vw;
    opacity: 0.55;
  }
  .lp-form__row { grid-template-columns: 1fr; }
  /* Mobile: form is a normal page block — no nested scroll */
  .lp-form-card {
    max-height: none;
    overflow: visible;
    scrollbar-width: auto;
  }
  .lp-captcha__row {
    grid-template-columns: 1fr;
  }
  .lp-captcha__image-wrap,
  .lp-captcha__image {
    width: 100%;
    max-width: 280px;
  }
  .lp-captcha__image {
    height: auto;
    aspect-ratio: 280 / 80;
  }
  .lp-trust { grid-template-columns: repeat(2, 1fr); }
  .lp-trust__item {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 30, 90, 0.08);
  }
  .lp-trust__item:nth-child(odd) {
    border-right: 1px solid rgba(0, 30, 90, 0.08);
  }
  .lp-feat {
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
  }
  .lp-feat__num { font-size: 1.8rem; }
  .lp-grid-3,
  .lp-grid-4,
  .lp-refs,
  .lp-cinema-grid,
  .lp-steps,
  .lp-why-grid,
  .lp-footer__grid { grid-template-columns: 1fr; }
  .lp-footer__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-btn--home {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .lp-ref__body {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-ref__cta {
    align-self: stretch;
    width: 100%;
    margin-top: auto;
  }
  .lp-why,
  .lp-why:nth-child(2n) {
    padding: 1.25rem 0;
    border-right: 0;
  }
  .lp-step { border-right: 0; border-bottom: 1px solid rgba(0, 30, 90, 0.1); }
  .lp-cinema-frame { aspect-ratio: auto; height: 100%; }
  .lp-cinema-frame__zoom { aspect-ratio: 16 / 9; }
  .lp-cinema-frame__zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .lp-cinema-frame__zoom-chip {
    opacity: 1;
    transform: none;
  }
  .lp-cinema-frame__cta {
    align-self: stretch;
    width: 100%;
  }
  .lp-gallery figure,
  .lp-gallery--cinema figure { flex-basis: min(88vw, 360px); }
  .lp-section { padding: 3.25rem 0; }
  .lp-final { padding: 4.75rem 0; }
  .lp-marquee__item {
    font-size: 0.68rem;
    padding: 0 1.25rem;
  }
}
