@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.lp { font-family: 'Inter', system-ui, sans-serif; color: #0f172a; }
.lp img { display: block; }
a { text-decoration: none; }

/* ───────────────────────────────
   HERO
─────────────────────────────── */
.lp-hero {
  background: #05091a;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.lp-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 50% -100px, rgba(37,99,235,.35) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 15% 60%,   rgba(99,102,241,.12) 0%, transparent 55%),
    radial-gradient(ellipse 400px 350px at 85% 70%,   rgba(14,165,233,.1)  0%, transparent 55%);
}

.lp-hero-content {
  position: relative; z-index: 2;
  padding: 96px 0 0;
  text-align: center;
}

.lp-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: #94a3b8; margin-bottom: 32px;
}
.lp-chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 2.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.lp-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.05em;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 22px;
}
.lp-hero h1 .grad {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 40%, #06b6d4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: 18px;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.lp-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 72px;
}
.btn-primary-lp {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border-radius: 14px;
  background: #2563eb; color: #fff;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,99,235,.5);
  transition: background .15s, transform .12s, box-shadow .15s;
}
.btn-primary-lp:hover { background: #1d4ed8; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,.55); }
.btn-outline-lp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #94a3b8; font-size: 15px; font-weight: 600;
  transition: border-color .15s, color .15s, background .15s;
}
.btn-outline-lp:hover { border-color: rgba(255,255,255,.3); color: #fff; background: rgba(255,255,255,.07); }

.lp-trial-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: #64748b;
  margin-top: -48px; margin-bottom: 60px;
}
.lp-trial-note i { color: #4ade80; font-size: 14px; }
.lp-trial-sep { color: #1e293b; }

/* ── Dashboard screenshot ── */
.lp-screen-wrap {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto;
  padding: 0 32px;
}
.lp-screen {
  background: #0d1527;
  border: 1px solid rgba(255,255,255,.09);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 -12px 80px rgba(37,99,235,.2),
    0 32px 80px rgba(0,0,0,.6);
  overflow: hidden;
}
.lp-screen-topbar {
  background: #131e35;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 13px 20px;
  display: flex; align-items: center; gap: 10px;
}
.lp-screen-dot { width: 11px; height: 11px; border-radius: 50%; }
.lp-screen-addr {
  margin: 0 auto; max-width: 280px;
  background: rgba(255,255,255,.05); border-radius: 7px;
  padding: 5px 14px; font-size: 11px; color: #334155;
  font-family: 'SF Mono', ui-monospace, monospace;
}
.lp-screen-body {
  display: flex; min-height: 380px;
}
.lp-screen-nav {
  width: 56px; background: #080f1e;
  border-right: 1px solid rgba(255,255,255,.05);
  padding: 18px 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.lp-sn-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #334155; cursor: pointer;
  transition: background .12s;
}
.lp-sn-icon.active { background: rgba(37,99,235,.22); color: #60a5fa; }
.lp-sn-icon:hover:not(.active) { background: rgba(255,255,255,.05); color: #64748b; }
.lp-sn-div { height: 1px; background: rgba(255,255,255,.05); width: 28px; margin: 4px 0; }

.lp-screen-main { flex: 1; padding: 22px; overflow: hidden; }

/* hero band inside mockup */
.lp-sm-hero {
  background: linear-gradient(120deg, #111f3d 0%, #162040 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 18px 22px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.lp-sm-hero-left h4 {
  font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; letter-spacing: -.02em;
}
.lp-sm-hero-left p { font-size: 11px; color: #475569; margin: 0; }
.lp-sm-pills { display: flex; gap: 8px; flex-shrink: 0; }
.lp-sm-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px; padding: 7px 14px;
}
.lp-sm-pill .pn { font-size: 16px; font-weight: 800; color: #fff; }
.lp-sm-pill .pl { font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #475569; margin-top: 1px; }

/* post results */
.lp-sm-posts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.lp-sm-post {
  background: #0f1a30; border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 10px 12px;
  display: flex; align-items: center; gap: 12px;
}
.lp-sm-post-thumb {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  font-size: 16px;
}
.lp-sm-post-thumb i { font-size: 17px; line-height: 1; }
.lp-sm-post-info { flex: 1; min-width: 0; }
.lp-sm-post-title { font-size: 11px; font-weight: 700; color: #e2e8f0; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-sm-post-meta { font-size: 9px; color: #334155; display: flex; align-items: center; gap: 4px; }
.lp-sm-post-ch { font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 4px; }
.lp-sm-post-ch.fb { background: rgba(24,119,242,.18); color: #60a5fa; }
.lp-sm-post-ch.ig { background: rgba(225,48,108,.15); color: #f472b6; }
.lp-sm-post-stats { display: flex; gap: 10px; flex-shrink: 0; }
.lp-sm-post-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.lp-sm-post-stat .sv { font-size: 12px; font-weight: 800; color: #e2e8f0; line-height: 1; }
.lp-sm-post-stat .sl { font-size: 8px; color: #334155; text-transform: uppercase; letter-spacing: .05em; }

/* log */
.lp-sm-log {
  background: #0f1a30; border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px; overflow: hidden;
}
.lp-sm-log-head {
  padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #334155;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-sm-log-head span { color: #60a5fa; font-size: 10px; font-weight: 600; }
.lp-sm-log-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,.03);
  font-size: 11px;
}
.lp-sm-log-row:last-child { border-bottom: none; }
.lp-sm-log-row .lt { font-family: monospace; font-size: 10px; color: #334155; flex-shrink: 0; width: 40px; }
.lp-sm-log-row .la { color: #e2e8f0; font-weight: 600; flex-shrink: 0; width: 80px; font-size: 10px; }
.lp-sm-log-row .le { color: #64748b; flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 10px; }
.lp-sm-log-row .ls {
  font-size: 9px; font-weight: 800; padding: 2px 8px; border-radius: 999px; flex-shrink: 0;
}
.l-ok { background: rgba(34,197,94,.12); color: #4ade80; border: 1px solid rgba(34,197,94,.2); }
.l-sc { background: rgba(234,179,8,.1); color: #fbbf24; border: 1px solid rgba(234,179,8,.2); }
.l-dr { background: rgba(148,163,184,.08); color: #64748b; }

/* ───────────────────────────────
   PAIN GRID
─────────────────────────────── */
.lp-section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.045em;
  color: #0f172a;
  margin: 0 auto 12px;
  max-width: 760px;
}
.lp-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto;
}
.lp-pain {
  background: #f8fafc;
  padding: 88px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.lp-leak-panel {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 16px 42px rgba(15,23,42,.07);
}
.lp-leak-message {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 210px;
  border-radius: 18px;
  padding: 20px;
  background: #0f172a;
  color: #fff;
}
.lp-leak-badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(37,99,235,.22);
  color: #bfdbfe;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lp-leak-bubble {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 16px;
}
.lp-leak-bubble span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}
.lp-leak-bubble strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.lp-leak-source {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
}
.lp-leak-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 210px;
  padding: 14px 8px 4px;
}
.lp-leak-stage {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  align-items: end;
  min-height: 190px;
}
.lp-leak-time {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}
.lp-leak-bar {
  display: block;
  height: var(--level);
  min-height: 18px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, #2563eb 0%, #60a5fa 100%);
  box-shadow: 0 12px 22px rgba(37,99,235,.2);
}
.lp-leak-stage.warm .lp-leak-bar { background: linear-gradient(180deg, #38bdf8 0%, #93c5fd 100%); }
.lp-leak-stage.cold .lp-leak-bar { background: linear-gradient(180deg, #f59e0b 0%, #fbbf24 100%); box-shadow: 0 12px 22px rgba(245,158,11,.18); }
.lp-leak-stage.lost .lp-leak-bar { background: linear-gradient(180deg, #94a3b8 0%, #cbd5e1 100%); box-shadow: none; }
.lp-leak-label {
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}
.lp-pain-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.lp-pain-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 14px;
  min-height: 138px;
  box-shadow: 0 10px 24px rgba(15,23,42,.045);
}
.lp-pain-card i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 18px;
  margin-bottom: 14px;
}
.lp-pain-card h3 {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  color: #0f172a;
  margin-bottom: 6px;
}
.lp-pain-card span {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

.lp-feat-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}

.lp-feat-label::before { content: ""; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 1px; }

/* ───────────────────────────────
   SOLUTIONS
─────────────────────────────── */
.lp-solutions {
  background: #fff;
  padding: 96px 0;
}
.lp-agent-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.lp-flow-step {
  position: relative;
  display: flex;
  min-height: 146px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 22px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15,23,42,.045);
}
.lp-flow-step p {
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
.lp-flow-step.active p { color: #94a3b8; }
.lp-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 16px;
  height: 2px;
  background: #bfdbfe;
  z-index: 2;
}
.lp-flow-step i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  font-size: 20px;
}
.lp-flow-step.active {
  background: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 18px 38px rgba(15,23,42,.2);
}
.lp-flow-step.active i {
  background: rgba(96,165,250,.16);
  color: #93c5fd;
}
.lp-flow-step.done i {
  background: #ecfdf5;
  color: #16a34a;
}
.lp-flow-step span {
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}
.lp-flow-step.active span { color: #fff; }
/* ───────────────────────────────
   REAL ESTATE VISUAL TOOL
─────────────────────────────── */
.lp-visual-tool { background: #fff; padding: 0 0 92px; }
.lp-visual-tool-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #f8fafc;
  padding: 34px;
  box-shadow: 0 16px 42px rgba(15,23,42,.06);
}
.lp-visual-tool-copy h2 {
  color: #0f172a;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.lp-visual-tool-copy p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.lp-visual-tool-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.lp-visual-tool-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  color: #1e3a8a;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(37,99,235,.07);
}
.lp-visual-tool-benefits i {
  color: #2563eb;
  font-size: 14px;
}
.lp-visual-tool-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15,23,42,.1);
}
.lp-visual-tool-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #e2e8f0;
}
.lp-visual-tool-top span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 850;
}
.lp-visual-tool-top span i { color: #2563eb; }
.lp-visual-preview {
  position: relative;
  background: #e2e8f0;
}
.lp-visual-preview img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.lp-visual-preview-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(15,23,42,.86);
  color: #fff;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 900;
}
.lp-visual-preview-badge i { color: #93c5fd; }
.lp-visual-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
}
.lp-visual-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 12px;
  background: #f8fafc;
  color: #475569;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.lp-visual-steps span i { color: #2563eb; }

/* ───────────────────────────────
   CTA
─────────────────────────────── */
.lp-cta-section {
  background: #05091a;
  padding: 120px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.lp-cta-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(37,99,235,.2) 0%, transparent 65%);
}
.lp-cta-trial-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 20px; border-radius: 999px;
  background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.35);
  color: #93c5fd; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px; position: relative;
}
.lp-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; letter-spacing: -.05em; color: #fff;
  margin-bottom: 16px; position: relative;
}
.lp-cta-section p { font-size: 17px; color: #94a3b8; margin-bottom: 36px; position: relative; }
.lp-cta-trial-info {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap; position: relative;
  font-size: 13px; font-weight: 500; color: #475569;
}
.lp-cta-trial-info span { display: flex; align-items: center; gap: 6px; }
.lp-cta-trial-info i { color: #60a5fa; font-size: 14px; }

/* ───────────────────────────────
   CONTACT
─────────────────────────────── */
.lp-contact { background: #f8fafc; padding: 96px 0; }
.lp-contact-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
  padding: 32px; height: 100%;
  box-shadow: 0 4px 24px rgba(15,23,42,.06);
}

/* ───────────────────────────────
   SETUP / INDUSTRIES / CONTROL
─────────────────────────────── */
.lp-agent-setup { background: #f8fafc; padding: 96px 0; border-top: 1px solid #e2e8f0; }
.lp-setup-map {
  display: grid;
  grid-template-columns: minmax(210px, .85fr) minmax(260px, 1fr) minmax(210px, .85fr);
  gap: 14px;
  align-items: center;
}
.lp-setup-core,
.lp-setup-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(15,23,42,.06);
}
.lp-setup-panel {
  padding: 18px;
}
.lp-setup-panel-label {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 12px;
}
.lp-setup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
}
.lp-setup-row + .lp-setup-row { margin-top: 8px; }
.lp-setup-row i {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 15px;
  flex-shrink: 0;
}
.lp-setup-inputs,
.lp-setup-output { position: relative; }
.lp-setup-inputs::after,
.lp-setup-output::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #bfdbfe;
}
.lp-setup-inputs::after { right: -14px; }
.lp-setup-output::before { left: -14px; }
.lp-setup-core {
  padding: 28px;
  text-align: center;
}
.lp-setup-core-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #93c5fd;
  font-size: 24px;
  margin-bottom: 16px;
}
.lp-setup-core > span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.lp-setup-core strong {
  display: block;
  color: #0f172a;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
  margin-bottom: 18px;
}
.lp-setup-progress {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 16px;
}
.lp-setup-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}
.lp-setup-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 850;
}
.lp-setup-pipeline span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eff6ff;
  white-space: nowrap;
}
.lp-setup-pipeline i {
  color: #94a3b8;
  font-size: 12px;
}
.lp-industries { background: #fff; padding: 92px 0; }
.lp-industry-switchboard {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.lp-industry-tile {
  min-height: 112px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(15,23,42,.045);
  font: inherit;
  cursor: pointer;
  transition: transform .12s, border-color .12s, box-shadow .12s;
}
.lp-industry-tile:hover:not(.active) {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
}
.lp-industry-tile:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.lp-industry-tile.active {
  background: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 18px 38px rgba(15,23,42,.18);
}
.lp-industry-tile i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 21px;
  margin-bottom: 4px;
}
.lp-industry-tile.active i {
  background: rgba(255,255,255,.1);
  color: #93c5fd;
}
.lp-industry-tile strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}
.lp-industry-tile.active strong { color: #fff; }
.lp-industry-language {
  display: none;
}
.lp-industry-language.active {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: stretch;
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 42px rgba(15,23,42,.06);
}
.lp-language-head {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px;
}
.lp-language-head span {
  display: inline-flex;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.lp-language-head strong {
  display: block;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -.03em;
}
.lp-language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.lp-language-grid > div {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px;
}
.lp-language-grid span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.lp-language-grid strong {
  display: block;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}
.lp-control { background: #fff; padding: 92px 0 76px; }
.lp-control-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 34px;
  align-items: center;
  background: #0d1527;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.lp-control-panel h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.lp-control-panel p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.lp-control-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-control-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
}
.lp-control-panel li i {
  color: #4ade80;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .lp-cta-section { padding: 80px 0; }
  .lp-leak-panel { grid-template-columns: 1fr; }
  .lp-pain-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lp-agent-flow { grid-template-columns: repeat(5, minmax(120px, 1fr)); overflow-x: auto; padding-bottom: 8px; }
  .lp-setup-map { grid-template-columns: 1fr; }
  .lp-setup-inputs::after,
  .lp-setup-output::before { display: none; }
  .lp-industry-switchboard { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lp-industry-language.active { grid-template-columns: 1fr; }
  .lp-visual-tool-panel { grid-template-columns: 1fr; }
  .lp-control-panel { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .lp-leak-chart { grid-template-columns: repeat(4, minmax(70px, 1fr)); overflow-x: auto; }
  .lp-visual-steps { grid-template-columns: 1fr; }
  .lp-language-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .lp-pain-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-pain-card { min-height: auto; }
  .lp-industry-switchboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-visual-tool-panel { padding: 22px; }
  .lp-visual-preview img { height: 220px; }
  .lp-control-panel { padding: 26px; }
}
