:root {
    --lx-bg: #07111f;
    --lx-surface: #0e1b2d;
    --lx-surface-soft: #12233b;
    --lx-panel: #ffffff;
    --lx-panel-soft: #f4f7fb;
    --lx-text: #0d1726;
    --lx-text-soft: #5f6d82;
    --lx-heading: #f7fbff;
    --lx-line: rgba(255, 255, 255, 0.08);
    --lx-line-dark: #dbe4ef;
    --lx-primary: #2457ff;
    --lx-primary-dark: #173fd1;
    --lx-accent: #19b58f;
    --lx-accent-soft: rgba(25, 181, 143, 0.12);
    --lx-danger: #d84a5b;
    --lx-shadow: 0 24px 60px rgba(6, 17, 31, 0.16);
    --lx-radius: 22px;
    --lx-radius-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.lx-site {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
    color: var(--lx-text);
    overflow-x: hidden;
}

body.lx-site-auth {
    background: linear-gradient(180deg, #07111f 0%, #0d1730 100%);
}

body.lx-mobile-nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.lx-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lx-main {
    min-height: 60vh;
}

.lx-section,
.lx-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.lx-video-band {
    padding: 34px;
    border-radius: var(--lx-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 251, 0.98) 100%);
    border: 1px solid rgba(13, 23, 38, 0.08);
    box-shadow: var(--lx-shadow);
}

.lx-video-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 26px;
    border-radius: 18px;
    background: #091321;
    box-shadow: 0 22px 54px rgba(7, 17, 31, 0.18);
    aspect-ratio: 16 / 9;
}

.lx-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.lx-top-strip {
    background: #020814;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lx-top-strip-inner,
.lx-top-strip-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
    flex-wrap: wrap;
}

.lx-top-strip-copy {
    justify-content: flex-start;
}

.lx-top-strip-copy span,
.lx-top-strip-link {
    font-size: 13px;
}

.lx-top-strip-copy i {
    color: var(--lx-accent);
    font-size: 8px;
    margin-right: 8px;
}

.lx-top-strip-link {
    color: var(--lx-primary);
    font-weight: 600;
}

.lx-header-shell {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: rgba(7, 17, 31, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lx-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
    flex-wrap: nowrap;
}

.lx-mobile-menu-toggle,
.lx-mobile-nav-overlay,
.lx-mobile-nav-drawer {
    display: none;
}

.lx-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 0 0 auto;
}

.lx-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 70px;
    border-radius: 7px;
    background: #fff;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
}

.lx-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.lx-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lx-brand-text strong {
    color: #fff;
    font-size: 16px;
}

.lx-brand-text small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

.lx-nav,
.lx-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lx-nav {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: visible;
    gap: 6px;
}

.lx-header-actions {
    flex: 0 0 auto;
}

.lx-nav > a,
.lx-nav-parent-link {
    color: rgba(255, 255, 255, 0.78);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.lx-nav > a.is-active,
.lx-nav > a:hover,
.lx-nav-dropdown.is-active .lx-nav-parent-link,
.lx-nav-dropdown:hover .lx-nav-parent-link,
.lx-nav-dropdown:focus-within .lx-nav-parent-link,
.lx-nav-parent-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.lx-nav-parent-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lx-nav-dropdown.is-active .lx-nav-parent-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.lx-nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.lx-nav-parent-link i {
    font-size: 11px;
    opacity: 0.82;
}

.lx-nav-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    border-radius: 16px;
    background: #0d1728;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--lx-shadow);
    display: none;
}

.lx-nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.lx-nav-dropdown:hover .lx-nav-menu,
.lx-nav-dropdown:focus-within .lx-nav-menu {
    display: block;
}

.lx-nav-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.lx-nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lx-nav-menu-solutions {
    width: min(620px, 70vw);
    min-width: 540px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 14px;
}

.lx-nav-dropdown-solutions:hover .lx-nav-menu-solutions,
.lx-nav-dropdown-solutions:focus-within .lx-nav-menu-solutions {
    display: grid;
}

.lx-nav-menu-solutions a {
    min-height: 52px;
    display: flex;
    align-items: center;
    line-height: 1.35;
    padding: 13px 14px;
}

.lx-nav-menu-solutions a:hover {
    transform: translateY(-1px);
}

@media (max-width: 960px) {
    .lx-nav-menu-solutions {
        width: auto;
        min-width: 220px;
        grid-template-columns: 1fr;
        padding: 10px;
    }
}

.lx-mobile-menu-toggle {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    gap: 5px;
}

.lx-mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.lx-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 20, 0.54);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 39;
}

.lx-mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 92vw);
    padding: 24px 20px 28px;
    background: linear-gradient(180deg, #091321 0%, #10203a 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -18px 0 48px rgba(3, 10, 20, 0.3);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 40;
    flex-direction: column;
    overflow-y: auto;
}

body.lx-mobile-nav-open .lx-mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.lx-mobile-nav-open .lx-mobile-nav-drawer {
    transform: translateX(0);
}

.lx-mobile-nav-head,
.lx-mobile-nav-actions,
.lx-mobile-nav-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lx-mobile-nav-head {
    margin-bottom: 28px;
}

.lx-mobile-nav-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.lx-mobile-nav-links {
    display: grid;
    gap: 10px;
}

.lx-mobile-nav-links > a,
.lx-mobile-nav-group span,
.lx-mobile-nav-group a {
    display: block;
    border-radius: 16px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.86);
}

.lx-mobile-nav-links > a,
.lx-mobile-nav-group a {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    font-weight: 700;
}

.lx-mobile-nav-links > a.is-active,
.lx-mobile-nav-group a:hover,
.lx-mobile-nav-links > a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lx-mobile-nav-group {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.lx-mobile-nav-group span {
    padding: 8px 4px 0;
    color: var(--lx-primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lx-mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
}

.lx-mobile-nav-actions .lx-link-btn,
.lx-mobile-nav-actions .lx-primary-btn {
    width: 100%;
}

.lx-mobile-nav-meta {
    display: grid;
    justify-items: start;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lx-primary-btn,
.lx-secondary-btn,
.lx-link-btn,
.lx-text-link {
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lx-primary-btn,
.lx-secondary-btn,
.lx-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 41px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.lx-primary-btn {
    border: 0;
    background: var(--lx-primary);
    color: #fff;
}

.lx-primary-btn:hover {
    background: var(--lx-primary-dark);
    transform: translateY(-1px);
}

.lx-secondary-btn {
    border: 1px solid var(--lx-line-dark);
    background: #fff;
    color: var(--lx-text);
}

.lx-secondary-btn:hover,
.lx-link-btn:hover {
    border-color: #c4d0e3;
    transform: translateY(-1px);
}

.lx-link-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    background: transparent;
}

.lx-text-link {
    color: var(--lx-primary);
    font-weight: 700;
    font-size: 14px;
}

.lx-text-link:hover {
    color: var(--lx-primary-dark);
}

.lx-auth-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
}

.lx-home-hero,
.lx-page-hero,
.lx-auth-shell {
    position: relative;
    overflow: clip;
}

.lx-home-hero {
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at top left, rgba(36, 87, 255, 0.34), transparent 34%),
        radial-gradient(circle at top right, rgba(25, 181, 143, 0.18), transparent 24%),
        linear-gradient(180deg, #07111f 0%, #0a1630 100%);
}

.lx-home-hero .lx-shell {
    display: block;
    position: relative;
}

.lx-home-hero-stack {
    display: grid;
    gap: 34px;
}

.lx-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lx-floating-icon {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d7e4ff;
    box-shadow: 0 18px 32px rgba(6, 17, 31, 0.16);
    animation: lxFloat 7.5s ease-in-out infinite;
    backdrop-filter: blur(14px);
}

.lx-floating-icon.is-one { top: 12px; left: 4%; }
.lx-floating-icon.is-two { top: 160px; right: 8%; animation-delay: 1.2s; }
.lx-floating-icon.is-three { bottom: 90px; left: 9%; animation-delay: 2.1s; }
.lx-floating-icon.is-four { bottom: 24px; right: 12%; animation-delay: 3.1s; }

.lx-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--lx-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lx-home-hero-copy h1,
.lx-page-hero h1,
.lx-auth-visual h1,
.lx-product-hero h1 {
    margin: 18px 0 16px;
    color: var(--lx-heading);
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.08;
    letter-spacing: 0;
}

.lx-home-hero-copy-centered {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.lx-home-hero-copy p,
.lx-page-hero p,
.lx-auth-visual p,
.lx-product-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.74;
    max-width: 720px;
}

.lx-home-hero-copy-centered p {
    margin-left: auto;
    margin-right: auto;
}

.lx-button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.lx-button-row-stack {
    flex-direction: column;
}

.lx-button-row-center {
    justify-content: center;
}

.lx-dashboard-showcase {
    position: relative;
}

.lx-dashboard-showcase-centered {
    max-width: 980px;
    margin: 0 auto;
}

.lx-section-dashboard {
    max-width: 980px;
    margin: 0 auto 28px;
}

.lx-dashboard-window,
.lx-process-band,
.lx-cta-panel,
.lx-auth-card,
.lx-auth-visual,
.lx-contact-form-card,
.lx-contact-panel,
.lx-content-panel,
.lx-audience-card,
.lx-product-card,
.lx-price-card,
.lx-info-card,
.lx-blog-card,
.lx-faq-item,
.lx-team-card,
.lx-why-card,
.lx-detail-row,
.lx-mini-panel,
.lx-mini-list,
.lx-mini-chart,
.lx-article-cover,
.lx-article-body,
.lx-compare-group,
.lx-doc-panel,
.lx-doc-section,
.lx-doc-product-section,
.lx-doc-meta-card,
.lx-doc-row {
    border-radius: var(--lx-radius);
    box-shadow: var(--lx-shadow);
}

.lx-dashboard-window {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
    padding: 20px;
}

.lx-dashboard-window > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

.lx-dashboard-window-biz {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(240, 245, 250, 0.98));
}

.lx-dashboard-window-eye {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 246, 0.98));
}

.lx-window-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.lx-window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #b8c6da;
}

.lx-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lx-mini-panel,
.lx-mini-list,
.lx-mini-chart {
    min-width: 0;
    background: #fff;
    padding: 18px;
    border: 1px solid #e1e8f1;
}

.lx-mini-panel span,
.lx-mini-list span {
    display: block;
    color: var(--lx-text-soft);
    font-size: 13px;
}

.lx-mini-panel strong {
    display: block;
    margin: 8px 0;
    font-size: 20px;
}

.lx-mini-panel small {
    color: var(--lx-text-soft);
    line-height: 1.7;
}

.lx-mini-list {
    display: grid;
    gap: 12px;
}

.lx-mini-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lx-text);
    font-size: 14px;
    font-weight: 600;
}

.lx-mini-list i {
    color: var(--lx-accent);
}

.lx-mini-chart {
    display: flex;
    align-items: end;
    gap: 10px;
    min-height: 150px;
}

.lx-mini-chart div {
    flex: 1 1 0;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, #2457ff, #6b8cff);
    animation: lxPulse 6s ease-in-out infinite;
}

.lx-mini-chart div:nth-child(1) { height: 40%; }
.lx-mini-chart div:nth-child(2) { height: 60%; animation-delay: .2s; }
.lx-mini-chart div:nth-child(3) { height: 52%; animation-delay: .4s; }
.lx-mini-chart div:nth-child(4) { height: 78%; animation-delay: .6s; }
.lx-mini-chart div:nth-child(5) { height: 70%; animation-delay: .8s; }
.lx-mini-chart div:nth-child(6) { height: 88%; animation-delay: 1s; }

.lx-mini-chart-biz div {
    background: linear-gradient(180deg, #19b58f, #78dbc0);
}

.lx-mini-chart-eye div {
    background: linear-gradient(180deg, #ff8c1a, #ffd18a);
}

@keyframes lxPulse {
    0%, 100% { transform: translateY(0); opacity: 0.86; }
    50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes lxFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.lx-section,
.lx-page-hero {
    padding: 86px 0;
}

.lx-page-hero {
    background:
        radial-gradient(circle at top left, rgba(36, 87, 255, 0.22), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #0b1732 100%);
}

.lx-page-hero-tight {
    padding-bottom: 52px;
}

.lx-section-alt {
    background: #edf3f9;
}

.lx-section-cta {
    padding-top: 26px;
}

.lx-section-head {
    margin-bottom: 34px;
}

.lx-section-head h2 {
    margin: 16px 0 14px;
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
    color: var(--lx-text);
}

.lx-section-head p {
    margin: 0;
    max-width: 760px;
    color: var(--lx-text-soft);
    font-size: 17px;
    line-height: 1.72;
}

.lx-centered {
    text-align: center;
}

.lx-centered p {
    margin-left: auto;
    margin-right: auto;
}

.lx-features-visual {
    max-width: 1040px;
    margin: -6px auto 34px;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.1);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
}

.lx-features-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.lx-card-grid {
    display: grid;
    gap: 24px;
}

.lx-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lx-card-grid-2,
.lx-about-story,
.lx-contact-layout,
.lx-product-hero,
.lx-auth-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lx-info-card,
.lx-why-card,
.lx-team-card,
.lx-content-panel,
.lx-contact-form-card,
.lx-contact-panel,
.lx-product-card,
.lx-audience-card,
.lx-detail-row,
.lx-price-card,
.lx-blog-card,
.lx-faq-item,
.lx-article-cover,
.lx-article-body,
.lx-compare-group,
.lx-doc-panel,
.lx-doc-section,
.lx-doc-product-section,
.lx-doc-meta-card,
.lx-doc-row,
.lx-auth-card,
.lx-auth-visual {
    background: #fff;
    padding: 28px;
    border: 1px solid #e2e9f2;
}

.lx-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--lx-accent-soft);
    color: var(--lx-accent);
    font-size: 18px;
}

.lx-info-card h3,
.lx-why-card h3,
.lx-team-card h3,
.lx-product-card h2,
.lx-price-card h3,
.lx-blog-card h3,
.lx-faq-item h3,
.lx-contact-panel h2,
.lx-auth-card h2,
.lx-auth-plan-summary h3 {
    margin: 18px 0 10px;
    font-size: 22px;
    line-height: 1.2;
}

.lx-info-card p,
.lx-why-card p,
.lx-team-card p,
.lx-product-card p,
.lx-price-card p,
.lx-blog-card p,
.lx-faq-item p,
.lx-contact-panel p,
.lx-contact-points span,
.lx-content-panel p,
.lx-detail-row p {
    margin: 0;
    color: var(--lx-text-soft);
    line-height: 1.78;
}

.lx-process-band,
.lx-cta-panel {
    background: linear-gradient(135deg, #07111f, #0e2240);
    padding: 32px;
    color: #fff;
}

.lx-process-band {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 26px;
}

.lx-process-copy h2,
.lx-cta-panel h2 {
    margin: 16px 0 14px;
    font-size: clamp(28px, 3.2vw, 42px);
    color: #fff;
}

.lx-process-copy p,
.lx-cta-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.78;
}

.lx-process-steps {
    display: grid;
    gap: 16px;
}

.lx-process-steps article {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
}

.lx-process-steps span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.lx-process-steps h3 {
    margin: 14px 0 8px;
    font-size: 18px;
}

.lx-process-steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.68;
}

.lx-pricing-preview-grid,
.lx-blog-grid,
.lx-faq-list,
.lx-comparison-stack,
.lx-detail-stack,
.lx-doc-stack,
.lx-doc-example-stack,
.lx-doc-product-stack {
    display: grid;
    gap: 24px;
}

.lx-doc-grid,
.lx-doc-product-hero,
.lx-doc-table-head,
.lx-doc-row {
    display: grid;
    gap: 24px;
}

.lx-doc-grid,
.lx-doc-product-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lx-doc-step-list {
    display: grid;
    gap: 16px;
}

.lx-doc-step strong,
.lx-doc-section h3,
.lx-doc-panel h3,
.lx-doc-product-copy h3 {
    display: block;
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
    color: var(--lx-text);
}

.lx-doc-step p,
.lx-doc-section p,
.lx-doc-panel p,
.lx-doc-product-copy p,
.lx-doc-meta-card span {
    margin: 0;
    color: var(--lx-text-soft);
    line-height: 1.78;
}

.lx-doc-table {
    display: grid;
    gap: 14px;
}

.lx-doc-table-head,
.lx-doc-row {
    grid-template-columns: minmax(150px, 0.9fr) 110px minmax(240px, 1.2fr) minmax(260px, 1.4fr);
    align-items: start;
}

.lx-doc-table-head {
    padding: 0 8px;
    color: var(--lx-text-soft);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.lx-doc-method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--lx-primary);
    font-size: 12px;
    font-weight: 700;
}

.lx-doc-row code,
.lx-code-block code {
    font-family: "SFMono-Regular", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}

.lx-doc-row code {
    display: block;
    color: var(--lx-text);
    line-height: 1.7;
    word-break: break-word;
}

.lx-doc-row p {
    margin: 0;
    color: var(--lx-text-soft);
    line-height: 1.72;
}

.lx-code-block {
    margin: 0;
    padding: 22px;
    border-radius: 18px;
    background: #081322;
    color: #dce7fb;
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.72;
}

.lx-doc-example-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.lx-doc-product-meta {
    display: grid;
    gap: 18px;
}

.lx-doc-meta-card strong {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--lx-text);
}

.lx-section-compact {
    padding-top: 34px;
    padding-bottom: 34px;
}

.lx-logo-marquee {
    overflow: hidden;
    padding: 10px 0;
}

.lx-logo-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: lxMarquee 28s linear infinite;
}

.lx-logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e9f2;
    box-shadow: 0 10px 28px rgba(6, 17, 31, 0.06);
    color: var(--lx-text);
    font-size: 14px;
    font-weight: 700;
}

@keyframes lxMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lx-product-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lx-pricing-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lx-pricing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #dbe4ef;
    box-shadow: 0 16px 40px rgba(6, 17, 31, 0.08);
}

.lx-pricing-toolbar-group {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lx-pricing-toolbar-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lx-text-soft);
}

.lx-segmented-control {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    background: #edf2f8;
    border: 1px solid #dbe4ef;
}

.lx-segmented-control button {
    border: 0;
    background: transparent;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lx-segmented-control button.is-active {
    background: #fff;
    color: var(--lx-text);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
}

.lx-price-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    overflow: hidden;
}

.lx-price-label,
.lx-blog-category {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--lx-primary);
    font-size: 12px;
    font-weight: 700;
}

.lx-price-amount {
    display: flex;
    align-items: end;
    gap: 4px;
    font-size: 36px;
    font-weight: 800;
}

.lx-price-amount small {
    color: var(--lx-text-soft);
    font-size: 15px;
    font-weight: 600;
}

.lx-price-amount [data-price-value].is-contact-state {
    font-size: 28px;
    line-height: 1.15;
}

.lx-price-feature-list,
.lx-bullet-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--lx-text-soft);
    line-height: 1.72;
}

.lx-price-section-list {
    display: grid;
    gap: 18px;
}

.lx-price-feature-group h4 {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--lx-text);
}

.lx-price-card-detailed {
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe4ef;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.lx-plan-visual {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 52%, #2563eb 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(219, 228, 239, 0.9);
    height: 40px;
}

.lx-plan-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.lx-plan-visual:not(.is-fallback) img {
    display: block;
}

.lx-plan-visual.is-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lx-plan-visual-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #173fd1 58%, #1d4ed8 100%);
}

.lx-plan-visual-fallback span {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 240px;
}

.lx-price-card-top,
.lx-price-card-detailed h3,
.lx-price-card-detailed .lx-price-amount,
.lx-price-card-detailed p,
.lx-price-card-detailed .lx-price-section-list,
.lx-price-card-detailed .lx-price-cta {
    margin-left: 28px;
    margin-right: 28px;
}

.lx-price-card-preview > .lx-price-label,
.lx-price-card-preview > h3,
.lx-price-card-preview > .lx-price-amount,
.lx-price-card-preview > p,
.lx-price-card-preview > .lx-secondary-btn {
    margin-left: 24px;
    margin-right: 24px;
}

.lx-price-card-preview > .lx-price-label {
    margin-top: 22px;
}

.lx-price-card-preview > .lx-price-label + h3,
.lx-price-card-preview > h3 + .lx-price-amount,
.lx-price-card-preview > .lx-price-amount + p,
.lx-price-card-preview > p + .lx-secondary-btn {
    margin-top: 0;
}

.lx-price-card-preview > .lx-secondary-btn {
    margin-bottom: 24px;
    align-self: flex-start;
}

.lx-price-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.lx-price-card-detailed h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.lx-price-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(25, 181, 143, 0.12);
    color: #0f8a6b;
    font-size: 12px;
    font-weight: 700;
}

.lx-price-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -6px 28px 0;
    flex-wrap: wrap;
}

.lx-price-currency {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--lx-text-soft);
    text-transform: uppercase;
}

.lx-price-strike {
    color: #94a3b8;
    font-size: 14px;
}

.lx-price-card-detailed .lx-price-section-list {
    margin-top: 6px;
    margin-bottom: 4px;
}

.lx-price-card-detailed .lx-price-cta {
    margin-top: auto;
    margin-bottom: 28px;
    justify-content: center;
}

.lx-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lx-blog-card {
    padding: 0;
    overflow: hidden;
}

.lx-blog-card-link {
    display: block;
    height: 100%;
    color: inherit;
}

.lx-blog-card-link:focus-visible {
    outline: 3px solid rgba(36, 87, 255, 0.28);
    outline-offset: -3px;
}

.lx-blog-thumb {
    aspect-ratio: 16 / 9;
    background: #dfe7f3;
}

.lx-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lx-blog-content {
    padding: 24px;
}

.lx-blog-meta,
.lx-contact-points,
.lx-auth-feature-list {
    display: grid;
    gap: 14px;
}

.lx-blog-meta {
    grid-auto-flow: column;
    justify-content: start;
    gap: 10px;
    color: var(--lx-text-soft);
    font-size: 13px;
}

.lx-faq-item h3 {
    margin-top: 0;
}

.lx-faq-list {
    max-width: 980px;
    margin: 0 auto;
}

.lx-testimonial-slider {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.lx-testimonial-slide {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lx-testimonial-slide.is-active {
    display: grid;
}

.lx-testimonial-card {
    padding: 30px;
    border-radius: var(--lx-radius);
    background: #fff;
    border: 1px solid #e2e9f2;
    box-shadow: var(--lx-shadow);
    height: 100%;
}

.lx-testimonial-card p {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    color: var(--lx-text);
}

.lx-testimonial-meta {
    display: grid;
    gap: 4px;
    margin-top: 22px;
}

.lx-testimonial-meta strong {
    font-size: 16px;
}

.lx-testimonial-meta span {
    color: var(--lx-text-soft);
    font-size: 14px;
}

.lx-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lx-testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: #c9d6e7;
    cursor: pointer;
    padding: 0;
}

.lx-testimonial-dots button.is-active {
    background: var(--lx-primary);
}

.lx-faq-collapsible {
    padding: 0;
    overflow: hidden;
}

.lx-faq-collapsible summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-size: 19px;
    font-weight: 700;
    color: var(--lx-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lx-faq-collapsible summary::-webkit-details-marker {
    display: none;
}

.lx-faq-collapsible summary::after {
    content: "+";
    font-size: 24px;
    color: var(--lx-primary);
}

.lx-faq-collapsible[open] summary::after {
    content: "−";
}

.lx-faq-answer {
    padding: 0 26px 24px;
}

.lx-faq-answer p {
    margin: 0;
}

.lx-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lx-footer {
    margin-top: 15px;
    padding: 72px 0 28px;
    background: #050d19;
    color: rgba(255, 255, 255, 0.78);
    overflow: clip;
}

.lx-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.lx-brand-footer .lx-brand-text strong,
.lx-footer-links h4 {
    color: #fff;
}

.lx-footer-copy {
    margin: 18px 0 0;
    max-width: 360px;
    line-height: 1.74;
}

.lx-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.lx-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #eef4ff;
    border: 1px solid #d7e2f1;
    color: var(--lx-primary);
    font-size: 16px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lx-social-links a:hover {
    transform: translateY(-1px);
    background: var(--lx-primary);
    border-color: var(--lx-primary);
    color: #fff;
}

.lx-footer-socials a {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lx-footer-socials a:hover {
    background: #fff;
    border-color: #fff;
    color: var(--lx-primary);
}

.lx-footer-links {
    display: grid;
    gap: 12px;
    align-content: start;
}

.lx-footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.lx-footer-links a:hover {
    color: #fff;
}

.lx-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.lx-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.lx-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lx-breadcrumb {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.lx-breadcrumb a,
.lx-breadcrumb strong {
    color: rgba(255, 255, 255, 0.88);
}

.lx-narrow-shell {
    width: min(900px, calc(100% - 40px));
}

.lx-policy-shell {
    width: min(1040px, calc(100% - 40px));
}

.lx-blog-wide-shell {
    width: min(1080px, calc(100% - 40px));
}

.lx-article-head {
    margin-top: 18px;
}

.lx-article-title {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.08;
    color: var(--lx-text);
}

.lx-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    color: var(--lx-text-soft);
    font-size: 14px;
}

.lx-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lx-article-summary {
    margin: 16px 0 0;
    max-width: 760px;
    color: var(--lx-text-soft);
    font-size: 18px;
    line-height: 1.8;
}

.lx-article-cover {
    padding: 0;
    overflow: hidden;
    margin-bottom: 24px;
}

.lx-article-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    margin-bottom: 26px;
    border: 1px solid #dbe5f2;
    border-radius: 22px;
    background: #f8fbff;
}

.lx-article-share-copy h2 {
    margin: 8px 0 0;
    font-size: 24px;
    color: var(--lx-text);
}

.lx-article-share-links {
    margin-top: 0;
    justify-content: flex-end;
}

.lx-article-share-links a.is-copied {
    background: var(--lx-primary);
    border-color: var(--lx-primary);
    color: #fff;
}

.lx-article-body {
    line-height: 1.82;
    color: var(--lx-text);
}

.lx-article-body h2,
.lx-article-body h3,
.lx-article-body h4 {
    margin: 28px 0 12px;
    color: var(--lx-text);
}

.lx-article-body p,
.lx-article-body li {
    color: var(--lx-text-soft);
}

.lx-related-posts {
    margin-top: 42px;
}

.lx-team-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2457ff, #7d94ff);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.lx-team-photo {
    display: block;
    object-fit: cover;
}

.lx-team-card span {
    color: var(--lx-primary);
    font-size: 13px;
    font-weight: 700;
}

.lx-product-card-head,
.lx-auth-card-head {
    margin-bottom: 12px;
}

.lx-product-card {
    display: grid;
    gap: 22px;
}

.lx-product-showcase {
    display: grid;
    gap: 16px;
}

.lx-product-visual-card {
    padding: 24px;
    border-radius: var(--lx-radius);
    background: linear-gradient(180deg, #0b1732 0%, #13254a 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lx-product-visual-card.is-biz {
    background: linear-gradient(180deg, #0d1625 0%, #1d3044 100%);
}

.lx-product-visual-card h3 {
    margin: 16px 0 18px;
    font-size: 24px;
    line-height: 1.2;
}

.lx-product-visual-window {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lx-product-visual-grid {
    display: grid;
    gap: 12px;
}

.lx-product-visual-grid article {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.lx-product-visual-grid strong {
    font-size: 15px;
    line-height: 1.45;
}

.lx-product-visual-grid small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.lx-detail-stack {
    gap: 18px;
}

.lx-detail-row h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.lx-contact-points div,
.lx-auth-feature-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--lx-text-soft);
}

.lx-contact-info-stack {
    display: grid;
    gap: 22px;
}

.lx-contact-points i,
.lx-auth-feature-list i {
    margin-top: 4px;
    color: var(--lx-primary);
}

.lx-contact-form,
.lx-form-grid {
    display: grid;
    gap: 18px;
}

.lx-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lx-form-grid label {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.lx-form-grid span,
.lx-check span {
    font-size: 13px;
    font-weight: 700;
    color: var(--lx-text);
}

.lx-form-grid input,
.lx-form-grid textarea {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid #d6e0ed;
    background: #fff;
    color: var(--lx-text);
}

.lx-form-grid textarea {
    min-height: 160px;
    padding: 14px 16px;
    resize: vertical;
}

.lx-form-grid input:focus,
.lx-form-grid textarea:focus {
    outline: none;
    border-color: #97b2ff;
    box-shadow: 0 0 0 4px rgba(36, 87, 255, 0.08);
}

.lx-full {
    grid-column: 1 / -1;
}

.lx-full-btn {
    width: 100%;
}

.lx-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lx-check input {
    margin-top: 2px;
}

.lx-check a {
    color: var(--lx-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lx-check a:hover {
    color: var(--lx-primary-dark);
}

.lx-auth-shell {
    min-height: calc(100vh - 160px);
    padding: 28px 0 56px;
    background: linear-gradient(180deg, #07111f, #0c1931);
    display: flex;
    align-items: flex-start;
}

.lx-auth-shell-centered {
    min-height: calc(100vh - 124px);
    align-items: center;
}

.lx-auth-visual {
    background: linear-gradient(135deg, rgba(36, 87, 255, 0.26), rgba(25, 181, 143, 0.16));
    border-color: rgba(255, 255, 255, 0.08);
    min-height: 620px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lx-auth-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 25%),
        radial-gradient(circle at bottom left, rgba(36,87,255,0.36), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    pointer-events: none;
}

.lx-auth-visual > * {
    position: relative;
    z-index: 1;
}

.lx-auth-visual h1,
.lx-auth-visual p {
    color: #fff;
}

.lx-auth-layout {
    min-height: auto;
    align-items: stretch;
}

.lx-auth-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 620px;
    align-self: stretch;
}

.lx-auth-card-centered {
    justify-content: center;
}

.lx-auth-card,
.lx-auth-visual {
    height: 100%;
}

.lx-auth-feature-list {
    margin-top: 26px;
}

.lx-auth-feature-list div {
    color: rgba(255, 255, 255, 0.78);
}

.lx-auth-plan-summary {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #e2e9f2;
}

.lx-alert {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.lx-alert-danger {
    background: #fff0f2;
    color: var(--lx-danger);
    border: 1px solid #f7cad0;
}

.lx-alert-success {
    background: #edfdf8;
    color: #0e8b69;
    border: 1px solid #b7efdc;
}

.lx-alert-soft {
    background: #f5f8fc;
    color: #44556d;
    border: 1px solid #dbe4ef;
    font-weight: 500;
}

.lx-compare-group h3 {
    margin: 0 0 18px;
    font-size: 24px;
}

.lx-compare-table {
    display: grid;
    gap: 10px;
}

.lx-compare-head,
.lx-compare-row {
    display: grid;
    grid-template-columns: minmax(200px, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.lx-compare-head {
    padding-bottom: 8px;
    border-bottom: 1px solid #e4ebf3;
    font-size: 13px;
    font-weight: 700;
    color: var(--lx-text-soft);
    text-transform: uppercase;
}

.lx-compare-row {
    padding: 10px 0;
    border-bottom: 1px solid #eef3f8;
    color: var(--lx-text-soft);
}

.lx-compare-row strong {
    color: var(--lx-text);
}

.lx-founder-section {
    display: grid;
    gap: 24px;
}

.lx-founder-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
    border-radius: var(--lx-radius);
    background: #fff;
    border: 1px solid #e2e9f2;
    box-shadow: var(--lx-shadow);
    align-items: start;
}

.lx-founder-photo-frame {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 12px;
    width: 180px;
}

.lx-founder-photo-frame span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lx-text-soft);
}

.lx-founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, #2457ff, #19b58f);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
}

.lx-founder-avatar-large {
    width: 150px;
    height: 180px;
    border-radius: 28px;
    font-size: 42px;
    box-shadow: 0 18px 40px rgba(36, 87, 255, 0.18);
}

.lx-founder-photo {
    display: block;
    object-fit: cover;
}

.lx-founder-copy h3 {
    margin: 14px 0 12px;
    font-size: 28px;
}

.lx-founder-copy p {
    margin: 0 0 14px;
    color: var(--lx-text-soft);
    line-height: 1.78;
}

.lx-product-hero-top {
    margin-top: 20px;
}

.lx-product-dashboard {
    margin-top: 32px;
}

.lx-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 80px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
    z-index: 30;
}

.lx-whatsapp-float:hover {
    transform: translateY(-2px);
}

@media (max-width: 1180px) {
    .lx-header {
        gap: 14px;
    }

    .lx-nav > a,
    .lx-nav-parent-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .lx-brand-mark {
        width: 96px;
        height: 62px;
    }
}

@media (max-width: 1080px) {
    .lx-home-hero .lx-shell,
    .lx-process-band,
    .lx-footer-grid,
    .lx-product-duo,
    .lx-contact-layout,
    .lx-about-story,
    .lx-product-hero,
    .lx-auth-layout,
    .lx-doc-grid,
    .lx-doc-product-hero {
        grid-template-columns: 1fr;
    }

    .lx-card-grid-3,
    .lx-pricing-preview-grid,
    .lx-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lx-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lx-footer-grid > :first-child {
        grid-column: 1 / -1;
    }

    .lx-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .lx-cta-panel .lx-button-row {
        width: 100%;
    }

    .lx-footer-grid {
        gap: 28px;
    }

    .lx-floating-icons {
        display: none;
    }

    .lx-founder-card {
        grid-template-columns: 1fr;
    }

    .lx-compare-head,
    .lx-compare-row,
    .lx-doc-table-head,
    .lx-doc-row {
        grid-template-columns: minmax(180px, 1.2fr) repeat(3, minmax(120px, 1fr));
    }
}

@media (max-width: 900px) {
    .lx-shell,
    .lx-narrow-shell,
    .lx-policy-shell,
    .lx-blog-wide-shell {
        width: min(100% - 32px, 100%);
    }

    .lx-top-strip-inner {
        justify-content: center;
        padding: 8px 0;
    }

    .lx-header {
        min-height: 76px;
        padding: 14px 0;
    }

    .lx-nav,
    .lx-header-actions {
        display: none;
    }

    .lx-mobile-menu-toggle,
    .lx-mobile-nav-overlay,
    .lx-mobile-nav-drawer {
        display: flex;
    }

    .lx-home-hero,
    .lx-page-hero,
    .lx-section,
    .lx-auth-shell {
        padding: 68px 0;
    }

    .lx-card-grid-3,
    .lx-pricing-preview-grid,
    .lx-blog-grid,
    .lx-testimonial-slide,
    .lx-footer-grid {
        grid-template-columns: 1fr;
    }

    .lx-section-head {
        margin-bottom: 28px;
    }

    .lx-home-hero-copy h1,
    .lx-page-hero h1,
    .lx-auth-visual h1,
    .lx-product-hero h1 {
        font-size: clamp(32px, 8vw, 46px);
    }

    .lx-home-hero-copy p,
    .lx-page-hero p,
    .lx-auth-visual p,
    .lx-product-hero p,
    .lx-section-head p {
        font-size: 16px;
        line-height: 1.68;
    }

    .lx-dashboard-window,
    .lx-process-band,
    .lx-cta-panel,
    .lx-auth-card,
    .lx-auth-visual,
    .lx-contact-form-card,
    .lx-contact-panel,
    .lx-content-panel,
    .lx-audience-card,
    .lx-product-card,
    .lx-price-card,
    .lx-info-card,
    .lx-blog-card,
    .lx-faq-item,
    .lx-team-card,
    .lx-why-card,
    .lx-detail-row,
    .lx-mini-panel,
    .lx-mini-list,
    .lx-mini-chart,
    .lx-article-cover,
    .lx-article-body,
    .lx-compare-group,
    .lx-doc-panel,
    .lx-doc-section,
    .lx-doc-product-section,
    .lx-doc-meta-card,
    .lx-doc-row,
    .lx-video-band {
        padding: 22px;
    }

    .lx-doc-table-head,
    .lx-doc-row,
    .lx-compare-head,
    .lx-compare-row {
        min-width: 760px;
    }

    .lx-doc-table,
    .lx-compare-table {
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .lx-auth-shell,
    .lx-auth-layout,
    .lx-auth-visual,
    .lx-auth-card {
        min-height: auto;
    }

    .lx-pricing-toolbar {
        align-items: flex-start;
    }

    .lx-auth-visual,
    .lx-auth-card {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .lx-founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lx-founder-photo-frame {
        justify-items: center;
    }

    .lx-testimonial-card p {
        font-size: 18px;
    }
}

@media (max-width: 760px) {
    .lx-top-strip-copy:first-child {
        display: none;
    }

    .lx-shell,
    .lx-narrow-shell,
    .lx-policy-shell,
    .lx-blog-wide-shell {
        width: min(100% - 24px, 100%);
    }

    .lx-top-strip-copy,
    .lx-top-strip-inner {
        justify-content: center;
        text-align: center;
    }

    .lx-home-hero,
    .lx-page-hero,
    .lx-section,
    .lx-auth-shell {
        padding: 52px 0;
    }

    .lx-section-head {
        margin-bottom: 24px;
    }

    .lx-brand {
        gap: 10px;
    }

    .lx-brand-mark {
        width: 78px;
        height: 50px;
    }

    .lx-brand-text strong {
        font-size: 15px;
    }

    .lx-brand-text small {
        font-size: 11px;
    }

    .lx-article-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .lx-article-share-links {
        justify-content: flex-start;
    }

    .lx-home-hero-copy h1,
    .lx-page-hero h1,
    .lx-auth-visual h1,
    .lx-product-hero h1 {
        font-size: 30px;
        line-height: 1.12;
    }

    .lx-home-hero-copy-centered,
    .lx-dashboard-showcase-centered,
    .lx-section-dashboard,
    .lx-faq-list,
    .lx-testimonial-slider {
        max-width: 100%;
    }

    .lx-form-grid {
        grid-template-columns: 1fr;
    }

    .lx-button-row {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .lx-button-row .lx-primary-btn,
    .lx-button-row .lx-secondary-btn,
    .lx-button-row .lx-link-btn {
        width: 100%;
    }

    .lx-pricing-toolbar {
        padding: 16px;
    }

    .lx-pricing-toolbar-group {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .lx-segmented-control {
        width: 100%;
        justify-content: space-between;
    }

    .lx-segmented-control button {
        flex: 1 1 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .lx-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .lx-logo-chip {
        min-width: 132px;
        min-height: 52px;
        padding: 0 18px;
    }

    .lx-price-amount {
        font-size: 30px;
    }

    .lx-process-steps article,
    .lx-product-visual-card,
    .lx-product-visual-window {
        border-radius: 16px;
    }

    .lx-video-frame {
        border-radius: 16px;
    }

    .lx-footer {
        margin-top: 52px;
        padding-top: 48px;
    }

    .lx-whatsapp-float {
        right: 16px;
        bottom: 80px;
        width: 54px;
        height: 54px;
    }

    .lx-mobile-nav-drawer {
        width: 100%;
        padding: 20px 16px 24px;
    }

    .lx-mobile-nav-actions {
        grid-template-columns: 1fr;
    }

    .lx-blog-content {
        padding: 20px;
    }
}

@media (max-width: 520px) {
    .lx-price-card-top,
    .lx-price-card-detailed h3,
    .lx-price-card-detailed .lx-price-amount,
    .lx-price-card-detailed p,
    .lx-price-card-detailed .lx-price-section-list,
    .lx-price-card-detailed .lx-price-cta,
    .lx-price-meta-row {
        margin-left: 20px;
        margin-right: 20px;
    }

    .lx-home-hero-copy h1,
    .lx-page-hero h1,
    .lx-auth-visual h1,
    .lx-product-hero h1 {
        font-size: 26px;
    }

    .lx-section-head h2,
    .lx-process-copy h2,
    .lx-cta-panel h2 {
        font-size: 26px;
    }

    .lx-dashboard-window,
    .lx-process-band,
    .lx-cta-panel,
    .lx-auth-card,
    .lx-auth-visual,
    .lx-contact-form-card,
    .lx-contact-panel,
    .lx-content-panel,
    .lx-audience-card,
    .lx-product-card,
    .lx-price-card,
    .lx-info-card,
    .lx-blog-card,
    .lx-faq-item,
    .lx-team-card,
    .lx-why-card,
    .lx-detail-row,
    .lx-mini-panel,
    .lx-mini-list,
    .lx-mini-chart,
    .lx-article-cover,
    .lx-article-body,
    .lx-compare-group,
    .lx-doc-panel,
    .lx-doc-section,
    .lx-doc-product-section,
    .lx-doc-meta-card,
    .lx-doc-row,
    .lx-video-band {
        padding: 18px;
        border-radius: 18px;
    }

    .lx-dashboard-window > img,
    .lx-features-visual {
        border-radius: 16px;
    }

    .lx-window-dots {
        margin-bottom: 14px;
    }

    .lx-mini-panel strong {
        font-size: 18px;
    }

    .lx-faq-collapsible summary {
        padding: 18px;
        font-size: 17px;
    }

    .lx-faq-answer {
        padding: 0 18px 18px;
    }

    .lx-testimonial-card p {
        font-size: 17px;
    }
}
