/* ============================================================
   LAKSFORD PARTNERS — Shared Design System
   Modern blue / tech aesthetic
   ============================================================ */

:root {
  --navy-900: #07142e;
  --navy-800: #0c1f44;
  --navy-700: #102a5c;
  --blue-600: #1c5cd6;
  --blue-500: #2b7de9;
  --blue-400: #4f9bff;
  --blue-300: #8cc0ff;
  --cyan: #38d2f0;
  --gold: #c9a24a;
  --ink: #0d1b34;
  --slate: #4a5a72;
  --muted: #7b8aa1;
  --line: #e4e9f2;
  --bg: #ffffff;
  --bg-soft: #f5f8fd;
  --bg-blue: #eef4fe;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(13, 27, 52, .06);
  --shadow-md: 0 18px 50px rgba(13, 27, 52, .10);
  --shadow-lg: 0 30px 80px rgba(13, 27, 52, .16);
  --grad: linear-gradient(120deg, #1c5cd6 0%, #2b7de9 45%, #38d2f0 100%);
  --grad-deep: linear-gradient(135deg, #07142e 0%, #0c1f44 45%, #102a5c 100%);
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--slate); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.center { text-align: center; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue-600);
  background: var(--bg-blue); padding: .45rem .9rem; border-radius: 100px;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); }

.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--slate); max-width: 60ch; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: .9rem 1.6rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px rgba(43,125,233,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(43,125,233,.45); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--blue-600); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-3px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ NAV ============ */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .35s, box-shadow .35s, padding .35s, backdrop-filter .35s;
  padding: 1.1rem 0;
}
header.nav.solid {
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(13,27,52,.05);
  padding: .65rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand .logo-svg { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 1.18rem; font-weight: 800; letter-spacing: .02em; color: var(--navy-800); }
.brand-sub { font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; color: var(--blue-500); font-weight: 700; margin-top: .25rem; }
header.nav:not(.solid) .brand-name { color: #fff; }
header.nav:not(.solid) .brand-sub { color: var(--blue-300); }

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links > li > a {
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.82);
  transition: color .2s; display: inline-flex; align-items: center; gap: .3rem;
}
header.nav.solid .nav-links > li > a { color: var(--slate); }
.nav-links > li > a:hover { color: var(--blue-400); }
header.nav.solid .nav-links > li > a:hover { color: var(--blue-600); }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 130%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: .6rem; min-width: 250px;
  opacity: 0; visibility: hidden; transition: all .25s var(--ease);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a {
  display: flex; flex-direction: column; gap: .1rem; padding: .65rem .8rem; border-radius: 10px;
  color: var(--ink); font-weight: 600; font-size: .9rem; transition: background .18s;
}
.drop a span { font-weight: 400; font-size: .78rem; color: var(--muted); }
.drop a:hover { background: var(--bg-blue); }

.nav-cta { display: flex; align-items: center; gap: .9rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
header.nav.solid .hamburger span { background: var(--navy-800); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1100; background: var(--grad-deep);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 1.3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.5rem; font-weight: 600; }
.mobile-menu a:hover { color: var(--blue-300); }
.mobile-close { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 2.2rem; color: #fff; background: none; border: none; cursor: pointer; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--grad-deep); overflow: hidden; color: #fff;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero-glow.g1 { width: 480px; height: 480px; background: #1c5cd6; top: -120px; right: -80px; }
.hero-glow.g2 { width: 420px; height: 420px; background: #38d2f0; bottom: -160px; left: -100px; opacity: .35; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .wrap { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.hero-copy { padding: 7rem 0 4rem; }
.hero h1 { color: #fff; }
.hero h1 .gradient-text { background: linear-gradient(120deg,#8cc0ff,#38d2f0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: rgba(232,240,255,.85); font-size: 1.12rem; margin: 1.4rem 0 2rem; max-width: 52ch; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; color: var(--blue-300);
  font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(140,192,255,.12); border: 1px solid rgba(140,192,255,.25);
  padding: .45rem 1rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.hero-stats { display: flex; gap: 2.4rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stats .stat strong { font-size: 2rem; font-weight: 800; color: #fff; display: block; }
.hero-stats .stat span { font-size: .82rem; color: rgba(232,240,255,.65); letter-spacing: .02em; }

/* Hero visual (animated globe) */
.hero-visual { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.orbit-wrap { position: relative; width: 400px; height: 400px; }
.globe-core {
  position: absolute; inset: 0; margin: auto; width: 230px; height: 230px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #4f9bff, #1c5cd6 55%, #0c1f44 100%);
  box-shadow: 0 0 60px rgba(43,125,233,.6), inset -20px -20px 60px rgba(0,0,0,.4);
  top: 0; bottom: 0; left: 0; right: 0;
}
.globe-grid { position: absolute; inset: 0; margin: auto; width: 230px; height: 230px; opacity: .55; }
.orbit { position: absolute; inset: 0; margin: auto; border: 1px solid rgba(140,192,255,.28); border-radius: 50%; }
.orbit.o1 { width: 300px; height: 300px; animation: spin 18s linear infinite; }
.orbit.o2 { width: 380px; height: 380px; animation: spin 28s linear infinite reverse; }
.orbit .node {
  position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan); top: -7px; left: 50%; transform: translateX(-50%);
}
.orbit.o2 .node { background: var(--blue-300); box-shadow: 0 0 16px var(--blue-300); }
@keyframes spin { to { transform: rotate(360deg); } }
.pulse-ring { position: absolute; inset: 0; margin: auto; width: 230px; height: 230px; border-radius: 50%; border: 2px solid rgba(56,210,240,.5); animation: pulse 3s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.8); opacity: 0; } }

/* ============ TRUST BAR ============ */
.trustbar { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.trustbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; padding-bottom: 1.6rem; }
.trustbar p { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.trust-items { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.trust-items span { font-weight: 700; color: var(--slate); font-size: .95rem; }

/* ============ CARDS / GRID ============ */
.grid { display: grid; gap: 1.5rem; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-blue); color: var(--blue-600); margin-bottom: 1.2rem;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .96rem; }

/* Industry card (image-y) */
.ind-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem;
  color: #fff; background: var(--grad-deep); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid rgba(255,255,255,.06);
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ind-card .ind-bg { position: absolute; inset: 0; opacity: .85; transition: transform .5s var(--ease); }
.ind-card:hover .ind-bg { transform: scale(1.06); }
.ind-card .ind-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,20,46,.92) 8%, rgba(7,20,46,.35) 60%, rgba(7,20,46,.15) 100%); }
.ind-card .ind-ic { position: relative; z-index: 2; width: 50px; height: 50px; border-radius: 13px; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); display: grid; place-items: center; margin-bottom: auto; }
.ind-card .ind-ic svg { width: 24px; height: 24px; color: #fff; }
.ind-card h3 { position: relative; z-index: 2; color: #fff; margin-bottom: .35rem; }
.ind-card p { position: relative; z-index: 2; color: rgba(232,240,255,.82); font-size: .92rem; }
.ind-card .ind-link { position: relative; z-index: 2; margin-top: 1rem; font-weight: 700; font-size: .85rem; color: var(--blue-300); display: inline-flex; align-items: center; gap: .4rem; }

/* feature row */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.feature-row.flip .feature-visual { order: -1; }
.feature-visual {
  border-radius: var(--radius); min-height: 360px; background: var(--grad-deep);
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.feature-list { margin-top: 1.4rem; display: grid; gap: .9rem; }
.feature-list li { display: flex; gap: .75rem; align-items: flex-start; color: var(--slate); font-size: .98rem; }
.feature-list .check { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--bg-blue); color: var(--blue-600); display: grid; place-items: center; margin-top: .15rem; }
.feature-list .check svg { width: 13px; height: 13px; }

/* stats band */
.stats-band { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.stats-band .hero-glow { opacity: .4; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; z-index: 2; text-align: center; }
.stats-grid .num { font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 800; background: linear-gradient(120deg,#8cc0ff,#38d2f0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-grid .lbl { color: rgba(232,240,255,.75); font-size: .9rem; margin-top: .3rem; }

/* steps */
.steps { display: grid; gap: 1.2rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.8rem;
  transition: box-shadow .3s, transform .3s;
}
.step:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.step .num { counter-increment: step; width: 46px; height: 46px; border-radius: 12px; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; }
.step .num::before { content: counter(step,decimal-leading-zero); }
.step h4 { font-size: 1.08rem; margin-bottom: .3rem; }
.step p { font-size: .94rem; }

/* testimonial */
.quote-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.quote .stars { color: var(--gold); letter-spacing: 2px; }
.quote p { color: var(--ink); font-size: 1rem; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; }
.quote .who strong { display: block; font-size: .92rem; color: var(--ink); }
.quote .who span { font-size: .8rem; color: var(--muted); }

/* CTA band */
.cta {
  background: var(--grad-deep); color: #fff; border-radius: 28px; padding: clamp(2.5rem,5vw,4rem);
  position: relative; overflow: hidden; text-align: center; box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; max-width: 18ch; margin: 0 auto 1rem; }
.cta p { color: rgba(232,240,255,.82); max-width: 52ch; margin: 0 auto 2rem; }
.cta .hero-glow.g1 { top: -140px; left: -60px; right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* page hero (interior) */
.page-hero { background: var(--grad-deep); color: #fff; padding: 9rem 0 4.5rem; position: relative; overflow: hidden; }
.page-hero .hero-glow.g1 { top: -120px; right: -60px; }
.page-hero .hero-glow.g2 { bottom: -180px; left: -80px; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(232,240,255,.82); font-size: 1.12rem; max-width: 60ch; margin-top: 1rem; }
.crumbs { font-size: .82rem; color: var(--blue-300); margin-bottom: 1rem; display: flex; gap: .5rem; align-items: center; }
.crumbs a:hover { color: #fff; }

/* callout / highlight box */
.highlight {
  background: var(--bg-blue); border: 1px solid #d6e6fd; border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-sm); padding: 1.5rem 1.7rem;
}
.highlight strong { color: var(--navy-800); }

/* big metric flip */
.metric-flip { display: flex; align-items: center; justify-content: center; gap: 1.6rem; flex-wrap: wrap; }
.metric-flip .mb { text-align: center; }
.metric-flip .mb .v { font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 800; line-height: 1; }
.metric-flip .from .v { color: var(--muted); text-decoration: line-through; text-decoration-thickness: 3px; }
.metric-flip .to .v { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric-flip .mb .l { font-size: .82rem; color: var(--muted); margin-top: .4rem; letter-spacing: .04em; }
.metric-flip .arr { font-size: 2rem; color: var(--blue-400); }

/* form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--bg-soft); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(43,125,233,.15); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info .ci-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-info .ci-row .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-blue); color: var(--blue-600); display: grid; place-items: center; }
.contact-info .ci-row .ic svg { width: 22px; height: 22px; }
.contact-info .ci-row strong { display: block; color: var(--ink); }
.contact-info .ci-row span { color: var(--slate); font-size: .94rem; }

/* ============ FOOTER ============ */
footer.site {
  background: var(--navy-900); color: rgba(232,240,255,.7); padding: 4.5rem 0 2rem; margin-top: 0;
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
footer.site .brand-name { color: #fff; }
footer.site .brand-sub { color: var(--blue-400); }
footer.site .f-about { margin-top: 1.2rem; font-size: .92rem; max-width: 34ch; }
.foot-col h5 { color: #fff; font-size: .92rem; letter-spacing: .04em; margin-bottom: 1.1rem; text-transform: uppercase; }
.foot-col a { display: block; font-size: .9rem; padding: .35rem 0; color: rgba(232,240,255,.65); transition: color .2s; }
.foot-col a:hover { color: var(--blue-300); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; }
.foot-bottom .locs { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foot-bottom .locs span { color: rgba(232,240,255,.55); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; order: -1; margin-top: 5rem; }
  .hero-copy { padding: 1rem 0 4rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.flip .feature-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .quote-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .metric-flip .arr { transform: rotate(90deg); }
}

/* ============ CHAT / QUICK-CONTACT WIDGET ============ */
.lp-chat { position: fixed; right: 22px; bottom: 22px; z-index: 1200; }
.lp-chat-btn {
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad); color: #fff; box-shadow: 0 12px 30px rgba(43,125,233,.45);
  display: grid; place-items: center; transition: transform .25s var(--ease), box-shadow .25s;
}
.lp-chat-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 42px rgba(43,125,233,.55); }
.lp-chat-btn svg { width: 28px; height: 28px; transition: transform .3s var(--ease); }
.lp-chat.open .lp-chat-btn svg.ic-chat { display: none; }
.lp-chat .lp-chat-btn svg.ic-close { display: none; }
.lp-chat.open .lp-chat-btn svg.ic-close { display: block; }
.lp-chat-badge {
  position: absolute; top: -3px; right: -3px; width: 18px; height: 18px; border-radius: 50%;
  background: #ff5a5f; color: #fff; font-size: .68rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid #fff;
}
.lp-chat.open .lp-chat-badge { display: none; }

.lp-chat-panel {
  position: absolute; bottom: 80px; right: 0; width: 330px; max-width: calc(100vw - 44px);
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden;
  transform: translateY(14px) scale(.96); transform-origin: bottom right; opacity: 0; visibility: hidden;
  transition: all .28s var(--ease);
}
.lp-chat.open .lp-chat-panel { transform: none; opacity: 1; visibility: visible; }
.lp-chat-head { background: var(--grad-deep); color: #fff; padding: 1.3rem 1.4rem; position: relative; overflow: hidden; }
.lp-chat-head .hero-glow { width: 200px; height: 200px; top: -90px; right: -50px; opacity: .5; }
.lp-chat-head strong { display: block; font-size: 1.05rem; position: relative; z-index: 2; }
.lp-chat-head span { font-size: .82rem; color: rgba(232,240,255,.8); position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .4rem; margin-top: .25rem; }
.lp-chat-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #46e6a0; box-shadow: 0 0 0 0 rgba(70,230,160,.6); animation: lpdot 2s infinite; }
@keyframes lpdot { 0% { box-shadow: 0 0 0 0 rgba(70,230,160,.6);} 70%{ box-shadow: 0 0 0 8px rgba(70,230,160,0);} 100%{ box-shadow:0 0 0 0 rgba(70,230,160,0);} }
.lp-chat-body { padding: 1rem 1.1rem 1.2rem; }
.lp-chat-body > p { font-size: .9rem; color: var(--slate); margin-bottom: .9rem; }
.lp-chat-actions { display: grid; gap: .6rem; }
.lp-chat-actions a {
  display: flex; align-items: center; gap: .8rem; padding: .8rem .9rem; border-radius: 12px;
  border: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: .92rem;
  transition: background .18s, border-color .18s, transform .18s; cursor: pointer;
}
.lp-chat-actions a:hover { background: var(--bg-blue); border-color: var(--blue-300); transform: translateX(2px); }
.lp-chat-actions a.primary { background: var(--grad); color: #fff; border-color: transparent; }
.lp-chat-actions a.primary:hover { background: var(--grad); filter: brightness(1.05); }
.lp-chat-actions a .cic { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-blue); color: var(--blue-600); display: grid; place-items: center; flex: 0 0 auto; }
.lp-chat-actions a.primary .cic { background: rgba(255,255,255,.2); color: #fff; }
.lp-chat-actions a .cic svg { width: 18px; height: 18px; }
.lp-chat-actions a small { display: block; font-weight: 400; color: var(--muted); font-size: .76rem; }
.lp-chat-actions a.primary small { color: rgba(255,255,255,.85); }
@media (max-width: 480px) { .lp-chat { right: 16px; bottom: 16px; } .lp-chat-btn { width: 56px; height: 56px; } }
