/* ============================================================
   N3X REALTY — AI LEAD NURTURE PAGE
   ln.css  (complete rewrite — all class names match ln.html)
   ============================================================ */


/* ============================================================
   1. PAGE BASE & SHARED
   ============================================================ */
.ln-page { background: var(--dark); }
.ln-dark-section { background: var(--dark); }

.ln-section-header { text-align: center; margin-bottom: 4rem; }
.ln-section-sub {
  font-size: 1rem; font-weight: 300; color: rgba(21,21,28,.55);
  line-height: 1.75; max-width: 620px; margin: 1.2rem auto 0;
}
.ln-section-sub.sub-light { color: rgba(253,251,247,.5); }

.ln-breadcrumb {
  display: flex; align-items: center; gap: .45rem;
  font-size: .72rem; color: rgba(253,251,247,.35);
  margin-bottom: 1.75rem; flex-wrap: wrap;
}
.ln-breadcrumb a { color: rgba(253,251,247,.4); transition: color var(--t-fast) ease; }
.ln-breadcrumb a:hover { color: var(--teal); }
.ln-breadcrumb span[aria-current] { color: rgba(253,251,247,.6); }


/* ============================================================
   2. HERO SECTION
   ============================================================ */
.ln-hero {
  position: relative; background: var(--dark);
  min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding-top: 8rem; padding-bottom: 0; overflow: hidden;
}

.ln-hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ln-glow {
  position: absolute; border-radius: 50%; filter: blur(100px);
  animation: lnOrbDrift 18s ease-in-out infinite;
}
.ln-glow-1 { width:580px;height:580px;background:radial-gradient(circle,rgba(31,235,176,.12) 0%,transparent 70%);top:-8%;right:2%;animation-delay:0s; }
.ln-glow-2 { width:440px;height:440px;background:radial-gradient(circle,rgba(6,156,253,.10) 0%,transparent 70%);top:40%;right:28%;animation-delay:-7s; }
.ln-glow-3 { width:380px;height:380px;background:radial-gradient(circle,rgba(48,211,206,.09) 0%,transparent 70%);top:10%;right:50%;animation-delay:-13s; }

@keyframes lnOrbDrift {
  0%,100%{transform:translate(0,0) scale(1);}33%{transform:translate(16px,-24px) scale(1.04);}66%{transform:translate(-12px,16px) scale(.97);}
}

/* particle field — HTML uses .ln-particle-field */
.ln-particle-field {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(31,235,176,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 70%);
}

.ln-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(3rem,6vw,6rem); padding-bottom: 4rem;
}

/* Badge — HTML uses .ln-badge-live */
.ln-hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); border: 1px solid rgba(31,235,176,.22); border-radius: 100px;
  padding: .38rem 1rem; margin-bottom: 1.75rem; background: rgba(31,235,176,.05);
}
.ln-badge-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 0 rgba(31,235,176,.6);
  animation: lnPulseDot 2s ease-in-out infinite;
}
@keyframes lnPulseDot {
  0%{box-shadow:0 0 0 0 rgba(31,235,176,.6);}70%{box-shadow:0 0 0 8px rgba(31,235,176,0);}100%{box-shadow:0 0 0 0 rgba(31,235,176,0);}
}

.ln-hero-headline {
  font-family: var(--font-display); font-size: clamp(2.8rem,5vw,5rem);
  font-weight: 600; color: var(--cream); line-height: 1.04;
  letter-spacing: -.025em; margin-bottom: 1.5rem;
}
.ln-hero-headline em {
  font-style: italic; font-weight: 300;
  background: var(--brand-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.ln-hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(253,251,247,.58);
  line-height: 1.75; margin-bottom: 2rem; max-width: 480px;
}

/* Speed stat — HTML uses .ln-speed-stat */
.ln-speed-stat {
  display: flex; align-items: center; gap: 1.25rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: .85rem 1.25rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.ln-speed-item { display: flex; flex-direction: column; align-items: flex-start; gap: .15rem; }
.ln-speed-num {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  background: var(--brand-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.ln-speed-bad {
  background: linear-gradient(135deg,#b03a3a,#e05555) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.ln-speed-lbl { font-size: .65rem; color: rgba(253,251,247,.4); }
.ln-speed-divider { width: 1px; height: 28px; background: rgba(255,255,255,.1); flex-shrink: 0; }

.ln-hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Trust row — HTML uses .ln-trust-row / .ln-trust-item */
.ln-trust-row { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.ln-trust-item {
  display: flex; align-items: center; gap: .35rem;
  font-size: .73rem; color: rgba(253,251,247,.45);
}
.ln-trust-item span { color: var(--teal); font-weight: 700; }


/* ─── Phone / SMS hero visual ─── */
.ln-hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-start; }

.ln-phone-wrap { position: relative; width: min(300px,90%); }

.ln-phone {
  background: var(--dark); border-radius: 40px; padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06), inset 0 0 0 1px rgba(255,255,255,.04);
  animation: lnPhoneFloat 9s ease-in-out infinite;
}
@keyframes lnPhoneFloat { 0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);} }

.ln-phone-status {
  display: flex; justify-content: space-between; padding: .4rem .75rem .25rem;
  font-size: .55rem; color: rgba(0,0,0,.5); background: #f2f2f7;
  border-radius: 20px 20px 0 0;
}

.ln-phone-screen {
  background: #f2f2f7; border-radius: 0 0 28px 28px;
  overflow: hidden; display: flex; flex-direction: column;
}

/* SMS header */
.ln-sms-header {
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem 1rem .6rem; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06);
}
.ln-sms-av {
  width: 32px; height: 32px; border-radius: 50%; background: var(--brand-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 700; color: var(--dark); flex-shrink: 0;
}
/* HTML uses .ln-sms-name and .ln-sms-online */
.ln-sms-name { font-size: .72rem; font-weight: 600; color: #1c1c1e; }
.ln-sms-online { font-size: .58rem; color: #34c759; margin-top: .05rem; }

/* SMS thread */
.ln-sms-thread {
  flex: 1; padding: .65rem .6rem; display: flex; flex-direction: column;
  gap: .4rem; overflow: hidden; background: #f2f2f7;
}

/* HTML uses .ln-sms-time-stamp */
.ln-sms-time-stamp {
  font-size: .56rem; color: rgba(0,0,0,.3); text-align: center; margin: .2rem 0;
}

/* HTML uses .ln-sms-msg .ln-sms-in / .ln-sms-out */
.ln-sms-msg {
  max-width: 84%; padding: .5rem .7rem; border-radius: 14px;
  font-size: .67rem; line-height: 1.45;
}
.ln-sms-in {
  background: #fff; color: #1c1c1e; align-self: flex-start;
  border-bottom-left-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
.ln-sms-out {
  background: var(--dark); color: var(--cream);
  align-self: flex-end; border-bottom-right-radius: 4px;
}

/* AI tag inside outbound message */
.ln-ai-tag {
  font-size: .54rem; font-weight: 700; letter-spacing: .06em;
  color: var(--teal); margin-bottom: .2rem;
}

/* Handoff alert in thread — HTML uses .ln-handoff-alert */
.ln-handoff-alert {
  display: flex; align-items: flex-start; gap: .55rem;
  background: rgba(31,235,176,.1); border: 1px solid rgba(31,235,176,.25);
  border-radius: 10px; padding: .6rem .75rem; margin-top: .25rem;
}
.ln-handoff-icon { font-size: .85rem; flex-shrink: 0; margin-top: .05rem; }
.ln-handoff-text { font-size: .6rem; color: rgba(21,21,28,.8); line-height: 1.4; }
.ln-handoff-text strong { display: block; color: var(--dark); font-weight: 700; margin-bottom: .15rem; }
.ln-handoff-text span { color: rgba(21,21,28,.55); }

/* Floating notification chips — HTML uses .ln-notif */
.ln-notif {
  position: absolute; display: flex; align-items: center; gap: .6rem;
  background: rgba(21,21,28,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md);
  padding: .6rem .9rem; box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: lnChipFloat 7s ease-in-out infinite;
}
.ln-notif-top { top: -1rem; right: -1.5rem; animation-delay: 0s; }
.ln-notif-bot { bottom: 3rem; left: -1.5rem; animation-delay: -3.5s; }
@keyframes lnChipFloat { 0%,100%{transform:translateY(0);}50%{transform:translateY(-7px);} }

.ln-notif-icon { font-size: 1.1rem; flex-shrink: 0; }
.ln-notif-title { font-size: .72rem; font-weight: 600; color: var(--cream); display: block; }
.ln-notif-sub   { font-size: .62rem; color: rgba(253,251,247,.4); }


/* ============================================================
   3. HERO LOGO STRIP
   ============================================================ */
.ln-hero-logos {
  position: relative; z-index: 1; padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--dark-border); overflow: hidden;
}
.ln-logos-label {
  text-align: center; font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(253,251,247,.28); margin-bottom: 1.5rem;
}
.ln-logos-track-wrap { overflow: hidden; position: relative; }
.ln-logos-track-wrap::before,
.ln-logos-track-wrap::after {
  content:''; position:absolute; top:0;bottom:0; width:120px; z-index:2; pointer-events:none;
}
.ln-logos-track-wrap::before { left:0;  background:linear-gradient(to right,var(--dark),transparent); }
.ln-logos-track-wrap::after  { right:0; background:linear-gradient(to left,var(--dark),transparent); }
.ln-logos-track {
  display:flex; align-items:center; gap:0;
  animation: lnMarquee 30s linear infinite; width:max-content;
}
.ln-logos-track:hover { animation-play-state:paused; }
@keyframes lnMarquee { 0%{transform:translateX(0);}100%{transform:translateX(-50%);} }
.ln-logo-item {
  padding:0 2.5rem; font-size:.65rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:rgba(253,251,247,.18); white-space:nowrap;
  cursor:default; transition:color var(--t-med) ease;
}
.ln-logo-item:hover { color:rgba(253,251,247,.5); }


/* ============================================================
   4. PROBLEM SECTION  (HTML uses .ln-problem, not .ln-pain)
   ============================================================ */
.ln-problem { background: var(--cream); padding: var(--section-pad) 0; }

/* Big stat callout */
.ln-big-stat {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: var(--dark); border-radius: var(--radius-xl); padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
.ln-big-stat-num {
  font-family: var(--font-display); font-size: clamp(3rem,6vw,5rem); font-weight: 700;
  background: linear-gradient(135deg,#b03a3a,#e05555);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height: 1; flex-shrink: 0;
}
.ln-big-stat-text {
  font-size: .95rem; color: rgba(253,251,247,.6); line-height: 1.65; max-width: 520px;
}
.ln-big-stat-text strong { color: var(--cream); font-weight: 600; }

/* Grid — HTML uses .ln-prob-grid */
.ln-prob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* Cards — HTML uses .ln-prob-card */
.ln-prob-card {
  background: #fff; border: 1px solid rgba(21,21,28,.08);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  position: relative; overflow: hidden; transition: all var(--t-med) var(--ease-out);
}
.ln-prob-card::before {
  content:''; position:absolute; top:0;left:0;right:0; height:2px;
  background:linear-gradient(90deg,rgba(176,58,58,.6),rgba(200,80,80,.3));
  transform:scaleX(0); transform-origin:left; transition:transform var(--t-med) var(--ease-out);
}
.ln-prob-card:hover { transform:translateY(-5px); box-shadow:0 20px 48px rgba(21,21,28,.1); }
.ln-prob-card:hover::before { transform:scaleX(1); }
.ln-prob-icon  { font-size:1.75rem; margin-bottom:.85rem; }
.ln-prob-card h3 { font-size:.92rem; font-weight:600; color:var(--dark); margin-bottom:.5rem; }
.ln-prob-card p  { font-size:.82rem; color:rgba(21,21,28,.55); line-height:1.65; margin-bottom:.85rem; }

/* HTML uses .ln-prob-stat */
.ln-prob-stat {
  font-size:.68rem; font-weight:600; color:rgba(176,58,58,.75);
  background:rgba(176,58,58,.06); border:1px solid rgba(176,58,58,.12);
  border-radius:100px; padding:.28rem .75rem; display:inline-block;
}

/* Bar chart — HTML uses .ln-prob-data, .ln-prob-bar-wrap, .ln-prob-bar, .ln-prob-fill */
.ln-prob-data { display:flex; flex-direction:column; gap:.5rem; margin-top:.75rem; }
.ln-prob-bar-wrap { display:flex; align-items:center; gap:.5rem; font-size:.62rem; color:rgba(21,21,28,.4); }
.ln-prob-bar-label { min-width:110px; color:rgba(21,21,28,.5); font-size:.65rem; }
.ln-prob-bar { flex:1; height:6px; background:rgba(21,21,28,.08); border-radius:4px; overflow:hidden; }
.ln-prob-fill { height:100%; border-radius:4px; transition:width 1.4s cubic-bezier(.22,1,.36,1); }

/* Hour chart */
.ln-prob-chart {
  display:flex; align-items:flex-end; gap:4px; height:60px; margin:.85rem 0 .35rem;
}
.ln-hour-bar {
  flex:1; background:rgba(21,21,28,.12); border-radius:3px 3px 0 0;
  position:relative; display:flex; align-items:flex-end; justify-content:center;
  transition:background var(--t-fast) ease;
}
.ln-hour-bar.ln-bar-peak { background:rgba(31,235,176,.5); }
.ln-hour-bar span {
  position:absolute; bottom:-16px; font-size:.52rem; color:rgba(21,21,28,.35);
  white-space:nowrap;
}
.ln-prob-chart-label { font-size:.62rem; color:rgba(21,21,28,.35); margin-top:1.2rem; }

/* Follow-up chart — HTML uses .ln-followup-chart, .ln-followup-row, etc */
.ln-followup-chart { display:flex; flex-direction:column; gap:.4rem; margin:.75rem 0; }
.ln-followup-row { display:flex; align-items:center; gap:.5rem; }
.ln-fu-label { font-size:.65rem; color:rgba(21,21,28,.5); min-width:52px; }
.ln-fu-bar { flex:1; height:6px; background:rgba(21,21,28,.07); border-radius:4px; overflow:hidden; }
.ln-fu-fill { height:100%; background:rgba(176,58,58,.45); border-radius:4px; transition:width 1.4s cubic-bezier(.22,1,.36,1); }
.ln-fu-pct { font-size:.62rem; color:rgba(21,21,28,.45); min-width:32px; text-align:right; }
.ln-pct-good { color:var(--teal) !important; }
.ln-prob-note { font-size:.7rem; color:rgba(21,21,28,.4); font-style:italic; }

/* Message comparison */
.ln-msg-compare { display:flex; flex-direction:column; gap:.6rem; margin:.75rem 0; }
.ln-msg-bad, .ln-msg-good {
  border-radius:8px; padding:.65rem .85rem; font-size:.73rem; line-height:1.5;
}
.ln-msg-bad  { background:rgba(176,58,58,.06); border:1px solid rgba(176,58,58,.12); color:rgba(21,21,28,.55); }
.ln-msg-good { background:rgba(31,235,176,.06); border:1px solid rgba(31,235,176,.15); color:rgba(21,21,28,.65); }
.ln-msg-tag { font-size:.6rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:.35rem; }
.ln-msg-bad  .ln-msg-tag { color:rgba(176,58,58,.6); }
.ln-msg-good .ln-msg-tag { color:var(--teal); }

/* CTA pain card */
.ln-prob-cta-card {
  background:var(--dark); border-color:transparent !important;
  display:flex; align-items:center; justify-content:center;
}
.ln-prob-cta-card::before { display:none; }
.ln-prob-cta-inner { text-align:center; }
.ln-prob-cta-icon { font-size:1.75rem; margin-bottom:1rem; }
.ln-prob-cta-card h3 {
  font-family:var(--font-display); font-size:1.15rem; font-style:italic;
  font-weight:300; color:rgba(253,251,247,.8); line-height:1.55; margin-bottom:.85rem;
}
.ln-prob-cta-inner p { font-size:.82rem; color:rgba(253,251,247,.4); margin-bottom:1.5rem; }
.ln-scroll-btn { padding:.7rem 1.5rem !important; }


/* ============================================================
   5. SOLUTION OVERVIEW  (HTML uses .ln-pillars / .ln-pillar)
   ============================================================ */
.ln-solution {
  background:var(--dark); padding:var(--section-pad) 0;
  position:relative; overflow:hidden;
}
.ln-solution-glow {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 60%,rgba(31,235,176,.07) 0%,transparent 60%);
  pointer-events:none;
}

.ln-pillars {
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center; gap:0; max-width:900px; margin:0 auto; position:relative; z-index:1;
}
.ln-pillar {
  background:var(--dark-surface); border:1px solid var(--dark-border);
  border-radius:var(--radius-xl); padding:2.25rem 1.75rem; text-align:center;
  position:relative; overflow:hidden; transition:all var(--t-med) var(--ease-out);
}
.ln-pillar::before {
  content:''; position:absolute; top:0;left:0;right:0; height:3px;
  background:var(--brand-grad); transform:scaleX(0); transform-origin:left;
  transition:transform var(--t-med) var(--ease-out);
}
.ln-pillar:hover { border-color:rgba(31,235,176,.2); transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.3); }
.ln-pillar:hover::before { transform:scaleX(1); }
.ln-pillar-step {
  font-size:.65rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--teal); margin-bottom:.65rem;
}
.ln-pillar-icon { font-size:2rem; margin-bottom:.85rem; }
.ln-pillar h3 { font-size:.95rem; font-weight:600; color:var(--cream); margin-bottom:.55rem; }
.ln-pillar p  { font-size:.8rem; color:rgba(253,251,247,.42); line-height:1.65; margin-bottom:.85rem; }
.ln-pillar-stat {
  font-size:.7rem; font-weight:600; color:var(--teal);
  background:rgba(31,235,176,.08); border:1px solid rgba(31,235,176,.18);
  border-radius:100px; padding:.25rem .75rem; display:inline-block;
}
.ln-pillar-arrow {
  font-size:2rem; color:rgba(253,251,247,.15); padding:0 1.5rem;
  font-weight:200; text-align:center;
}


/* ============================================================
   6. INSTANT SMS RESPONSE — SECTION 4 (HTML uses .ln-instant)
   ============================================================ */
.ln-instant { background:var(--cream); padding:var(--section-pad) 0; }
.ln-instant-inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(3rem,6vw,7rem); align-items:start;
}
.ln-instant-copy .section-headline { margin-bottom:1rem; }
.ln-instant-desc {
  font-size:1rem; font-weight:300; color:rgba(21,21,28,.6); line-height:1.75; margin-bottom:2rem;
}
.ln-instant-features { display:flex; flex-direction:column; gap:1rem; }
.ln-inst-feat {
  display:flex; align-items:flex-start; gap:.85rem; padding:.85rem;
  background:rgba(21,21,28,.03); border:1px solid rgba(21,21,28,.06);
  border-radius:var(--radius-md); transition:background var(--t-fast) ease;
}
.ln-inst-feat:hover { background:rgba(21,21,28,.05); }
.ln-inst-icon { font-size:1.1rem; flex-shrink:0; width:28px; text-align:center; margin-top:.1rem; }
.ln-inst-feat strong { display:block; font-size:.88rem; font-weight:600; color:var(--dark); margin-bottom:.25rem; }
.ln-inst-feat p { font-size:.8rem; color:rgba(21,21,28,.55); line-height:1.6; margin:0; }

/* Speed comparison visual */
.ln-instant-visual { position:relative; }
.ln-speed-compare {
  background:#fff; border:1px solid rgba(21,21,28,.08); border-radius:var(--radius-xl);
  padding:1.75rem; box-shadow:0 8px 32px rgba(21,21,28,.08); margin-bottom:1rem;
}
.ln-speed-compare-header {
  font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(21,21,28,.35); margin-bottom:1.25rem;
}
.ln-speed-row {
  display:flex; align-items:center; gap:1rem; padding:.75rem 0;
  border-bottom:1px solid rgba(21,21,28,.06);
}
.ln-speed-row:last-of-type { border-bottom:none; }
.ln-speed-row-n3x { background:rgba(31,235,176,.04); border-radius:8px; padding:.75rem; margin-bottom:.35rem; border-bottom:none !important; }
.ln-speed-brand {
  display:flex; align-items:center; gap:.6rem; min-width:130px; flex-shrink:0;
  font-size:.72rem; color:rgba(21,21,28,.55);
}
.ln-speed-av {
  width:28px; height:28px; border-radius:50%; background:var(--brand-grad);
  display:flex; align-items:center; justify-content:center;
  font-size:.55rem; font-weight:800; color:var(--dark); flex-shrink:0;
}
.ln-av-agent { background:rgba(21,21,28,.2) !important; color:rgba(21,21,28,.6) !important; }
.ln-speed-timeline { flex:1; position:relative; }
.ln-speed-line { position:relative; height:6px; background:rgba(21,21,28,.08); border-radius:4px; overflow:visible; }
.ln-speed-line-n3x { background:rgba(31,235,176,.15); }
.ln-speed-marker {
  position:absolute; left:8%; top:50%; transform:translateY(-50%);
  background:var(--teal); border-radius:100px; padding:.18rem .55rem;
  font-size:.58rem; font-weight:800; color:var(--dark); white-space:nowrap;
}
.ln-marker-n3x { background:var(--teal); }
.ln-speed-dashed { font-size:.62rem; color:rgba(21,21,28,.25); letter-spacing:.05em; }
.ln-speed-result { font-size:.62rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; white-space:nowrap; flex-shrink:0; }
.ln-result-win  { color:var(--teal); }
.ln-result-lost { color:rgba(176,58,58,.6); }
.ln-speed-note {
  font-size:.68rem; color:rgba(21,21,28,.4); line-height:1.55; font-style:italic;
  margin-top:1rem; padding-top:.85rem; border-top:1px solid rgba(21,21,28,.07);
}
.ln-speed-note em { font-style:normal; font-weight:600; }

/* Lead fate box */
.ln-lead-fate {
  background:#fff; border:1px solid rgba(21,21,28,.08); border-radius:var(--radius-lg); padding:1.25rem;
}
.ln-fate-header {
  font-size:.72rem; font-weight:700; letter-spacing:.08em; color:rgba(21,21,28,.5);
  text-transform:uppercase; margin-bottom:.85rem;
}
.ln-fate-item { display:flex; align-items:center; gap:.5rem; padding:.3rem 0; font-size:.8rem; }
.ln-fate-bad { color:rgba(21,21,28,.55); }
.ln-fate-bad span { color:rgba(176,58,58,.6); font-weight:700; }
.ln-fate-good {
  margin-top:.75rem; padding:.6rem .85rem; background:rgba(31,235,176,.08);
  border:1px solid rgba(31,235,176,.2); border-radius:8px;
  font-size:.8rem; font-weight:600; color:rgba(21,21,28,.7);
}


/* ============================================================
   7. QUALIFICATION ENGINE — SECTION 5 (HTML uses .ln-qualify)
   ============================================================ */
.ln-qualify {
  background:var(--dark); padding:var(--section-pad) 0; position:relative; overflow:hidden;
}
.ln-qualify-glow {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 40%,rgba(6,156,253,.06) 0%,transparent 60%);
  pointer-events:none;
}

.ln-conv-flow { position:relative; z-index:1; }
.ln-conv-header {
  text-align:center; font-size:.72rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:rgba(253,251,247,.3); margin-bottom:2rem;
}
.ln-conv-wrap { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:start; }

/* conversation thread */
.ln-conv-thread { display:flex; flex-direction:column; gap:.75rem; }
.ln-conv-msg {
  max-width:88%; padding:.75rem 1rem; border-radius:14px;
  font-size:.8rem; line-height:1.55;
}
.ln-conv-in {
  background:rgba(255,255,255,.07); color:rgba(253,251,247,.75);
  align-self:flex-start; border-bottom-left-radius:4px;
}
.ln-conv-out {
  background:rgba(31,235,176,.1); border:1px solid rgba(31,235,176,.2);
  color:rgba(253,251,247,.8); align-self:flex-end; border-bottom-right-radius:4px;
}
.ln-conv-final { border-color:rgba(31,235,176,.35) !important; background:rgba(31,235,176,.15) !important; }
.ln-conv-meta { font-size:.6rem; font-weight:700; color:rgba(253,251,247,.3); margin-bottom:.3rem; }
.ln-ai-meta { color:var(--teal) !important; }

/* Qualification result card */
.ln-qual-card {
  background:rgba(31,235,176,.07); border:1px solid rgba(31,235,176,.2);
  border-radius:var(--radius-lg); padding:1.25rem; margin-top:.5rem;
}
.ln-qual-header {
  font-size:.78rem; font-weight:700; color:var(--teal); margin-bottom:.85rem;
}
.ln-qual-items { display:flex; flex-direction:column; gap:.45rem; }
.ln-qual-item {
  display:flex; align-items:flex-start; gap:.6rem; font-size:.75rem;
  color:rgba(253,251,247,.6); line-height:1.4;
}
.ln-qual-item span { flex-shrink:0; }
.ln-qual-item strong { color:rgba(253,251,247,.75); }

/* Qualification dimensions — right column */
.ln-qual-dims { background:var(--dark-surface); border:1px solid var(--dark-border); border-radius:var(--radius-xl); padding:1.75rem; }
.ln-qual-dims-header {
  font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(253,251,247,.3); margin-bottom:1.25rem;
}
.ln-qual-dim {
  display:flex; align-items:flex-start; gap:.85rem; padding:.75rem 0;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.ln-qual-dim:last-child { border-bottom:none; padding-bottom:0; }
.ln-qual-dim-num {
  font-family:var(--font-display); font-size:1.4rem; font-weight:700;
  background:var(--brand-grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1; flex-shrink:0; width:28px;
}
.ln-qual-dim strong { display:block; font-size:.85rem; font-weight:600; color:var(--cream); margin-bottom:.25rem; }
.ln-qual-dim p { font-size:.76rem; color:rgba(253,251,247,.4); line-height:1.6; margin:0; }


/* ============================================================
   8. 12-MONTH SEQUENCE TIMELINE — SECTION 6 (.ln-sequence)
   ============================================================ */
.ln-sequence { background:var(--cream); padding:var(--section-pad) 0; }

/* HTML uses .ln-sequence-timeline (vertical list) */
.ln-sequence-timeline {
  position:relative; max-width:800px; margin:0 auto; padding-left:2.5rem;
}
.ln-sequence-timeline::before {
  content:''; position:absolute; left:.85rem; top:.75rem; bottom:.75rem;
  width:2px; background:linear-gradient(to bottom,var(--teal),var(--blue),rgba(21,21,28,.1));
}

/* HTML uses .ln-seq-item (not .ln-seq-step) */
.ln-seq-item { position:relative; padding-bottom:2.25rem; }
.ln-seq-item:last-child { padding-bottom:0; }

.ln-seq-marker {
  position:absolute; left:-2.5rem; top:0;
  display:flex; align-items:center; justify-content:center;
}
.ln-seq-dot {
  width:13px; height:13px; border-radius:50%;
  background:var(--cream); border:2px solid var(--teal);
  box-shadow:0 0 0 4px rgba(31,235,176,.1); z-index:1; flex-shrink:0;
}
.ln-seq-dot-final {
  background:var(--brand-grad) !important; border-color:transparent !important;
  box-shadow:0 0 0 4px rgba(31,235,176,.2),0 0 18px rgba(31,235,176,.3) !important;
  width:16px !important; height:16px !important;
}

/* Hot item styling */
.ln-seq-hot > .ln-seq-content { border-color:rgba(31,235,176,.25) !important; background:rgba(31,235,176,.03) !important; }
.ln-seq-final > .ln-seq-content {
  background:linear-gradient(135deg,rgba(31,235,176,.06),rgba(6,156,253,.04)) !important;
  border-color:rgba(31,235,176,.25) !important;
}

.ln-seq-content {
  margin-left:3.5rem; background:#fff; border:1px solid rgba(21,21,28,.08);
  border-radius:var(--radius-lg); padding:1.5rem 1.75rem;
  transition:all var(--t-med) var(--ease-out);
}
.ln-seq-content:hover { box-shadow:0 6px 24px rgba(21,21,28,.08); transform:translateX(4px); }

/* HTML uses .ln-seq-time (not .ln-seq-day) */
.ln-seq-time {
  font-size:.62rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--teal); margin-bottom:.25rem;
}
.ln-seq-label { font-size:.92rem; font-weight:600; color:var(--dark); margin-bottom:.5rem; }
.ln-seq-content p { font-size:.8rem; color:rgba(21,21,28,.55); line-height:1.65; margin-bottom:.75rem; }

/* HTML uses .ln-seq-tag, .ln-tag-hot, .ln-tag-handoff */
.ln-seq-tag {
  display:inline-block; font-size:.68rem; font-weight:600;
  color:rgba(21,21,28,.55); background:rgba(21,21,28,.05);
  border:1px solid rgba(21,21,28,.08); border-radius:100px; padding:.22rem .65rem;
}
.ln-tag-hot { background:rgba(255,149,0,.1) !important; color:#ff9500 !important; border-color:rgba(255,149,0,.2) !important; }
.ln-tag-handoff { background:rgba(31,235,176,.1) !important; color:var(--teal) !important; border-color:rgba(31,235,176,.2) !important; }

/* Total stats bar — HTML uses .ln-seq-total, .ln-seq-total-nums, .ln-seq-total-item */
.ln-seq-total {
  max-width:800px; margin:2.5rem auto 0;
  background:var(--dark); border-radius:var(--radius-xl); padding:1.75rem 2.5rem;
}
.ln-seq-total-nums {
  display:flex; align-items:center; justify-content:center; gap:2rem; flex-wrap:wrap;
}
.ln-seq-total-item { text-align:center; }
.ln-seq-total-item strong {
  display:block; font-family:var(--font-display); font-size:2.4rem; font-weight:700;
  background:var(--brand-grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:.25rem;
}
.ln-seq-total-item span { font-size:.72rem; color:rgba(253,251,247,.4); }
.ln-seq-total-divider { font-size:1.5rem; color:rgba(253,251,247,.15); }


/* ============================================================
   9. LIVE HANDOFF — SECTION 7 (HTML uses .ln-handoff-sec)
   ============================================================ */
.ln-handoff-sec {
  background:var(--dark); padding:var(--section-pad) 0;
  position:relative; overflow:hidden;
}
.ln-handoff-glow {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 20% 50%,rgba(31,235,176,.05) 0%,transparent 55%),
             radial-gradient(ellipse at 80% 50%,rgba(6,156,253,.05) 0%,transparent 55%);
  pointer-events:none;
}
.ln-handoff-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(3rem,6vw,7rem);
  align-items:center; position:relative; z-index:1;
}

/* Handoff notification card */
.ln-handoff-card {
  background:var(--dark-surface); border:1px solid rgba(31,235,176,.25);
  border-radius:var(--radius-xl); overflow:hidden;
  box-shadow:0 0 0 1px rgba(31,235,176,.08),0 24px 64px rgba(0,0,0,.4);
}
.ln-handoff-card-header {
  display:flex; align-items:center; gap:.6rem; justify-content:space-between;
  padding:.85rem 1.25rem; background:rgba(31,235,176,.07);
  border-bottom:1px solid rgba(31,235,176,.15);
  font-size:.72rem; font-weight:600; color:var(--teal);
}
/* HTML uses .ln-hc-icon and .ln-hc-time */
.ln-hc-icon { font-size:1rem; flex-shrink:0; }
.ln-hc-time { font-size:.62rem; color:rgba(253,251,247,.35); margin-left:auto; }

.ln-handoff-card > div + div { padding:1.25rem; }

.ln-handoff-lead {
  display:flex; align-items:center; gap:.85rem; padding:1.25rem; border-bottom:1px solid var(--dark-border);
}
/* HTML uses .ln-handoff-av */
.ln-handoff-av {
  width:44px; height:44px; border-radius:50%; background:var(--brand-grad);
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; font-weight:700; color:var(--dark); flex-shrink:0;
}
/* HTML uses .ln-handoff-lead-name and .ln-handoff-lead-src */
.ln-handoff-lead-name { font-size:.9rem; font-weight:600; color:var(--cream); display:flex; align-items:center; gap:.5rem; }
.ln-handoff-lead-src  { font-size:.7rem; color:rgba(253,251,247,.4); margin-top:.1rem; }
/* HTML uses .ln-handoff-score inline next to name */
.ln-handoff-score {
  font-size:.65rem; font-weight:800; background:rgba(31,235,176,.2);
  color:var(--teal); border:1px solid rgba(31,235,176,.3);
  border-radius:4px; padding:.15rem .45rem; display:inline-block;
}

/* Signals summary — HTML uses .ln-handoff-summary, .ln-hs-row */
.ln-handoff-summary { padding:1.25rem; border-bottom:1px solid var(--dark-border); display:flex; flex-direction:column; gap:.45rem; }
.ln-hs-row {
  display:flex; align-items:flex-start; gap:.6rem; font-size:.75rem;
  color:rgba(253,251,247,.6); line-height:1.4;
}
.ln-hs-row span { flex-shrink:0; }
.ln-hs-row strong { color:rgba(253,251,247,.75); }

/* Handoff trigger — HTML uses .ln-handoff-trigger, .ln-ht-label, .ln-ht-quote */
.ln-handoff-trigger { padding:1.25rem; border-bottom:1px solid var(--dark-border); }
.ln-ht-label { font-size:.62rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(253,251,247,.3); margin-bottom:.45rem; }
.ln-ht-quote {
  font-size:.8rem; font-style:italic; color:rgba(253,251,247,.7); line-height:1.55;
  background:rgba(31,235,176,.07); border-left:2px solid rgba(31,235,176,.35);
  border-radius:0 8px 8px 0; padding:.6rem .85rem;
}

/* Action buttons — HTML uses .ln-ha-btn, .ln-ha-primary, .ln-ha-secondary */
.ln-handoff-actions { display:flex; gap:.6rem; padding:1.25rem; }
.ln-ha-btn {
  flex:1; padding:.65rem .5rem; border-radius:8px; font-family:var(--font-body);
  font-size:.72rem; font-weight:600; letter-spacing:.05em; cursor:pointer;
  border:1.5px solid; transition:all var(--t-fast) ease; text-align:center;
}
.ln-ha-primary  { background:var(--brand-grad); color:var(--dark); border-color:transparent; }
.ln-ha-primary:hover { filter:brightness(1.1); }
.ln-ha-secondary { background:transparent; color:rgba(253,251,247,.6); border-color:var(--dark-border); }
.ln-ha-secondary:hover { border-color:var(--teal); color:var(--teal); }

/* Phone notification chip */
.ln-phone-notif {
  display:flex; align-items:center; gap:.75rem; margin-top:1rem;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-md); padding:.85rem 1.1rem;
  animation:lnChipFloat 7s ease-in-out infinite;
}
.ln-pn-icon { font-size:1.25rem; flex-shrink:0; }
.ln-pn-title { font-size:.72rem; font-weight:700; color:var(--cream); }
.ln-pn-body  { font-size:.68rem; color:rgba(253,251,247,.5); margin-top:.1rem; line-height:1.4; }

/* Handoff copy */
.ln-handoff-copy .section-headline { margin-bottom:1rem; }
.ln-handoff-desc { font-size:1rem; font-weight:300; color:rgba(253,251,247,.5); line-height:1.75; margin-bottom:2rem; }
.ln-handoff-features { display:flex; flex-direction:column; gap:1rem; }

.ln-hf-feat {
  display:flex; align-items:flex-start; gap:.85rem; padding:.85rem;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius-md); transition:background var(--t-fast) ease;
}
.ln-hf-feat:hover { background:rgba(255,255,255,.05); }
/* HTML uses .ln-hf-icon (not .ln-hf-feat-icon) */
.ln-hf-icon { font-size:1rem; flex-shrink:0; width:28px; text-align:center; margin-top:.1rem; }
.ln-hf-feat strong { display:block; font-size:.88rem; font-weight:600; color:var(--cream); margin-bottom:.2rem; }
.ln-hf-feat p { font-size:.8rem; color:rgba(253,251,247,.42); line-height:1.6; margin:0; }


/* ============================================================
   10. NICHES SECTION (+ .ln-niche-scenario)
   ============================================================ */
.ln-niches {
  background:var(--cream); padding:var(--section-pad) 0; position:relative; overflow:hidden;
}
.ln-niches-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }

.ln-niche-card {
  background:#fff; border:1px solid rgba(21,21,28,.08);
  border-radius:var(--radius-lg); padding:1.75rem 1.5rem;
  transition:all var(--t-med) var(--ease-out);
}
.ln-niche-card:hover { border-color:rgba(21,21,28,.18); transform:translateY(-4px); box-shadow:0 12px 40px rgba(21,21,28,.1); }
.ln-niche-icon { font-size:1.75rem; margin-bottom:.85rem; }
.ln-niche-card h3 { font-size:.95rem; font-weight:600; color:var(--dark); margin-bottom:.5rem; }
.ln-niche-card p  { font-size:.79rem; color:rgba(21,21,28,.55); line-height:1.65; margin-bottom:1rem; }

/* HTML uses .ln-niche-scenario */
.ln-niche-scenario {
  font-size:.76rem; color:rgba(21,21,28,.5); line-height:1.6;
  background:rgba(31,235,176,.06); border:1px solid rgba(31,235,176,.14);
  border-radius:8px; padding:.75rem .9rem;
}
.ln-niche-scenario strong { color:var(--dark); font-weight:600; }


/* ============================================================
   11. BEFORE / AFTER — SECTION 9 (HTML uses .ln-compare)
   ============================================================ */
.ln-compare {
  background:var(--dark); padding:var(--section-pad) 0; position:relative; overflow:hidden;
}
.ln-compare-glow {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(6,156,253,.05) 0%,transparent 60%);
  pointer-events:none;
}
.ln-compare-grid {
  display:grid; grid-template-columns:1fr auto 1fr; gap:1rem;
  align-items:start; position:relative; z-index:1;
}
.ln-compare-col { border-radius:var(--radius-xl); overflow:hidden; border:1px solid var(--dark-border); }
.ln-compare-before { border-color:rgba(176,58,58,.2) !important; }
.ln-compare-after  { border-color:rgba(31,235,176,.2) !important; }

.ln-compare-col-header {
  padding:1rem 1.5rem; background:rgba(255,255,255,.03); border-bottom:1px solid var(--dark-border);
}
.ln-compare-label { font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
.ln-before-label { color:rgba(176,58,58,.7); }
.ln-after-label  { color:var(--teal); }

.ln-compare-items { display:flex; flex-direction:column; }
.ln-cmp-item {
  display:flex; align-items:flex-start; gap:.75rem; padding:.8rem 1.5rem;
  font-size:.8rem; line-height:1.45; border-bottom:1px solid rgba(255,255,255,.04);
}
.ln-cmp-item:last-child { border-bottom:none; }
.ln-cmp-item span { flex-shrink:0; font-weight:700; margin-top:.05rem; }
.ln-cmp-bad  { color:rgba(253,251,247,.4); }
.ln-cmp-bad  span { color:rgba(176,58,58,.55); }
.ln-cmp-good { color:rgba(253,251,247,.65); background:rgba(31,235,176,.04); }
.ln-cmp-good span { color:var(--teal); }

.ln-compare-vs {
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:2.5rem; font-weight:300;
  background:var(--brand-grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  padding:0 .5rem;
}


/* ============================================================
   12. RESULTS / STATS — SECTION 10 (HTML uses .ln-results)
   ============================================================ */
.ln-results { background:var(--cream); padding:var(--section-pad) 0; }
.ln-results-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-bottom:4rem;
}

/* HTML uses .ln-result-card, .ln-result-num, .ln-result-suffix, .ln-result-label, .ln-result-sub */
.ln-result-card {
  background:#fff; border:1px solid rgba(21,21,28,.07);
  border-radius:var(--radius-lg); padding:2rem 1.75rem; text-align:center;
  transition:all var(--t-med) var(--ease-out); position:relative; overflow:hidden;
}
.ln-result-card::before {
  content:''; position:absolute; top:0;left:0;right:0; height:3px;
  background:var(--brand-grad); transform:scaleX(0); transform-origin:left;
  transition:transform .8s var(--ease-out);
}
.ln-result-card.counted::before { transform:scaleX(1); }
.ln-result-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(21,21,28,.08); }

.ln-result-num {
  font-family:var(--font-display); font-size:clamp(2.6rem,4.5vw,3.8rem); font-weight:700; line-height:1;
  background:var(--brand-grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text; display:inline-block;
}
.ln-result-suffix {
  font-family:var(--font-display); font-size:1.4rem; font-weight:400;
  color:rgba(21,21,28,.3); display:inline-block; vertical-align:top; margin-top:.4rem;
}
.ln-result-label { font-size:.88rem; font-weight:600; color:var(--dark); margin-top:.55rem; }
.ln-result-sub   { font-size:.7rem; color:rgba(21,21,28,.4); margin-top:.2rem; }

/* Testimonial — HTML uses .ln-test-quote-icon, .ln-test-content */
.ln-testimonial {
  display:flex; align-items:flex-start; gap:2rem;
  background:#fff; border:1px solid rgba(21,21,28,.08); border-radius:var(--radius-xl);
  padding:2.5rem 3rem; position:relative; overflow:hidden;
}
.ln-testimonial::before { content:''; position:absolute; top:0;left:0;right:0;height:3px;background:var(--brand-grad); }

.ln-test-av {
  width:56px; height:56px; border-radius:50%; background:var(--brand-grad);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:.95rem; font-weight:700; color:var(--dark); flex-shrink:0;
}
/* HTML uses .ln-test-content as the flex-1 div */
.ln-test-content { flex:1; }
/* HTML uses .ln-test-quote-icon for the big " */
.ln-test-quote-icon {
  font-family:var(--font-display); font-size:4rem; font-weight:700; line-height:.5;
  background:var(--brand-grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text; display:block; margin-bottom:1rem;
}
.ln-test-content blockquote {
  font-family:var(--font-display); font-size:1.1rem; font-style:italic;
  font-weight:300; color:rgba(21,21,28,.75); line-height:1.7; margin-bottom:1rem;
}
.ln-test-attr { display:flex; align-items:center; gap:.5rem; margin-bottom:.4rem; }
.ln-test-attr strong { font-size:.88rem; font-weight:600; color:var(--dark); }
.ln-test-attr span   { font-size:.75rem; color:rgba(21,21,28,.4); }
.ln-test-stars { color:var(--teal); letter-spacing:.1em; }


/* ============================================================
   13. PRICING SECTION
   ============================================================ */
.ln-pricing { background:var(--dark); padding:var(--section-pad) 0; position:relative; overflow:hidden; }
.ln-pricing-glow {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 30%,rgba(31,235,176,.06) 0%,transparent 60%);
  pointer-events:none;
}
.ln-pricing-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem; margin-bottom:2rem; position:relative; z-index:1; align-items:start;
}

.ln-price-card {
  background:var(--dark-surface); border:1px solid var(--dark-border);
  border-radius:var(--radius-xl); padding:2.25rem 2rem;
  transition:all var(--t-med) var(--ease-out); position:relative;
}
.ln-price-card:hover { transform:translateY(-6px); border-color:rgba(31,235,176,.15); box-shadow:0 24px 60px rgba(0,0,0,.4); }

.ln-price-featured {
  background:#fff; border-color:rgba(31,235,176,.3);
  box-shadow:0 0 0 1px rgba(31,235,176,.15),0 32px 80px rgba(0,0,0,.4); transform:translateY(-8px);
}
.ln-price-featured:hover { transform:translateY(-14px); }
.ln-price-featured .ln-price-tier    { color:var(--teal); }
.ln-price-featured .ln-price-amount  { color:var(--dark); }
.ln-price-featured .ln-price-mo      { color:rgba(21,21,28,.4); }
.ln-price-featured .ln-price-tagline { color:rgba(21,21,28,.55); border-bottom-color:rgba(21,21,28,.08); }
.ln-price-featured .ln-price-list li { color:rgba(21,21,28,.65); }
.ln-price-featured .ln-pc { color:var(--teal); }
.ln-price-featured .ln-pm { color:rgba(21,21,28,.2); }
.ln-price-featured .ln-price-note { color:rgba(21,21,28,.35); }

.ln-price-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--brand-grad); color:var(--dark); font-size:.65rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; padding:.35rem 1rem; border-radius:100px; white-space:nowrap;
}
.ln-price-tier {
  font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--teal); margin-bottom:1rem;
}
.ln-price-amount { font-family:var(--font-display); font-size:3rem; font-weight:700; color:var(--cream); line-height:1; letter-spacing:-.03em; margin-bottom:.25rem; }
.ln-price-mo { font-size:.38em; font-weight:400; color:rgba(253,251,247,.4); }
.ln-price-tagline { font-size:.82rem; color:rgba(253,251,247,.5); line-height:1.6; margin-bottom:1.5rem; padding-bottom:1.5rem; border-bottom:1px solid var(--dark-border); }
.ln-price-list { display:flex; flex-direction:column; gap:.6rem; margin-bottom:2rem; }
.ln-price-list li { display:flex; align-items:flex-start; gap:.6rem; font-size:.8rem; color:rgba(253,251,247,.65); line-height:1.45; }
.ln-pc { color:var(--teal); font-size:.75rem; font-weight:700; flex-shrink:0; margin-top:.1rem; }
.ln-pm { color:rgba(253,251,247,.2); font-size:.75rem; flex-shrink:0; margin-top:.1rem; }

.ln-price-btn {
  width:100%; justify-content:center; background:var(--dark-mid); color:var(--cream);
  border:1.5px solid var(--dark-border); padding:.85rem 1.5rem; font-size:.8rem; letter-spacing:.08em;
}
.ln-price-btn:hover { border-color:var(--teal); background:rgba(31,235,176,.05); }
.ln-price-note { font-size:.68rem; color:rgba(253,251,247,.3); text-align:center; margin-top:.85rem; font-style:italic; }

/* Enterprise */
.ln-enterprise {
  display:flex; align-items:center; justify-content:space-between; gap:3rem;
  background:var(--dark-surface); border:1px solid rgba(48,211,206,.2); border-radius:var(--radius-xl);
  padding:2.5rem 3rem; margin-bottom:2rem; position:relative; z-index:1; overflow:hidden;
}
.ln-enterprise::before { content:''; position:absolute; top:0;left:0;right:0;height:3px;background:var(--brand-grad); }
.ln-enterprise-left  { flex:1; }
.ln-enterprise-right { flex-shrink:0; text-align:center; }
.ln-enterprise-tag { font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--aqua); margin-bottom:.75rem; }
.ln-enterprise-left h3 { font-family:var(--font-display); font-size:1.6rem; font-weight:600; color:var(--cream); letter-spacing:-.02em; margin-bottom:.75rem; }
.ln-enterprise-left p { font-size:.85rem; color:rgba(253,251,247,.5); line-height:1.65; margin-bottom:1.25rem; max-width:520px; }
/* HTML uses .ln-enterprise-features (not .ln-enterprise-includes) */
.ln-enterprise-features { display:flex; flex-wrap:wrap; gap:.5rem 1.25rem; }
.ln-enterprise-features span { font-size:.75rem; color:rgba(253,251,247,.5); }
.ln-enterprise-price { font-family:var(--font-display); font-size:1.4rem; font-weight:600; background:var(--brand-grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:1rem; }

/* Guarantee */
.ln-guarantee { display:flex; align-items:center; justify-content:center; gap:.75rem; font-size:.82rem; color:rgba(253,251,247,.4); text-align:center; position:relative; z-index:1; }
.ln-guarantee strong { color:rgba(253,251,247,.65); }
.ln-guarantee-icon { font-size:1.1rem; }


/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.ln-faq { background:var(--dark); padding:var(--section-pad) 0; }
.ln-faq-inner { display:grid; grid-template-columns:1fr 2fr; gap:clamp(3rem,6vw,7rem); align-items:start; }
.ln-faq-item { border-bottom:1px solid var(--dark-border); }
.ln-faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:1.25rem 0; font-family:var(--font-body); font-size:.92rem; font-weight:500;
  color:rgba(253,251,247,.75); background:none; border:none; cursor:pointer;
  text-align:left; transition:color var(--t-fast) ease; gap:1rem;
}
.ln-faq-q:hover { color:var(--cream); }
.ln-faq-q[aria-expanded="true"] { color:var(--teal); }
.ln-faq-arrow {
  font-size:1.2rem; font-weight:300; color:rgba(253,251,247,.3); flex-shrink:0;
  transition:transform var(--t-med) var(--ease-out),color var(--t-fast) ease;
}
.ln-faq-q[aria-expanded="true"] .ln-faq-arrow { transform:rotate(45deg); color:var(--teal); }
.ln-faq-a { max-height:0; overflow:hidden; transition:max-height var(--t-slow) var(--ease-out),padding var(--t-med) ease; }
.ln-faq-a.open { max-height:500px; padding-bottom:1.25rem; }
.ln-faq-a p { font-size:.84rem; color:rgba(253,251,247,.45); line-height:1.75; }
.ln-faq-a strong { color:rgba(253,251,247,.7); }


/* ============================================================
   15. FINAL CTA
   ============================================================ */
.ln-final-cta {
  background:var(--dark); border-top:1px solid var(--dark-border);
  padding:var(--section-pad) 0; text-align:center; position:relative; overflow:hidden;
}
.ln-final-glow {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 60%,rgba(31,235,176,.08) 0%,transparent 65%);
  pointer-events:none;
}
.ln-final-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; }
.ln-final-badge {
  display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color:var(--teal); background:rgba(31,235,176,.08);
  border:1px solid rgba(31,235,176,.18); border-radius:100px; padding:.38rem 1rem; margin-bottom:1.75rem;
}
.ln-final-headline {
  font-family:var(--font-display); font-size:clamp(2.4rem,5vw,4.4rem); font-weight:600;
  color:var(--cream); line-height:1.08; letter-spacing:-.025em; margin-bottom:1.25rem;
}
.ln-final-headline em {
  font-style:italic; font-weight:300; background:var(--brand-grad);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.ln-final-sub { font-size:1rem; color:rgba(253,251,247,.5); line-height:1.7; margin-bottom:2.5rem; font-weight:300; }
.ln-final-actions { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-bottom:2rem; }
.ln-final-trust { display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap; }
.ln-final-trust span { font-size:.75rem; color:rgba(253,251,247,.3); }


/* ============================================================
   16. ANIMATION UTILITY
   ============================================================ */
.ln-anim {
  opacity:0; transform:translateY(24px);
  transition:opacity .6s var(--ease-out) var(--d,0s), transform .6s var(--ease-out) var(--d,0s);
}
.ln-anim.in-view { opacity:1; transform:translateY(0); }

/* Typing dots */
.ln-typing-dot {
  width:5px; height:5px; border-radius:50%; background:rgba(0,0,0,.3);
  animation:lnTypingBounce 1.2s ease-in-out infinite;
}
.ln-typing-dot:nth-child(2) { animation-delay:.2s; }
.ln-typing-dot:nth-child(3) { animation-delay:.4s; }
@keyframes lnTypingBounce { 0%,60%,100%{transform:translateY(0);}30%{transform:translateY(-4px);} }

@media (prefers-reduced-motion:reduce) {
  .ln-anim { opacity:1; transform:none; transition:none; }
  .ln-badge-live,.ln-typing-dot { animation:none; }
}


/* ============================================================
   17. RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width:1280px) {
  .ln-prob-grid   { grid-template-columns:repeat(2,1fr); }
  .ln-niches-grid { grid-template-columns:repeat(2,1fr); }
  .ln-results-grid{ grid-template-columns:repeat(2,1fr); }
  .ln-pricing-grid{ gap:1rem; }
  .ln-pillars     { grid-template-columns:1fr; gap:1rem; }
  .ln-pillar-arrow{ display:none; }
  .ln-conv-wrap   { grid-template-columns:1fr; }
}

@media (max-width:1024px) {
  .ln-hero-inner    { grid-template-columns:1fr; }
  .ln-hero-visual   { display:none; }
  .ln-hero-copy, .ln-hero-sub { max-width:100%; text-align:center; }
  .ln-hero-badge    { display:inline-flex; margin-left:auto; margin-right:auto; }
  .ln-breadcrumb    { justify-content:center; }
  .ln-hero-actions  { justify-content:center; }
  .ln-trust-row     { justify-content:center; }
  .ln-speed-stat    { justify-content:center; }
  .ln-instant-inner { grid-template-columns:1fr; }
  .ln-handoff-inner { grid-template-columns:1fr; }
  .ln-pricing-grid  { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
  .ln-price-featured{ transform:none; }
  .ln-price-featured:hover { transform:translateY(-6px); }
  .ln-enterprise    { flex-direction:column; text-align:center; gap:2rem; }
  .ln-enterprise-features { justify-content:center; }
  .ln-enterprise-left p { max-width:100%; }
  .ln-faq-inner     { grid-template-columns:1fr; }
  .ln-compare-grid  { grid-template-columns:1fr; }
  .ln-compare-vs    { display:none; }
}

@media (max-width:768px) {
  .ln-prob-grid    { grid-template-columns:1fr; }
  .ln-niches-grid  { grid-template-columns:1fr; }
  .ln-results-grid { grid-template-columns:repeat(2,1fr); }
  .ln-testimonial  { flex-direction:column; padding:1.75rem; }
  .ln-test-quote-icon { display:none; }
  .ln-final-actions { flex-direction:column; align-items:center; }
  .ln-final-trust   { flex-direction:column; align-items:center; gap:.5rem; }
  .ln-speed-stat    { flex-direction:column; align-items:flex-start; gap:.65rem; }
  .ln-speed-divider { display:none; }
  .ln-handoff-actions { flex-direction:column; }
  .ln-big-stat      { flex-direction:column; text-align:center; padding:1.5rem; }
  .ln-sequence-timeline::before { display:none; }
  .ln-seq-content   { margin-left:0; }
  .ln-seq-marker    { position:static; display:inline-flex; margin-bottom:.35rem; }
}

@media (max-width:480px) {
  .ln-results-grid  { grid-template-columns:1fr; }
  .ln-enterprise    { padding:1.75rem; }
  .ln-seq-total-nums{ flex-direction:column; gap:1.25rem; }
  .ln-seq-total-divider { display:none; }
}


/* ============================================================
   17. MOBILE HARDENING — ADDITIVE ONLY, DESKTOP UNCHANGED
   (fixes horizontal scroll on iOS + tightens spacing/type on phones)
   ============================================================ */
@media (max-width: 768px) {
  html { overflow-x: hidden; }
}

@media (max-width: 480px) {
  html { overflow-x: hidden; }
  .ln-hero-headline { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .ln-problem, .ln-solution, .ln-qualify, .ln-instant, .ln-handoff-sec,
  .ln-sequence, .ln-niches, .ln-results, .ln-pricing, .ln-faq,
  .ln-final-cta { padding: 3.5rem 0; }
}
