/* Cabutan Bertuah — Landing (professional) */
:root {
  --lp-primary: #c41e2a;
  --lp-primary-hover: #9f1420;
  --lp-accent: #d97706;
  --lp-dark: #0f172a;
  --lp-text: #334155;
  --lp-muted: #64748b;
  --lp-line: #e2e8f0;
  --lp-bg: #f8fafc;
  --lp-white: #ffffff;
  --lp-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --lp-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.08);
  --lp-radius: 12px;
  /* Tema festive merah & emas */
  --fest-red: #8b0f18;
  --fest-red-deep: #4a0810;
  --fest-red-mid: #9f1420;
  --fest-red-bright: #c41e2a;
  --fest-gold: #fcd34d;
  --fest-gold-dark: #d97706;
  --fest-text: rgba(255, 255, 255, 0.9);
  --fest-muted: rgba(255, 255, 255, 0.65);
  --fest-card: rgba(60, 10, 16, 0.85);
  --fest-border: rgba(252, 211, 77, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--fest-text);
  background: var(--fest-red-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.lp-nav.scrolled {
  border-color: var(--fest-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  background: rgba(45, 5, 9, 0.95);
}
.lp-nav.scrolled .lp-brand { color: #fff; }
.lp-nav.scrolled .lp-brand .mark { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35)); }
.lp-nav.scrolled .lp-nav-links a:not(.lp-btn) { color: var(--fest-muted); }
.lp-nav.scrolled .lp-nav-links a:not(.lp-btn):hover { color: #fff; }
.lp-nav.scrolled .lp-btn-ghost { color: #fff; border-color: var(--fest-border); }
.lp-nav.scrolled .lp-btn-primary { background: var(--fest-gold); color: #5c1a0a; }
.lp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--lp-dark);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.02em;
}
.lp-brand .mark {
  width: auto;
  height: 44px;
  max-width: min(140px, 42vw);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
  background: transparent;
}
.lp-brand-name {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-nav-links { display: flex; align-items: center; gap: 4px; }
.lp-nav-links a:not(.lp-btn) {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.lp-nav-links a:not(.lp-btn):hover { color: var(--lp-dark); background: #f1f5f9; }

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.lp-btn-primary {
  background: var(--lp-primary);
  color: #fff;
}
.lp-btn-primary:hover { background: var(--lp-primary-hover); }
.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-line);
}
.lp-btn-ghost:hover { background: #f8fafc; border-color: #cbd5e1; }
.lp-btn-lg { padding: 12px 24px; font-size: 15px; }

/* Hero — tema merah & emas (Grand Prize) */
.lp-hero-festive {
  position: relative;
  padding: 108px 32px 56px;
  overflow: hidden;
  background: #4a0810;
  border-bottom: none;
  min-height: 0;
  display: block;
}
.lp-hero-festive .lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, #c41e2a 0%, #8b0f18 42%, #3d060c 100%),
    radial-gradient(ellipse 50% 40% at 50% 55%, rgba(255, 200, 80, 0.18), transparent 65%);
}

/* Spotlight */
.lp-spotlight {
  position: absolute;
  bottom: -10%;
  width: 55%;
  height: 85%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: spotlight-sweep 6s ease-in-out infinite;
}
.lp-spotlight-l {
  left: -8%;
  background: conic-gradient(from 72deg at 0% 100%, transparent 0deg, rgba(255, 230, 120, 0.55) 18deg, rgba(255, 248, 200, 0.35) 32deg, transparent 52deg);
  transform-origin: 0% 100%;
  animation-delay: 0s;
}
.lp-spotlight-r {
  right: -8%;
  left: auto;
  background: conic-gradient(from 108deg at 100% 100%, transparent 0deg, rgba(255, 230, 120, 0.55) 18deg, rgba(255, 248, 200, 0.35) 32deg, transparent 52deg);
  transform-origin: 100% 100%;
  animation-delay: -3s;
}
@keyframes spotlight-sweep {
  0%, 100% { opacity: 0.55; filter: brightness(1); }
  50% { opacity: 0.95; filter: brightness(1.15); }
}

.lp-marquee-glow {
  position: absolute;
  top: 50%;
  left: 58%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 100, 0.25) 0%, transparent 65%);
  z-index: 1;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* Confetti emas */
.lp-confetti {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.lp-confetti i {
  position: absolute;
  top: -5vh;
  display: block;
  animation: confetti-fall linear infinite;
}
@keyframes confetti-fall {
  0% { transform: translateY(-5vh) rotate(0deg); opacity: 0; }
  8% { opacity: 1; }
  100% { transform: translateY(105vh) rotate(720deg); opacity: 0.8; }
}

.lp-hero-festive .lp-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.lp-hero-festive .lp-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fcd34d;
  margin-bottom: 12px;
  animation: fade-in .6s ease both;
}
.lp-hero-festive .lp-hero h1,
.lp-hero-festive h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  animation: fade-in .6s .08s ease both;
}
.lp-hero-festive h1 .accent {
  background: linear-gradient(180deg, #fff 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-festive .lp-hero-lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 18px;
  max-width: 500px;
  animation: fade-in .6s .16s ease both;
}
.lp-hero-festive .lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  animation: fade-in .6s .24s ease both;
}
.lp-btn-gold {
  background: linear-gradient(180deg, #fcd34d 0%, #f59e0b 100%);
  color: #5c1a0a;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(252, 211, 77, 0.4);
}
.lp-btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.lp-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.lp-btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.lp-btn-wa:hover {
  border-color: #25d366;
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}

.lp-hero-festive .lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fade-in .6s .32s ease both;
}
.lp-hero-festive .lp-trust span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.lp-hero-festive .lp-trust span::before {
  background: #fcd34d;
  box-shadow: 0 0 8px rgba(252, 211, 77, 0.8);
}

/* Nav atas hero merah */
.lp-nav-festive:not(.scrolled) {
  background: rgba(45, 6, 10, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-nav-festive:not(.scrolled) .lp-brand { color: #fff; }
.lp-nav-festive:not(.scrolled) .lp-brand .mark {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}
.lp-nav-festive:not(.scrolled) .lp-nav-links a:not(.lp-btn) { color: rgba(255,255,255,.75); }
.lp-nav-festive:not(.scrolled) .lp-nav-links a:not(.lp-btn):hover { color: #fff; background: rgba(255,255,255,.08); }
.lp-nav-festive:not(.scrolled) .lp-btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.lp-nav-festive:not(.scrolled) .lp-btn-primary { background: #fcd34d; color: #5c1a0a; }

/* Pentas hadiah */
.lp-hero-visual { animation: fade-in .8s .2s ease both; }
.lp-prize-stage {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
}
.lp-grand-title {
  position: relative;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: .14em;
  color: #fff;
  text-shadow: 0 0 30px rgba(252, 211, 77, 0.6), 0 2px 8px rgba(0,0,0,.4);
  animation: title-shine 3s ease-in-out infinite;
  white-space: nowrap;
  z-index: 2;
}
@keyframes title-shine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; text-shadow: 0 0 40px rgba(255, 220, 100, 1), 0 2px 12px rgba(0,0,0,.5); }
}

.lp-marquee-visual {
  position: relative;
  margin: 0 auto;
  max-width: min(480px, 94vw);
  z-index: 1;
  animation: marquee-float 4s ease-in-out infinite;
}
@keyframes marquee-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.lp-marquee-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, 55vh);
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: none;
  border-radius: 0;
  mix-blend-mode: lighten;
  animation: marquee-img-shine 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}
@keyframes marquee-img-shine {
  0%, 100% { filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4)) brightness(1); }
  50% { filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4)) brightness(1.1) contrast(1.05); }
}
.lp-podium {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.lp-podium::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 48px;
  background: linear-gradient(180deg, #b91c1c 0%, #7f0f16 100%);
  border-radius: 12px 12px 4px 4px;
  border: 2px solid #fcd34d;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  z-index: -1;
}

.lp-prize {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: prize-float 3.5s ease-in-out infinite;
}
.lp-prize-1 { animation-delay: 0s; z-index: 3; }
.lp-prize-2 { animation-delay: -.8s; margin-bottom: 20px; }
.lp-prize-3 { animation-delay: -1.6s; margin-bottom: 28px; }
@keyframes prize-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.lp-prize-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 100, 0.5) 0%, transparent 70%);
  animation: prize-glow-pulse 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes prize-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.lp-prize-1 { position: relative; }
.lp-prize-1 .lp-prize-ic {
  font-size: 64px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
  animation: prize-shine 2.5s ease-in-out infinite;
}
.lp-prize-2 .lp-prize-ic,
.lp-prize-3 .lp-prize-ic {
  font-size: 42px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
@keyframes prize-shine {
  0%, 100% { filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)) brightness(1); }
  50% { filter: drop-shadow(0 12px 28px rgba(252, 211, 77, 0.6)) brightness(1.15); }
}

.lp-prize-lbl {
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fcd34d 0%, #d97706 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  white-space: nowrap;
}
.lp-prize-1 .lp-prize-lbl {
  background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%);
  color: #5c1a0a;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stats — Golden Ticket premium */
.lp-stats-wrap {
  position: relative;
  z-index: 4;
  padding: 80px 32px 88px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, transparent 45%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(90, 24, 154, 0.25) 0%, transparent 50%),
    linear-gradient(175deg, #fffef8 0%, #ffe9a8 8%, #ffd700 22%, #e6b800 42%, #b8860b 62%, #6b4423 82%, #3d2314 100%);
  border-top: 3px solid rgba(255, 215, 0, 0.6);
  border-bottom: 3px solid rgba(90, 24, 154, 0.4);
}
.lp-stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lp-stats-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 255, 255, 0.06) 15deg,
    transparent 30deg,
    rgba(255, 215, 0, 0.08) 45deg,
    transparent 60deg);
  animation: stats-rays-spin 60s linear infinite;
}
@keyframes stats-rays-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.lp-stats-spotlight {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 100vw);
  height: 380px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.65) 0%, rgba(255, 235, 150, 0.4) 22%, rgba(255, 215, 0, 0.15) 45%, transparent 70%);
  animation: stats-spotlight-pulse 5s ease-in-out infinite;
}
@keyframes stats-spotlight-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.lp-stats-bokeh i {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 100, 0.95) 0%, rgba(255, 200, 50, 0.35) 40%, transparent 70%);
  animation: bokeh-float 8s ease-in-out infinite;
}
.lp-stats-bokeh i:nth-child(1)  { width: 80px; height: 80px; top: 8%; left: 5%; opacity: 0.5; }
.lp-stats-bokeh i:nth-child(2)  { width: 120px; height: 120px; top: 12%; right: 6%; opacity: 0.35; animation-delay: -2s; }
.lp-stats-bokeh i:nth-child(3)  { width: 50px; height: 50px; bottom: 18%; left: 10%; opacity: 0.6; animation-delay: -4s; }
.lp-stats-bokeh i:nth-child(4)  { width: 90px; height: 90px; bottom: 8%; right: 12%; opacity: 0.4; animation-delay: -1s; }
.lp-stats-bokeh i:nth-child(5)  { width: 40px; height: 40px; top: 42%; left: 22%; opacity: 0.55; animation-delay: -3s; }
.lp-stats-bokeh i:nth-child(6)  { width: 65px; height: 65px; top: 52%; right: 24%; opacity: 0.45; animation-delay: -5s; }
.lp-stats-bokeh i:nth-child(7)  { width: 100px; height: 100px; top: 28%; left: 42%; opacity: 0.25; animation-delay: -2.5s; }
.lp-stats-bokeh i:nth-child(8)  { width: 35px; height: 35px; bottom: 32%; right: 38%; opacity: 0.65; animation-delay: -1.5s; }
@keyframes bokeh-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -12px) scale(1.08); }
}
.lp-stats-sparkles i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #ffd700, 0 0 4px #fff;
  animation: stats-sparkle 2.5s ease-in-out infinite;
}
.lp-stats-sparkles i:nth-child(1) { top: 14%; left: 18%; }
.lp-stats-sparkles i:nth-child(2) { top: 22%; right: 20%; width: 8px; height: 8px; animation-delay: -.5s; }
.lp-stats-sparkles i:nth-child(3) { bottom: 28%; left: 30%; animation-delay: -1s; }
.lp-stats-sparkles i:nth-child(4) { bottom: 20%; right: 25%; animation-delay: -1.5s; }
.lp-stats-sparkles i:nth-child(5) { top: 38%; left: 55%; width: 5px; height: 5px; animation-delay: -2s; }
@keyframes stats-sparkle {
  0%, 100% { opacity: 0.2; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.3); }
}
.lp-stats-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.lp-stats-confetti i {
  position: absolute;
  top: -4vh;
  display: block;
  animation: stats-confetti-fall linear infinite;
}
@keyframes stats-confetti-fall {
  0% { transform: translateY(-4vh) rotate(0deg); opacity: 0; }
  6% { opacity: 0.9; }
  100% { transform: translateY(108vh) rotate(540deg); opacity: 0.7; }
}

.lp-stats-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}
.lp-stats-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
  padding: 28px 28px 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 248, 220, 0.35) 100%);
  border: 1px solid rgba(255, 215, 0, 0.45);
  box-shadow:
    0 16px 40px rgba(61, 35, 20, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  animation: fade-in .7s ease both;
  position: relative;
  overflow: hidden;
}
.lp-stats-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fest-red-deep), var(--fest-gold), var(--fest-red-deep));
  background-size: 200% 100%;
  animation: stat-head-bar 5s linear infinite;
}
@keyframes stat-head-bar {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.lp-stats-head-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.lp-stats-eyebrow {
  font-size: 11px;
  color: var(--fest-gold-dark);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  animation: stats-star-twinkle 2.5s ease-in-out infinite;
}
.lp-stats-eyebrow:last-child { animation-delay: -1.2s; }
@keyframes stats-star-twinkle {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}
.lp-stats-eyebrow-pill {
  display: inline-block;
  margin: 0;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--fest-red-bright) 0%, var(--fest-red) 55%, var(--fest-red-deep) 100%);
  border: 1px solid rgba(255, 215, 0, 0.55);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(74, 8, 16, 0.35), 0 0 20px rgba(255, 215, 0, 0.15);
}

.lp-stats-title {
  margin: 0 0 16px;
  padding: 0;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.lp-stats-title-main {
  display: block;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 600;
  color: rgba(61, 35, 20, 0.75);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.lp-stats-title-accent {
  display: block;
  font-size: clamp(26px, 4.2vw, 38px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--fest-red-deep) 0%, #6b0a12 25%, var(--fest-red-bright) 55%, var(--fest-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(139, 15, 24, 0.2));
  position: relative;
  padding-bottom: 14px;
}
.lp-stats-title-accent::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(200px, 60%);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--fest-gold), var(--fest-red-bright), var(--fest-gold), transparent);
  border-radius: 2px;
}

.lp-stats-lead {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(61, 35, 20, 0.88);
  line-height: 1.7;
  margin: 0 auto 18px;
  max-width: 520px;
}
.lp-stats-lead strong {
  color: var(--fest-red);
  font-weight: 700;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lp-stat {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
}
.lp-stats.is-live .lp-stat:nth-child(1) { transition-delay: 0.08s; }
.lp-stats.is-live .lp-stat:nth-child(2) { transition-delay: 0.2s; }
.lp-stats.is-live .lp-stat:nth-child(3) { transition-delay: 0.32s; }
.lp-stats.is-live .lp-stat:nth-child(4) { transition-delay: 0.44s; }
.lp-stat.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (min-width: 769px) {
  .lp-stat:nth-child(2) { margin-top: 10px; }
  .lp-stat:nth-child(4) { margin-top: 10px; }
}

.lp-stat-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 16px 20px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(165deg,
    var(--fest-red-bright) 0%,
    var(--fest-red-mid) 28%,
    var(--fest-red) 52%,
    var(--fest-red-deep) 82%,
    #3a060c 100%);
  border: 2px solid rgba(255, 215, 0, 0.75);
  box-shadow:
    0 12px 36px rgba(74, 8, 16, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 28px rgba(255, 215, 0, 0.12);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .3s;
}
.lp-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #fff8dc, #ffd700);
  background-size: 200% 100%;
  animation: stat-bar-shimmer 3.5s linear infinite;
}
@keyframes stat-bar-shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.lp-stat-ticket {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 28px;
  margin-top: -14px;
  background: inherit;
  border-radius: 0 14px 14px 0;
  box-shadow: inset -3px 0 6px rgba(0, 0, 0, 0.2);
  opacity: 0.35;
}
.lp-stat-ticket::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 14px;
  height: 28px;
  margin-top: -14px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(165deg, var(--fest-red-mid), var(--fest-red-deep));
  box-shadow: inset 3px 0 6px rgba(0, 0, 0, 0.2);
}
.lp-stat:hover .lp-stat-card {
  transform: translateY(-10px) scale(1.03);
  border-color: #ffe566;
  box-shadow:
    0 22px 48px rgba(74, 8, 16, 0.6),
    0 0 40px rgba(255, 215, 0, 0.28);
}
.lp-stat-featured .lp-stat-card {
  border-width: 2px;
  border-color: #ffe566;
  background: linear-gradient(165deg,
    #d42a36 0%,
    var(--fest-red-bright) 18%,
    var(--fest-red-mid) 42%,
    var(--fest-red) 68%,
    var(--fest-red-deep) 100%);
}
.lp-stat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5c1a0a;
  background: linear-gradient(180deg, #ffe566, #f59e0b);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.lp-stat-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 4px auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.15);
}
.lp-stat.visible .lp-stat-icon-wrap {
  animation: stat-icon-pulse 3s ease-in-out infinite;
}
@keyframes stat-icon-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(255, 215, 0, 0.12); }
  50% { box-shadow: 0 0 28px rgba(255, 215, 0, 0.35); }
}
.lp-stat-icon {
  font-size: 26px;
  line-height: 1;
  display: block;
}
.lp-stat .num {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #ffd700;
  letter-spacing: -.03em;
  line-height: 1.1;
  text-shadow: 0 0 28px rgba(255, 215, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.35);
}
.lp-stat.visible .num {
  animation: stat-num-glow 2.5s ease-in-out infinite;
}
@keyframes stat-num-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.35); }
  50% { text-shadow: 0 0 36px rgba(255, 215, 0, 0.75), 0 2px 6px rgba(0, 0, 0, 0.35); }
}
.lp-stat .lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: .02em;
}
.lp-stat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 10px 0 14px;
  padding: 0 4px;
  max-width: 240px;
  flex: 1;
}
.lp-stat-chip {
  display: inline-block;
  margin-top: auto;
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 235, 180, 0.95);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 215, 0, 0.32);
  border-radius: 999px;
  line-height: 1.35;
}

/* Poster promosi — seksyen statistik */
.lp-stats-posters {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 2px solid rgba(90, 24, 154, 0.25);
}
.lp-stats-posters-head {
  position: relative;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 560px;
  padding: 24px 28px 26px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 248, 220, 0.4) 100%);
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow:
    0 12px 36px rgba(61, 35, 20, 0.14),
    0 0 40px rgba(255, 215, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.lp-stats-posters-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fest-red-deep), var(--fest-gold), #fff8dc, var(--fest-gold), var(--fest-red-deep));
  background-size: 200% 100%;
  animation: poster-head-bar 4s linear infinite;
}
@keyframes poster-head-bar {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.lp-posters-head-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.lp-posters-head-sweep::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 215, 0, 0.35) 55%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: poster-shine-sweep 3.5s ease-in-out infinite;
}
@keyframes poster-shine-sweep {
  0% { left: -60%; opacity: 0; }
  8% { opacity: 1; }
  45% { left: 120%; opacity: 1; }
  55% { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}
.lp-posters-head-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.lp-posters-spark {
  font-size: 11px;
  color: var(--fest-gold-dark);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  animation: poster-spark-twinkle 2.2s ease-in-out infinite;
}
.lp-posters-spark:last-child { animation-delay: -1.1s; }
@keyframes poster-spark-twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); filter: brightness(0.9); }
  50% { opacity: 1; transform: scale(1.2); filter: brightness(1.4); }
}
.lp-posters-eyebrow {
  display: inline-block;
  margin: 0;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--fest-red-bright), var(--fest-red-deep));
  border: 1px solid rgba(255, 215, 0, 0.6);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(74, 8, 16, 0.3), 0 0 18px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.lp-posters-eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-100%);
  animation: poster-eyebrow-shine 2.8s ease-in-out infinite;
}
@keyframes poster-eyebrow-shine {
  0%, 35% { transform: translateX(-100%); }
  55% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.lp-stats-posters-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  line-height: 1.25;
}
.lp-posters-title-text {
  display: inline-block;
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(
    120deg,
    var(--fest-red-deep) 0%,
    #6b0a12 20%,
    var(--fest-red-bright) 40%,
    #ffd700 50%,
    #fff8dc 52%,
    #ffd700 54%,
    var(--fest-red-bright) 60%,
    var(--fest-red-deep) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: poster-title-shine 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(139, 15, 24, 0.15));
}
@keyframes poster-title-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lp-posters-head-line {
  position: relative;
  z-index: 1;
  display: block;
  width: min(160px, 50%);
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--fest-gold), #fff, var(--fest-gold), transparent);
  background-size: 200% 100%;
  animation: poster-head-bar 3s linear infinite;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
}
.lp-stats-posters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.lp-poster {
  margin: 0;
}
.lp-poster-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(165deg, var(--fest-red-mid), var(--fest-red-deep));
  border: 3px solid rgba(255, 215, 0, 0.7);
  box-shadow:
    0 16px 40px rgba(74, 8, 16, 0.45),
    0 0 32px rgba(255, 215, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform .35s, box-shadow .35s;
}
.lp-poster-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.lp-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.lp-poster:hover .lp-poster-frame {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 24px 52px rgba(74, 8, 16, 0.55),
    0 0 48px rgba(255, 215, 0, 0.28);
}
.lp-poster:hover img { transform: scale(1.04); }
.lp-poster--empty .lp-poster-frame {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.35), rgba(255, 235, 180, 0.2));
  border-style: dashed;
  border-color: rgba(139, 15, 24, 0.35);
  box-shadow: 0 8px 24px rgba(61, 35, 20, 0.12);
}
.lp-poster--empty:hover .lp-poster-frame {
  transform: none;
}
.lp-poster-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(61, 35, 20, 0.45);
}
.lp-poster-ph-icon { font-size: 40px; opacity: 0.5; }
.lp-poster-ph-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .lp-stats-posters-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

/* Sections — tema festive */
.lp-wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.lp-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--fest-red) 0%, var(--fest-red-deep) 100%);
}
.lp-section.alt {
  background: linear-gradient(180deg, var(--fest-red-mid) 0%, var(--fest-red) 50%, var(--fest-red-deep) 100%);
  border-top: 1px solid var(--fest-border);
  border-bottom: 1px solid var(--fest-border);
}
.lp-section-head { max-width: 560px; margin-bottom: 48px; }
.lp-section-head .lp-eyebrow {
  margin-bottom: 12px;
  color: var(--fest-gold);
  letter-spacing: .1em;
}
.lp-section-head h2 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 12px;
}
.lp-section-head p { color: var(--fest-muted); font-size: 16px; line-height: 1.65; margin: 0; }

.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-feature {
  background: var(--fest-card);
  border: 1px solid var(--fest-border);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, border-color .25s, box-shadow .25s;
}
.lp-feature.visible { opacity: 1; transform: translateY(0); }
.lp-feature:hover {
  border-color: rgba(252, 211, 77, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(252, 211, 77, 0.06);
}
.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(252, 211, 77, 0.12);
  color: var(--fest-gold);
  border: 1px solid var(--fest-border);
}
.lp-feature-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-feature h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; color: #fff; }
.lp-feature p { font-size: 14px; line-height: 1.6; color: var(--fest-muted); margin: 0; }

/* Galeri imej — seksyen #kelebihan */
.lp-gallery-block {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--fest-border);
}
.lp-section-benefits .lp-gallery-block {
  margin-top: 44px;
}
.lp-gallery-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
}
.lp-gallery-head .lp-eyebrow { margin-bottom: 10px; }
.lp-gallery-head h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.lp-gallery-head p {
  font-size: 15px;
  color: var(--fest-muted);
  line-height: 1.65;
  margin: 0;
}
.lp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
}
.lp-gallery-item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--fest-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  grid-row: span 1;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.lp-gallery-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}
.lp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.lp-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(74, 8, 16, 0.75) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.lp-gallery-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #5c1a0a;
  background: var(--fest-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transform: scale(0.85);
  transition: transform .3s;
}
.lp-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 211, 77, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 215, 0, 0.12);
}
.lp-gallery-item:hover img { transform: scale(1.06); }
.lp-gallery-item:hover .lp-gallery-overlay { opacity: 1; }
.lp-gallery-item:hover .lp-gallery-zoom { transform: scale(1); }

/* Lightbox galeri */
.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 4, 8, 0.92);
  padding: 48px 56px;
}
.lp-lightbox[hidden] { display: none !important; }
.lp-lightbox.is-open { display: flex; }
.lp-lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}
.lp-lightbox-close,
.lp-lightbox-prev,
.lp-lightbox-next {
  position: absolute;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.lp-lightbox-close:hover,
.lp-lightbox-prev:hover,
.lp-lightbox-next:hover {
  background: rgba(255, 215, 0, 0.25);
  transform: scale(1.05);
}
.lp-lightbox-close { top: 20px; right: 20px; font-size: 32px; }
.lp-lightbox-prev { left: 16px; top: 50%; margin-top: -24px; }
.lp-lightbox-next { right: 16px; top: 50%; margin-top: -24px; }

@media (max-width: 960px) {
  .lp-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .lp-gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 640px) {
  .lp-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
    gap: 10px;
  }
  .lp-gallery-item--wide { grid-column: span 2; }
  .lp-lightbox { padding: 40px 12px; }
  .lp-lightbox-prev { left: 8px; }
  .lp-lightbox-next { right: 8px; }
}

/* Cara Kerja — timeline cabutan bertuah */
.lp-section-cara {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--fest-red-mid) 0%, var(--fest-red-deep) 100%);
}
.lp-cara-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.03'/%3E%3C/svg%3E");
}
.lp-cara-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 90%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.14) 0%, transparent 60%);
  animation: cara-glow-pulse 5s ease-in-out infinite;
}
@keyframes cara-glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.lp-cara-sparkles i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 10px #ffd700;
  animation: cara-sparkle 3s ease-in-out infinite;
}
.lp-cara-sparkles i:nth-child(1) { top: 8%; left: 6%; }
.lp-cara-sparkles i:nth-child(2) { top: 18%; right: 10%; width: 7px; height: 7px; animation-delay: -.4s; }
.lp-cara-sparkles i:nth-child(3) { top: 45%; left: 12%; animation-delay: -.8s; }
.lp-cara-sparkles i:nth-child(4) { bottom: 15%; right: 8%; animation-delay: -1.2s; }
.lp-cara-sparkles i:nth-child(5) { top: 35%; left: 50%; animation-delay: -1.6s; }
.lp-cara-sparkles i:nth-child(6) { bottom: 25%; left: 4%; animation-delay: -2s; }
@keyframes cara-sparkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.4); }
}

.lp-section-cara .lp-wrap { position: relative; z-index: 1; }
.lp-cara-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  animation: fade-in .7s ease both;
}
.lp-cara-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.lp-cara-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--fest-gold), transparent);
  border-radius: 2px;
}
.lp-cara-sub { max-width: 480px; margin: 0 auto; }

/* Timeline grid */
.lp-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 8px;
}
.lp-step {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
}
.lp-steps.is-live .lp-step:nth-child(1) { transition-delay: 0.12s; }
.lp-steps.is-live .lp-step:nth-child(2) { transition-delay: 0.28s; }
.lp-steps.is-live .lp-step:nth-child(3) { transition-delay: 0.44s; }
.lp-steps.is-live .lp-step:nth-child(4) { transition-delay: 0.6s; }
.lp-step.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 769px) {
  .lp-step:nth-child(1) { margin-top: 0; }
  .lp-step:nth-child(2) { margin-top: 14px; }
  .lp-step:nth-child(3) { margin-top: 0; }
  .lp-step:nth-child(4) { margin-top: 14px; }
}

@media (min-width: 769px) {
  .lp-step:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 215, 0, 0.45);
    z-index: 3;
    pointer-events: none;
  }
}

/* Kad langkah */
.lp-step-card {
  position: relative;
  height: 100%;
  padding: 28px 20px 22px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(90, 24, 154, 0.35) 0%, rgba(45, 8, 12, 0.92) 45%, rgba(30, 5, 8, 0.98) 100%);
  border: 1px solid var(--fest-border);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .3s;
}
.lp-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7b2cbf, var(--fest-gold), #7b2cbf);
  background-size: 200% 100%;
  animation: card-shimmer 4s linear infinite;
}
@keyframes card-shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.lp-step:hover .lp-step-card {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255, 215, 0, 0.55);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(255, 215, 0, 0.15);
}
.lp-step-final .lp-step-card {
  border: 2px solid rgba(255, 215, 0, 0.65);
  background: linear-gradient(165deg, rgba(123, 44, 191, 0.45) 0%, rgba(60, 10, 16, 0.95) 50%, rgba(30, 5, 8, 1) 100%);
}
.lp-step-final .lp-step-card::before {
  height: 5px;
  background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
  background-size: 200% 100%;
}

.lp-step-num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 800;
  color: #5c1a0a;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe566, #ffd700, #daa520);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.lp-step-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5c1a0a;
  background: linear-gradient(180deg, #ffe566, #f59e0b);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  animation: ribbon-pulse 2s ease-in-out infinite;
}
@keyframes ribbon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.lp-step-icon-wrap {
  width: 76px;
  height: 76px;
  margin: 8px auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, rgba(123, 44, 191, 0.2) 50%, transparent 70%);
  border: 2px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.12);
}
.lp-step-thumb {
  margin: 8px auto 18px;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.25);
}
.lp-step-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-step.visible .lp-step-icon-wrap {
  animation: icon-wrap-glow 3s ease-in-out infinite;
}
@keyframes icon-wrap-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
  50% { box-shadow: 0 0 36px rgba(255, 215, 0, 0.28); }
}
.lp-step-ic {
  font-size: 36px;
  line-height: 1;
  display: block;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity .45s ease .15s, transform .55s cubic-bezier(.34, 1.56, .64, 1);
}
.lp-step.visible .lp-step-ic {
  opacity: 1;
  transform: scale(1);
}
.lp-step-final.visible .lp-step-ic {
  animation: step-trophy-shine 2.2s ease-in-out infinite;
}
@keyframes step-trophy-shine {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.25) drop-shadow(0 0 14px rgba(255, 215, 0, 0.7)); transform: scale(1.12); }
}

.lp-step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.lp-step-card p {
  font-size: 13px;
  color: var(--fest-muted);
  line-height: 1.65;
  margin: 0 0 16px;
  min-height: 42px;
}
.lp-step-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fest-gold);
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 999px;
}

/* CTA */
.lp-cta-wrap {
  padding: 64px 32px 88px;
  max-width: 1140px;
  margin: 0 auto;
  background: var(--fest-red-deep);
}
.lp-cta {
  padding: 56px 48px;
  border-radius: var(--lp-radius);
  background: linear-gradient(135deg, var(--fest-red-bright) 0%, var(--fest-red-mid) 45%, var(--fest-red-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border: 2px solid var(--fest-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255, 230, 120, 0.12), transparent);
  animation: cta-shine 5s ease-in-out infinite;
}
@keyframes cta-shine {
  0%, 100% { transform: translateX(-30%) rotate(12deg); opacity: 0.5; }
  50% { transform: translateX(80%) rotate(12deg); opacity: 1; }
}
.lp-cta > * { position: relative; z-index: 1; }
.lp-cta h2 { font-size: 24px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.02em; color: #fff; }
.lp-cta p { font-size: 15px; color: var(--fest-muted); margin: 0; max-width: 480px; line-height: 1.6; }

.lp-footer {
  padding: 36px 32px 48px;
  text-align: center;
  color: var(--fest-muted);
  font-size: 13px;
  border-top: 1px solid var(--fest-border);
  background: #2d0509;
}
.lp-footer a { color: var(--fest-gold); text-decoration: none; font-weight: 500; }
.lp-footer a:hover { text-decoration: underline; color: #fff; }

/* —— Halaman promosi baharu —— */
.lp-section-head-center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.lp-trust-panel {
  margin: 0;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(252, 211, 77, 0.04) 100%);
  border: 1px solid rgba(252, 211, 77, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.22);
  animation: fade-in .65s .26s ease both;
}

.lp-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lp-trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 10px 8px 8px;
  border-radius: 12px;
  background: rgba(45, 6, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  animation: lp-trust-chip-in 0.55s ease both;
  animation-delay: calc(0.06s * var(--i, 0) + 0.35s);
}

.lp-trust-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #4a0810;
  background: linear-gradient(145deg, #fff7cc 0%, #fcd34d 45%, #d97706 100%);
  box-shadow:
    0 2px 10px rgba(252, 211, 77, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.lp-trust-list li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.lp-trust-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 211, 77, 0.45);
  background: rgba(60, 10, 16, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 18px rgba(252, 211, 77, 0.1);
}

.lp-trust-list li:hover::after {
  transform: translateX(120%);
}

.lp-trust-chip-text {
  position: relative;
  z-index: 1;
}

@keyframes lp-trust-chip-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  max-width: 760px;
}
.lp-section-head-center + .lp-checklist,
.lp-solution-intro + .lp-checklist { margin: 0 auto; }
.lp-checklist li {
  padding: 14px 18px 14px 44px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
  border: 1px solid var(--fest-border);
  background: var(--fest-card);
  color: #fff;
}
.lp-checklist--bad li::before { content: "❌"; position: absolute; left: 16px; top: 14px; }
.lp-checklist--good li::before { content: "✔"; position: absolute; left: 16px; top: 14px; color: var(--fest-gold); font-weight: 700; }

.lp-problems-posters {
  margin-top: 40px;
  padding-top: 36px;
  border-top-color: rgba(255, 215, 0, 0.22);
}
.lp-section-problems .lp-poster--empty .lp-poster-frame {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 235, 180, 0.08));
  border-color: rgba(255, 215, 0, 0.35);
}
.lp-section-problems .lp-poster-placeholder {
  color: rgba(255, 248, 220, 0.55);
}

.lp-solution-intro {
  font-size: 16px;
  font-weight: 600;
  color: var(--fest-gold);
  margin: 0 0 16px;
  max-width: 760px;
}

.lp-feature-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-feature-group {
  background: var(--fest-card);
  border: 1px solid var(--fest-border);
  border-radius: var(--lp-radius);
  padding: 24px 22px;
}
.lp-feature-group h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fest-gold);
  margin: 0 0 14px;
}
.lp-feature-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.lp-feature-group li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fest-muted);
  padding-left: 18px;
  position: relative;
}
.lp-feature-group li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--fest-gold);
  font-weight: 700;
}

.lp-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp-benefit {
  background: var(--fest-card);
  border: 1px solid var(--fest-border);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
}
.lp-benefit h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.lp-benefit p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fest-muted);
  margin: 0;
}

.lp-audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-audience-list li {
  padding: 14px 16px 14px 40px;
  border-radius: 12px;
  background: var(--fest-card);
  border: 1px solid var(--fest-border);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.lp-audience-list li::before {
  content: "✅";
  position: absolute;
  left: 14px;
  top: 13px;
  font-size: 13px;
}

.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp-testimonial {
  margin: 0;
  padding: 28px 26px;
  border-radius: var(--lp-radius);
  background: var(--fest-card);
  border: 1px solid var(--fest-border);
}
.lp-testimonial p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin: 0 0 16px;
  font-style: italic;
}
.lp-testimonial footer {
  font-size: 14px;
  font-weight: 600;
  color: var(--fest-gold);
}

.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Modal permohonan demo */
.lp-modal-bg {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(45, 5, 9, 0.72);
  backdrop-filter: blur(4px);
}
.lp-modal-bg[hidden] { display: none !important; }
.lp-modal {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, #4a0810 0%, #2d0509 100%);
  border: 1px solid var(--fest-border);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  color: #fff;
  overflow: hidden;
}
.lp-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--fest-border);
}
.lp-modal-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--fest-gold);
}
.lp-modal-close {
  background: none;
  border: none;
  color: var(--fest-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.lp-modal-close:hover { color: #fff; }
.lp-modal-body { padding: 20px; }
.lp-modal-lead {
  font-size: 14px;
  color: var(--fest-muted);
  margin: 0 0 18px;
  line-height: 1.6;
}
.lp-field { margin-bottom: 16px; }
.lp-field label,
.lp-field legend {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.lp-field legend { margin-bottom: 10px; }
.lp-input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--fest-border);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.lp-input:focus {
  outline: none;
  border-color: var(--fest-gold);
  box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.15);
}
.lp-radio-row { display: flex; gap: 16px; flex-wrap: wrap; }
.lp-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fest-muted);
  cursor: pointer;
}
.lp-radio input { accent-color: var(--fest-gold); }
.lp-modal-foot {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 8px;
}
.lp-modal-alert {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  background: rgba(252, 211, 77, 0.12);
  border: 1px solid rgba(252, 211, 77, 0.35);
  color: #fde68a;
}
.lp-modal-alert.is-error {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fecaca;
}
.lp-modal-success { text-align: center; padding: 28px 20px 24px; }
.lp-modal-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #166534;
  background: #bbf7d0;
}
.lp-modal-success h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #fff;
}
.lp-modal-success p {
  margin: 0 0 20px;
  color: var(--fest-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .lp-step::after { display: none !important; }
  .lp-hero-festive { padding: 96px 20px 40px; }
  .lp-hero-festive .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .lp-hero-festive .lp-hero-visual { order: -1; }
  .lp-hero-festive .lp-hero-copy { order: 0; }
  .lp-hero-festive .lp-hero-lead { max-width: none; margin-left: auto; margin-right: auto; margin-bottom: 14px; }
  .lp-hero-festive .lp-hero-cta { justify-content: center; margin-bottom: 14px; }
  .lp-hero-festive .lp-trust { justify-content: center; }
  .lp-trust-panel { max-width: 520px; margin-left: auto; margin-right: auto; }
  .lp-trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-prize-stage { min-height: 0; }
  .lp-marquee-glow { left: 50%; width: 360px; height: 360px; }
  .lp-marquee-visual { max-width: min(360px, 88vw); }
  .lp-marquee-img { max-height: min(300px, 44vh); }
  .lp-grand-title { font-size: clamp(18px, 4vw, 24px); }
  .lp-hero-lead { max-width: none; }
  .lp-features { grid-template-columns: 1fr 1fr; }
  .lp-feature-groups { grid-template-columns: 1fr 1fr; }
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-audience-list { grid-template-columns: 1fr 1fr; }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; }
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-cta { flex-direction: column; text-align: center; }
  .lp-cta p { margin: 0 auto; }
}
@media (max-width: 640px) {
  .lp-nav { padding: 14px 20px; }
  .lp-nav-links a:not(.lp-btn-primary):not(.lp-btn-ghost) { display: none; }
  .lp-wrap, .lp-hero, .lp-stats-wrap, .lp-cta-wrap { padding-left: 20px; padding-right: 20px; }
  .lp-hero-festive { padding: 88px 16px 32px; }
  .lp-trust-list { grid-template-columns: 1fr; gap: 6px; }
  .lp-trust-list li { min-height: 38px; font-size: 12px; }
  .lp-features, .lp-steps, .lp-stats, .lp-feature-groups, .lp-audience-list { grid-template-columns: 1fr; }
  .lp-step, .lp-stat { margin-top: 0 !important; }
  .lp-step-card { padding: 24px 18px 20px; }
  .lp-step-card p { min-height: 0; }
  .lp-trust { flex-direction: column; gap: 10px; }
  .lp-marquee-visual { max-width: min(320px, 92vw); }
  .lp-marquee-img { max-height: min(260px, 40vh); }
  .lp-spotlight { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero h1, .lp-hero-lead, .lp-hero-cta, .lp-eyebrow, .lp-trust, .lp-hero-visual { animation: none; }
  .lp-spotlight, .lp-marquee-glow, .lp-prize, .lp-prize-glow, .lp-prize-1 .lp-prize-ic,
  .lp-marquee-visual, .lp-marquee-img, .lp-grand-title, .lp-confetti i, .lp-cta::before,
  .lp-stats-head::before, .lp-stats-eyebrow, .lp-stats-posters-head::before, .lp-posters-head-sweep::after,
  .lp-posters-spark, .lp-posters-eyebrow::after, .lp-posters-title-text, .lp-posters-head-line,
  .lp-stats-rays, .lp-stats-spotlight, .lp-stats-bokeh i, .lp-stats-sparkles i,
  .lp-stats-confetti i, .lp-stat-card::before, .lp-stat-icon-wrap, .lp-stat .num,
  .lp-cara-glow, .lp-cara-sparkles i, .lp-step-ic,
  .lp-step-card::before, .lp-step-icon-wrap, .lp-step-ribbon { animation: none; }
  .lp-step, .lp-stat { opacity: 1; transform: none; }
  .lp-posters-title-text {
    animation: none;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    color: #3d2314;
    filter: none;
  }
}
