:root {
  --lp-bg: #050816;
  --lp-bg-2: #080d22;
  --lp-surface: #0d132d;
  --lp-surface-2: #111936;
  --lp-card: rgba(18, 25, 56, .78);
  --lp-border: rgba(165, 177, 228, .16);
  --lp-text: #f7f8ff;
  --lp-muted: #aeb9d4;
  --lp-subtle: #7f8aa7;
  --lp-primary: #7b67ff;
  --lp-primary-2: #b46eff;
  --lp-pink: #e06edf;
  --lp-green: #8cedb0;
  --lp-warning: #f8c36a;
  --lp-radius: 22px;
  --lp-radius-lg: 32px;
  --lp-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body.lp-body {
  margin: 0;
  overflow-x: hidden;
  color: var(--lp-text);
  background:
    radial-gradient(circle at 8% 12%, rgba(103, 70, 245, .14), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(196, 77, 226, .08), transparent 20%),
    linear-gradient(180deg, var(--lp-bg), var(--lp-bg-2));
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.lp-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}

img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, .lp-brand-copy strong { font-family: "Manrope", sans-serif; }

.lp-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--lp-primary);
  transform: translateY(-150%);
}
.lp-skip-link:focus { transform: translateY(0); }

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  border-bottom: 1px solid transparent;
  background: rgba(5, 8, 22, .56);
  backdrop-filter: blur(18px);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lp-header.is-scrolled {
  border-color: rgba(255,255,255,.08);
  background: rgba(5, 8, 22, .92);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.lp-header .navbar { min-height: 80px; padding: 12px 0; }
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.lp-brand:hover { color: #fff; }
.lp-brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #6f62ff, #9c5cff);
  box-shadow: 0 14px 34px rgba(105, 78, 255, .36);
  font-size: 25px;
}
.lp-brand-copy { display: flex; flex-direction: column; line-height: 1; }
.lp-brand-copy strong { color: #fff; font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.lp-brand-copy small { margin-top: 6px; color: #b3bdd4; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.lp-nav-links { gap: 4px; }
.lp-nav-links .nav-link {
  padding: 10px 13px !important;
  border-radius: 10px;
  color: #c6cde0;
  font-size: 13px;
  font-weight: 700;
  transition: .18s ease;
}
.lp-nav-links .nav-link:hover,
.lp-nav-links .nav-link:focus { color: #fff; background: rgba(255,255,255,.055); }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; }
.lp-navbar-toggler {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--lp-border);
  border-radius: 13px;
  color: #fff;
  background: rgba(255,255,255,.04);
  box-shadow: none !important;
  font-size: 24px;
}

.lp-btn-primary,
.lp-btn-ghost,
.lp-btn-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.lp-btn-primary {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #6d61ff, #9a61ff 58%, #d16bdc);
  box-shadow: 0 16px 32px rgba(112, 82, 255, .28);
}
.lp-btn-primary:hover,
.lp-btn-primary:focus { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 40px rgba(112, 82, 255, .38); }
.lp-btn-ghost {
  border: 1px solid var(--lp-border);
  color: #e6eaff;
  background: rgba(255,255,255,.035);
}
.lp-btn-ghost:hover,
.lp-btn-ghost:focus { color: #fff; border-color: rgba(157, 133, 255, .48); background: rgba(125, 104, 255, .08); }
.lp-btn-video { border: 0; color: #dce2f5; background: transparent; }
.lp-btn-video:hover { color: #fff; }
.lp-btn-lg { min-height: 54px; padding: 14px 22px; border-radius: 15px; font-size: 15px; }
.lp-play-circle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.07);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 64px;
  background:
    radial-gradient(circle at 20% 30%, rgba(103, 75, 255, .18), transparent 34%),
    radial-gradient(circle at 74% 28%, rgba(112, 62, 241, .16), transparent 25%),
    linear-gradient(180deg, #050816 0%, #070b1c 65%, #080d22 100%);
}
.min-vh-75 { min-height: 75vh; }
.lp-hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .25; pointer-events: none; }
.lp-hero-glow-one { width: 520px; height: 520px; left: -220px; top: 120px; background: #785fff; }
.lp-hero-glow-two { width: 430px; height: 430px; right: -170px; top: 70px; background: #c35ce0; }
.lp-eyebrow,
.lp-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bca6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.lp-eyebrow {
  padding: 9px 13px;
  border: 1px solid rgba(139, 108, 255, .32);
  border-radius: 999px;
  background: rgba(112, 88, 255, .08);
}
.lp-hero-copy h1 {
  max-width: 720px;
  margin: 24px 0 18px;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.055em;
}
.lp-hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #9d87ff, #d37be8 58%, #f097d7);
  background-clip: text;
  -webkit-background-clip: text;
}
.lp-hero-lead {
  max-width: 650px;
  margin: 0;
  color: #c3cce1;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.68;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.lp-hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.lp-hero-proof div { display: inline-flex; align-items: center; gap: 7px; color: #aeb8d1; font-size: 12px; font-weight: 600; }
.lp-hero-proof i { color: var(--lp-green); }

.lp-poster-stage {
  position: relative;
  width: min(100%, 650px);
  min-height: 610px;
  margin-left: auto;
  perspective: 1200px;
}
.lp-stage-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(141, 110, 255, .28);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  box-shadow: 0 0 50px rgba(124, 82, 255, .12), inset 0 0 50px rgba(124, 82, 255, .06);
}
.lp-orbit-one { width: 510px; height: 320px; }
.lp-orbit-two { width: 630px; height: 430px; opacity: .55; transform: translate(-50%, -50%) rotate(18deg); }
.lp-poster {
  position: absolute;
  width: 145px;
  aspect-ratio: .69;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: #11152e;
  box-shadow: 0 26px 55px rgba(0,0,0,.42), 0 0 30px rgba(122, 91, 255, .12);
  transform-style: preserve-3d;
  animation: lpPosterFloat 6.5s ease-in-out infinite;
}
.lp-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-poster::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 68%,rgba(4,6,18,.36)); pointer-events:none; }
.lp-poster-nebula { left: 96px; top: 16px; transform: rotate(-8deg); }
.lp-poster-shadow { left: 258px; top: 2px; width: 155px; transform: rotate(4deg); animation-delay: -.8s; }
.lp-poster-horizon { right: 56px; top: 44px; transform: rotate(10deg); animation-delay: -1.6s; }
.lp-poster-action { left: 58px; top: 238px; width: 138px; transform: rotate(-5deg); animation-delay: -2.4s; }
.lp-poster-live { left: 215px; top: 220px; width: 150px; transform: rotate(2deg); animation-delay: -3.2s; }
.lp-poster-sports { right: 58px; top: 242px; width: 140px; transform: rotate(7deg); animation-delay: -4s; }
.lp-poster-kids { left: 125px; bottom: 8px; width: 143px; transform: rotate(-3deg); animation-delay: -4.8s; }
.lp-poster-nature { right: 116px; bottom: 2px; width: 145px; transform: rotate(7deg); animation-delay: -5.6s; }
@keyframes lpPosterFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
.lp-live-badge,
.lp-credit-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: rgba(12, 17, 42, .9);
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.lp-live-badge { left: 4px; bottom: 122px; }
.lp-live-badge > span { width: 9px; height: 9px; border-radius: 50%; background: var(--lp-green); box-shadow: 0 0 0 6px rgba(140,237,176,.1); }
.lp-live-badge strong,
.lp-credit-badge strong { display: block; color: #fff; font-size: 11px; }
.lp-live-badge small,
.lp-credit-badge small { display: block; margin-top: 2px; color: #98a4c1; font-size: 9px; }
.lp-credit-badge { right: 0; top: 186px; }
.lp-credit-badge > i { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg,#7663ff,#ad61ff); }

.lp-category-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: 21px;
  background: rgba(13, 19, 45, .72);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.lp-category-item {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,.07);
  color: #d9dff0;
  text-align: center;
}
.lp-category-item:last-child { border-right: 0; }
.lp-category-item i { color: #b27dff; font-size: 25px; }
.lp-category-item span { font-size: 12px; font-weight: 700; }

.lp-section { position: relative; padding: 100px 0; }
.lp-section-soft { background: linear-gradient(180deg, rgba(12,17,40,.66), rgba(8,13,34,.35)); }
.lp-section-heading { max-width: 780px; margin: 0 auto 46px; }
.lp-section-heading h2,
.lp-display-title {
  margin: 13px 0 14px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.lp-section-heading p,
.lp-section-copy { color: var(--lp-muted); font-size: 16px; line-height: 1.72; }
.lp-feature-card {
  position: relative;
  padding: 27px 25px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: linear-gradient(180deg, rgba(21,29,63,.82), rgba(12,18,43,.82));
  box-shadow: 0 22px 48px rgba(0,0,0,.16);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lp-feature-card::after { content:""; position:absolute; width:140px; height:140px; right:-70px; top:-80px; border-radius:50%; background:rgba(124,92,255,.14); filter:blur(10px); }
.lp-feature-card:hover { transform: translateY(-6px); border-color: rgba(142,119,255,.4); box-shadow: 0 30px 58px rgba(0,0,0,.25); }
.lp-feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg,#6d61ff,#a55fff);
  box-shadow: 0 14px 28px rgba(107,82,255,.26);
  font-size: 21px;
}
.lp-feature-card h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.lp-feature-card p { margin: 0; color: var(--lp-muted); font-size: 14px; line-height: 1.65; }

.lp-steps { display: grid; gap: 16px; }
.lp-step {
  display: grid;
  grid-template-columns: 54px 58px 1fr;
  gap: 17px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--lp-border);
  border-radius: 19px;
  background: rgba(16,23,52,.64);
  transition: border-color .2s ease, transform .2s ease;
}
.lp-step:hover { transform: translateX(4px); border-color: rgba(139,112,255,.42); }
.lp-step-number { color: #6e7b99; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.lp-step > div { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; color: #b79dff; background: rgba(124,96,255,.1); font-size: 22px; }
.lp-step h3 { margin: 0 0 4px; color: #fff; font-size: 17px; }
.lp-step p { margin: 0; color: var(--lp-muted); font-size: 13px; line-height: 1.55; }

.lp-product-section { overflow: hidden; background: linear-gradient(180deg, rgba(9,14,35,.4), rgba(14,20,48,.66)); }
.lp-dashboard-preview {
  overflow: hidden;
  border: 1px solid rgba(177,188,231,.18);
  border-radius: 24px;
  background: #0c112a;
  box-shadow: 0 38px 90px rgba(0,0,0,.38), 0 0 60px rgba(111,80,255,.08);
  transform: perspective(1400px) rotateY(3deg) rotateX(1deg);
}
.lp-dashboard-windowbar { min-height: 48px; display: grid; grid-template-columns: 100px 1fr 100px; align-items: center; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.07); background: #0a0f25; }
.lp-window-dots { display: flex; gap: 6px; }
.lp-window-dots span { width: 9px; height: 9px; border-radius: 50%; background: #39415b; }
.lp-window-dots span:nth-child(1) { background:#e36f78; }
.lp-window-dots span:nth-child(2) { background:#e7bb69; }
.lp-window-dots span:nth-child(3) { background:#72c88b; }
.lp-window-address { justify-self: center; width: min(100%,290px); padding: 7px 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 9px; color: #78849f; background: rgba(255,255,255,.025); font-size: 10px; text-align: center; }
.lp-window-status { justify-self: end; color: #8190ac; font-size: 9px; }
.lp-window-status i { color: var(--lp-green); font-size: 7px; }
.lp-dashboard-body { min-height: 450px; display: grid; grid-template-columns: 165px 1fr; }
.lp-preview-sidebar { display: flex; flex-direction: column; gap: 8px; padding: 18px 12px; border-right: 1px solid rgba(255,255,255,.06); background: #0a0f25; }
.lp-preview-brand { display: flex; align-items: center; gap: 8px; padding: 0 7px 15px; color: #fff; font-size: 11px; }
.lp-preview-brand span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(135deg,#705fff,#a85fff); }
.lp-preview-sidebar > a { display: flex; align-items: center; gap: 9px; padding: 10px; border-radius: 9px; color: #75819c; font-size: 9px; font-weight: 700; }
.lp-preview-sidebar > a.active { color: #fff; background: rgba(112,92,255,.12); }
.lp-preview-credit { margin-top: auto; padding: 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.025); }
.lp-preview-credit small,.lp-preview-credit span { display: block; color: #75819c; font-size: 8px; }
.lp-preview-credit strong { display: block; margin: 5px 0; color: #fff; font-size: 14px; }
.lp-preview-main { padding: 22px; background: linear-gradient(180deg,#101631,#0c122a); }
.lp-preview-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.lp-preview-heading small { color: #8f7cff; font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.lp-preview-heading h3 { margin: 3px 0 0; color: #fff; font-size: 18px; }
.lp-preview-heading > span { padding: 6px 9px; border-radius: 999px; color: #8fdbad; background: rgba(76,185,117,.1); font-size: 8px; }
.lp-preview-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 16px; }
.lp-preview-stats > div { padding: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 11px; background: rgba(255,255,255,.025); }
.lp-preview-stats small,.lp-preview-stats span { display: block; color: #75819c; font-size: 7px; }
.lp-preview-stats strong { display: block; margin: 5px 0; color: #fff; font-size: 11px; }
.lp-preview-content { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10px; margin-top: 12px; }
.lp-preview-generator,.lp-preview-history { padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.025); }
.lp-preview-generator > small { color:#8f7cff; font-size:7px; font-weight:800; }
.lp-preview-generator h4 { margin:5px 0 12px; color:#fff; font-size:12px; }
.lp-preview-options { display:grid; grid-template-columns:1fr 1fr; gap:7px; }
.lp-preview-options span { display:flex; flex-direction:column; align-items:center; gap:5px; padding:10px 5px; border:1px solid rgba(255,255,255,.07); border-radius:9px; color:#8692ad; font-size:8px; }
.lp-preview-options span.active { color:#fff; border-color:#7765ff; background:rgba(119,101,255,.08); }
.lp-preview-generator button { width:100%; margin-top:9px; padding:9px; border:0; border-radius:8px; color:#fff; background:linear-gradient(90deg,#6d61ff,#a65fff); font-size:8px; font-weight:800; }
.lp-preview-history-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.lp-preview-history-head strong { color:#fff; font-size:10px; }
.lp-preview-history-head span { color:#77849f; font-size:7px; }
.lp-preview-row { display:grid; grid-template-columns:28px 1fr auto; align-items:center; gap:8px; padding:9px 0; border-top:1px solid rgba(255,255,255,.06); }
.lp-row-icon { width:27px; height:27px; display:grid; place-items:center; border-radius:8px; color:#a893ff; background:rgba(119,99,255,.1); font-size:9px; }
.lp-preview-row strong,.lp-preview-row small { display:block; }
.lp-preview-row strong { color:#fff; font-size:8px; }
.lp-preview-row small { margin-top:2px; color:#77849f; font-size:7px; }
.lp-preview-row em { color:#a995ff; font-size:7px; font-style:normal; font-weight:800; }
.lp-check-list { display: grid; gap: 13px; padding: 0; margin: 24px 0 0; list-style: none; }
.lp-check-list li { display: flex; align-items: center; gap: 10px; color: #c9d1e5; font-size: 14px; }
.lp-check-list i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: var(--lp-green); background: rgba(80,188,120,.08); }

.lp-device-section { background: radial-gradient(circle at 50% 60%, rgba(111,83,255,.12), transparent 36%); }
.lp-device-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.lp-device-grid article { padding: 26px 20px; border: 1px solid var(--lp-border); border-radius: 20px; background: rgba(14,20,47,.66); text-align: center; }
.lp-device-grid i { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 17px; border-radius: 18px; color: #b18cff; background: rgba(128,99,255,.09); font-size: 25px; }
.lp-device-grid h3 { color: #fff; font-size: 17px; }
.lp-device-grid p { margin: 7px 0 0; color: var(--lp-muted); font-size: 13px; line-height: 1.55; }

.lp-plan-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(160,139,255,.28);
  border-radius: var(--lp-radius-lg);
  background:
    radial-gradient(circle at 12% 20%, rgba(116,91,255,.2), transparent 34%),
    linear-gradient(135deg, rgba(20,27,61,.98), rgba(11,16,39,.98));
  box-shadow: var(--lp-shadow);
}
.lp-plan-shell::after { content:""; position:absolute; width:300px; height:300px; right:-80px; bottom:-160px; border-radius:50%; background:rgba(194,91,227,.14); filter:blur(60px); }
.lp-plan-copy,.lp-plan-benefits { position: relative; z-index: 2; }
.lp-plan-copy h2 { margin: 14px 0 10px; color: #fff; font-size: clamp(34px,4vw,50px); }
.lp-plan-copy > p { max-width: 620px; color: var(--lp-muted); font-size: 15px; line-height: 1.7; }
.lp-plan-price { display: flex; align-items: baseline; gap: 8px; margin: 24px 0 24px; }
.lp-plan-price strong { color: #fff; font-family: "Manrope",sans-serif; font-size: clamp(30px,4vw,46px); }
.lp-plan-price span { color: #8f9ab7; font-size: 13px; }
.lp-plan-note { display: block; margin-top: 13px; color: #818da8; font-size: 10px; }
.lp-plan-benefits { display: grid; gap: 10px; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; background: rgba(4,8,24,.24); }
.lp-plan-benefits > div { display: flex; align-items: center; gap: 12px; padding: 12px; border-bottom: 1px solid rgba(255,255,255,.06); }
.lp-plan-benefits > div:last-child { border-bottom: 0; }
.lp-plan-benefits i { color: var(--lp-green); font-size: 18px; }
.lp-plan-benefits span { display: flex; flex-direction: column; }
.lp-plan-benefits strong { color: #fff; font-size: 13px; }
.lp-plan-benefits small { margin-top: 3px; color: #8e99b5; font-size: 10px; }

.lp-faq-section { background: linear-gradient(180deg, rgba(13,19,45,.54), rgba(7,11,29,.1)); }
.lp-faq { display: grid; gap: 12px; }
.lp-faq .accordion-item { overflow: hidden; border: 1px solid var(--lp-border); border-radius: 16px !important; background: rgba(14,20,47,.72); }
.lp-faq .accordion-button { padding: 18px 20px; color: #fff; background: transparent; box-shadow: none; font-family: "DM Sans",sans-serif; font-size: 14px; font-weight: 700; }
.lp-faq .accordion-button:not(.collapsed) { color: #fff; background: rgba(117,94,255,.08); }
.lp-faq .accordion-button::after { filter: invert(1); opacity: .7; }
.lp-faq .accordion-body { padding: 0 20px 19px; color: var(--lp-muted); font-size: 13px; line-height: 1.65; }

.lp-final-cta { position: relative; overflow: hidden; padding: 56px 0 96px; }
.lp-final-glow { position:absolute; left:50%; bottom:-240px; width:720px; height:500px; border-radius:50%; background:rgba(116,82,255,.22); filter:blur(100px); transform:translateX(-50%); }
.lp-final-card { max-width: 980px; margin: 0 auto; padding: 52px 34px; border: 1px solid rgba(167,143,255,.28); border-radius: 30px; background: linear-gradient(135deg, rgba(26,34,74,.92), rgba(11,16,39,.94)); box-shadow: var(--lp-shadow); text-align: center; }
.lp-final-card h2 { max-width: 720px; margin: 15px auto 13px; color: #fff; font-size: clamp(35px,4.5vw,56px); line-height: 1.08; letter-spacing: -.045em; }
.lp-final-card p { max-width: 660px; margin: 0 auto; color: var(--lp-muted); font-size: 16px; line-height: 1.7; }
.lp-final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }

.lp-footer { border-top: 1px solid rgba(255,255,255,.07); background: #040713; }
.lp-footer-main { display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 30px; padding: 40px 0 28px; }
.lp-footer-main > p { max-width: 530px; margin: 0; color: #7f8aa6; font-size: 12px; line-height: 1.65; }
.lp-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.lp-footer-links a { color: #9aa5bf; font-size: 11px; font-weight: 700; text-decoration: none; }
.lp-footer-links a:hover { color: #fff; }
.lp-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 24px; border-top: 1px solid rgba(255,255,255,.05); color: #66718d; font-size: 10px; }
.lp-footer-bottom span:last-child { color: #87dba5; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--reveal-delay,0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1199.98px) {
  .lp-header .navbar-collapse { margin-top: 12px; padding: 16px; border: 1px solid var(--lp-border); border-radius: 16px; background: rgba(8,13,32,.98); box-shadow: 0 20px 50px rgba(0,0,0,.32); }
  .lp-nav-links { gap: 2px; }
  .lp-nav-actions { margin-top: 12px; }
  .lp-nav-actions .btn { flex: 1; }
  .lp-poster-stage { margin: 0 auto; }
  .lp-dashboard-preview { transform: none; }
}

@media (max-width: 991.98px) {
  .lp-hero { padding-top: 116px; }
  .min-vh-75 { min-height: auto; }
  .lp-hero-copy { max-width: 760px; margin: 0 auto; text-align: center; }
  .lp-hero-copy h1,.lp-hero-lead { margin-left: auto; margin-right: auto; }
  .lp-hero-actions,.lp-hero-proof { justify-content: center; }
  .lp-poster-stage { min-height: 590px; }
  .lp-category-bar { grid-template-columns: repeat(3,1fr); }
  .lp-category-item:nth-child(3) { border-right: 0; }
  .lp-category-item:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .lp-plan-shell { grid-template-columns: 1fr; }
  .lp-device-grid { grid-template-columns: repeat(2,1fr); }
  .lp-footer-main { grid-template-columns: 1fr; text-align: center; }
  .lp-footer-main .lp-brand { justify-self: center; }
  .lp-footer-main > p { margin: 0 auto; }
  .lp-footer-links { justify-content: center; }
}

@media (max-width: 767.98px) {
  .lp-header .navbar { min-height: 70px; }
  .lp-brand-mark { width: 40px; height: 40px; border-radius: 12px; }
  .lp-brand-copy strong { font-size: 18px; }
  .lp-brand-copy small { font-size: 7px; }
  .lp-hero { padding: 104px 0 46px; }
  .lp-hero-copy h1 { font-size: clamp(38px, 11vw, 52px); }
  .lp-poster-stage { min-height: 490px; transform: scale(.88); margin-top: -25px; margin-bottom: -40px; }
  .lp-poster { width: 118px; border-radius: 14px; }
  .lp-poster-nebula { left: 72px; }
  .lp-poster-shadow { left: 202px; width: 126px; }
  .lp-poster-horizon { right: 42px; }
  .lp-poster-action { left: 38px; top: 206px; width: 112px; }
  .lp-poster-live { left: 168px; top: 196px; width: 122px; }
  .lp-poster-sports { right: 39px; top: 210px; width: 113px; }
  .lp-poster-kids { left: 98px; width: 116px; }
  .lp-poster-nature { right: 90px; width: 117px; }
  .lp-live-badge { left: 5px; bottom: 98px; }
  .lp-credit-badge { right: 0; top: 160px; }
  .lp-category-item { min-height: 86px; }
  .lp-section { padding: 74px 0; }
  .lp-step { grid-template-columns: 40px 48px 1fr; padding: 16px; gap: 12px; }
  .lp-step > div { width: 48px; height: 48px; }
  .lp-dashboard-body { grid-template-columns: 1fr; }
  .lp-preview-sidebar { display: none; }
  .lp-preview-main { padding: 16px; }
  .lp-plan-shell { padding: 28px 20px; }
  .lp-final-card { padding: 40px 20px; }
  .lp-footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 575.98px) {
  .container-xl { padding-left: 17px; padding-right: 17px; }
  .lp-nav-actions { flex-direction: column; }
  .lp-nav-actions .btn { width: 100%; }
  .lp-hero-actions { flex-direction: column; }
  .lp-hero-actions .btn { width: 100%; }
  .lp-hero-proof { gap: 10px 14px; }
  .lp-poster-stage { width: 590px; left: 50%; transform: translateX(-50%) scale(.72); margin-top: -80px; margin-bottom: -110px; }
  .lp-category-bar { grid-template-columns: repeat(2,1fr); }
  .lp-category-item { border-right: 1px solid rgba(255,255,255,.07) !important; border-bottom: 1px solid rgba(255,255,255,.07) !important; }
  .lp-category-item:nth-child(2n) { border-right: 0 !important; }
  .lp-category-item:nth-last-child(-n+2) { border-bottom: 0 !important; }
  .lp-section-heading h2,.lp-display-title { font-size: 34px; }
  .lp-device-grid { grid-template-columns: 1fr; }
  .lp-preview-stats { grid-template-columns: 1fr; }
  .lp-preview-content { grid-template-columns: 1fr; }
  .lp-preview-history { display: none; }
  .lp-dashboard-windowbar { grid-template-columns: 55px 1fr 48px; padding: 0 10px; }
  .lp-window-address { font-size: 8px; }
  .lp-plan-price { align-items: flex-start; flex-direction: column; }
  .lp-final-actions { flex-direction: column; }
  .lp-final-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Dynamic commercial offer */
.lp-plan-old-price {
  margin-top:20px;
  color:var(--lp-muted);
  font-size:.82rem;
  font-weight:600;
}
.lp-plan-old-price del { color:#aeb4c9; }
.lp-plan-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.lp-plan-actions .lp-btn-lg { margin-top:0; }
.lp-btn-whatsapp {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(67,219,130,.35);
  color:#dffff0;
  background:rgba(30,180,95,.13);
}
.lp-btn-whatsapp:hover,
.lp-btn-whatsapp:focus {
  color:#fff;
  border-color:rgba(67,219,130,.7);
  background:rgba(30,180,95,.24);
}
@media (max-width:575.98px) {
  .lp-plan-actions > .btn { width:100%; }
}
