:root {
    --lp-blue: #002776;
    --lp-blue-700: #013a9b;
    --lp-blue-900: #001747;
    --lp-green: #009c3b;
    --lp-green-700: #007f31;
    --lp-yellow: #ffdf00;
    --lp-ink: #07152f;
    --lp-muted: #5d6a7c;
    --lp-line: #e4ebf5;
    --lp-bg: #f6f9ff;
    --lp-card: #ffffff;
    --lp-radius: 24px;
    --lp-shadow: 0 24px 70px rgba(0, 39, 118, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.lp-page {
    background: #fff;
    color: var(--lp-ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 76px;
    text-rendering: optimizeLegibility;
    width: 100%;
}

.lp-page a {
    text-decoration: none;
}

.lp-shell {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 22px;
    width: 100%;
}

.lp-header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1040;
    background: linear-gradient(135deg, rgba(0, 39, 118, .98), rgba(0, 55, 145, .96));
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(18px);
}

.lp-nav {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 76px;
}

.lp-brand {
    align-items: center;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.35rem;
    font-weight: 900;
    gap: 10px;
}

.lp-brand-mark {
    align-items: center;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: var(--lp-yellow);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.lp-menu {
    align-items: center;
    display: flex;
    gap: 24px;
}

.lp-menu a {
    color: rgba(255, 255, 255, .88);
    font-size: .94rem;
    font-weight: 750;
}

.lp-menu a:hover {
    color: var(--lp-yellow);
}

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

.lp-button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 14px;
    display: inline-flex;
    font-size: .95rem;
    font-weight: 850;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

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

.lp-button-primary {
    background: var(--lp-blue);
    box-shadow: 0 14px 34px rgba(0, 39, 118, .24);
    color: #fff;
}

.lp-button-primary:hover {
    background: var(--lp-green);
    color: #fff;
}

.lp-button-yellow {
    background: var(--lp-yellow);
    color: var(--lp-ink);
}

.lp-button-yellow:hover {
    background: var(--lp-green);
    color: #fff;
}

.lp-button-soft {
    background: #fff;
    border-color: rgba(255, 255, 255, .55);
    color: var(--lp-blue);
}

.lp-button-soft:hover {
    border-color: var(--lp-blue);
    color: var(--lp-blue);
}

.lp-hero {
    background:
        radial-gradient(circle at 88% 2%, rgba(255, 223, 0, .16), transparent 22%),
        radial-gradient(circle at 94% 14%, rgba(0, 156, 59, .42), transparent 32%),
        linear-gradient(135deg, #002776 0%, #073b9b 46%, #006f52 100%);
    overflow: hidden;
    padding: 86px 0 58px;
    position: relative;
}

.lp-hero-grid {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
}

.lp-kicker {
    align-items: center;
    background: rgba(255, 223, 0, .96);
    border: 1px solid rgba(255, 223, 0, .5);
    border-radius: 999px;
    color: #06111f;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    gap: 8px;
    letter-spacing: .03em;
    padding: 9px 13px;
    text-transform: uppercase;
}

.lp-hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 950;
    letter-spacing: -0.04em;
    line-height: .96;
    margin: 20px 0 20px;
}

.lp-hero h1 span {
    color: var(--lp-yellow);
}

.lp-hero-copy {
    color: rgba(255, 255, 255, .92);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 630px;
}

.lp-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 28px;
}

.lp-proof-pill {
    align-items: center;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 800;
    gap: 8px;
    padding: 9px 12px;
}

.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-metrics {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
    max-width: 700px;
}

.lp-metric {
    border-left: 2px solid rgba(255, 223, 0, .72);
    padding-left: 13px;
}

.lp-metric strong {
    color: var(--lp-yellow);
    display: block;
    font-size: 1.1rem;
    font-weight: 950;
}

.lp-metric span {
    color: rgba(255, 255, 255, .78);
    display: block;
    font-size: .78rem;
    line-height: 1.35;
}

.lp-product-stage {
    min-height: 520px;
    position: relative;
}

.lp-laptop {
    background: #111927;
    border: 10px solid #101827;
    border-radius: 28px 28px 16px 16px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
    margin-left: auto;
    max-width: 660px;
    overflow: hidden;
}

.lp-laptop-screen {
    background: #f8fbff;
    min-height: 420px;
    padding: 18px;
}

.lp-dashboard-layout {
    display: grid;
    gap: 16px;
    grid-template-columns: 150px 1fr;
}

.lp-dashboard-sidebar {
    background: var(--lp-blue);
    border-radius: 16px;
    color: rgba(255, 255, 255, .8);
    padding: 14px;
}

.lp-dashboard-sidebar strong {
    color: #fff;
    display: block;
    font-size: .8rem;
    margin-bottom: 14px;
}

.lp-side-item {
    align-items: center;
    border-radius: 10px;
    display: flex;
    font-size: .75rem;
    font-weight: 800;
    gap: 8px;
    margin: 7px 0;
    padding: 9px 8px;
}

.lp-side-item.active {
    background: var(--lp-green);
    color: #fff;
}

.lp-dashboard-main {
    min-width: 0;
}

.lp-screen-title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.lp-screen-title strong {
    color: var(--lp-blue);
    font-size: 1.05rem;
}

.lp-screen-title span {
    background: rgba(0, 156, 59, .12);
    border-radius: 999px;
    color: var(--lp-green-700);
    font-size: .72rem;
    font-weight: 900;
    padding: 6px 10px;
}

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

.lp-stat-card,
.lp-chart,
.lp-order-list,
.lp-payment-card {
    background: #fff;
    border: 1px solid #e1e9f4;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 39, 118, .06);
}

.lp-stat-card {
    min-height: 82px;
    padding: 12px;
}

.lp-stat-card span {
    color: #7a8799;
    display: block;
    font-size: .67rem;
    font-weight: 800;
}

.lp-stat-card strong {
    color: var(--lp-blue);
    display: block;
    font-size: 1rem;
    margin-top: 8px;
}

.lp-dashboard-bottom {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.35fr .85fr;
    margin-top: 12px;
}

.lp-chart {
    padding: 14px;
}

.lp-bars {
    align-items: end;
    border-bottom: 1px solid #dbe5f2;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(7, 1fr);
    height: 108px;
    margin-top: 12px;
}

.lp-bars i {
    background: linear-gradient(180deg, var(--lp-blue-700), var(--lp-green));
    border-radius: 8px 8px 0 0;
    min-height: 18px;
}

.lp-order-list {
    padding: 14px;
}

.lp-order-row {
    align-items: center;
    border-bottom: 1px solid #edf2f8;
    display: flex;
    font-size: .72rem;
    justify-content: space-between;
    padding: 9px 0;
}

.lp-order-row:last-child {
    border-bottom: 0;
}

.lp-status {
    background: rgba(0, 156, 59, .12);
    border-radius: 999px;
    color: var(--lp-green-700);
    font-size: .65rem;
    font-weight: 900;
    padding: 4px 8px;
}

.lp-phone {
    background: #0b1220;
    border: 8px solid #0b1220;
    border-radius: 36px;
    bottom: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 245px;
}

.lp-phone-screen {
    background: #fff;
    border-radius: 28px;
    min-height: 430px;
    overflow: hidden;
}

.lp-phone-head {
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-green-700));
    color: #fff;
    padding: 20px 16px 18px;
}

.lp-phone-head small {
    color: rgba(255, 255, 255, .78);
    display: block;
    font-weight: 700;
}

.lp-phone-head strong {
    display: block;
    font-size: 1rem;
    margin-top: 3px;
}

.lp-phone-search {
    background: #f2f6fb;
    border-radius: 12px;
    color: #758399;
    font-size: .72rem;
    margin: 12px 12px 0;
    padding: 10px 12px;
}

.lp-phone-products {
    display: grid;
    gap: 10px;
    padding: 12px;
}

.lp-phone-item {
    align-items: center;
    background: #fff;
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    display: grid;
    gap: 10px;
    grid-template-columns: 42px 1fr;
    padding: 10px;
}

.lp-product-emoji {
    align-items: center;
    background: #f3f7ff;
    border-radius: 12px;
    display: inline-flex;
    font-size: 1.35rem;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.lp-phone-item strong {
    color: var(--lp-blue);
    display: block;
    font-size: .78rem;
}

.lp-phone-item span {
    color: var(--lp-green-700);
    display: block;
    font-size: .72rem;
    font-weight: 900;
}

.lp-phone-cart {
    background: var(--lp-blue);
    border-radius: 16px;
    color: #fff;
    display: flex;
    font-size: .78rem;
    font-weight: 900;
    justify-content: space-between;
    margin: 4px 12px 12px;
    padding: 12px;
}

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

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

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

.lp-section-head small {
    color: var(--lp-green);
    display: block;
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.lp-section-head h2 {
    color: var(--lp-blue-900);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 950;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

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

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

.lp-segment-card {
    background: #fff;
    border: 1px solid rgba(0, 39, 118, .12);
    border-radius: 18px;
    color: var(--lp-ink);
    display: block;
    min-height: 106px;
    padding: 12px 10px;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.lp-segment-card:hover {
    border-color: rgba(255, 223, 0, .9);
    box-shadow: 0 18px 44px rgba(0, 39, 118, .12);
    color: var(--lp-ink);
    transform: translateY(-4px);
}

.lp-segment-icon {
    align-items: center;
    background: transparent;
    border-radius: 0;
    display: inline-flex;
    font-size: 1.8rem;
    height: 32px;
    justify-content: center;
    margin-bottom: 6px;
    width: 32px;
}

.lp-segment-icon i {
    font-size: 1.35rem;
    line-height: 1;
}

.lp-segment-card strong {
    display: block;
    font-size: .78rem;
    line-height: 1.2;
    margin-bottom: 4px;
}

.lp-segment-card span {
    color: var(--lp-muted);
    display: block;
    font-size: .62rem;
    line-height: 1.35;
}

.lp-store-grid {
    align-items: center;
    display: grid;
    gap: 36px;
    grid-template-columns: .82fr 1.18fr;
}

.lp-store-title {
    color: var(--lp-blue-900);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 950;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.lp-store-copy {
    color: #33445f;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 14px 0 0;
    max-width: 620px;
}

.lp-check-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
}

.lp-check-list span {
    align-items: center;
    color: #253553;
    display: flex;
    font-weight: 750;
    gap: 10px;
}

.lp-check-list i {
    color: var(--lp-green);
}

.lp-store-showcase {
    min-width: 0;
}

.lp-store-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.lp-store-tab {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 39, 118, .12);
    border-radius: 999px;
    color: var(--lp-blue);
    display: inline-flex;
    font-size: .84rem;
    font-weight: 900;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.lp-store-tab i {
    color: var(--tab-color);
}

.lp-store-tab:hover,
.lp-store-tab.active {
    background: var(--tab-color);
    border-color: var(--tab-color);
    box-shadow: 0 14px 30px rgba(0, 39, 118, .13);
    color: #fff;
    transform: translateY(-2px);
}

.lp-store-tab:hover i,
.lp-store-tab.active i {
    color: #fff;
}

.lp-store-preview-wrap {
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 223, 0, .18), transparent 24%),
        linear-gradient(135deg, var(--lp-blue) 0%, #053c98 45%, #007044 100%);
    border-radius: 32px;
    box-shadow: 0 28px 70px rgba(0, 39, 118, .18);
    display: grid;
    gap: 18px;
    min-height: 540px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.lp-store-preview-wrap::after {
    background: linear-gradient(90deg, rgba(255, 223, 0, .92), rgba(0, 156, 59, .92));
    border-radius: 999px;
    bottom: 92px;
    content: "";
    display: none;
    height: 5px;
    left: 50%;
    opacity: .95;
    position: absolute;
    transform: translateX(-50%);
    width: min(230px, 46%);
}

.lp-store-preview {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.lp-store-preview.active {
    animation: storePreviewIn .32s ease both;
    display: flex;
    justify-content: center;
}

@keyframes storePreviewIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-store-phone-premium {
    background: #fff;
    border: 9px solid #101827;
    border-radius: 38px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .35);
    max-width: 320px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    width: 100%;
}

.lp-store-phone-top {
    align-items: center;
    background: linear-gradient(135deg, var(--store-color), color-mix(in srgb, var(--store-color) 68%, #002776));
    color: #fff;
    display: flex;
    gap: 12px;
    padding: 24px 18px 18px;
}

.lp-store-phone-top span {
    align-items: center;
    background: rgba(255, 255, 255, .18);
    border-radius: 16px;
    display: inline-flex;
    font-size: 1.5rem;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.lp-store-phone-top small {
    color: rgba(255, 255, 255, .78);
    display: block;
    font-size: .75rem;
    font-weight: 800;
}

.lp-store-phone-top strong {
    display: block;
    font-size: 1.05rem;
}

.lp-store-search {
    align-items: center;
    background: #f3f7fc;
    border-radius: 16px;
    color: #728199;
    display: flex;
    font-size: .86rem;
    gap: 8px;
    margin: 16px 16px 0;
    padding: 13px 14px;
}

.lp-store-lead {
    color: var(--lp-blue);
    font-size: 1.15rem;
    font-weight: 950;
    line-height: 1.25;
    padding: 16px 18px 4px;
}

.lp-store-product-list {
    display: grid;
    gap: 10px;
    padding: 12px 16px 16px;
}

.lp-store-product-premium {
    background: #fff;
    border: 1px solid #e0e8f4;
    border-radius: 16px;
    padding: 13px 14px;
}

.lp-store-product-premium strong {
    color: var(--lp-ink);
    display: block;
    font-size: .9rem;
}

.lp-store-product-premium span {
    color: var(--lp-muted);
    display: block;
    font-size: .78rem;
    margin-top: 4px;
}

.lp-store-phone-cta {
    background: var(--lp-blue);
    border-radius: 16px;
    color: #fff;
    font-weight: 950;
    margin: 0 16px 18px;
    min-height: 48px;
    padding: 14px 16px;
    text-align: center;
}

.lp-store-sync {
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    color: #fff;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2px;
    padding: 12px;
    position: relative;
    z-index: 1;
}

.lp-store-sync span {
    align-items: center;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 850;
    gap: 7px;
    justify-content: center;
    text-align: center;
}

.lp-store-sync i {
    color: var(--lp-yellow);
}

.lp-store-proof {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(0, 39, 118, .08);
    margin-top: 16px;
    padding: 18px;
}

.lp-store-proof strong {
    color: var(--lp-blue);
    display: block;
    font-size: 1rem;
}

.lp-store-proof span {
    color: var(--lp-muted);
    display: block;
    font-size: .9rem;
    line-height: 1.55;
    margin-top: 6px;
}

.lp-store-phones {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
    padding: 10px 6px 18px;
    scroll-snap-type: x mandatory;
}

.lp-store-mini {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(0, 39, 118, .10);
    min-width: 150px;
    overflow: hidden;
    scroll-snap-align: start;
}

.lp-store-mini-head {
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    min-height: 42px;
    padding: 12px;
}

.lp-section:nth-of-type(3) .lp-kicker,
.lp-store-grid .lp-kicker {
    background: rgba(0, 39, 118, .08);
    border-color: rgba(0, 39, 118, .12);
    color: var(--lp-blue);
}

.lp-store-mini-body {
    display: grid;
    gap: 10px;
    padding: 12px;
}

.lp-store-product {
    background: #f7faff;
    border: 1px solid #e6eef8;
    border-radius: 14px;
    padding: 10px;
}

.lp-store-product strong {
    display: block;
    font-size: .75rem;
}

.lp-store-product span {
    color: var(--lp-green-700);
    display: block;
    font-size: .72rem;
    font-weight: 900;
    margin-top: 4px;
}

.lp-mini-cta {
    background: var(--lp-blue);
    border-radius: 12px;
    color: #fff;
    display: block;
    font-size: .7rem;
    font-weight: 900;
    padding: 10px;
    text-align: center;
}

.lp-flow {
    background: linear-gradient(135deg, var(--lp-blue) 0%, #0042bd 58%, var(--lp-green-700) 100%);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 39, 118, .20);
    color: #fff;
    overflow: hidden;
    padding: 34px;
}

.lp-flow-grid {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 2fr;
}

.lp-flow h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.lp-flow-steps {
    align-items: stretch;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lp-flow-step {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    min-height: 136px;
    padding: 16px 12px;
    text-align: center;
}

.lp-flow-icon {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: var(--lp-blue);
    display: inline-flex;
    font-size: 1.35rem;
    height: 50px;
    justify-content: center;
    margin-bottom: 12px;
    width: 50px;
}

.lp-flow-step strong {
    display: block;
    font-size: .83rem;
    line-height: 1.35;
}

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

.lp-feature-card {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    min-height: 170px;
    padding: 22px;
    text-align: center;
}

.lp-feature-card i {
    color: var(--lp-blue);
    display: block;
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.lp-feature-card strong {
    display: block;
    margin-bottom: 8px;
}

.lp-feature-card span {
    color: var(--lp-muted);
    display: block;
    font-size: .82rem;
    line-height: 1.45;
}

.lp-demo-wrap {
    position: relative;
}

.lp-demo-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 6px 22px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(0, 39, 118, .32) transparent;
}

.lp-demo-card {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(0, 39, 118, .08);
    color: var(--lp-ink);
    flex: 0 0 226px;
    min-height: 218px;
    padding: 20px;
    scroll-snap-align: start;
}

.lp-demo-card:hover {
    border-color: var(--lp-green);
    color: var(--lp-ink);
    transform: translateY(-3px);
}

.lp-demo-icon {
    align-items: center;
    background: #edf4ff;
    border-radius: 14px;
    color: var(--lp-blue);
    display: inline-flex;
    font-size: 1.35rem;
    height: 46px;
    justify-content: center;
    margin-bottom: 16px;
    width: 46px;
}

.lp-demo-card strong,
.lp-demo-card span,
.lp-demo-card em {
    display: block;
}

.lp-demo-card span {
    color: var(--lp-muted);
    font-size: .84rem;
    line-height: 1.5;
    margin: 8px 0 14px;
}

.lp-demo-card em {
    color: var(--lp-green);
    font-style: normal;
    font-weight: 950;
}

.lp-demo-nav {
    align-items: center;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(0, 39, 118, .16);
    color: var(--lp-blue);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: absolute;
    top: 42%;
    width: 44px;
    z-index: 3;
}

.lp-demo-nav.prev {
    left: -16px;
}

.lp-demo-nav.next {
    right: -16px;
}

.lp-testimonial-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.05fr .95fr;
}

.lp-testimonial-card,
.lp-cta-card,
.lp-trust-mini {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 24px;
    box-shadow: 0 16px 44px rgba(0, 39, 118, .08);
    padding: 28px;
}

.lp-stars {
    color: var(--lp-yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.lp-quote {
    border-left: 4px solid var(--lp-green);
    color: #24334d;
    line-height: 1.75;
    margin: 0 0 18px;
    padding-left: 18px;
}

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

.lp-trust-mini {
    box-shadow: none;
    padding: 20px;
    text-align: center;
}

.lp-trust-mini i {
    color: var(--lp-green);
    display: block;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.lp-trust-mini strong {
    display: block;
}

.lp-trust-mini span {
    color: var(--lp-muted);
    display: block;
    font-size: .82rem;
    margin-top: 6px;
}

.lp-cta-card {
    background: linear-gradient(135deg, var(--lp-blue), #0051e8);
    color: #fff;
}

.lp-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 950;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.lp-cta-list {
    display: grid;
    gap: 9px;
    margin: 18px 0 24px;
}

.lp-cta-list span {
    align-items: center;
    display: flex;
    gap: 10px;
}

.lp-footer {
    background: #061a44;
    color: rgba(255, 255, 255, .78);
    padding: 48px 0 26px;
}

.lp-footer-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.4fr repeat(4, minmax(140px, 1fr));
}

.lp-footer h3,
.lp-footer strong {
    color: #fff;
}

.lp-footer a {
    color: rgba(255, 255, 255, .72);
    display: block;
    font-size: .9rem;
    margin: 8px 0;
}

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

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .64);
    font-size: .88rem;
    margin-top: 28px;
    padding-top: 20px;
    text-align: center;
}

.lp-whatsapp {
    align-items: flex-end;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 24px;
    z-index: 1090;
}

.lp-whatsapp-bubble {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 12px 30px rgba(0, 39, 118, .16);
    color: #25334d;
    font-size: .85rem;
    font-weight: 800;
    padding: 10px 14px;
}

.lp-whatsapp-link {
    align-items: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .36);
    color: #fff;
    display: inline-flex;
    font-size: 1.85rem;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.lp-whatsapp-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .lp-menu {
        display: none;
    }

    .lp-hero-grid,
    .lp-store-grid,
    .lp-flow-grid,
    .lp-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .lp-product-stage {
        min-height: 560px;
    }

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

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

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

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

@media (max-width: 720px) {
    body.lp-page {
        padding-top: 68px;
    }

    .lp-shell {
        padding: 0 16px;
    }

    .lp-nav {
        gap: 12px;
        min-height: 68px;
        min-width: 0;
    }

    .lp-brand {
        flex: 1 1 auto;
        font-size: 1.08rem;
        min-width: 0;
    }

    .lp-brand > span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lp-brand-mark {
        height: 36px;
        width: 36px;
    }

    .lp-actions .lp-button-soft {
        display: none;
    }

    .lp-actions {
        display: none;
    }

    .lp-button {
        min-height: 46px;
        padding: 0 14px;
    }

    .lp-actions .lp-button-yellow {
        max-width: 50px;
        overflow: hidden;
        padding: 0;
        white-space: nowrap;
        width: 50px;
    }

    .lp-hero {
        padding: 54px 0 44px;
    }

    .lp-hero-grid {
        gap: 34px;
        min-width: 0;
    }

    .lp-kicker {
        display: block;
        line-height: 1.35;
        max-width: 356px;
        white-space: normal;
    }

    .lp-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3rem);
        max-width: 356px;
        overflow-wrap: normal;
    }

    .lp-hero-copy {
        max-width: 356px;
    }

    .lp-hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 356px;
    }

    .lp-proof-pill {
        width: 100%;
    }

    .lp-hero-ctas .lp-button {
        max-width: 356px;
        width: 100%;
    }

    .lp-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 356px;
    }

    .lp-product-stage {
        margin: 0;
        overflow: hidden;
        min-height: 610px;
    }

    .lp-laptop {
        border-width: 7px;
        border-radius: 22px;
        margin-left: 0;
        max-width: 100%;
        transform: none;
        width: 100%;
    }

    .lp-laptop-screen {
        min-height: 372px;
        padding: 14px;
    }

    .lp-dashboard-layout {
        grid-template-columns: 102px 1fr;
    }

    .lp-dashboard-sidebar {
        padding: 10px;
    }

    .lp-side-item {
        font-size: .64rem;
        gap: 5px;
        padding: 8px 6px;
    }

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

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

    .lp-phone {
        bottom: 0;
        left: 18px;
        width: 218px;
    }

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

    .lp-segment-grid {
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-segment-card {
        min-height: 118px;
        padding: 14px 12px;
    }

    .lp-store-grid {
        gap: 28px;
    }

    .lp-store-title {
        font-size: clamp(2rem, 10vw, 2.55rem);
        letter-spacing: -0.035em;
    }

    .lp-store-copy {
        font-size: 1rem;
        line-height: 1.65;
    }

    .lp-store-tabs {
        flex-wrap: nowrap;
        margin: 0 -16px 16px;
        overflow-x: auto;
        padding: 0 16px 6px;
        scrollbar-width: none;
    }

    .lp-store-tabs::-webkit-scrollbar {
        display: none;
    }

    .lp-store-tab {
        flex: 0 0 auto;
        min-height: 44px;
    }

    .lp-store-preview-wrap {
        border-radius: 26px;
        margin: 0 -4px;
        min-height: auto;
        padding: 18px 14px;
    }

    .lp-store-preview-wrap::after {
        bottom: 105px;
        width: 42%;
    }

    .lp-store-phone-premium {
        border-width: 7px;
        border-radius: 30px;
        max-width: 100%;
    }

    .lp-store-phone-top {
        padding: 20px 16px 16px;
    }

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

    .lp-store-sync span {
        font-size: .68rem;
        justify-content: flex-start;
        text-align: left;
    }

    .lp-store-phones {
        grid-template-columns: repeat(5, 72vw);
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .lp-flow {
        border-radius: 22px;
        margin: 0 -4px;
        padding: 24px 18px;
    }

    .lp-flow-steps,
    .lp-feature-grid,
    .lp-trust-row {
        grid-template-columns: 1fr;
    }

    .lp-demo-card {
        flex-basis: 78vw;
    }

    .lp-demo-nav {
        display: none;
    }

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

    .lp-whatsapp {
        bottom: 16px;
        right: 16px;
    }

    .lp-whatsapp-bubble {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}
