/* Landing Paquete Ecommerce - Oro Colombia
   Node Figma: 24:302
*/

/* ==== Animations (shared with all landings) ==== */
@keyframes lpReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lpHeroIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); }
  50%      { box-shadow: 0 0 0 14px rgba(0, 0, 0, 0); }
}
@keyframes lpGoldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 227, 138, 0.55); }
  50%      { box-shadow: 0 0 0 16px rgba(247, 227, 138, 0); }
}
@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.lp-reveal.is-revealed { opacity: 1; transform: translateY(0); }
.lp-reveal-delay-1 { transition-delay: 0.1s; }
.lp-reveal-delay-2 { transition-delay: 0.2s; }
.lp-reveal-delay-3 { transition-delay: 0.3s; }
.lp-reveal-delay-4 { transition-delay: 0.4s; }

.lp-hero-in { animation: lpHeroIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.lp-pulse { animation: lpPulse 2.6s ease-in-out infinite; }
.lp-gold-pulse { animation: lpGoldPulse 2.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .lp-reveal, .lp-hero-in { opacity: 1 !important; transform: none !important; animation: none !important; }
  .lp-pulse, .lp-gold-pulse { animation: none !important; }
}

/* ==== Toast notifications ==== */
.lp-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}

@keyframes lpToastIn {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes lpToastOut {
  to { opacity: 0; transform: translateX(40px) scale(0.96); }
}
@keyframes lpToastCheck {
  from { stroke-dashoffset: 24; }
  to   { stroke-dashoffset: 0; }
}

.lp-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0a7d2c 0%, #0d9c38 100%);
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255,255,255,0.06) inset;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
  pointer-events: auto;
  animation: lpToastIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  min-width: 280px;
  max-width: 380px;
}

.lp-toast.is-error {
  background: linear-gradient(135deg, #b80012 0%, #d6112a 100%);
}

.lp-toast.is-leaving { animation: lpToastOut 0.32s ease both; }

.lp-toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-toast-icon svg { width: 14px; height: 14px; display: block; }
.lp-toast-icon path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: lpToastCheck 0.45s 0.12s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.lp-toast-msg { flex: 1; min-width: 0; }

.lp-toast-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  border-radius: 6px;
  transition: background 140ms ease, color 140ms ease;
}
.lp-toast-close:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

@media (max-width: 480px) {
  .lp-toast-container { bottom: 16px; right: 16px; left: 16px; }
  .lp-toast { min-width: 0; max-width: 100%; font-size: 14px; padding: 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-toast, .lp-toast.is-leaving { animation: none !important; }
  .lp-toast-icon path { animation: none !important; stroke-dashoffset: 0 !important; }
}

.lpe-root,
.lpe-root * { box-sizing: border-box; }

.lpe-root {
  position: relative;
  width: 100%;
  background: #070707;
  color: #ffffff;
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

.lpe-root strong { font-weight: 700; }
.lpe-root em { font-style: italic; }

/* ============ HERO ============ */
.lpe-hero {
  position: relative;
  width: 100%;
  min-height: 852px;
  padding: 80px 24px 100px;
  /* No overflow:hidden — the decorative coin must spill into the next section */
  overflow: visible;
}

.lpe-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* The dotted grain pattern lives in bg-texture.jpg now (real Figma asset).
   Keep the CSS hook in case we want to layer more texture later. */

.lpe-bg-texture {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1440px;
  height: 852px;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  opacity: 0.86;
}

.lpe-bg-gold {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 60%, rgba(247, 158, 50, 0.55), transparent 65%),
    radial-gradient(ellipse 55% 45% at 30% 30%, rgba(247, 227, 138, 0.22), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.lpe-bg-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 70% at 50% 110%, rgba(167, 95, 30, 0.45), transparent 65%),
    linear-gradient(178deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.20) 50%, transparent 100%);
}

/* Coin sits in the hero but must spill into the next section without being
   clipped by it. z-index 50 + the next section using `isolation: isolate`
   keeps it visually above the dark backgrounds below. */
.lpe-coin-right {
  position: absolute;
  bottom: -240px;
  right: -60px;
  width: 420px;
  height: auto;
  transform: rotate(-87deg) scaleY(-1);
  opacity: 1;
  pointer-events: none;
  z-index: 50;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

/* The hero-bg overflow:hidden would clip the coin — but the coin is a
   sibling of .lpe-hero-bg (lives inside .lpe-hero, which is now overflow:visible).
   We still need to make sure the bg layers don't cover the coin: */
.lpe-hero { z-index: 2; }

.lpe-pattern {
  position: absolute;
  top: 616px;
  left: 0;
  width: 253px;
  pointer-events: none;
  opacity: 0.4;
}

.lpe-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.lpe-h1 {
  margin: 0 auto;
  max-width: 750px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.14;
  letter-spacing: -0.44px;
  color: #fff;
}

.lpe-hero-desc {
  margin: 24px auto 0;
  max-width: 566px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: #d7d7d7;
  opacity: 0.9;
}

.lpe-hero-desc strong { color: #fff; }

.lpe-video {
  margin: 32px auto 0;
  width: 100%;
  max-width: 878px;
  aspect-ratio: 878 / 456;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
}

.lpe-video-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% 18%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}

.lpe-video-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
}

.lpe-video-cover:hover { transform: scale(1.01); }

.lpe-play-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 18, 28, 0.74);
  border: none;
  padding: 14px;
  border-radius: 1000px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  transition: transform 160ms ease, background 160ms ease;
}

.lpe-play-btn:hover { background: rgba(17, 18, 28, 0.95); transform: scale(1.06); }
.lpe-play-btn img { width: 36px; height: 36px; }

.lpe-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.lpe-hero-stats {
  margin: 28px auto 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  opacity: 0.9;
}

.lpe-sellos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  margin: 0 auto 28px;
}

.lpe-sellos img { height: 22px; width: auto; }

.lpe-hero-content .lpe-cta-white { margin-top: 8px; }

/* ============ BUTTONS ============ */
.lpe-cta-white,
.lpe-cta-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform 160ms ease, box-shadow 200ms ease, filter 160ms ease;
}

.lpe-root .lpe-cta-white {
  padding: 14px 40px !important;
  background: #ffffff !important;
  color: #1e1e1e !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: 0.16px;
  border-radius: 30px !important;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.36) !important;
  text-transform: uppercase !important;
}

.lpe-root .lpe-cta-white:hover {
  background: #fff !important;
  color: #1e1e1e !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.5) !important;
}

.lpe-root .lpe-cta-blue {
  padding: 20px 43px !important;
  background: linear-gradient(-6.7deg, #304ca8 8.47%, #5b7ce8 48.78%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  letter-spacing: -0.18px;
  border: 2px solid #cacaca !important;
  border-radius: 30px !important;
  gap: 16px !important;
  text-transform: uppercase !important;
}

.lpe-root .lpe-cta-blue:hover {
  filter: brightness(1.08);
  color: #fff !important;
  transform: translateY(-2px);
}

.lpe-root .lpe-cta-blue {
  animation: lpGoldPulse 3s ease-in-out infinite;
}

.lpe-pricing-card .lpe-cta-blue {
  animation: lpGoldPulse 2.4s ease-in-out infinite;
}

.lpe-root .lpe-cta-blue img { width: 18px; height: 14px; flex-shrink: 0; }

/* ============ PROBLEMS ============ */
.lpe-problems {
  position: relative;
  padding: 80px 0 60px;
  background: #070707;
  z-index: 1; /* coin from hero (z-index 50) sits visually above this */
}

.lpe-problems .lpe-h2 { padding: 0 24px; }

.lpe-h2 {
  margin: 0 auto;
  max-width: 700px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.14;
  letter-spacing: -0.52px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 70px rgba(255, 255, 255, 0.26);
}

.lpe-problems-grid {
  margin: 32px 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
}

.lpe-problem-card {
  position: relative;
  background: #0a0a0a;
  padding: 48px 40px 52px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-height: 280px;
  border-top-right-radius: 24px;
  /* Top + right edges with subtle gradient outline that fades downward */
  border-top: 1.5px solid rgba(255, 255, 255, 0.22);
  border-right: 1.5px solid rgba(255, 255, 255, 0.10);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 65%);
}

.lpe-problem-card:last-child { border-right: none; }

/* Subtle right-edge fade so the divider feels like a sheen, not a hard line */
.lpe-problem-card::after {
  content: '';
  position: absolute;
  right: -1.5px;
  top: 24px;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
  pointer-events: none;
}

.lpe-problem-card:last-child::after { display: none; }

.lpe-step-1 { margin-top: 56px; }
.lpe-step-2 { margin-top: 112px; }
.lpe-step-3 { margin-top: 168px; }

.lpe-step-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(153, 153, 153, 0.13));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1.28px;
}

.lpe-problem-card p {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.82);
}

/* ============ SOLUTION ============ */
.lpe-solution {
  position: relative;
  padding: 100px 24px 80px;
  text-align: center;
  overflow: visible;
  z-index: 1;
}

/* Joyería 3D flotante a la izquierda (Figma node 99:167), sobresaliendo
   más allá del borde izquierdo del viewport */
.lpe-coin-left {
  position: absolute;
  top: 120px;
  left: -240px;
  width: 520px;
  height: auto;
  transform: rotate(20deg);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.55));
}

@media (max-width: 1200px) {
  .lpe-coin-left { width: 380px; left: -200px; top: 160px; }
}
@media (max-width: 768px) {
  .lpe-coin-left { display: none; }
}

.lpe-eyebrow {
  display: block;
  margin: 32px auto 24px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #d7d7d7;
  text-align: center;
}

/* One-line horizontal scrolling ticker matching the Figma marquee */
.lpe-flow-wrap {
  margin: 24px -24px 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.lpe-flow {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  white-space: nowrap;
  animation: lpFlowScroll 32s linear infinite;
}

.lpe-flow span:not(.lpe-flow-dot) {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.32;
  letter-spacing: -0.6px;
  background: linear-gradient(98deg, #fff 10%, rgba(153, 153, 153, 0.2) 107%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.lpe-flow-dot {
  background: #005d4b;
  border: 1.4px solid #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lpe-flow-dot img { width: 22px; height: 22px; }

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

@media (prefers-reduced-motion: reduce) {
  .lpe-flow { animation: none; }
}

.lpe-flow-card {
  margin: 60px auto 0;
  max-width: 1292px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 48px 32px 56px;
  text-align: center;
}

.lpe-flow-eyebrow {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  opacity: 0.8;
  letter-spacing: -0.2px;
}

.lpe-flow-main {
  margin: 12px auto 32px;
  max-width: 1082px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.38px;
}

.lpe-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.lpe-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  color: #f2f2f2;
}

.lpe-chip img { width: 20px; height: 20px; }
.lpe-chip strong { font-weight: 600; }
.lpe-chip-emoji { font-size: 20px; line-height: 1; }

/* ============ BENEFITS GRID ============ */
.lpe-benefits {
  position: relative;
  padding: 80px 24px 200px;
}

.lpe-benefits-grid {
  margin: 60px auto 0;
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.lpe-benefit {
  background: #111;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 280ms ease,
              border-color 280ms ease;
}

.lpe-benefit:hover {
  transform: translateY(-6px);
  border-top-color: rgba(247, 227, 138, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.lpe-benefit-img {
  transition: transform 320ms ease;
}

.lpe-benefit:hover .lpe-benefit-img {
  transform: scale(1.02);
}

.lpe-benefit-img {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: #222;
  overflow: hidden;
}

.lpe-benefit h3 {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.56px;
  background: linear-gradient(174deg, rgba(255, 255, 255, 0.86) 35%, rgba(153, 153, 153, 0.43) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lpe-benefit > p {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  color: #cacaca;
  opacity: 0.85;
}

.lpe-benefit-value {
  margin: 4px 0 0 !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.48px !important;
  opacity: 1 !important;
}

.lpe-gold {
  background: linear-gradient(148deg, #fff7d3 1.94%, #f7e38a 45.62%, #f1d56e 75.56%, #be9b49 96.89%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.lpe-benefit-included {
  margin: 0 !important;
  font-size: 16px !important;
  color: #fff !important;
  letter-spacing: -0.32px;
  opacity: 1 !important;
}

.lpe-mobile-render {
  margin: 80px auto 0;
  max-width: 706px;
}

.lpe-mobile-render img { width: 100%; height: auto; display: block; }

/* ============ PRICING ============ */
.lpe-pricing {
  position: relative;
  padding: 0 24px 100px;
}

.lpe-pricing-wrap {
  position: relative;
  max-width: 1232px;
  margin: 0 auto;
}

/* Stack-of-books — flujo normal, centrado, entre las cards y el pricing card.
   Vive dentro de .lpe-pricing-wrap como hermano antes de .lpe-pricing-card. */
.lpe-pricing-decor-wrap {
  position: relative;
  width: 100%;
  max-width: 612px;
  margin: 0 auto -40px;
  pointer-events: none;
  z-index: 2;
}

.lpe-pricing-decor {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6))
    drop-shadow(0 50px 70px rgba(0, 0, 0, 0.7));
}

@media (max-width: 768px) {
  .lpe-pricing-decor-wrap { max-width: 380px; margin-bottom: -20px; }
}

/* ============ AFTER-REGISTER SECTION ============ */
.lpe-after-register {
  position: relative;
  width: 100%;
  background: #070707;
}

.lpe-after-register img {
  display: block;
  width: 100%;
  height: auto;
}

.lpe-pricing-card {
  margin: 0 auto;
  max-width: 1232px;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(255, 255, 255, 1), rgba(240, 240, 240, 1) 80%),
    linear-gradient(138deg, #ffffff 55%, #d8d8d8 145%);
  border-radius: 28px;
  border: 8px solid #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  color: #1f1f1f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lpe-pricing-left { padding: 64px 56px; }

.lpe-pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lpe-pricing-list li {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.82);
  text-transform: uppercase;
}

.lpe-pricing-list s {
  color: rgba(195, 28, 28, 0.82);
  text-decoration: line-through;
  font-weight: 600;
}

.lpe-green { color: #30ad3c; font-weight: 600; }

.lpe-pricing-total {
  margin: 32px 0 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #2d2d2d;
  text-align: center;
}

.lpe-pricing-total em {
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
}

.lpe-pricing-right {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.lpe-pricing-eyebrow {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  color: #2d2d2d;
  max-width: 280px;
}

.lpe-pricing-eyebrow em { font-style: italic; font-weight: 700; text-decoration: underline; }

.lpe-pricing-price {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -3px;
  color: #1f1f1f;
  text-transform: uppercase;
}

.lpe-pricing-price span { font-size: 30px; vertical-align: top; margin-left: 6px; }

.lpe-pricing-click {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  color: #2d2d2d;
}

.lpe-pricing-sellos {
  display: inline-flex;
  gap: 16px;
  margin: 4px 0;
}

.lpe-pricing-sellos img { height: 22px; filter: grayscale(1) brightness(0.4); }

.lpe-pricing-countdown-label {
  margin: 8px 0 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2d2d2d;
}

.lpe-pricing-countdown {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 1.2px;
  color: #e41616;
}

/* ============ COMPARE ============ */
.lpe-compare {
  position: relative;
  padding: 80px 24px 0;
}

.lpe-compare-grid {
  margin: 60px auto 0;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 0;
}

.lpe-compare-col {
  background: #151414;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 64px 56px 360px;
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

/* Real Mac mockups injected via PHP as <img class="lpe-compare-mac"> */
.lpe-compare-mac {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  max-width: 700px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.lpe-compare-bad .lpe-compare-mac { width: 100%; max-width: 600px; }

.lpe-compare-bad { border-top-right-radius: 46px; padding-top: 90px; }
.lpe-compare-good {
  border-top-left-radius: 46px;
  box-shadow: -20px 4px 250px rgba(0, 0, 0, 0.46);
}

.lpe-compare-col h3 {
  margin: 0 0 40px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.7px;
  background: linear-gradient(180deg, #fff 59%, rgba(153, 153, 153, 0.2) 148%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lpe-compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.lpe-compare-col li {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.82);
}

/* ============ GOLD BANNER ============ */
.lpe-gold-banner {
  background:
    linear-gradient(90deg, #f7e38a 0%, #f1d46c 35%, #d6b35a 70%, #be9b49 100%);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #000;
  box-shadow: 0 8px 24px rgba(190, 155, 73, 0.25);
}

.lpe-gold-banner p {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: #000;
  opacity: 0.92;
}

.lpe-gold-banner strong { font-weight: 700; }

.lpe-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.36px;
  text-decoration: underline;
}

.lpe-banner-link img { width: 24px; height: 24px; }

/* ============ TESTIMONIALS ============ */
.lpe-testimonials {
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
}

.lpe-testi-sub {
  margin: 24px auto 60px;
  max-width: 600px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #d7d7d7;
}

.lpe-testi-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.lpe-testi-card {
  background:
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(247, 227, 138, 0.16), transparent 70%),
    linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: -2px 0 36px rgba(0, 0, 0, 0.6);
  padding: 32px 28px 28px;
  text-align: left;
  color: #fff;
}

.lpe-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7e38a, #be9b49);
  color: #181717;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(190, 155, 73, 0.35);
}

.lpe-testi-avatar-main {
  width: 60px;
  height: 60px;
  font-size: 22px;
}

.lpe-testi-quote {
  margin: 0 0 16px;
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.lpe-testi-name {
  margin: 0 0 4px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.lpe-testi-role {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.2px;
}

.lpe-testi-side { width: 348px; height: 460px; opacity: 0.85; }
.lpe-testi-main {
  width: 418px;
  height: 540px;
  box-shadow: 0 0 86px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(247, 227, 138, 0.12);
}
.lpe-testi-main .lpe-testi-quote { font-size: 17px; }
.lpe-testi-main .lpe-testi-name { font-size: 17px; }

.lpe-testimonials .lpe-hero-stats { margin-bottom: 24px; }

/* ============ ALLIES ============ */
.lpe-allies {
  padding: 0 24px 80px;
}

.lpe-allies-card {
  margin: 0 auto;
  max-width: 1249px;
  background: #fff;
  border: 8px solid #fff;
  border-radius: 24px;
  padding: 54px 80px;
  text-align: center;
  box-shadow: 0 0 47px rgba(0, 0, 0, 0.1);
  color: #070707;
}

.lpe-allies-card h2 {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.36px;
  color: #070707;
  opacity: 0.92;
}

.lpe-allies-card > p {
  margin: 12px auto 32px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #070707;
  opacity: 0.55;
  max-width: 720px;
}

.lpe-allies-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.lpe-allies-logos img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(0.1);
}

/* Domina ships with a blue background plate; isolate it so it doesn't read as
   an odd rectangle next to the transparent-bg logos. */
.lpe-allies-logos img[alt="Domina"] {
  height: 44px;
  border-radius: 6px;
  padding: 2px 8px;
  background: #ffffff;
}

@media (max-width: 768px) {
  .lpe-allies-logos img { height: 32px; }
  .lpe-allies-logos img[alt="Domina"] { height: 26px; }
}

/* ============ FAQ ============ */
.lpe-faq {
  background: #fff;
  color: #070707;
  padding: 100px 24px 120px;
}

.lpe-faq-inner {
  margin: 0 auto;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 36px;
}

.lpe-faq-aside h2 {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #000;
}

.lpe-faq-aside p {
  margin: 24px 0 32px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  opacity: 0.6;
  text-transform: capitalize;
}

.lpe-faq-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #1e1e1e;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.14px;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: background 160ms ease;
}

.lpe-faq-contact:hover { background: #000; color: #fff; }

.lpe-faq-list { display: flex; flex-direction: column; }

.lpe-faq-item {
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(58, 58, 58, 0.10);
  border-radius: 0;
  transition: background 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 320ms ease;
  overflow: hidden;
}

.lpe-faq-item[data-open="true"] {
  background: #ffffff;
  border-color: rgba(58, 58, 58, 0.10);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  margin: 4px 0;
}

.lpe-faq-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 28px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.lpe-faq-q {
  flex: 1;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: #070707;
  opacity: 0.9;
  transition: font-weight 200ms ease, opacity 200ms ease;
}

.lpe-faq-item[data-open="true"] .lpe-faq-q {
  font-weight: 700;
  opacity: 1;
}

.lpe-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #070707;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1),
              background 280ms ease;
  background: rgba(58, 58, 58, 0.06);
}

.lpe-faq-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.lpe-faq-item[data-open="true"] .lpe-faq-icon {
  transform: rotate(45deg);
  background: rgba(58, 58, 58, 0.12);
}

.lpe-faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lpe-faq-item[data-open="true"] .lpe-faq-content {
  grid-template-rows: 1fr;
}

.lpe-faq-answer {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(7, 7, 7, 0.7);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 320ms ease 80ms,
              transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1) 80ms,
              padding-bottom 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lpe-faq-item[data-open="true"] .lpe-faq-answer {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 28px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .lpe-h2 { font-size: 38px; }
  .lpe-h1 { font-size: 34px; }
  .lpe-flow span:not(.lpe-flow-dot) { font-size: 36px; }
  .lpe-flow-main { font-size: 24px; }
  .lpe-benefits-grid { gap: 24px; }
  .lpe-pricing-card { grid-template-columns: 1fr; }
  .lpe-pricing-left, .lpe-pricing-right { padding: 40px 32px; }
  .lpe-compare-grid { grid-template-columns: 1fr; }
  .lpe-faq-inner { grid-template-columns: 1fr; }
  .lpe-faq-aside h2 { font-size: 38px; }
}

@media (max-width: 768px) {
  .lpe-hero { padding: 40px 16px 60px; min-height: auto; }
  .lpe-h1 { font-size: 26px; }
  .lpe-hero-desc { font-size: 14px; }
  .lpe-problems-grid { grid-template-columns: 1fr; }
  .lpe-problems-grid .lpe-problem-card { margin-top: 0 !important; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .lpe-problems-grid .lpe-problem-card { min-height: auto; padding: 32px 24px; gap: 24px; }
  .lpe-problem-card p { font-size: 18px; }
  .lpe-h2 { font-size: 28px; }
  .lpe-flow { gap: 12px; }
  .lpe-flow span:not(.lpe-flow-dot) { font-size: 22px; }
  .lpe-flow-dot { width: 36px; height: 36px; }
  .lpe-flow-dot img { width: 18px; height: 18px; }
  .lpe-flow-main { font-size: 18px; }
  .lpe-flow-card { padding: 28px 16px 32px; }
  .lpe-chip { font-size: 14px; padding: 8px 14px; }
  .lpe-benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .lpe-benefit { padding: 24px; }
  .lpe-benefit h3 { font-size: 22px; }
  .lpe-benefit > p { font-size: 15px; }
  .lpe-benefit-value { font-size: 18px !important; }
  .lpe-pricing-price { font-size: 56px; }
  .lpe-compare-col { padding: 32px 24px; min-height: auto; }
  .lpe-compare-col h3 { font-size: 26px; margin-bottom: 24px; }
  .lpe-compare-col li { font-size: 16px; }
  .lpe-gold-banner { padding: 20px 16px; flex-direction: column; }
  .lpe-gold-banner p { font-size: 16px; text-align: center; }
  .lpe-testi-row { flex-direction: column; }
  .lpe-testi-side, .lpe-testi-main { width: 100%; max-width: 360px; height: 360px; }
  .lpe-testi-main { height: 440px; }
  .lpe-allies-card { padding: 32px 20px; }
  .lpe-allies-card h2 { font-size: 24px; }
  .lpe-allies-logos { justify-content: center; }
  .lpe-allies-logos img { height: 28px; }
  .lpe-faq { padding: 60px 16px 80px; }
  .lpe-faq-aside h2 { font-size: 30px; }
  .lpe-faq-item summary > span:first-child { font-size: 17px; }
  .lpe-coin-right { display: none; }
  .lpe-pattern { display: none; }
  .lpe-mobile-render { margin-top: 48px; }
}
