@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: #374151;
    margin: 0;
    padding: 0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
    padding-top: 64px;
}

a {
    color: #0284C7;
    text-decoration: none;
}

a:hover {
    color: #0369A1;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0F172A;
    margin-top: 0;
}

h1 { font-size: 48px; font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.2; letter-spacing: -0.3px; }
h3 { font-size: 26px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 20px; font-weight: 600; line-height: 1.35; }
h5 { font-size: 18px; font-weight: 600; line-height: 1.4; }

p { margin-top: 0; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lx-badge {
    display: inline-block;
    background: #E0F2FE;
    color: #0284C7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.lx-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0284C7;
    margin-bottom: 12px;
}

.lx-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.lx-section-desc {
    font-size: 17px;
    color: #374151;
    max-width: 640px;
    line-height: 1.65;
    margin-bottom: 0;
}

.lx-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.lx-section-header .lx-section-desc {
    margin: 0 auto;
}

.lx-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
}

.lx-btn--primary {
    background: #0284C7;
    color: #FFFFFF;
    border-color: #0284C7;
}

.lx-btn--primary:hover {
    background: #0369A1;
    border-color: #0369A1;
    color: #FFFFFF;
    opacity: 1;
}

.lx-btn--outline {
    background: transparent;
    color: #0284C7;
    border-color: #0284C7;
}

.lx-btn--outline:hover {
    background: #E0F2FE;
    color: #0369A1;
    border-color: #0369A1;
    opacity: 1;
}

.lx-btn--dark {
    background: #FFFFFF;
    color: #0284C7;
    border-color: #FFFFFF;
}

.lx-btn--dark:hover {
    background: #E0F2FE;
    color: #0369A1;
    border-color: #E0F2FE;
    opacity: 1;
}

.lx-btn--outline-dark {
    background: transparent;
    color: #E2E8F0;
    border-color: rgba(226,232,240,0.4);
}

.lx-btn--outline-dark:hover {
    border-color: #E2E8F0;
    color: #FFFFFF;
    opacity: 1;
}

.lx-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #E2E8F0;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.lx-nav.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.lx-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}

.lx-nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.lx-nav__logomark {
    width: 36px;
    height: 36px;
    background: #0284C7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.lx-nav__wordmark {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.3px;
}

.lx-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lx-nav__links a {
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.lx-nav__links a:hover,
.lx-nav__links a.active {
    color: #0284C7;
    background: #F0F9FF;
}

.lx-nav__cta {
    background: #0284C7;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    margin-left: 8px;
}

.lx-nav__cta:hover {
    background: #0369A1;
    color: #FFFFFF;
    opacity: 1;
}

.lx-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.lx-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0F172A;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .lx-nav__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        padding: 16px;
        border-top: 1px solid #E2E8F0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        gap: 4px;
    }

    .lx-nav__links.open {
        display: flex;
    }

    .lx-nav__links li {
        width: 100%;
    }

    .lx-nav__links a {
        display: block;
        width: 100%;
    }

    .lx-nav__toggle {
        display: block;
    }

    .lx-nav__cta {
        display: none;
    }
}

.lx-hero {
    position: relative;
    background: #0C1A2E;
    color: #E2E8F0;
    padding: 120px 0 100px;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.lx-hero--mini {
    min-height: auto;
    padding: 70px 0;
}

.lx-hero__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #38BDF8;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.lx-hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.lx-hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 32px;
    max-width: 580px;
}

.lx-hero--center {
    text-align: center;
}

.lx-hero--center .lx-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.lx-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lx-hero--center .lx-hero__cta {
    justify-content: center;
}

.lx-hero__trust {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.lx-hero__trust-item {
    font-size: 14px;
    font-weight: 600;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lx-hero__trust-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0284C7;
    flex-shrink: 0;
}

.lx-hero__image {
    width: 100%;
    max-width: 540px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(2,132,199,0.12);
}

.lx-hero__bg-accent {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2,132,199,0.12) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .lx-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .lx-hero__title {
        font-size: 32px;
    }

    .lx-hero__subtitle {
        font-size: 16px;
    }

    .lx-hero__image {
        margin-top: 40px;
    }
}

.lx-stats {
    padding: 48px 0;
    background: #F0F9FF;
    border-bottom: 1px solid #E2E8F0;
}

.lx-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.lx-stats__number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #0284C7;
    line-height: 1.2;
}

.lx-stats__label {
    display: block;
    font-size: 14px;
    color: #374151;
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.lx-stats--cards {
    padding: 64px 0;
    background: #FFFFFF;
}

.lx-stats__card {
    background: #F0F9FF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
}

.lx-stats__card .lx-stats__number {
    font-size: 40px;
}

.lx-stats__card .lx-stats__label {
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    margin-top: 8px;
}

.lx-stats__desc {
    font-size: 14px;
    color: #6B7280;
    margin-top: 8px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .lx-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .lx-stats__number {
        font-size: 28px;
    }
}

.lx-features {
    padding: 80px 0;
    background: #FFFFFF;
}

.lx-features--alt {
    background: #F0F9FF;
}

.lx-features__grid--6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lx-features__card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.lx-features__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.lx-features__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E0F2FE;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #0284C7;
    flex-shrink: 0;
}

.lx-features__name {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 10px;
}

.lx-features__text {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.lx-features--alternating {
    padding: 80px 0;
    background: #FFFFFF;
}

.lx-features__row {
    padding: 56px 0;
    border-bottom: 1px solid #E2E8F0;
}

.lx-features__row:last-child {
    border-bottom: none;
}

.lx-features__row-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.lx-features__row-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.lx-features__row-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

@media (max-width: 768px) {
    .lx-features__grid--6 {
        grid-template-columns: 1fr;
    }

    .lx-features__row-img {
        margin-top: 32px;
    }
}

.lx-process {
    padding: 80px 0;
    background: #F0F9FF;
}

.lx-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.lx-process__step {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.lx-process__num {
    display: inline-block;
    font-size: 42px;
    font-weight: 900;
    color: rgba(2,132,199,0.25);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.lx-process__name {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 10px;
}

.lx-process__text {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

@media (max-width: 992px) {
    .lx-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .lx-process__steps {
        grid-template-columns: 1fr;
    }
}

.lx-testimonials {
    padding: 80px 0;
    background: #0C1A2E;
}

.lx-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lx-testimonials__card {
    background: #1A2F4A;
    border: 1px solid #253F5E;
    border-radius: 12px;
    padding: 36px 28px;
}

.lx-testimonials__quote {
    font-size: 40px;
    font-weight: 800;
    color: #0284C7;
    line-height: 1;
    margin-bottom: 16px;
}

.lx-testimonials__text {
    font-size: 16px;
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.lx-testimonials__source {
    font-size: 14px;
    font-weight: 600;
    color: #94A3B8;
    margin: 0;
}

@media (max-width: 768px) {
    .lx-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

.lx-cta {
    padding: 80px 0;
    background: #0284C7;
    text-align: center;
}

.lx-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.lx-cta__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.lx-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.lx-cta--card {
    background: #F0F9FF;
    text-align: center;
}

.lx-cta--card .lx-cta__title {
    color: #0F172A;
}

.lx-cta--card .lx-cta__desc {
    color: #374151;
}

.lx-footer {
    background: #0C1A2E;
    padding: 64px 0 0;
    border-top: 1px solid #253F5E;
}

.lx-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.lx-footer__logomark {
    width: 36px;
    height: 36px;
    background: #0284C7;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    margin-right: 8px;
    vertical-align: middle;
}

.lx-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 12px;
}

.lx-footer__wordmark {
    font-size: 20px;
    font-weight: 800;
    color: #E2E8F0;
    letter-spacing: -0.3px;
}

.lx-footer__tagline {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    max-width: 260px;
    margin: 0;
}

.lx-footer__col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.lx-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lx-footer__col ul li {
    margin-bottom: 10px;
}

.lx-footer__col ul li a {
    color: #94A3B8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.lx-footer__col ul li a:hover {
    color: #FFFFFF;
    opacity: 1;
}

.lx-footer__contact p {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 10px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lx-footer__contact p i {
    color: #0284C7;
    font-size: 13px;
    margin-top: 2px;
    min-width: 16px;
}

.lx-footer__contact a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.lx-footer__contact a:hover {
    color: #FFFFFF;
}

.lx-footer__bottom {
    border-top: 1px solid #1E3A5F;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #4B6182;
}

.lx-footer__legal {
    display: flex;
    gap: 20px;
}

.lx-footer__legal a {
    color: #64748B;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.lx-footer__legal a:hover {
    color: #94A3B8;
}

@media (max-width: 768px) {
    .lx-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lx-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.lx-contact {
    padding: 80px 0;
    background: #FFFFFF;
}

.lx-contact__title {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.lx-contact__subtitle {
    font-size: 16px;
    color: #374151;
    margin-bottom: 32px;
    line-height: 1.6;
}

.lx-contact__form .form-group {
    margin-bottom: 16px;
}

.lx-contact__form input,
.lx-contact__form select,
.lx-contact__form textarea {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Inter', -apple-system, sans-serif;
    transition: border-color 0.2s;
}

.lx-contact__form input:focus,
.lx-contact__form select:focus,
.lx-contact__form textarea:focus {
    border-color: #0284C7;
    outline: none;
    background: #FFFFFF;
}

.lx-contact__form input::placeholder,
.lx-contact__form textarea::placeholder {
    color: #9CA3AF;
}

.lx-contact__info-title {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
}

.lx-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    font-size: 15px;
    color: #374151;
}

.lx-contact__info-item i {
    color: #0284C7;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.lx-contact__info-item a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.lx-contact__info-item a:hover {
    color: #0284C7;
}

.lx-team {
    padding: 80px 0;
    background: #FFFFFF;
}

.lx-team__card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lx-team__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #E0F2FE;
}

.lx-team__name {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.lx-team__role {
    font-size: 14px;
    color: #6B7280;
}

.lx-about-story {
    padding: 80px 0;
    background: #FFFFFF;
}

.lx-about-story__heading {
    font-size: 26px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

.lx-about-story__text {
    font-size: 16px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 16px;
}

.lx-about-story__img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.lx-principles {
    padding: 80px 0;
    background: #F0F9FF;
}

.lx-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lx-principles__card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.lx-principles__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E0F2FE;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #0284C7;
    flex-shrink: 0;
}

.lx-principles__name {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 10px;
}

.lx-principles__text {
    font-size: 15px;
    color: #374151;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .lx-principles__grid {
        grid-template-columns: 1fr;
    }
}

.lx-blog-grid {
    padding: 80px 0;
    background: #FFFFFF;
}

.lx-blog-grid__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lx-blog-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lx-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.lx-blog-card__thumb-link {
    display: block;
    flex-shrink: 0;
}

.lx-blog-card__thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.lx-blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lx-blog-card__date {
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 8px;
    display: block;
}

.lx-blog-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.4;
}

.lx-blog-card__title a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s;
}

.lx-blog-card__title a:hover {
    color: #0284C7;
    opacity: 1;
}

.lx-blog-card__excerpt {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.lx-blog-card__read-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #0284C7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.lx-blog-card__read-more:hover {
    color: #0369A1;
    opacity: 1;
}

@media (max-width: 768px) {
    .lx-blog-grid__list {
        grid-template-columns: 1fr;
    }
}

.lx-legal {
    padding: 64px 0 80px;
    background: #FFFFFF;
}

.lx-legal__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.lx-legal__content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.lx-legal__date {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 40px;
    display: block;
}

.lx-legal__content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 40px;
    margin-bottom: 14px;
}

.lx-legal__content p {
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 16px;
}

.lx-legal__content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.lx-legal__content ul li {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 8px;
}

.lx-legal__content a {
    color: #0284C7;
    text-decoration: underline;
}

.lx-product-timeline {
    padding: 80px 0;
    background: #F0F9FF;
}

.lx-timeline__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.lx-timeline__step {
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.lx-timeline__step::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #E2E8F0;
    z-index: 0;
}

.lx-timeline__step:last-child::before {
    display: none;
}

.lx-timeline__dot {
    width: 56px;
    height: 56px;
    background: #0284C7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.lx-timeline__name {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.lx-timeline__text {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .lx-timeline__steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lx-timeline__step::before {
        display: none;
    }
}

.lx-error-page {
    background: #0C1A2E;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.lx-error__number {
    font-size: 120px;
    font-weight: 800;
    color: #0284C7;
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    display: block;
}

.lx-error__title {
    font-size: 28px;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 16px;
}

.lx-error__desc {
    font-size: 17px;
    color: #94A3B8;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.lx-error__circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2,132,199,0.08) 0%, transparent 70%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.lx-error__inner {
    position: relative;
    z-index: 1;
}

#lx-cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0C1A2E;
    border-top: 1px solid #253F5E;
    padding: 16px 24px;
    z-index: 9999;
    font-size: 14px;
    color: #CBD5E1;
}

.lx-cookie__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.lx-cookie__text {
    flex: 1;
    line-height: 1.6;
    min-width: 280px;
    margin: 0;
}

.lx-cookie__text a {
    color: #38BDF8;
    text-decoration: underline;
}

.lx-cookie__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

#lx-cookie-accept {
    background: #0284C7;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

#lx-cookie-accept:hover {
    background: #0369A1;
}

#lx-cookie-settings {
    background: transparent;
    color: #94A3B8;
    border: 1px solid #253F5E;
    border-radius: 6px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

#lx-cookie-settings:hover {
    border-color: #94A3B8;
    color: #E2E8F0;
}

@media (max-width: 576px) {
    .lx-cookie__inner {
        flex-direction: column;
    }
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Light hero default: show dark logo */
.lx-nav .logo-img--dark { display: inline-block; }
.lx-nav .logo-img--light { display: none; }
/* When nav on dark bg (scrolled dark, hero-dark, navbar-dark), swap */
.lx-nav.on-dark .logo-img--dark,
.navbar-dark .logo-img--dark,
body.hero-dark .lx-nav .logo-img--dark { display: none; }
.lx-nav.on-dark .logo-img--light,
.navbar-dark .logo-img--light,
body.hero-dark .lx-nav .logo-img--light { display: inline-block; }
