:root {
    --lp-ink: #102033;
    --lp-ink-2: #284257;
    --lp-muted: #63778a;
    --lp-soft: #f5f9fc;
    --lp-soft-2: #edf7fb;
    --lp-white: #ffffff;
    --lp-border: #d9e8ef;
    --lp-cyan: #11b8d7;
    --lp-teal: #0f8f9a;
    --lp-mint: #38d6a3;
    --lp-blue: #315eea;
    --lp-amber: #f59e0b;
    --lp-shadow: 0 18px 45px rgba(16, 32, 51, .08);
    --lp-shadow-lg: 0 28px 70px rgba(16, 32, 51, .12);
    --lp-radius: 26px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--lp-ink);
    background: var(--lp-white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

img,
svg,
video,
canvas {
    max-width: 100%;
}

code,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.lp-container {
    width: min(100% - 36px, 1200px);
    margin-inline: auto;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    padding: 12px 0;
    background: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(217, 232, 239, .82);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, background .2s ease;
}

.lp-header.is-scrolled {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 14px 34px rgba(16, 32, 51, .08);
}

.lp-nav {
    padding: 0;
}

.lp-nav-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.lp-brand-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: 0 12px 24px rgba(17, 184, 215, .12);
    overflow: hidden;
}

.lp-brand-logo img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.lp-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.lp-brand-text strong {
    font-size: .98rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--lp-ink);
}

.lp-brand-text small {
    margin-top: 5px;
    color: var(--lp-teal);
    font-size: .74rem;
    font-weight: 700;
}

.lp-menu-links {
    align-items: center;
    gap: 3px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(237, 247, 251, .85);
    border: 1px solid rgba(217, 232, 239, .9);
}

.lp-menu-links .nav-link {
    color: var(--lp-ink-2);
    font-size: .88rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 9px 13px !important;
}

.lp-menu-links .nav-link:hover,
.lp-menu-links .nav-link.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-teal), var(--lp-cyan));
}

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

.lp-toggler {
    width: 46px;
    height: 46px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lp-border) !important;
    border-radius: 15px;
    color: var(--lp-ink);
    background: var(--lp-white);
    box-shadow: none !important;
}

.lp-toggler i {
    font-size: 1.6rem;
}

.lp-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 12px 18px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.lp-btn:hover {
    transform: translateY(-2px);
}

.lp-btn-lg {
    min-height: 54px;
    padding-inline: 22px;
}

.lp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-teal), var(--lp-cyan));
    box-shadow: 0 16px 34px rgba(17, 184, 215, .22);
}

.lp-btn-primary:hover {
    color: #fff;
    box-shadow: 0 22px 48px rgba(17, 184, 215, .30);
}

.lp-btn-outline {
    color: var(--lp-ink);
    background: #fff;
    border-color: var(--lp-border);
}

.lp-btn-outline:hover {
    color: var(--lp-teal);
    border-color: rgba(15, 143, 154, .36);
    box-shadow: var(--lp-shadow);
}

.lp-btn-soft {
    color: #075c63;
    background: #e7fbfd;
    border-color: rgba(15, 143, 154, .16);
}

.lp-btn-soft:hover {
    color: #075c63;
    box-shadow: 0 14px 28px rgba(15, 143, 154, .10);
}

.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at 12% 14%, rgba(17, 184, 215, .17), transparent 26%),
        radial-gradient(circle at 84% 6%, rgba(49, 94, 234, .10), transparent 28%),
        linear-gradient(180deg, #f8fdff 0%, #ffffff 100%);
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 143, 154, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 143, 154, .055) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
    pointer-events: none;
}

.lp-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
    gap: clamp(32px, 5vw, 74px);
    align-items: center;
}

.lp-hero-copy h1,
.lp-section-head h2,
.lp-integration-copy h2,
.lp-download-band h2,
.lp-faq-intro h2,
.lp-cta h2 {
    margin: 0;
    color: var(--lp-ink);
    font-weight: 800;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.lp-hero-copy h1 {
    max-width: 760px;
    margin-top: 22px;
    font-size: clamp(2.65rem, 5.6vw, 5.1rem);
    line-height: 1.02;
}

.lp-lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--lp-ink-2);
    font-size: clamp(1.02rem, 1.3vw, 1.18rem);
    line-height: 1.78;
}

.lp-pill,
.lp-kicker {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    color: #075c63;
    background: #e7fbfd;
    border: 1px solid rgba(15, 143, 154, .16);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lp-pill {
    padding: 9px 13px;
}

.lp-kicker {
    padding: 8px 12px;
    margin-bottom: 14px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.lp-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
    max-width: 650px;
}

.lp-trust-row div {
    padding: 16px 17px;
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 24px rgba(16, 32, 51, .055);
}

.lp-trust-row span {
    display: block;
    color: var(--lp-muted);
    font-size: .78rem;
    font-weight: 700;
}

.lp-trust-row strong {
    display: block;
    margin-top: 5px;
    color: var(--lp-ink);
    font-size: 1rem;
    font-weight: 800;
}

.lp-hero-panel {
    position: relative;
    min-width: 0;
}

.lp-app-card {
    position: relative;
    padding: 22px;
    border-radius: 32px;
    border: 1px solid rgba(217, 232, 239, .96);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--lp-shadow-lg);
    backdrop-filter: blur(14px);
}

.lp-app-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(17, 184, 215, .10), rgba(56, 214, 163, .08));
    z-index: -1;
}

.lp-app-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.lp-app-card-head div {
    display: grid;
    grid-template-columns: 13px minmax(0, 1fr);
    column-gap: 9px;
    align-items: center;
}

.lp-app-card-head strong {
    color: var(--lp-ink);
    font-weight: 800;
}

.lp-app-card-head small {
    grid-column: 2;
    color: var(--lp-muted);
    font-weight: 600;
}

.lp-status-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--lp-mint);
    box-shadow: 0 0 0 6px rgba(56, 214, 163, .16);
}

.lp-badge {
    border-radius: 999px;
    padding: 7px 10px;
    background: #ecfdf5;
    color: #128052;
    font-size: .75rem;
    font-weight: 800;
}

.lp-ticket-preview {
    max-width: 340px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: 0 18px 34px rgba(16, 32, 51, .09);
}

.lp-ticket-top {
    width: 74px;
    height: 10px;
    border-radius: 99px;
    background: var(--lp-ink);
    margin: 0 auto 18px;
}

.lp-ticket-line {
    width: 60%;
    height: 8px;
    border-radius: 99px;
    background: #d9e8ef;
    margin: 8px auto;
}

.lp-ticket-line.wide {
    width: 86%;
}

.lp-ticket-row,
.lp-ticket-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--lp-ink-2);
    padding: 10px 0;
    border-bottom: 1px dashed #d8e6ed;
    font-size: .9rem;
}

.lp-ticket-total {
    border-bottom: 0;
    color: var(--lp-ink);
    font-weight: 800;
    font-size: 1rem;
}

.lp-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.lp-mini-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 16px;
    background: #f3fbfd;
    color: #075c63;
    font-weight: 800;
    font-size: .82rem;
}

.lp-floating-note {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff;
    color: var(--lp-ink);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    font-size: .82rem;
    font-weight: 800;
}

.lp-floating-note i {
    color: var(--lp-teal);
}

.lp-floating-note-a {
    left: -18px;
    top: 20%;
}

.lp-floating-note-b {
    right: -8px;
    bottom: 22%;
}

.lp-section {
    padding: 88px 0;
}

.lp-section-soft {
    background: var(--lp-soft);
}

.lp-section-head {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.lp-section-head h2,
.lp-integration-copy h2,
.lp-download-band h2,
.lp-faq-intro h2,
.lp-cta h2 {
    font-size: clamp(2rem, 3.9vw, 3.45rem);
    line-height: 1.08;
}

.lp-section-head p {
    margin: 16px auto 0;
    color: var(--lp-muted);
    line-height: 1.75;
    font-size: 1.02rem;
}

.lp-benefit-grid,
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

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

.lp-card {
    min-width: 0;
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: 0 14px 30px rgba(16, 32, 51, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 184, 215, .34);
    box-shadow: var(--lp-shadow);
}

.lp-card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: #075c63;
    background: #e7fbfd;
    font-size: 1.22rem;
    margin-bottom: 18px;
}

.lp-card h3 {
    margin: 0;
    color: var(--lp-ink);
    font-size: 1.04rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -.02em;
}

.lp-card p {
    margin: 10px 0 0;
    color: var(--lp-muted);
    line-height: 1.65;
    font-size: .95rem;
}

.lp-card-compact {
    padding: 25px;
}

.lp-integration-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: center;
}

.lp-integration-copy p {
    margin: 16px 0 0;
    color: var(--lp-muted);
    line-height: 1.76;
}

.lp-integration-copy p strong {
    color: var(--lp-teal);
}

.lp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.lp-tab {
    min-height: 44px;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    background: #fff;
    color: var(--lp-ink-2);
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.lp-tab.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-teal), var(--lp-cyan));
    border-color: transparent;
}

.lp-tab-panels {
    margin-top: 18px;
}

.lp-tab-panel {
    display: none;
    gap: 12px;
}

.lp-tab-panel.is-active {
    display: grid;
}

.lp-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding: 15px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(16, 32, 51, .045);
}

.lp-step span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #e7fbfd;
    color: #075c63;
    font-size: .78rem;
    font-weight: 800;
}

.lp-step strong {
    display: block;
    color: var(--lp-ink);
    font-weight: 800;
}

.lp-step small {
    display: block;
    margin-top: 4px;
    color: var(--lp-muted);
    line-height: 1.52;
}

.lp-code-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(17, 184, 215, .22);
    box-shadow: var(--lp-shadow-lg);
}

.lp-code-head {
    min-height: 62px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f3fbfe 100%);
    border-bottom: 1px solid rgba(17, 184, 215, .18);
}

.lp-code-head div {
    display: flex;
    gap: 7px;
}

.lp-code-head div span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.lp-code-head div span:nth-child(2) {
    background: #f59e0b;
}

.lp-code-head div span:nth-child(3) {
    background: #22c55e;
}

.lp-code-head strong {
    color: var(--lp-ink);
    font-size: .92rem;
    font-weight: 850;
    text-align: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-code-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(17, 184, 215, .25);
    background: #fff;
    color: var(--lp-ink);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: .82rem;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(16, 32, 51, .04);
}

.lp-code-head button:hover {
    color: #075c63;
    border-color: rgba(15, 143, 154, .42);
    background: #effcff;
}

.lp-code-card pre {
    max-height: 560px;
    overflow: auto;
    margin: 0;
    padding: 24px 26px;
    color: #0f2742;
    background:
        linear-gradient(rgba(17, 184, 215, .045) 1px, transparent 1px),
        linear-gradient(180deg, #fbfeff 0%, #f7fcff 100%);
    background-size: 100% 30px, 100% 100%;
    font-size: .9rem;
    line-height: 1.8;
    white-space: pre;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 143, 154, .55) rgba(16, 32, 51, .08);
}

.lp-code-card pre::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.lp-code-card pre::-webkit-scrollbar-track {
    background: rgba(16, 32, 51, .06);
    border-radius: 999px;
}

.lp-code-card pre::-webkit-scrollbar-thumb {
    background: rgba(15, 143, 154, .55);
    border-radius: 999px;
}

.lp-code-card code {
    color: inherit;
}

.code-tag {
    color: #7c3aed;
    font-weight: 800;
}

.code-attr {
    color: #0f8f9a;
    font-weight: 800;
}

.code-fn {
    color: #0f8f9a;
    font-weight: 900;
}

.code-key {
    color: #2563eb;
    font-weight: 850;
}

.code-string {
    color: #b45309;
    font-weight: 700;
}

.code-number {
    color: #16a34a;
    font-weight: 850;
}

.lp-architecture {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.lp-architecture::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 51px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(17, 184, 215, .52), transparent);
}

.lp-architecture div {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 22px 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: 0 12px 26px rgba(16, 32, 51, .055);
    text-align: center;
}

.lp-architecture i {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #075c63;
    background: #e7fbfd;
    font-size: 1.35rem;
}

.lp-architecture strong {
    display: block;
    color: var(--lp-ink);
    font-weight: 800;
}

.lp-architecture span {
    display: block;
    margin-top: 7px;
    color: var(--lp-muted);
    font-size: .88rem;
    line-height: 1.45;
}

.lp-download-band {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid var(--lp-border);
    background: #fff;
    box-shadow: var(--lp-shadow);
}

.lp-download-band p {
    margin: 16px 0 0;
    color: var(--lp-muted);
    line-height: 1.75;
}

.lp-download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lp-download-card {
    min-width: 0;
    padding: 20px;
    border-radius: 22px;
    background: #f8fdff;
    border: 1px solid var(--lp-border);
}

.lp-download-card>i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: #075c63;
    background: #e7fbfd;
    margin-bottom: 14px;
}

.lp-download-card strong {
    display: block;
    color: var(--lp-ink);
    font-weight: 800;
}

.lp-download-card p {
    min-height: 78px;
    margin: 9px 0 14px;
    font-size: .9rem;
    line-height: 1.58;
}

.lp-download-card a {
    color: var(--lp-teal);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lp-plan {
    min-width: 0;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
}

.lp-plan.is-featured {
    border-color: rgba(17, 184, 215, .38);
    background: linear-gradient(180deg, #ffffff 0%, #eefbfc 100%);
    box-shadow: 0 28px 70px rgba(17, 184, 215, .18);
}

.lp-plan-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 10px;
    background: #e7fbfd;
    color: #075c63;
    font-size: .74rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.lp-plan h3 {
    margin: 0;
    color: var(--lp-ink);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.025em;
}

.lp-price {
    margin-top: 16px;
    color: var(--lp-ink);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.045em;
}

.lp-price small {
    display: block;
    margin-top: 8px;
    color: var(--lp-muted);
    font-size: .82rem;
    letter-spacing: 0;
    font-weight: 600;
}

.lp-plan p {
    margin: 17px 0 0;
    color: var(--lp-muted);
    line-height: 1.65;
}

.lp-plan ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 11px;
}

.lp-plan li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--lp-ink-2);
    line-height: 1.5;
    font-weight: 600;
}

.lp-plan li i {
    color: #16a34a;
    margin-top: 2px;
    flex: 0 0 auto;
}

.lp-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
}

.lp-faq-intro {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
}

.lp-faq-intro p {
    margin: 16px 0 22px;
    color: var(--lp-muted);
    line-height: 1.72;
}

.lp-accordion {
    display: grid;
    gap: 12px;
}

.lp-accordion .accordion-item {
    border: 1px solid var(--lp-border);
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(16, 32, 51, .045);
}

.lp-accordion .accordion-button {
    min-height: 62px;
    color: var(--lp-ink);
    background: #fff;
    font-weight: 800;
    box-shadow: none !important;
}

.lp-accordion .accordion-button:not(.collapsed) {
    color: #075c63;
    background: #e7fbfd;
}

.lp-accordion .accordion-body {
    color: var(--lp-muted);
    line-height: 1.72;
}

.lp-cta {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    text-align: center;
    background:
        radial-gradient(circle at 18% 16%, rgba(17, 184, 215, .16), transparent 28%),
        radial-gradient(circle at 84% 20%, rgba(56, 214, 163, .14), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #eefbfc 100%);
}

.lp-cta .lp-container {
    max-width: 880px;
}

.lp-cta .lp-kicker {
    margin-inline: auto;
}

.lp-cta p {
    max-width: 720px;
    margin: 17px auto 0;
    color: var(--lp-muted);
    line-height: 1.75;
}

.lp-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.lp-footer {
    background: #f7fbfd;
    border-top: 1px solid var(--lp-border);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(150px, .55fr));
    gap: 34px;
    padding: 54px 0 34px;
}

.lp-footer-brand {
    margin-bottom: 18px;
}

.lp-footer p {
    max-width: 520px;
    color: var(--lp-muted);
    line-height: 1.7;
    margin: 0;
}

.lp-footer h3 {
    color: var(--lp-ink);
    font-size: .95rem;
    font-weight: 800;
    margin: 0 0 14px;
}

.lp-footer a:not(.lp-brand) {
    display: block;
    color: var(--lp-muted);
    font-weight: 700;
    margin-bottom: 10px;
}

.lp-footer a:hover {
    color: var(--lp-teal);
}

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    color: var(--lp-muted);
    border-top: 1px solid var(--lp-border);
    font-size: .9rem;
}

.lp-scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--lp-teal), var(--lp-cyan));
    color: #fff;
    box-shadow: var(--lp-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
    z-index: 1030;
}

.lp-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

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

@media (max-width: 1199px) {

    .lp-hero-grid,
    .lp-integration-layout,
    .lp-download-band,
    .lp-faq-layout {
        grid-template-columns: 1fr;
    }

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

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

    .lp-architecture::before {
        display: none;
    }

    .lp-hero-panel {
        max-width: 720px;
    }
}

@media (max-width: 991px) {
    .lp-header {
        padding: 8px 0;
    }

    .lp-menu {
        margin-top: 12px;
        padding: 14px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid var(--lp-border);
        box-shadow: var(--lp-shadow);
    }

    .lp-menu-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 0;
        border: 0;
        background: transparent;
        border-radius: 0;
    }

    .lp-menu-links .nav-link {
        padding: 13px 14px !important;
        border-radius: 15px;
    }

    .lp-nav-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 12px;
    }

    .lp-nav-actions .lp-btn {
        width: 100%;
    }

    .lp-hero {
        padding: 72px 0 58px;
    }

    .lp-section {
        padding: 70px 0;
    }

    .lp-feature-grid,
    .lp-plan-grid,
    .lp-download-grid,
    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .lp-container {
        width: min(100% - 28px, 1200px);
    }

    .lp-hero-copy h1 {
        font-size: clamp(2.35rem, 10vw, 3.65rem);
        line-height: 1.04;
    }

    .lp-section-head h2,
    .lp-integration-copy h2,
    .lp-download-band h2,
    .lp-faq-intro h2,
    .lp-cta h2 {
        font-size: clamp(1.85rem, 8vw, 2.65rem);
    }

    .lp-trust-row,
    .lp-benefit-grid,
    .lp-feature-grid,
    .lp-plan-grid,
    .lp-download-grid,
    .lp-architecture,
    .lp-footer-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero-actions,
    .lp-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lp-hero-actions .lp-btn,
    .lp-cta-actions .lp-btn {
        width: 100%;
    }

    .lp-app-card {
        padding: 16px;
        border-radius: 26px;
    }

    .lp-floating-note {
        position: static;
        margin-top: 12px;
        width: fit-content;
    }

    .lp-mini-grid {
        grid-template-columns: 1fr;
    }

    .lp-code-head {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .lp-code-head button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .lp-code-card pre {
        font-size: .78rem;
        padding: 18px;
        max-height: 430px;
    }

    .lp-download-band {
        padding: 22px;
        border-radius: 26px;
    }

    .lp-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .lp-brand-text strong {
        font-size: .9rem;
    }

    .lp-brand-text small {
        font-size: .68rem;
    }

    .lp-brand-logo {
        width: 43px;
        height: 43px;
        min-width: 43px;
    }

    .lp-toggler {
        width: 43px;
        height: 43px;
    }

    .lp-tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lp-tab {
        width: 100%;
        justify-content: center;
    }

    .lp-step {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   FIX NAV FIJO + MENÚ RESPONSIVO
   Ajuste aplicado para que el header permanezca fijo y el menú móvil
   abra como panel vertical completo, sin romper el layout del logo.
===================================================== */
body {
    padding-top: 90px;
}

.lp-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1080;
    padding: 10px 0;
}

.lp-nav-inner {
    position: relative;
    justify-content: space-between;
}

.lp-brand {
    flex: 0 1 auto;
}

.lp-menu {
    min-width: 0;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 86px;
    }

    .lp-header {
        padding: 8px 0;
    }

    .lp-nav-inner {
        min-height: 64px;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .lp-brand {
        max-width: calc(100% - 62px);
        gap: 10px;
        min-width: 0;
    }

    .lp-brand-logo {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 15px;
    }

    .lp-brand-logo img {
        width: 34px;
        height: 34px;
    }

    .lp-brand-text {
        min-width: 0;
    }

    .lp-brand-text strong {
        max-width: 170px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: .98rem;
        line-height: 1.08;
    }

    .lp-brand-text small {
        max-width: 170px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: .72rem;
    }

    .lp-toggler {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin-left: auto;
        border-radius: 16px;
    }

    .lp-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0 !important;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .98);
        border: 1px solid var(--lp-border);
        box-shadow: 0 26px 70px rgba(16, 32, 51, .16);
        backdrop-filter: blur(18px);
    }

    .lp-menu.collapsing {
        position: absolute;
        height: 0;
        overflow: hidden;
        transition: height .18s ease;
    }

    .lp-menu.show {
        display: block;
    }

    .lp-menu-links {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 6px;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .lp-menu-links .nav-item,
    .lp-menu-links .nav-link {
        width: 100%;
    }

    .lp-menu-links .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 16px !important;
        border-radius: 16px;
        color: var(--lp-ink-2);
        font-size: .98rem;
        font-weight: 800;
    }

    .lp-menu-links .nav-link:hover,
    .lp-menu-links .nav-link.is-active {
        color: #fff;
        background: linear-gradient(135deg, var(--lp-teal), var(--lp-cyan));
    }

    .lp-nav-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    .lp-nav-actions .lp-btn {
        width: 100%;
        min-height: 50px;
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 82px;
    }

    .lp-container {
        width: min(100% - 26px, 1200px);
    }

    .lp-nav-inner {
        min-height: 60px;
    }

    .lp-brand-logo {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .lp-brand-logo img {
        width: 32px;
        height: 32px;
    }

    .lp-brand-text strong {
        max-width: 155px;
        font-size: .92rem;
    }

    .lp-brand-text small {
        max-width: 155px;
        font-size: .68rem;
    }

    .lp-toggler {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .lp-menu {
        top: calc(100% + 10px);
        padding: 12px;
        border-radius: 22px;
    }
}

/* =====================================================
   Historial de versiones - Ticket Printer Agent landing V2
   Agregar al final de main.css
   ===================================================== */

/*
  IMPORTANTE:
  La sección de descargas usa .lp-download-band como grid de 2 columnas.
  Por eso el historial quedaba solo debajo de la columna izquierda.
  Este CSS hace que el historial ocupe todo el ancho disponible.
*/

.lp-download-band .lp-version-box {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 30px;
    padding: 26px;
    border: 1px solid rgba(14, 165, 180, .20);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(14, 165, 180, .08), transparent 34%),
        rgba(255, 255, 255, .78);
}

.lp-version-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.lp-version-head h3 {
    margin: 8px 0 6px;
    font-size: 1.45rem;
    letter-spacing: -.035em;
    color: #0f1f35;
}

.lp-version-head p {
    max-width: 720px;
    margin: 0;
    color: #5d7288;
    line-height: 1.6;
}

.lp-version-head>strong {
    flex: 0 0 auto;
    white-space: nowrap;
    color: #00899b;
    background: #e8fbff;
    border: 1px solid #bdeff6;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 900;
}

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

.lp-version-item {
    min-height: 150px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid #d9edf4;
    border-radius: 18px;
    background: #fff;
}

.lp-version-copy {
    min-width: 0;
}

.lp-version-copy strong,
.lp-version-copy span,
.lp-version-copy p {
    display: block;
}

.lp-version-copy strong {
    color: #0f1f35;
    font-weight: 900;
}

.lp-version-copy span {
    margin-top: 3px;
    color: #64748b;
    font-size: .9rem;
}

.lp-version-copy p {
    margin: 7px 0 0;
    color: #5d7288;
    line-height: 1.55;
}

.lp-version-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 0 0 auto;
    justify-content: flex-end;
}

.lp-version-actions a {
    min-width: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 13px;
    border-radius: 999px;
    background: #eefbff;
    color: #007f91;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.lp-version-actions a:hover {
    background: #dff7fd;
    color: #006c7d;
}

@media (max-width: 1024px) {
    .lp-version-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .lp-download-band .lp-version-box {
        margin-top: 22px;
        padding: 18px;
        border-radius: 22px;
    }

    .lp-version-head,
    .lp-version-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-version-head {
        gap: 14px;
    }

    .lp-version-head h3 {
        font-size: 1.25rem;
    }

    .lp-version-head>strong {
        white-space: normal;
    }

    .lp-version-item {
        min-height: auto;
        padding: 16px;
    }

    .lp-version-actions {
        width: 100%;
        justify-content: stretch;
    }

    .lp-version-actions a {
        flex: 1 1 120px;
    }
}

.lp-license-note {
    margin-top: 24px;
    padding: 22px 24px;
    border: 1px solid rgba(14, 165, 180, .22);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(232, 251, 255, .74), rgba(255, 255, 255, .92));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.lp-license-note strong {
    display: block;
    color: #0f1f35;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.lp-license-note p {
    margin: 0;
    color: #5d7288;
    line-height: 1.6;
}

.lp-license-note a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #11a9bd;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(17, 169, 189, .20);
}

.lp-license-note a:hover {
    background: #078ca0;
    color: #fff;
}

@media (max-width: 860px) {
    .lp-license-note {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .lp-license-note a {
        width: 100%;
        justify-content: center;
    }
}
/* =====================================================
   Sección precios profesional V2
   Pegar al final de main.css para reemplazar visualmente
   el bloque actual de licencias.
   ===================================================== */

.lp-pricing-section {
  position: relative;
}

.lp-pricing-section .lp-container {
  max-width: 1280px;
}

.lp-pricing-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.lp-pricing-head h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.15rem, 3.25vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.lp-pricing-head p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.65;
}

.lp-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.lp-plan {
  position: relative;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(14, 165, 180, .20);
  box-shadow: 0 18px 44px rgba(15, 31, 53, .055);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.lp-plan:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 180, .38);
  box-shadow: 0 24px 58px rgba(15, 31, 53, .085);
}

.lp-plan.is-featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(14, 165, 180, .11), transparent 38%),
    rgba(255, 255, 255, .92);
  border-color: rgba(14, 165, 180, .55);
  box-shadow: 0 26px 72px rgba(14, 165, 180, .16);
}

.lp-plan-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e9fbff;
  color: #007f91;
  font-size: .70rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.lp-plan h3 {
  margin: 20px 0 12px;
  color: #0f1f35;
  font-size: clamp(1.08rem, 1.05vw, 1.22rem);
  line-height: 1.18;
  letter-spacing: -.025em;
  font-weight: 900;
}

.lp-price {
  margin-bottom: 16px;
  color: #0a2342;
  font-size: clamp(1.65rem, 1.85vw, 2.05rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 950;
  white-space: nowrap;
}

.lp-price small {
  display: block;
  margin-top: 4px;
  color: #5d7288;
  font-size: .78rem;
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 700;
  white-space: normal;
}

.lp-plan > p {
  min-height: 82px;
  margin: 0 0 18px;
  color: #5d7288;
  font-size: .94rem;
  line-height: 1.58;
}

.lp-plan ul {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.lp-plan li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #10233a;
  font-size: .91rem;
  line-height: 1.35;
  font-weight: 800;
}

.lp-plan li i {
  color: #10a653;
  font-size: .94rem;
  line-height: 1.35;
}

.lp-plan .lp-btn {
  margin-top: auto;
  min-height: 44px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 900;
}

.lp-license-note {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(14, 165, 180, .22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(14, 165, 180, .10), transparent 34%),
    rgba(255, 255, 255, .82);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  box-shadow: 0 18px 46px rgba(15, 31, 53, .055);
}

.lp-license-note strong {
  display: block;
  color: #0f1f35;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.lp-license-note p {
  max-width: 850px;
  margin: 0;
  color: #5d7288;
  line-height: 1.6;
}

.lp-license-note a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 17px;
  border-radius: 999px;
  background: #11a9bd;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(17, 169, 189, .20);
}

.lp-license-note a:hover {
  background: #078ca0;
  color: #fff;
}

@media (max-width: 1180px) {
  .lp-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-plan > p {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .lp-pricing-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .lp-pricing-head h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .lp-pricing-head p {
    font-size: .98rem;
  }

  .lp-plan-grid {
    grid-template-columns: 1fr;
  }

  .lp-plan {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .lp-price {
    white-space: normal;
  }

  .lp-license-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .lp-license-note a {
    width: 100%;
  }
}
.lp-plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lp-launch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ecfeff, #dff7ff);
  border: 1px solid rgba(14, 165, 180, .28);
  color: #007f91;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
}

.lp-plan.is-featured .lp-launch-badge {
  background: linear-gradient(135deg, #0ea5b8, #16bfd3);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 165, 180, .18);
}

@media (max-width: 520px) {
  .lp-plan-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .lp-launch-badge {
    font-size: .68rem;
  }
}