:root {
  --night: #040814;
  --panel: rgba(8, 17, 38, 0.78);
  --panel-strong: #081126;
  --text: #f8fbff;
  --muted: #aab6d3;
  --line: rgba(145, 160, 255, 0.2);
  --violet: #7c3aed;
  --cyan: #22d3ee;
  --electric: #2563eb;
  --pink: #f59e0b;
}

body.lx-mode-light {
  --night: #f5f9fc;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --text: #0b1220;
  --muted: #4b5f76;
  --line: rgba(15, 23, 42, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 18% 4%, rgba(34, 211, 238, .18), transparent 28%), radial-gradient(circle at 82% 18%, rgba(245, 158, 11, .1), transparent 26%), radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .16), transparent 34%), var(--night);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body:before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
input, textarea, select, button { font: inherit; }
.shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(4,8,20,.86); backdrop-filter: blur(18px); }
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand strong, .brand em { display: block; font-style: normal; line-height: 1.05; }
.brand strong { font-size: 1.18rem; font-weight: 900; }
.brand em { color: var(--muted); font-size: .92rem; }
.brand-logo { display: block; width: auto; max-width: 220px; max-height: 58px; object-fit: contain; }
.brand-orbit { position: relative; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(34,211,238,.48); border-radius: 8px; background: rgba(34,211,238,.1); box-shadow: 0 0 36px rgba(34,211,238,.22); }
.brand-orbit:before { content: ""; width: 28px; height: 28px; border: 1px solid rgba(56,189,248,.75); border-radius: 8px; transform: rotate(45deg); }
.brand-orbit span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.primary-nav { display: flex; align-items: center; }
.primary-menu { display: flex; align-items: center; gap: 16px; margin: 0; padding: 0; }
.primary-nav li { position: relative; list-style: none; margin: 0; padding: 0; }
.primary-nav a { color: #d8def0; font-size: .9rem; font-weight: 700; transition: color .2s ease; }
.primary-nav a:hover { color: var(--cyan); }
.primary-menu > .menu-item-has-children > a:after { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); opacity: .72; }
.primary-menu > .menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 8px;
  width: min(560px, calc(100vw - 32px));
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(145,160,255,.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(13,24,53,.96), rgba(8,15,34,.92));
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 8px, 0);
  transition: opacity .18s ease, transform .18s ease;
}
.primary-menu > .menu-item-has-children:hover > .sub-menu,
.primary-menu > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}
.primary-menu .sub-menu:before {
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  height: 22px;
  content: "";
}
.primary-menu .sub-menu a {
  display: block;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: #dfe7ff;
}
.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus {
  border-color: rgba(34,211,238,.38);
  color: #ffffff;
  background: rgba(34,211,238,.1);
}
.primary-menu .sub-menu .sub-menu {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0 0 0 12px;
}
.nav-cta, .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; border-radius: 8px; padding: 0 20px; font-size: .92rem; font-weight: 800; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.nav-cta, .btn-primary { border: 0; background: linear-gradient(90deg, var(--electric), #0f766e); color: #fff; box-shadow: 0 0 42px rgba(34,211,238,.22); }
.btn-ghost { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); color: #fff; }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.nav-toggle { display: none; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); border-radius: 8px; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: #fff; }
.hero { position: relative; overflow: hidden; padding: 86px 0 74px; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 56px; }
.eyebrow { margin: 0 0 15px; color: var(--cyan); text-transform: uppercase; font-size: .78rem; font-weight: 900; letter-spacing: .24em; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 5.9rem); line-height: .96; margin-bottom: 24px; letter-spacing: 0; }
h1 span, .gradient-text { background: linear-gradient(90deg, #a78bfa, #38bdf8); -webkit-background-clip: text; background-clip: text; color: transparent; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.06; margin-bottom: 18px; }
h3 { line-height: 1.25; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 32px; }
.trust-note { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; color: #d4dbf3; font-size: .9rem; }
.trust-note span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(56,189,248,.14); color: #fff; font-size: .68rem; border: 1px solid rgba(56,189,248,.34); }
.aurora { position: absolute; width: 360px; height: 360px; border-radius: 999px; filter: blur(16px); animation: float 8s ease-in-out infinite; z-index: -1; }
.aurora-one { left: 3%; top: 16%; background: radial-gradient(circle, rgba(34,211,238,.28), transparent 68%); }
.aurora-two { right: 6%; top: 22%; background: radial-gradient(circle, rgba(245,158,11,.16), transparent 68%); animation-duration: 11s; }
@keyframes float { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(22px,-28px,0) scale(1.06); } }
.glass-card, .glow-panel { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(13,24,53,.86), rgba(8,15,34,.66)); box-shadow: 0 24px 90px rgba(0,0,0,.32); backdrop-filter: blur(18px); }
.glow-panel { position: relative; border-radius: 10px; }
.glow-panel:before { position: absolute; inset: -1px; z-index: -1; border-radius: inherit; content: ""; background: linear-gradient(135deg, rgba(34,211,238,.7), rgba(37,99,235,.72), rgba(245,158,11,.22)); opacity: .72; }
.dashboard { padding: 20px; transform: perspective(1000px) rotateY(-8deg) rotateX(3deg); }
.dash-top { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 16px; }
.dash-top div { display: flex; gap: 7px; }
.dash-top span { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); }
.dash-body { display: grid; grid-template-columns: .72fr 1.4fr .78fr; gap: 16px; padding-top: 18px; }
.dash-body nav, .dash-body aside, .metric-row div, .chart { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); border-radius: 8px; }
.dash-body nav { padding: 12px; }
.dash-body nav b { display: block; padding: 12px; color: #b7c3e3; font-size: .78rem; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric-row div { padding: 18px; }
.metric-row small, .metric-row em { display: block; color: var(--muted); font-style: normal; }
.metric-row strong { display: block; font-size: 2rem; }
.metric-row em { color: #6ee7b7; font-weight: 800; }
.chart { display: flex; align-items: end; gap: 7px; height: 180px; margin-top: 14px; padding: 18px; }
.chart span { flex: 1; min-width: 7px; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--cyan), var(--electric)); animation: float 7s ease-in-out infinite; }
.dash-body aside { padding: 18px; text-align: center; }
.bot-face { display: flex; justify-content: center; gap: 12px; align-items: center; width: 92px; height: 74px; margin: 0 auto 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,.5); background: #050b1d; box-shadow: 0 0 34px rgba(56,189,248,.3); }
.bot-face i { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.dash-body aside button { width: 100%; border: 0; border-radius: 8px; padding: 12px; background: linear-gradient(90deg, var(--electric), #0f766e); color: #fff; font-weight: 800; }
.trusted { border-block: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.02); padding: 26px 0; }
.trusted .shell { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; text-align: center; color: #7d879f; font-weight: 900; }
.section { padding-block: 88px; }
.section-heading { max-width: 780px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p:not(.eyebrow), .glass-card p, .site-footer p, .article-intro, .article-content p { color: var(--muted); }
.card-grid, .blog-grid, .case-grid { display: grid; gap: 22px; margin-top: 42px; }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.case-grid, .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.blog-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.glass-card { border-radius: 8px; padding: 24px; transition: transform .2s ease, box-shadow .2s ease; }
.glass-card:hover { transform: translateY(-4px); box-shadow: 0 0 42px rgba(34,211,238,.2); }
.icon-box { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 22px; border-radius: 8px; border: 1px solid rgba(56,189,248,.32); background: rgba(56,189,248,.1); color: var(--cyan); font-weight: 900; }
.service-card a, .text-link { color: var(--cyan); font-weight: 800; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 34px; }
.stats-bar div { display: grid; gap: 2px; }
.stats-bar strong { font-size: 2.2rem; line-height: 1; }
.stats-bar span { color: var(--muted); }
.case-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 42px; }
.article-image { display: block; width: 100%; object-fit: cover; border: 1px solid rgba(255,255,255,.1); background: #081126; }
.card-image { height: 170px; border-radius: 6px; margin: -4px -4px 20px; }
.card-image { display: block; width: calc(100% + 8px); object-fit: cover; border: 1px solid rgba(255,255,255,.1); background: #081126; }
.card-kicker { color: #c4a8ff; font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.card-meta { display: flex; flex-wrap: wrap; gap: 12px; color: #73809d; font-size: .82rem; margin: 15px 0; }
.metric-pill { display: inline-block; margin-top: 14px; border: 1px solid rgba(34,211,238,.28); background: rgba(34,211,238,.1); border-radius: 8px; padding: 12px 14px; color: #d9f2ff; }
.cta-panel { display: flex; justify-content: space-between; gap: 26px; align-items: center; margin-bottom: 88px; padding: 38px; overflow: hidden; }
.cta-panel:after { position: absolute; inset-inline: 0; bottom: -35px; height: 100px; content: ""; background: linear-gradient(90deg, rgba(79,70,229,.45), rgba(56,189,248,.22), rgba(217,70,239,.42)); filter: blur(26px); }
.cta-panel > * { position: relative; z-index: 1; }
.split-page { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.lead-form { display: grid; gap: 16px; }
.lx-dynamic-form { border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(145deg, rgba(13,24,53,.86), rgba(8,15,34,.66)); padding: 24px; box-shadow: 0 24px 90px rgba(0,0,0,.25); }
.demo-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lead-form label { display: grid; gap: 7px; color: #dfe7ff; font-size: .9rem; font-weight: 800; }
.lead-form input, .lead-form textarea, .lead-form select, .filter-bar input, .filter-bar select, .newsletter-form input { width: 100%; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.055); color: #fff; outline: none; padding: 13px 14px; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus, .filter-bar input:focus, .filter-bar select:focus { box-shadow: 0 0 0 3px rgba(56,189,248,.24); }
.lead-form option, .filter-bar option { color: #071023; }
.wide { grid-column: 1 / -1; }
.trap { position: absolute; left: -9999px; opacity: 0; }
.form-note { border-radius: 8px; padding: 12px 14px; margin: 0; }
.form-note.success { background: rgba(16,185,129,.12); color: #8ff0ca; }
.form-note.error { background: rgba(248,113,113,.12); color: #fecaca; }
.security-note, .contact-details { margin-top: 28px; border: 1px solid rgba(56,189,248,.2); background: rgba(56,189,248,.09); border-radius: 8px; padding: 20px; color: #d9f2ff; }
.filter-bar { display: grid; grid-template-columns: 1fr 260px auto; gap: 14px; margin-top: 36px; }
.article-shell { max-width: 920px; }
.article-shell h1 { margin-top: 20px; }
.article-image { height: 330px; border-radius: 8px; margin: 34px 0; }
.article-content { font-size: 1.08rem; }
.article-content h2 { margin-top: 34px; font-size: 2rem; }
.related-posts { margin-top: 64px; }
.center-actions { margin-top: 34px; text-align: center; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; color: #8793b3; font-size: .86rem; }
.breadcrumbs a { color: var(--cyan); font-weight: 800; }
.site-footer { border-top: 1px solid rgba(255,255,255,.1); background: #030714; padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.25fr; gap: 42px; }
.footer-grid h3 { font-size: .92rem; }
.footer-grid a:not(.brand) { display: block; color: var(--muted); margin: 9px 0; font-size: .92rem; }
.newsletter-form { display: flex; gap: 8px; margin-top: 18px; }
.newsletter-form button { border: 0; border-radius: 12px; padding: 0 16px; color: #fff; background: linear-gradient(90deg, var(--electric), var(--violet)); font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #7b86a2; font-size: .82rem; }
.not-found-page { text-align: center; max-width: 760px; }
.service-detail-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.service-orbit { min-height: 340px; display: grid; place-items: center; text-align: center; padding: 34px; overflow: hidden; }
.service-orbit span { display: grid; place-items: center; width: 148px; height: 148px; border-radius: 42px; border: 1px solid rgba(56,189,248,.42); background: radial-gradient(circle at 30% 20%, rgba(56,189,248,.34), transparent 44%), rgba(139,92,246,.14); color: #fff; font-size: 3rem; font-weight: 950; box-shadow: 0 0 70px rgba(56,189,248,.22); }
.service-orbit p { max-width: 390px; color: var(--muted); }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.compact-card h3 { margin-bottom: 10px; }
.stack-list { display: grid; gap: 14px; margin-top: 24px; }
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.step-number { color: var(--cyan); font-weight: 950; font-size: .82rem; letter-spacing: .18em; }
.faq-list { display: grid; gap: 14px; margin-top: 34px; }
.faq-list summary { cursor: pointer; font-weight: 850; }
.faq-list p { margin: 14px 0 0; color: var(--muted); }
.demo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 44px; }
.demo-card { display: grid; gap: 22px; }
.fake-chat { position: relative; display: grid; gap: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.045); padding: 16px; min-height: 264px; overflow: hidden; }
.demo-card:not(.is-unlocked) .fake-chat:after { position: absolute; inset: 0; display: grid; place-items: center; content: "Complete the lead form to unlock"; background: rgba(3,7,20,.72); color: #d9f2ff; font-weight: 850; text-align: center; padding: 20px; backdrop-filter: blur(3px); }
.fake-chat-top { display: flex; align-items: center; gap: 10px; color: #dfe7ff; font-size: .84rem; }
.fake-chat-top span { width: 10px; height: 10px; border-radius: 50%; background: #6ee7b7; box-shadow: 0 0 16px #6ee7b7; }
.fake-chat-top em { margin-left: auto; color: #73809d; font-style: normal; }
.fake-chat p { width: fit-content; max-width: 86%; margin: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 10px 12px; color: #dfe7ff; font-size: .9rem; }
.fake-chat p.bot { background: rgba(56,189,248,.09); }
.fake-chat p.user { justify-self: end; background: rgba(139,92,246,.16); }
.fake-input { align-self: end; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; padding: 12px 14px; color: #73809d; background: rgba(0,0,0,.18); }
.demo-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.lead-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.lead-modal[aria-hidden="false"] { display: flex; }
.lead-modal__backdrop { position: absolute; inset: 0; background: rgba(1,4,12,.78); backdrop-filter: blur(10px); }
.lead-modal__panel { position: relative; width: min(680px, 100%); max-height: min(760px, calc(100vh - 40px)); overflow: auto; padding: 26px; }
.lead-modal__close { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.06); color: #fff; font-weight: 900; cursor: pointer; }
.modal-copy { max-width: 680px; color: var(--muted); }
.modal-open { overflow: hidden; }
.lead-form button[disabled] { opacity: .68; cursor: wait; }
.demo-access-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 24px; margin-top: 38px; }
.demo-console { padding: 24px; }
.demo-dialogue { display: grid; gap: 14px; margin: 24px 0; }
.demo-dialogue p { max-width: 82%; margin: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 12px 14px; color: #dfe7ff; }
.demo-dialogue .bot { background: rgba(56,189,248,.09); }
.demo-dialogue .user { justify-self: end; background: rgba(139,92,246,.16); }
.demo-dashboard .metric-row { margin: 20px 0; }
.check-list { display: grid; gap: 12px; padding-left: 18px; color: var(--muted); }
.page-content ul, .article-content ul { color: var(--muted); }
body.lx-mode-light {
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 211, 238, .22), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(37, 99, 235, .12), transparent 28%),
    linear-gradient(180deg, #edf8ff 0%, #f8fbff 32%, #ffffff 66%, #f6f8fb 100%);
  color: var(--text);
}
body.lx-mode-light:before {
  background-image: linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
  opacity: .7;
}
body.lx-mode-light h1,
body.lx-mode-light h2,
body.lx-mode-light h3 {
  color: #0b1220;
}
body.lx-mode-light .hero-copy > p:not(.eyebrow),
body.lx-mode-light .section-heading p:not(.eyebrow),
body.lx-mode-light .article-intro,
body.lx-mode-light .article-content p {
  color: #4b5f76;
}
body.lx-mode-light .site-header {
  border-bottom-color: rgba(15,23,42,.1);
  background: rgba(255,255,255,.94);
}
body.lx-mode-light .brand strong,
body.lx-mode-light .primary-nav a {
  color: #0f172a;
}
body.lx-mode-light .primary-menu > .menu-item-has-children > .sub-menu {
  border-color: rgba(15,23,42,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(243,248,252,.96));
  box-shadow: 0 28px 80px rgba(15,23,42,.15);
}
body.lx-mode-light .primary-menu .sub-menu a {
  border-color: rgba(15,23,42,.1);
  background: rgba(15,23,42,.035);
  color: #172033;
}
body.lx-mode-light .primary-menu .sub-menu a:hover,
body.lx-mode-light .primary-menu .sub-menu a:focus {
  border-color: rgba(3,105,161,.28);
  color: #0369a1;
  background: rgba(14,165,233,.08);
}
body.lx-mode-light .brand em,
body.lx-mode-light .trust-note,
body.lx-mode-light .trusted .shell,
body.lx-mode-light .card-meta,
body.lx-mode-light .footer-bottom {
  color: #526174;
}
body.lx-mode-light .btn-ghost {
  border-color: rgba(15,23,42,.18);
  background: rgba(255,255,255,.76);
  color: #0f172a;
}
body.lx-mode-light .glass-card,
body.lx-mode-light .lx-dynamic-form {
  border-color: rgba(15,23,42,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(243,248,252,.88));
  color: #0b1220;
  box-shadow: 0 24px 70px rgba(15,23,42,.12);
}
body.lx-mode-light .glass-card p,
body.lx-mode-light .faq-list p,
body.lx-mode-light .check-list,
body.lx-mode-light .page-content ul,
body.lx-mode-light .article-content ul {
  color: #526174;
}
body.lx-mode-light .service-card a,
body.lx-mode-light .text-link,
body.lx-mode-light .breadcrumbs a {
  color: #0369a1;
}
body.lx-mode-light .glow-panel,
body.lx-mode-light .cta-panel,
body.lx-mode-light .stats-bar,
body.lx-mode-light .dashboard {
  color: #f8fbff;
  background: linear-gradient(145deg, rgba(19,43,91,.94), rgba(9,19,43,.88));
}
body.lx-mode-light .glow-panel h2,
body.lx-mode-light .glow-panel h3,
body.lx-mode-light .cta-panel h2,
body.lx-mode-light .stats-bar h2,
body.lx-mode-light .dashboard h2,
body.lx-mode-light .dashboard h3 {
  color: #ffffff;
}
body.lx-mode-light .glow-panel p,
body.lx-mode-light .cta-panel p,
body.lx-mode-light .stats-bar span,
body.lx-mode-light .dashboard p,
body.lx-mode-light .metric-row small,
body.lx-mode-light .metric-row em {
  color: #cbd8ee;
}
body.lx-mode-light .lead-form label,
body.lx-mode-light .security-note,
body.lx-mode-light .contact-details {
  color: #0f172a;
}
body.lx-mode-light .lead-form input,
body.lx-mode-light .lead-form textarea,
body.lx-mode-light .lead-form select,
body.lx-mode-light .filter-bar input,
body.lx-mode-light .filter-bar select {
  border-color: rgba(15,23,42,.16);
  background: rgba(255,255,255,.9);
  color: #0f172a;
}
body.lx-mode-light .site-footer,
body.lx-mode-light .site-footer h2,
body.lx-mode-light .site-footer h3,
body.lx-mode-light .site-footer .brand strong {
  color: #f8fbff;
}
body.lx-mode-light .site-footer p,
body.lx-mode-light .footer-grid a:not(.brand),
body.lx-mode-light .site-footer .brand em {
  color: #aab6d3;
}
@media (max-width: 980px) {
  .hero-grid, .case-layout, .split-page, .service-detail-hero, .detail-grid, .demo-access-grid { grid-template-columns: 1fr; }
  .dashboard { transform: none; }
  .card-grid, .case-grid, .blog-grid, .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trusted .shell, .stats-bar, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .primary-nav { position: absolute; top: 82px; left: 0; right: 0; display: none; max-height: calc(100vh - 82px); overflow: auto; padding: 18px; background: rgba(4,8,20,.97); border-top: 1px solid rgba(255,255,255,.1); }
  .primary-nav.is-open { display: grid; }
  .primary-menu { display: grid; align-items: stretch; gap: 10px; }
  .primary-nav a { display: block; padding: 11px 12px; }
  .primary-menu > .menu-item-has-children > a:after { float: right; margin-top: 8px; }
  .primary-menu > .menu-item-has-children > .sub-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }
  .primary-menu .sub-menu:before { content: none; }
  .primary-menu .sub-menu a { min-height: 42px; }
  body.lx-mode-light .primary-nav { background: rgba(255,255,255,.98); border-top-color: rgba(15,23,42,.1); }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}
@media (max-width: 680px) {
  h1 { font-size: clamp(2.35rem, 14vw, 3.05rem); }
  h2 { font-size: clamp(1.75rem, 10vw, 2.35rem); }
  .brand { min-width: 0; }
  .brand-logo { max-width: 170px; max-height: 46px; }
  .brand-text strong { font-size: 1.02rem; }
  .brand-text em { font-size: .8rem; }
  .section, .hero { padding-block: 62px; }
  .hero-grid { gap: 34px; }
  .dash-body, .metric-row, .card-grid, .case-grid, .blog-grid, .blog-grid.two, .card-grid.four, .trusted .shell, .stats-bar, .footer-grid, .demo-form, .filter-bar, .demo-grid, .process-grid { grid-template-columns: 1fr; }
  .dashboard { padding: 14px; }
  .chart { height: 130px; }
  .cta-panel, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .lead-modal { padding: 12px; }
  .lead-modal__panel { padding: 24px 16px; max-height: calc(100vh - 24px); }
  .service-orbit { min-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
