:root {
    --lm-ink: #0f172a;
    --lm-muted: #526070;
    --lm-border: rgba(148, 163, 184, 0.28);
    --lm-card: rgba(255, 255, 255, 0.78);
    --lm-blue: #2563eb;
    --lm-blue-dark: #1d4ed8;
    --lm-cyan: #06b6d4;
    --lm-bg: #f8fbff;
    --lm-radius: 24px;
    --lm-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lm-body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--lm-ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(96, 165, 250, 0.22), transparent 32rem),
        radial-gradient(circle at 82% 18%, rgba(79, 70, 229, 0.18), transparent 30rem),
        linear-gradient(180deg, #ffffff 0%, var(--lm-bg) 52%, #ffffff 100%);
}
a { color: inherit; }
.lm-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.lm-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--lm-border);
}
.lm-nav-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lm-logo { height: 52px; width: auto; display: block; }
.lm-nav-links { display: flex; align-items: center; gap: 20px; color: #334155; font-weight: 700; font-size: 14px; }
.lm-nav-links a { text-decoration: none; }
.lm-nav-links a:hover { color: var(--lm-blue); }
.lm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    background: var(--lm-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 850;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.lm-button:hover { transform: translateY(-2px); background: var(--lm-blue-dark); box-shadow: 0 20px 44px rgba(37, 99, 235, 0.34); }
.lm-button.secondary { background: #fff; color: var(--lm-ink); box-shadow: inset 0 0 0 1px var(--lm-border), 0 14px 30px rgba(15, 23, 42, 0.08); }
.lm-button.secondary:hover { background: #f8fafc; }
.lm-hero { padding: 76px 0 58px; }
.lm-hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 54px; align-items: center; }
.lm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: rgba(239, 246, 255, 0.8);
    color: #1d4ed8;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .02em;
}
.lm-kicker::before { content: ""; width: 9px; height: 9px; background: var(--lm-cyan); border-radius: 999px; box-shadow: 0 0 0 7px rgba(6, 182, 212, .14); }
.lm-hero h1 { margin: 22px 0 18px; font-size: clamp(42px, 6vw, 76px); line-height: .96; letter-spacing: -0.06em; }
.lm-gradient-text { background: linear-gradient(90deg, #2563eb, #4f46e5, #0891b2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lm-lead { margin: 0 0 28px; color: var(--lm-muted); font-size: 20px; line-height: 1.62; max-width: 670px; }
.lm-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 26px; }
.lm-proof { display: flex; flex-wrap: wrap; gap: 12px; color: #334155; font-weight: 760; font-size: 14px; }
.lm-proof span { display: inline-flex; align-items: center; gap: 7px; }
.lm-proof span::before { content: "✓"; color: #059669; font-weight: 900; }
.lm-hero-art { position: relative; }
.lm-hero-img { width: 100%; display: block; filter: drop-shadow(0 28px 60px rgba(15, 23, 42, 0.18)); }
.lm-floating-card {
    position: absolute;
    left: -14px;
    bottom: 38px;
    max-width: 255px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--lm-border);
    box-shadow: var(--lm-shadow);
}
.lm-floating-card strong { display: block; margin-bottom: 5px; }
.lm-floating-card p { margin: 0; color: var(--lm-muted); line-height: 1.45; font-size: 14px; }
.lm-section { padding: 68px 0; }
.lm-section-head { max-width: 760px; margin-bottom: 30px; }
.lm-section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.lm-section h2 { margin: 0 0 14px; font-size: clamp(32px, 4vw, 50px); line-height: 1.04; letter-spacing: -0.045em; }
.lm-section p { color: var(--lm-muted); font-size: 17px; line-height: 1.65; }
.lm-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lm-card {
    position: relative;
    background: var(--lm-card);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    padding: 26px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.lm-card::after { content: ""; position: absolute; inset: auto -40px -52px auto; width: 150px; height: 150px; border-radius: 999px; background: rgba(37, 99, 235, .08); }
.lm-card img { width: 52px; height: 52px; display: block; margin-bottom: 18px; }
.lm-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -0.02em; }
.lm-card p { margin: 0; font-size: 15.5px; }
.lm-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: start; }
.lm-panel {
    background: #0f172a;
    color: #fff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--lm-shadow);
}
.lm-panel p { color: rgba(255,255,255,.76); }
.lm-list { display: grid; gap: 14px; margin-top: 26px; }
.lm-list-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--lm-border);
    border-radius: 20px;
}
.lm-number { width: 34px; height: 34px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: #eff6ff; color: #1d4ed8; font-weight: 900; }
.lm-list-item h3 { margin: 0 0 4px; font-size: 18px; }
.lm-list-item p { margin: 0; font-size: 15px; }
.lm-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lm-step { padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--lm-border); }
.lm-step .lm-number { margin-bottom: 16px; }
.lm-step h3 { margin: 0 0 8px; }
.lm-step p { margin: 0; font-size: 15px; }
.lm-cta { padding: 76px 0 92px; }
.lm-cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a, #3730a3 52%, #0e7490);
    color: #fff;
    border-radius: 34px;
    padding: 52px;
    box-shadow: var(--lm-shadow);
}
.lm-cta-box::before { content: ""; position: absolute; right: -90px; top: -120px; width: 360px; height: 360px; border-radius: 999px; background: rgba(255,255,255,.12); }
.lm-cta-box h2 { max-width: 760px; margin: 0 0 14px; font-size: clamp(32px, 5vw, 56px); line-height: 1; letter-spacing: -0.05em; }
.lm-cta-box p { color: rgba(255,255,255,.78); max-width: 760px; font-size: 18px; line-height: 1.6; }
.lm-cta-box .lm-button { background: #fff; color: #1d4ed8; box-shadow: 0 18px 38px rgba(0,0,0,.18); }
.lm-footer { padding: 26px 0 44px; color: #64748b; font-size: 14px; }
.lm-footer-inner { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--lm-border); padding-top: 22px; }
.lm-reveal { opacity: 0; transform: translateY(18px); transition: opacity 560ms ease, transform 560ms ease; }
.lm-reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 940px) {
    .lm-hero-grid, .lm-split { grid-template-columns: 1fr; }
    .lm-card-grid, .lm-steps { grid-template-columns: repeat(2, 1fr); }
    .lm-floating-card { left: 18px; }
}
@media (max-width: 680px) {
    .lm-shell { width: min(100% - 28px, 1180px); }
    .lm-nav-inner { height: auto; padding: 12px 0; align-items: flex-start; flex-direction: column; }
    .lm-nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; }
    .lm-nav-links a:not(.lm-button) { display: none; }
    .lm-card-grid, .lm-steps { grid-template-columns: 1fr; }
    .lm-hero { padding-top: 48px; }
    .lm-floating-card { position: static; margin: -36px 18px 0; }
    .lm-cta-box { padding: 34px 24px; }
    .lm-footer-inner { flex-direction: column; }
}
.lm-table-wrap {
    overflow: hidden;
    border: 1px solid var(--lm-border);
    border-radius: 26px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}
.lm-compat-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.lm-compat-table th,
.lm-compat-table td {
    padding: 18px 20px;
    vertical-align: top;
    border-bottom: 1px solid var(--lm-border);
}
.lm-compat-table th {
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.lm-compat-table td:first-child {
    width: 19%;
    font-weight: 850;
    color: var(--lm-ink);
}
.lm-compat-table td:nth-child(2) {
    width: 31%;
    font-weight: 760;
    color: #334155;
}
.lm-compat-table td:nth-child(3) {
    color: var(--lm-muted);
    line-height: 1.55;
}
.lm-compat-table tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 760px) {
    .lm-table-wrap { overflow-x: auto; }
    .lm-compat-table { min-width: 740px; }
}

.lm-pricing-section {
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.58), rgba(255,255,255,0));
}
.lm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}
.lm-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--lm-border);
    background: rgba(255,255,255,.9);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.lm-price-card::after {
    content: "";
    position: absolute;
    right: -58px;
    top: -58px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    pointer-events: none;
}
.lm-price-featured {
    border-color: rgba(37, 99, 235, .42);
    box-shadow: 0 28px 70px rgba(37, 99, 235, 0.16);
    transform: translateY(-8px);
}
.lm-price-label {
    align-self: flex-start;
    border-radius: 999px;
    padding: 7px 11px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.lm-price-card h3 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.035em;
}
.lm-price {
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
    color: var(--lm-ink);
}
.lm-price span {
    display: inline-block;
    margin-left: 6px;
    font-size: 15px;
    letter-spacing: 0;
    color: var(--lm-muted);
    font-weight: 850;
}
.lm-price-summary {
    margin: 0;
    font-size: 16px !important;
}
.lm-price-card ul {
    margin: 0 0 6px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
    color: #334155;
    line-height: 1.45;
}
.lm-price-card li {
    position: relative;
    padding-left: 25px;
}
.lm-price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: 950;
}
.lm-price-card .lm-button {
    margin-top: auto;
    width: 100%;
}
.lm-consulting-box {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 26px;
    align-items: center;
    padding: 28px;
    border-radius: 28px;
    background: #0f172a;
    color: #fff;
    box-shadow: var(--lm-shadow);
}
.lm-consulting-box h3 {
    margin: 0 0 8px;
    font-size: 24px;
    letter-spacing: -0.03em;
}
.lm-consulting-box p {
    margin: 0;
    color: rgba(255,255,255,.76);
    max-width: 760px;
}
.lm-consulting-price {
    flex: 0 0 auto;
    font-size: 36px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
    text-align: right;
}
.lm-consulting-price span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: 0;
    color: rgba(255,255,255,.72);
}
@media (max-width: 940px) {
    .lm-pricing-grid { grid-template-columns: 1fr; }
    .lm-price-featured { transform: none; }
    .lm-consulting-box { align-items: flex-start; flex-direction: column; }
    .lm-consulting-price { text-align: left; }
}

/* Security and FAQ additions */
.lm-security-section {
    background: linear-gradient(180deg, rgba(239, 246, 255, .55), rgba(255, 255, 255, .92));
}
.lm-security-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.lm-security-card {
    min-height: 100%;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255,255,255,.84);
    border: 1px solid var(--lm-border);
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
}
.lm-security-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #eff6ff;
    margin-bottom: 16px;
    font-size: 24px;
}
.lm-security-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    letter-spacing: -0.025em;
}
.lm-security-card p {
    margin: 0;
    color: var(--lm-muted);
    line-height: 1.6;
}
.lm-note-box {
    margin-top: 18px;
    padding: 22px 24px;
    border-radius: 24px;
    background: #0f172a;
    color: #fff;
    box-shadow: var(--lm-shadow);
}
.lm-note-box p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.75);
    line-height: 1.55;
}
.lm-faq-section {
    background: linear-gradient(180deg, #fff, rgba(248, 251, 255, .9));
}
.lm-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.lm-faq-item {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.86);
    border: 1px solid var(--lm-border);
    box-shadow: 0 14px 40px rgba(15,23,42,.07);
}
.lm-faq-item summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--lm-ink);
    letter-spacing: -0.015em;
}
.lm-faq-item p {
    margin: 14px 0 0;
    color: var(--lm-muted);
    line-height: 1.6;
}
@media (max-width: 940px) {
    .lm-security-grid,
    .lm-faq-grid { grid-template-columns: 1fr; }
}

/* Contact form and modal signup */
.lm-contact-section {
    background: linear-gradient(180deg, rgba(248, 251, 255, .9), #fff);
}
.lm-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: 34px;
    align-items: start;
}
.lm-contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.lm-contact-points span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: #1d4ed8;
    font-weight: 800;
    font-size: 13px;
}
.lm-contact-card {
    padding: 28px;
    border-radius: 30px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--lm-border);
    box-shadow: var(--lm-shadow);
}
.lm-form {
    display: grid;
    gap: 16px;
}
.lm-form label {
    display: grid;
    gap: 7px;
    font-weight: 850;
    color: var(--lm-ink);
    font-size: 14px;
}
.lm-form input,
.lm-form select,
.lm-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(148, 163, 184, .45);
    border-radius: 16px;
    padding: 13px 14px;
    font: inherit;
    color: var(--lm-ink);
    background: #fff;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.lm-form textarea {
    resize: vertical;
    min-height: 120px;
}
.lm-form input:focus,
.lm-form select:focus,
.lm-form textarea:focus {
    border-color: rgba(37,99,235,.7);
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.lm-form-note,
.lm-modal-footer-note {
    margin: -6px 0 0;
    color: var(--lm-muted);
    font-size: 13px;
    line-height: 1.5;
}
.lm-modal-footer-note {
    margin-top: 16px;
    text-align: center;
}
.lm-form-message {
    min-height: 22px;
    padding: 2px 0;
    font-size: 14px;
    font-weight: 750;
}
.lm-form-message.success { color: #047857; }
.lm-form-message.error { color: #b91c1c; }
.lm-hp {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 1px !important;
    width: 1px !important;
}
.lm-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}
.lm-modal.is-open {
    display: flex;
}
.lm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.68);
    backdrop-filter: blur(6px);
}
.lm-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(590px, 100%);
    max-height: min(92vh, 820px);
    overflow: auto;
    padding: 30px;
    border-radius: 32px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.6);
}
.lm-modal-head h2 {
    margin: 8px 0 8px;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.055em;
}
.lm-modal-head p {
    margin: 0 0 22px;
    color: var(--lm-muted);
    line-height: 1.6;
}
.lm-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(15,23,42,.08);
    color: var(--lm-ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.lm-modal-close:hover {
    background: rgba(15,23,42,.14);
}
body.lm-modal-open {
    overflow: hidden;
}
@media (max-width: 940px) {
    .lm-contact-grid { grid-template-columns: 1fr; }
    .lm-modal-dialog { padding: 24px; border-radius: 26px; }
}
