/* ============================================================
   LASER BOUNCE — ELEMENTOR CONVERT — GLOBAL STYLES
   All CSS from the original web.html, scoped for WordPress/Elementor
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,800;0,900;1,800&family=Open+Sans:wght@300;400;600&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
.lb-section,
.lb-widget,
[class*="lb-"] {
  --blue:     #1a9fd4;
  --blue-dk:  #0f7ab5;
  --blue-lt:  #e8f6fd;
  --blue-mid: #b8dff0;
  --red:      #e8383d;
  --red-dk:   #c02a2e;
  --red-lt:   #fef2f2;
  --navy:     #0d1117;
  --navy2:    #111827;
  --green:    #059669;
  --green-lt: #ecfdf5;
  --gold:     #d97706;
  --gold-lt:  #fffbeb;
  --white:    #ffffff;
  --ink:      #0f172a;
  --ink2:     #334155;
  --muted:    #64748b;
  --border:   #e2e8f0;
  --grey:     #f8fafc;
  --grey2:    #f1f5f9;
  --M: 'Montserrat', sans-serif;
  --O: 'Open Sans', sans-serif;
}

/* ── RESETS inside widgets ── */
.lb-widget * {
  box-sizing: border-box;
}
.lb-widget img {
  display: block;
  max-width: 100%;
}
.lb-widget a {
  text-decoration: none;
  color: inherit;
}

/* ── BUTTONS ── */
.lb-btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: var(--M);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 4px 20px rgba(26,159,212,.3);
}
.lb-btn-blue:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,159,212,.4);
}
.lb-btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: var(--M);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 4px 20px rgba(232,56,61,.28);
}
.lb-btn-red:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,56,61,.4);
}
.lb-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--M);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all .22s;
}
.lb-btn-ghost:hover {
  background: var(--blue);
  color: #fff;
}
.lb-btn-white-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--M);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .22s;
}
.lb-btn-white-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

/* ── LABEL ── */
.lb-lbl {
  display: block;
  font-family: var(--M);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lb-lbl-blue { color: var(--blue); }
.lb-lbl-red  { color: var(--red); }

/* ── SECTION HEADING ── */
.lb-section-head { margin-bottom: 48px; }
.lb-section-head h2 {
  font-family: var(--M);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -.022em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.lb-section-head h2 span { color: var(--blue); }
.lb-section-head p {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.6;
}

/* ── LASER RULE ── */
.lb-laser-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  margin: 0 auto 36px;
}
.lb-laser-rule::before,
.lb-laser-rule::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.lb-laser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--blue);
}

/* ── REVEAL ANIMATIONS ── */
.lb-js-ready .lb-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.lb-js-ready .lb-reveal.lb-in {
  opacity: 1;
  transform: translateY(0);
}
.lb-js-ready .lb-d1 { transition-delay: .1s; }
.lb-js-ready .lb-d2 { transition-delay: .2s; }
.lb-js-ready .lb-d3 { transition-delay: .3s; }

/* ── ANIMATIONS ── */
@keyframes lb-blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes lb-fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes lb-scrollPulse { 0%,100%{opacity:.3;transform:scaleY(.5)} 50%{opacity:1;transform:scaleY(1)} }

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.lb-announce {
  background: var(--red);
  text-align: center;
  padding: 11px 20px;
  font-family: var(--M);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.lb-announce a {
  color: #fff;
  text-decoration: underline;
}

/* ============================================================
   HERO
   ============================================================ */
.lb-hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 6% 90px;
  overflow: hidden;
  background: var(--navy);
}
.lb-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .18;
  filter: blur(2px);
  transform: scale(1.05);
}
.lb-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,17,23,.92) 0%, rgba(13,17,23,.7) 50%, rgba(13,17,23,.95) 100%),
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(26,159,212,.15) 0%, transparent 70%);
}
.lb-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}
.lb-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(26,159,212,.12);
  border: 1px solid rgba(26,159,212,.4);
  color: var(--blue);
  padding: 7px 18px;
  border-radius: 100px;
  font-family: var(--M);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: lb-fadeUp .7s ease both;
}
.lb-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: lb-blink 2s ease infinite;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--blue);
}
.lb-hero h1 {
  font-family: var(--M);
  font-weight: 900;
  font-size: clamp(38px, 7vw, 90px);
  line-height: .98;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 6px;
  animation: lb-fadeUp .7s .1s ease both;
}
.lb-hero h1 .lb-blue { color: var(--blue); display: block; }
.lb-hero h1 .lb-red  { color: var(--red);  display: block; }
.lb-hero-sub {
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 24px auto 40px;
  line-height: 1.65;
  animation: lb-fadeUp .7s .2s ease both;
}
.lb-hero-sub strong { font-weight: 700; color: #fff; }
.lb-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: lb-fadeUp .7s .3s ease both;
  margin-bottom: 56px;
}
.lb-hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  animation: lb-fadeUp .7s .4s ease both;
}
.lb-ht-item {
  padding: 18px 30px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.lb-ht-item:last-child { border-right: none; }
.lb-ht-num {
  font-family: var(--M);
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -.02em;
}
.lb-ht-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.lb-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: lb-fadeUp .7s .6s ease both;
}
.lb-scroll-cue span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
}
.lb-scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--blue), transparent);
  animation: lb-scrollPulse 2s ease infinite;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.lb-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
  overflow: hidden;
}
.lb-ps-cell {
  position: relative;
  overflow: hidden;
  background: #dbeafe;
}
.lb-ps-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s, filter .4s;
  filter: brightness(.78);
}
.lb-ps-cell:hover img {
  transform: scale(1.06);
  filter: brightness(.95);
}
.lb-ps-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,17,23,.65) 100%);
  pointer-events: none;
}
.lb-ps-cap {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-family: var(--M);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   PRIVATE STATEMENT
   ============================================================ */
.lb-private-hero {
  padding: 88px 6%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lb-private-hero::before {
  content: 'PRIVATE';
  position: absolute;
  font-family: var(--M);
  font-weight: 900;
  font-size: clamp(80px, 16vw, 200px);
  color: rgba(26,159,212,.04);
  letter-spacing: .04em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.lb-private-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}
.lb-private-hero h2 {
  font-family: var(--M);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 72px);
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.lb-private-hero h2 .lb-blue { color: var(--blue); }
.lb-private-hero h2 .lb-red  { color: var(--red); }
.lb-private-hero p {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--ink2);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.lb-private-hero p strong { font-weight: 700; color: var(--ink); }

/* ============================================================
   PROMISE CARDS
   ============================================================ */
.lb-promise {
  padding: 0 6% 80px;
  background: #fff;
}
.lb-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.lb-promise-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.lb-promise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.lb-promise-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,159,212,.12);
}
.lb-promise-card:hover::before { transform: scaleX(1); }
.lb-promise-icon {
  font-size: 44px;
  margin-bottom: 18px;
  display: block;
}
.lb-promise-card h3 {
  font-family: var(--M);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.lb-promise-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.lb-promise-badge {
  display: inline-block;
  margin-bottom: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--M);
  font-size: 10px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================================================
   WHY DIFFERENT — COMPARISON TABLE
   ============================================================ */
.lb-why {
  padding: 88px 6%;
  background: var(--grey);
}
.lb-why-inner { max-width: 1040px; margin: 0 auto; }
.lb-vs-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.lb-vs-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
.lb-vs-head-cell {
  padding: 16px 22px;
  font-family: var(--M);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.lb-vs-head-cell.lb-them {
  color: var(--muted);
  text-align: center;
}
.lb-vs-head-cell.lb-us {
  color: var(--blue);
  text-align: center;
  background: var(--blue-lt);
  border-bottom: 3px solid var(--blue);
}
.lb-vs-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.lb-vs-row:last-child { border-bottom: none; }
.lb-vs-row:nth-child(even) .lb-vs-cell { background: var(--grey); }
.lb-vs-row:nth-child(even) .lb-vs-cell.lb-them { background: #fdf7f7; }
.lb-vs-row:nth-child(even) .lb-vs-cell.lb-us { background: #dff0f9; }
.lb-vs-cell {
  padding: 14px 22px;
  font-size: 14px;
  color: var(--ink2);
  background: #fff;
  display: flex;
  align-items: center;
}
.lb-vs-cell.lb-them {
  justify-content: center;
  color: #dc2626;
  font-size: 20px;
  font-weight: 700;
  background: #fff8f8;
}
.lb-vs-cell.lb-us {
  justify-content: center;
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  background: var(--blue-lt);
}
.lb-vs-cell.lb-partial {
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-lt);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lb-vs-footer {
  margin-top: 18px;
  padding: 18px 22px;
  background: var(--blue-lt);
  border: 1px solid var(--blue-mid);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.65;
}
.lb-vs-footer strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   ATTRACTIONS
   ============================================================ */
.lb-attract {
  padding: 88px 6%;
  background: #fff;
}
.lb-attract-inner { max-width: 1120px; margin: 0 auto; }
.lb-attract-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.lb-acard {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: all .25s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.lb-acard:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,159,212,.1);
}
.lb-acard.lb-feat {
  border-color: var(--blue);
  background: linear-gradient(145deg, var(--blue-lt) 0%, #fff 50%);
}
.lb-acard-ribbon {
  position: absolute;
  top: 16px;
  right: -26px;
  background: var(--red);
  color: #fff;
  font-family: var(--M);
  font-size: 9px;
  font-weight: 900;
  padding: 4px 32px;
  letter-spacing: .07em;
  text-transform: uppercase;
  transform: rotate(45deg);
}
.lb-abadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-family: var(--M);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.lb-abadge-red  { background: var(--red-lt);  color: var(--red);  border: 1px solid rgba(232,56,61,.2); }
.lb-abadge-blue { background: var(--blue-lt); color: var(--blue); border: 1px solid rgba(26,159,212,.2); }
.lb-abadge-gold { background: var(--gold-lt); color: var(--gold); border: 1px solid rgba(217,119,6,.2); }
.lb-acard-icon { font-size: 38px; display: block; margin-bottom: 14px; line-height: 1; }
.lb-acard h3 {
  font-family: var(--M);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.lb-acard p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   PARENTS PLAY FREE
   ============================================================ */
.lb-parents {
  padding: 88px 6%;
  background: var(--navy2);
  position: relative;
  overflow: hidden;
}
.lb-parents::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(26,159,212,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(26,159,212,.08) 0%, transparent 60%);
  pointer-events: none;
}
.lb-parents-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.lb-parents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lb-parents-left .lb-lbl { color: rgba(26,159,212,.9); }
.lb-parents-left h2 {
  font-family: var(--M);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 58px);
  letter-spacing: -.025em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.lb-parents-left h2 span { color: var(--blue); }
.lb-parents-left .lb-body {
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  margin-bottom: 32px;
}
.lb-parents-left .lb-body strong { font-weight: 700; color: #fff; }
.lb-free-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.lb-free-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 14px 18px;
  transition: all .22s;
}
.lb-free-row:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(26,159,212,.4);
}
.lb-free-icon { font-size: 20px; flex-shrink: 0; }
.lb-free-text { font-size: 15px; color: rgba(255,255,255,.8); flex: 1; }
.lb-free-text strong { font-weight: 700; color: #fff; }
.lb-free-pill {
  flex-shrink: 0;
  background: rgba(5,150,105,.2);
  color: #34d399;
  border: 1px solid rgba(52,211,153,.3);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--M);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lb-dark-quote {
  padding: 26px 30px;
  background: rgba(255,255,255,.06);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
}
.lb-dark-quote p {
  font-size: clamp(14px, 1.6vw, 17px);
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.lb-dark-quote .lb-attr {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-style: normal;
}
.lb-parents-right { display: flex; flex-direction: column; gap: 14px; }
.lb-pcard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .22s;
}
.lb-pcard:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(26,159,212,.4);
}
.lb-pcard-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(26,159,212,.15);
  border: 1px solid rgba(26,159,212,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.lb-pcard h4 {
  font-family: var(--M);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.lb-pcard p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ============================================================
   TIMELINE
   ============================================================ */
.lb-timeline {
  padding: 88px 6%;
  background: #fff;
  border-top: 1px solid var(--border);
}
.lb-tl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.lb-tl-left h2 {
  font-family: var(--M);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -.022em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.lb-tl-left h2 span { color: var(--blue); }
.lb-tl-left p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  max-width: 380px;
}
.lb-tl {
  position: relative;
  padding-left: 36px;
}
.lb-tl::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(26,159,212,.08) 100%);
}
.lb-tl-item {
  position: relative;
  margin-bottom: 42px;
}
.lb-tl-item:last-child { margin-bottom: 0; }
.lb-tl-dot {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(26,159,212,.25), 0 4px 12px rgba(26,159,212,.3);
}
.lb-tl-step {
  font-family: var(--M);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 4px;
}
.lb-tl-item h3 {
  font-family: var(--M);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.lb-tl-item p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 440px; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.lb-proof {
  padding: 88px 6%;
  background: var(--grey);
  border-top: 1px solid var(--border);
}
.lb-proof-inner { max-width: 1120px; margin: 0 auto; }
.lb-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 44px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.lb-stat {
  background: #fff;
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.lb-stat:last-child { border-right: none; }
.lb-stat-num {
  font-family: var(--M);
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 4px;
}
.lb-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}
.lb-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lb-rcard {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: all .25s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.lb-rcard:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,159,212,.1);
}
.lb-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.lb-rcard blockquote {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.75;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 18px;
}
.lb-rcard blockquote strong { font-weight: 700; color: var(--ink); font-style: normal; }
.lb-reviewer { display: flex; align-items: center; gap: 12px; }
.lb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--M);
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.lb-r-name { font-family: var(--M); font-size: 14px; font-weight: 700; color: var(--ink); }
.lb-r-meta { font-size: 12px; color: var(--muted); }

/* ============================================================
   PRICING
   ============================================================ */
.lb-pricing {
  padding: 88px 6%;
  background: #fff;
  border-top: 1px solid var(--border);
}
.lb-pricing-inner { max-width: 1120px; margin: 0 auto; }
.lb-promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red-lt);
  border: 2px dashed rgba(232,56,61,.3);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.lb-promo-bar p { font-size: 14px; font-weight: 600; color: var(--ink2); }
.lb-promo-bar strong { color: var(--red); font-weight: 900; }
.lb-promo-code {
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: var(--M);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .08em;
}
.lb-pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.lb-pkg {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  position: relative;
  transition: all .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.lb-pkg:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(26,159,212,.12);
  transform: translateY(-4px);
}
.lb-pkg.lb-feat {
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(26,159,212,.15);
  background: linear-gradient(155deg, var(--blue-lt) 0%, #fff 50%);
}
.lb-pkg-crown {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-family: var(--M);
  font-size: 10px;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 100px;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(26,159,212,.4);
}
.lb-pkg-tier {
  font-family: var(--M);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: 12px;
}
.lb-pkg-tier.lb-b { color: var(--blue); }
.lb-pkg-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.lb-price-now {
  font-family: var(--M);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--ink);
}
.lb-price-was {
  font-size: 22px;
  color: #94a3b8;
  text-decoration: line-through;
}
.lb-pkg-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.lb-pkg-feats { list-style: none; margin-bottom: 28px; }
.lb-pkg-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.4;
}
.lb-pkg-feats li:last-child { border-bottom: none; }
.lb-pkg-feats li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
}
.lb-pkg-feats li.lb-dim { color: #94a3b8; }
.lb-pkg-feats li.lb-dim::before { content: '—'; color: #cbd5e1; }
.lb-pkg-feats li em { font-style: normal; font-weight: 700; color: var(--ink); }
.lb-btn-pkg-blue {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  text-align: center;
  font-family: var(--M);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 4px 14px rgba(26,159,212,.25);
}
.lb-btn-pkg-blue:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,159,212,.35);
}
.lb-btn-pkg-ghost {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--blue);
  padding: 13px 18px;
  border-radius: 8px;
  text-align: center;
  font-family: var(--M);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all .22s;
}
.lb-btn-pkg-ghost:hover { background: var(--blue); color: #fff; }
.lb-pkg-footnote {
  margin-top: 26px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}
.lb-pkg-footnote strong { color: var(--ink2); }

/* ============================================================
   FAQ
   ============================================================ */
.lb-faq {
  padding: 88px 6%;
  background: var(--grey);
  border-top: 1px solid var(--border);
}
.lb-faq-wrap { max-width: 700px; margin: 0 auto; }
.lb-faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.lb-faq-item:first-of-type { border-top: 1px solid var(--border); }
.lb-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  font-family: var(--M);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s;
  user-select: none;
}
.lb-faq-q:hover { color: var(--blue); }
.lb-faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 17px;
  font-weight: 300;
  flex-shrink: 0;
  transition: all .3s;
  line-height: 1;
}
.lb-faq-item.lb-open .lb-faq-ico {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: rotate(45deg);
}
.lb-faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-top .35s ease;
}
.lb-faq-item.lb-open .lb-faq-a { max-height: 380px; padding-top: 12px; }
.lb-faq-a strong { color: var(--ink2); font-weight: 600; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.lb-final {
  padding: 100px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2a4a 0%, #0d1b35 40%, #071524 100%);
}
.lb-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(26,159,212,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(26,159,212,.08) 0%, transparent 55%);
  pointer-events: none;
}
.lb-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,159,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,159,212,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.lb-final-wrap {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
}
.lb-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(217,119,6,.12);
  border: 1px solid rgba(217,119,6,.3);
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 32px;
}
.lb-scarcity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: lb-blink 1.5s ease infinite;
  flex-shrink: 0;
}
.lb-scarcity p {
  font-family: var(--M);
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .04em;
}
.lb-final h2 {
  font-family: var(--M);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 72px);
  letter-spacing: -.025em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 18px;
}
.lb-final h2 span { color: var(--blue); }
.lb-final-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.lb-final-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.lb-final-meta { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.8; }
.lb-final-meta strong { color: rgba(255,255,255,.7); }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.lb-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lb-sticky-txt span {
  display: block;
  font-family: var(--M);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.lb-sticky-txt strong {
  display: block;
  font-family: var(--M);
  font-size: 17px;
  font-weight: 900;
  color: var(--ink);
}
.lb-sticky a {
  background: var(--blue);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--M);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .2s;
}
.lb-sticky a:hover { background: var(--blue-dk); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .lb-parents-grid { grid-template-columns: 1fr; gap: 48px; }
  .lb-tl-grid      { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 860px) {
  .lb-attract-grid  { grid-template-columns: repeat(2, 1fr); }
  .lb-reviews       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .lb-hero          { min-height: auto; padding: 80px 5% 60px; }
  .lb-hero h1       { font-size: clamp(36px, 10vw, 56px); }
  .lb-hero-sub      { font-size: 16px; margin: 18px auto 30px; }
  .lb-hero-ctas     { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 40px; }
  .lb-hero-trust    { flex-direction: column; width: 100%; }
  .lb-ht-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .lb-ht-item:last-child { border-bottom: none; }
  .lb-photo-strip   { grid-template-columns: repeat(2, 1fr); height: 280px; }
  .lb-private-hero  { padding: 60px 5%; }
  .lb-promise       { padding: 0 5% 60px; }
  .lb-promise-grid  { grid-template-columns: 1fr; gap: 14px; }
  .lb-why           { padding: 60px 5%; }
  .lb-attract       { padding: 60px 5%; }
  .lb-attract-grid  { grid-template-columns: 1fr; gap: 14px; }
  .lb-parents       { padding: 60px 5%; }
  .lb-parents-grid  { grid-template-columns: 1fr; gap: 40px; }
  .lb-timeline      { padding: 60px 5%; }
  .lb-tl-grid       { grid-template-columns: 1fr; gap: 40px; }
  .lb-proof         { padding: 60px 5%; }
  .lb-stats         { grid-template-columns: 1fr; }
  .lb-stat          { border-right: none; border-bottom: 1px solid var(--border); }
  .lb-stat:last-child { border-bottom: none; }
  .lb-reviews       { grid-template-columns: 1fr; gap: 14px; }
  .lb-pricing       { padding: 60px 5%; }
  .lb-pkgs          { grid-template-columns: 1fr; gap: 16px; }
  .lb-pkg.lb-feat   { margin-top: 16px; }
  .lb-faq           { padding: 60px 5%; }
  .lb-final         { padding: 70px 5%; }
  .lb-final h2      { font-size: clamp(28px, 8vw, 44px); }
  .lb-final-ctas    { flex-direction: column; align-items: center; gap: 12px; }
  .lb-sticky        { display: flex; }
  .lb-vs-head       { grid-template-columns: 1.4fr .8fr .8fr; }
  .lb-vs-row        { grid-template-columns: 1.4fr .8fr .8fr; }
  .lb-vs-cell       { font-size: 12px; padding: 11px 12px; }
  .lb-vs-head-cell  { font-size: 10px; padding: 12px 10px; }
}
@media (max-width: 420px) {
  .lb-photo-strip   { height: 220px; }
  .lb-price-now     { font-size: 42px; }
}
