:root {
    --lp-orange: #f9a51a;
    --lp-orange-deep: #e96f00;
    --lp-amber: #ffc85a;
    --lp-yellow: #fff0c2;
    --lp-cream: #fff9e8;
    --lp-ink: #063f50;
    --lp-muted: #64748b;
    --lp-line: #e9e5dc;
    --lp-white: #fff;
    --lp-radius: 20px;
    --lp-shadow-sm: 0 8px 30px rgba(114, 66, 12, .08);
    --lp-shadow: 0 24px 70px rgba(114, 66, 12, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    margin: 0;
    color: var(--lp-ink);
    background: var(--lp-white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.lp-menu-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}
.lp-container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.lp-skip {
    position: fixed;
    z-index: 9999;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--lp-ink);
    color: var(--lp-white);
    transform: translateY(-150%);
}
.lp-skip:focus { transform: translateY(0); }

/* Header */
.lp-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 86px;
    border-bottom: 1px solid transparent;
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.lp-header.is-scrolled,
.lp-header.is-menu-open {
    border-color: rgba(226, 219, 205, .8);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 30px rgba(35, 29, 20, .06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
.lp-header__inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.lp-brand { display: inline-flex; min-width: 150px; align-items: center; gap: 12px; font-weight: 800; }
.lp-brand__logo img { width: auto; max-width: 154px; height: 44px; object-fit: contain; }
.lp-brand__fallback { display: none; }
.lp-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.lp-nav > a:not(.lp-btn) {
    position: relative;
    color: #394155;
    font-size: 14px;
    font-weight: 650;
}
.lp-nav > a:not(.lp-btn)::after {
    position: absolute;
    right: 50%;
    bottom: -9px;
    left: 50%;
    height: 2px;
    border-radius: 4px;
    background: var(--lp-orange);
    content: "";
    transition: right .25s ease, left .25s ease;
}
.lp-nav > a:not(.lp-btn):hover { color: var(--lp-orange-deep); }
.lp-nav > a:not(.lp-btn):hover::after { right: 0; left: 0; }
.lp-nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.lp-nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--lp-ink); transition: transform .25s ease, opacity .2s ease; }

/* Shared */
.lp-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn--sm { min-height: 42px; padding: 10px 18px; border-radius: 10px; }
.lp-btn--lg { min-height: 56px; padding: 15px 27px; border-radius: 14px; font-size: 15px; }
.lp-btn--primary {
    color: var(--lp-white);
    background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-deep));
    box-shadow: 0 10px 24px rgba(234, 88, 12, .24);
}
.lp-btn--primary:hover { box-shadow: 0 15px 32px rgba(234, 88, 12, .32); color: var(--lp-white); }
.lp-btn--ghost { border-color: rgba(234, 88, 12, .22); color: #b74808; background: rgba(255, 255, 255, .7); }
.lp-btn--ghost:hover { border-color: var(--lp-orange); background: var(--lp-white); }
.lp-btn--outline { border-color: #dadde4; color: var(--lp-ink); background: var(--lp-white); }
.lp-btn--outline:hover { border-color: var(--lp-orange); color: var(--lp-orange-deep); }
.lp-btn--light { color: var(--lp-orange-deep); background: var(--lp-white); box-shadow: 0 14px 30px rgba(113, 44, 0, .22); }
.lp-btn--block { width: 100%; }
.lp-section { padding: 112px 0; }
.lp-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--lp-orange-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.lp-section h2,
.lp-centered-head h2,
.lp-faq__intro h2 {
    margin: 0;
    color: var(--lp-ink);
    font-size: clamp(34px, 4vw, 53px);
    font-weight: 820;
    letter-spacing: -.045em;
    line-height: 1.12;
}
.lp-section h2 span { color: var(--lp-orange-deep); }
.lp-section-head { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.lp-section-head > p { margin: 0 0 5px; color: var(--lp-muted); font-size: 17px; }
.lp-centered-head { max-width: 700px; margin: 0 auto 58px; text-align: center; }
.lp-centered-head p { max-width: 620px; margin: 18px auto 0; color: var(--lp-muted); font-size: 17px; }

/* Hero */
.lp-hero {
    position: relative;
    min-height: 860px;
    padding: 150px 0 54px;
    background:
        radial-gradient(circle at 13% 20%, rgba(251, 191, 36, .28), transparent 27%),
        radial-gradient(circle at 86% 26%, rgba(249, 115, 22, .17), transparent 30%),
        linear-gradient(145deg, #fffdf7 0%, #fff9e9 53%, #fff4dc 100%);
    isolation: isolate;
    overflow: hidden;
}
.lp-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .28;
    background-image: linear-gradient(rgba(186, 124, 32, .11) 1px, transparent 1px), linear-gradient(90deg, rgba(186, 124, 32, .11) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 76%);
    content: "";
}
.lp-hero__grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); align-items: center; gap: 58px; }
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    padding: 7px 13px;
    border: 1px solid rgba(234, 88, 12, .16);
    border-radius: 999px;
    color: #a63c06;
    background: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.lp-eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lp-orange); box-shadow: 0 0 0 5px rgba(249, 115, 22, .12); }
.lp-hero h1 {
    max-width: 680px;
    margin: 0;
    color: #172033;
    font-size: clamp(49px, 6.2vw, 78px);
    font-weight: 850;
    letter-spacing: -.058em;
    line-height: 1.04;
}
.lp-hero h1 span { color: var(--lp-orange-deep); }
.lp-hero__lead { max-width: 630px; margin: 25px 0 0; color: #566176; font-size: clamp(17px, 1.7vw, 19px); line-height: 1.72; }
.lp-hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.lp-trust { display: flex; align-items: center; gap: 13px; margin-top: 34px; }
.lp-trust__avatars { display: flex; }
.lp-trust__avatars span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-left: -8px;
    place-items: center;
    border: 3px solid #fff9e9;
    border-radius: 50%;
    color: var(--lp-white);
    background: #27344b;
    font-size: 9px;
    font-weight: 800;
}
.lp-trust__avatars span:first-child { margin-left: 0; background: var(--lp-orange); }
.lp-trust__avatars span:last-child { background: #e0a61a; }
.lp-trust p { margin: 0; color: var(--lp-muted); font-size: 12px; line-height: 1.4; }
.lp-trust strong { color: #30394b; font-size: 13px; }

.lp-visual { position: relative; min-height: 570px; }
.lp-visual__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 475px;
    height: 475px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(251, 191, 36, .65), rgba(249, 115, 22, .28));
    box-shadow: inset 0 0 0 35px rgba(255, 255, 255, .22);
    transform: translate(-50%, -50%);
}
.lp-phone {
    position: absolute;
    z-index: 2;
    top: 47%;
    left: 50%;
    width: 267px;
    height: 525px;
    padding: 10px;
    border: 3px solid #202432;
    border-radius: 42px;
    background: #131722;
    box-shadow: 0 35px 70px rgba(70, 39, 10, .28);
    transform: translate(-50%, -50%) rotate(3deg);
}
.lp-phone__speaker { position: absolute; z-index: 2; top: 18px; left: 50%; width: 72px; height: 21px; border-radius: 20px; background: #131722; transform: translateX(-50%); }
.lp-phone__screen {
    height: 100%;
    padding: 40px 19px 22px;
    border-radius: 31px;
    background: linear-gradient(160deg, #fff 10%, #fff9e9 100%);
    overflow: hidden;
}
.lp-phone__top { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 700; }
.lp-status { padding: 4px 7px; border-radius: 20px; color: #15803d; background: #dcfce7; font-size: 8px; }
.lp-qr {
    display: grid;
    width: 142px;
    height: 142px;
    margin: 34px auto 26px;
    padding: 14px;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 5px;
    border: 1px solid #f0dfbc;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(74, 49, 16, .1);
}
.lp-qr span { border-radius: 2px; background: #20293c; }
.lp-qr span:nth-child(3n),
.lp-qr span:nth-child(4n+1) { background: transparent; }
.lp-qr span:nth-child(1),
.lp-qr span:nth-child(5),
.lp-qr span:nth-child(21),
.lp-qr span:nth-child(25) { border: 5px solid #20293c; background: #f97316; }
.lp-phone h3 { margin: 0; text-align: center; font-size: 19px; }
.lp-phone p { margin: 3px 0 24px; color: var(--lp-muted); text-align: center; font-size: 10px; }
.lp-data-bar { height: 7px; border-radius: 20px; background: #f3e6cf; overflow: hidden; }
.lp-data-bar span { display: block; width: 73%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--lp-amber), var(--lp-orange)); }
.lp-phone__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; font-size: 9px; }
.lp-phone__meta span { color: var(--lp-muted); }
.lp-float-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 15px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--lp-shadow);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.lp-float-card--order { top: 86px; left: 0; }
.lp-float-card--world { right: -15px; bottom: 90px; }
.lp-float-card__icon { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 10px; color: #15803d; background: #dcfce7; font-weight: 850; }
.lp-float-card span:last-child { display: flex; flex-direction: column; }
.lp-float-card small { color: var(--lp-muted); font-size: 9px; }
.lp-float-card strong { font-size: 12px; }
.lp-globe { color: var(--lp-orange-deep); font-size: 30px; line-height: 1; }
.lp-shape { position: absolute; z-index: -1; border-radius: 38% 62% 61% 39% / 45% 38% 62% 55%; will-change: transform; }
.lp-shape--one { top: 126px; right: -100px; width: 280px; height: 260px; background: rgba(251, 191, 36, .16); animation: lpFloatOne 21s ease-in-out infinite; }
.lp-shape--two { bottom: 110px; left: -90px; width: 210px; height: 190px; background: rgba(249, 115, 22, .1); animation: lpFloatTwo 26s ease-in-out infinite; }
.lp-shape--three { top: 180px; left: 43%; width: 42px; height: 42px; background: rgba(234, 88, 12, .19); animation: lpFloatOne 17s ease-in-out infinite reverse; }
.lp-stats {
    position: relative;
    z-index: 5;
    display: grid;
    margin-top: 45px;
    padding: 26px 12px;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(230, 213, 181, .7);
    border-radius: 20px;
    background: rgba(255, 255, 255, .76);
    box-shadow: var(--lp-shadow-sm);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.lp-stats > div { display: flex; flex-direction: column; align-items: center; border-right: 1px solid #eee5d4; text-align: center; }
.lp-stats > div:last-child { border: 0; }
.lp-stats strong { color: var(--lp-orange-deep); font-size: 27px; line-height: 1.1; }
.lp-stats sup { font-size: 13px; }
.lp-stats span { margin-top: 5px; color: var(--lp-muted); font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: .045em; }

/* Services */
.lp-services { background: #fff; }
.lp-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-service-card {
    position: relative;
    min-height: 355px;
    padding: 28px 25px;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: #fff;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.lp-service-card:hover { border-color: rgba(249, 115, 22, .38); box-shadow: var(--lp-shadow); transform: translateY(-7px); }
.lp-service-card--featured { border-color: rgba(249, 115, 22, .32); background: linear-gradient(160deg, #fffaf0, #fff); }
.lp-service-card--featured::before { position: absolute; top: -70px; right: -60px; width: 170px; height: 170px; border-radius: 50%; background: rgba(251, 191, 36, .18); content: ""; }
.lp-icon-box {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 15px;
    color: var(--lp-orange-deep);
    background: var(--lp-yellow);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 800;
}
.lp-icon-box svg { width: 25px; height: 25px; }
.lp-service-card__no { position: absolute; top: 30px; right: 24px; color: #cbd0d9; font-size: 12px; font-weight: 800; }
.lp-service-card__tag { display: inline-block; margin-top: 19px; padding: 3px 9px; border-radius: 20px; color: var(--lp-orange-deep); background: #ffedd5; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.lp-service-card h3 { margin: 25px 0 12px; font-size: 20px; line-height: 1.3; }
.lp-service-card--featured h3 { margin-top: 12px; }
.lp-service-card p { margin: 0; color: var(--lp-muted); font-size: 14px; line-height: 1.7; }
.lp-service-card > a { position: absolute; bottom: 26px; left: 25px; color: var(--lp-orange-deep); font-size: 13px; font-weight: 750; }
.lp-service-card > a span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.lp-service-card > a:hover span { transform: translateX(4px); }

/* Benefits */
.lp-benefits {
    background:
        radial-gradient(circle at 4% 12%, rgba(251, 191, 36, .13), transparent 25%),
        #fbfaf7;
}
.lp-benefits__grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: start; gap: 85px; }
.lp-benefits__intro { position: sticky; top: 125px; }
.lp-benefits__intro > p { max-width: 470px; margin: 20px 0 32px; color: var(--lp-muted); font-size: 17px; }
.lp-mini-dashboard { padding: 22px; border: 1px solid #ebe4d6; border-radius: 18px; background: #fff; box-shadow: var(--lp-shadow-sm); }
.lp-mini-dashboard__top { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 750; }
.lp-mini-dashboard__top b { padding: 5px 9px; border-radius: 7px; color: var(--lp-muted); background: #f7f5f1; font-size: 9px; }
.lp-chart { display: flex; height: 125px; align-items: end; gap: 10px; margin: 25px 0 15px; border-bottom: 1px solid #eee8dd; }
.lp-chart i { flex: 1; min-height: 10px; border-radius: 5px 5px 0 0; background: linear-gradient(to top, var(--lp-orange), var(--lp-amber)); opacity: .84; }
.lp-mini-dashboard__bottom { display: flex; justify-content: space-between; color: var(--lp-muted); font-size: 9px; }
.lp-mini-dashboard__bottom span { display: flex; flex-direction: column; }
.lp-mini-dashboard__bottom b { color: var(--lp-ink); font-size: 13px; }
.lp-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.lp-feature {
    display: flex;
    min-height: 178px;
    gap: 16px;
    padding: 24px 20px;
    border: 1px solid #ebe7df;
    border-radius: 17px;
    background: rgba(255, 255, 255, .82);
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.lp-feature:hover { border-color: rgba(249, 115, 22, .35); background: #fff; transform: translateY(-3px); }
.lp-feature__icon { display: grid; flex: 0 0 39px; height: 39px; place-items: center; border-radius: 11px; color: var(--lp-orange-deep); background: var(--lp-yellow); font-size: 10px; font-weight: 850; }
.lp-feature h3 { margin: 2px 0 8px; font-size: 16px; line-height: 1.3; }
.lp-feature p { margin: 0; color: var(--lp-muted); font-size: 13px; line-height: 1.65; }

/* Timeline */
.lp-process { background: #fff; }
.lp-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 35px; }
.lp-timeline::before { position: absolute; top: 49px; right: 11%; left: 11%; height: 1px; background: repeating-linear-gradient(90deg, #f5a96e 0 8px, transparent 8px 15px); content: ""; }
.lp-step { position: relative; text-align: center; }
.lp-step__number { position: absolute; top: 0; right: calc(50% + 24px); color: #e7e2da; font-size: 11px; font-weight: 850; }
.lp-step__dot {
    position: relative;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    margin: 20px auto 24px;
    place-items: center;
    border: 9px solid #fff;
    border-radius: 50%;
    background: var(--lp-orange);
    box-shadow: 0 0 0 1px #f6c39f, 0 8px 20px rgba(234, 88, 12, .2);
}
.lp-step__dot::after { width: 8px; height: 8px; border-radius: 50%; background: #fff; content: ""; }
.lp-step h3 { margin: 0 0 9px; font-size: 17px; }
.lp-step p { margin: 0 auto; max-width: 230px; color: var(--lp-muted); font-size: 13px; }

/* Partner plans */
.lp-partners { background: linear-gradient(180deg, #fffaf0, #fff); }
.lp-plan-grid { display: grid; max-width: 1040px; margin: 0 auto; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.lp-plan { position: relative; display: flex; min-height: 490px; flex-direction: column; padding: 31px 28px; border: 1px solid #e8e2d8; border-radius: 22px; background: #fff; box-shadow: var(--lp-shadow-sm); }
.lp-plan--featured { border: 2px solid var(--lp-orange); box-shadow: 0 24px 60px rgba(234, 88, 12, .15); transform: translateY(-12px); }
.lp-plan__popular { position: absolute; top: -16px; left: 50%; padding: 7px 14px; border-radius: 999px; color: #fff; background: var(--lp-orange-deep); font-size: 10px; font-weight: 800; text-transform: uppercase; white-space: nowrap; transform: translateX(-50%); }
.lp-plan__label { color: var(--lp-orange-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lp-plan h3 { margin: 10px 0 8px; font-size: 26px; }
.lp-plan > p { min-height: 70px; margin: 0; color: var(--lp-muted); font-size: 13px; }
.lp-plan ul { margin: 26px 0 30px; padding: 0; list-style: none; }
.lp-plan li { position: relative; margin: 13px 0; padding-left: 25px; color: #465065; font-size: 13px; }
.lp-plan li::before { position: absolute; top: 2px; left: 0; display: grid; width: 17px; height: 17px; place-items: center; border-radius: 50%; color: #c2410c; background: #ffedd5; content: "✓"; font-size: 9px; font-weight: 900; }
.lp-plan .lp-btn { margin-top: auto; }

/* FAQ */
.lp-faq { background: #fff; }
.lp-faq__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.lp-faq__intro { position: sticky; top: 125px; align-self: start; }
.lp-faq__intro p { max-width: 380px; margin: 20px 0; color: var(--lp-muted); }
.lp-text-link { color: var(--lp-orange-deep); font-size: 14px; font-weight: 750; }
.lp-text-link span { display: inline-block; transition: transform .2s ease; }
.lp-text-link:hover span { transform: translateX(4px); }
.lp-accordion details { border-bottom: 1px solid #e9e5de; }
.lp-accordion summary {
    position: relative;
    padding: 24px 48px 24px 0;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
}
.lp-accordion summary::-webkit-details-marker { display: none; }
.lp-accordion summary span::before,
.lp-accordion summary span::after { position: absolute; top: 34px; right: 5px; width: 15px; height: 2px; border-radius: 3px; background: var(--lp-orange-deep); content: ""; transition: transform .25s ease; }
.lp-accordion summary span::after { transform: rotate(90deg); }
.lp-accordion details[open] summary span::after { transform: rotate(0); }
.lp-accordion details[open] summary { color: var(--lp-orange-deep); }
.lp-accordion details p { margin: -6px 45px 23px 0; color: var(--lp-muted); font-size: 14px; }

/* CTA & footer */
.lp-cta { position: relative; padding: 78px 0; color: #fff; background: linear-gradient(125deg, #f59e0b 0%, #f97316 48%, #dc4b08 100%); overflow: hidden; isolation: isolate; }
.lp-cta::before { position: absolute; z-index: -1; inset: 0; opacity: .14; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 25px 25px; content: ""; }
.lp-shape--cta { z-index: -1; top: -110px; right: 6%; width: 340px; height: 310px; border: 55px solid rgba(255, 255, 255, .1); animation: lpFloatTwo 24s ease-in-out infinite; }
.lp-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.lp-cta__eyebrow { display: block; margin-bottom: 10px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lp-cta h2 { margin: 0; color: #fff; font-size: clamp(34px, 4.2vw, 52px); letter-spacing: -.045em; line-height: 1.12; }
.lp-cta__action { display: flex; flex: 0 0 auto; flex-direction: column; align-items: center; gap: 10px; }
.lp-cta__action small { color: rgba(255, 255, 255, .8); font-size: 11px; }
.lp-cta__action small a { color: #fff; font-weight: 800; }
.lp-footer { padding: 65px 0 20px; color: #cbd3df; background: #172033; }
.lp-footer__grid { display: grid; padding-bottom: 45px; grid-template-columns: 1.4fr .75fr .65fr 1fr; gap: 55px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.lp-brand--footer .lp-brand__logo { padding: 7px 12px; border-radius: 12px; background: #fff; }
.lp-footer__about > p { max-width: 330px; margin: 20px 0 0; color: #98a4b7; font-size: 13px; }
.lp-footer h3 { margin: 7px 0 19px; color: #fff; font-size: 14px; }
.lp-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.lp-footer__grid a,
.lp-footer__grid > div > p { margin: 0 0 10px; color: #9eabba; font-size: 12px; line-height: 1.6; }
.lp-footer__grid a:hover { color: var(--lp-amber); }
.lp-footer__bottom { display: flex; padding-top: 19px; justify-content: space-between; color: #718096; font-size: 10px; }
.lp-floating { position: fixed; z-index: 900; right: 24px; bottom: 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.lp-floating a { display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #fff; box-shadow: 0 9px 28px rgba(20, 25, 36, .23); }
.lp-floating__call { width: 44px; height: 44px; background: #16a34a; }
.lp-floating__call svg { width: 18px; }
.lp-floating__zalo { position: relative; width: 54px; height: 54px; background: #0878e8; font-size: 12px; font-weight: 850; }
.lp-floating__zalo::before { position: absolute; z-index: -1; inset: -7px; border: 2px solid rgba(8, 120, 232, .45); border-radius: 50%; content: ""; animation: lpPulse 2.4s ease-out infinite; }

/* Motion */
.lp-reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s cubic-bezier(.2, .7, .2, 1); }
.lp-reveal.is-in { opacity: 1; transform: translateY(0); }
.lp-delay-1 { transition-delay: .08s; }
.lp-delay-2 { transition-delay: .16s; }
.lp-delay-3 { transition-delay: .24s; }
.lp-delay-4 { transition-delay: .32s; }
@keyframes lpFloatOne {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
    50% { transform: translate3d(18px, -24px, 0) rotate(8deg); }
}
@keyframes lpFloatTwo {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
    45% { transform: translate3d(-19px, 18px, 0) rotate(-7deg); }
}
@keyframes lpPulse {
    0% { opacity: .75; transform: scale(.82); }
    75%, 100% { opacity: 0; transform: scale(1.35); }
}

/* Responsive */
@media (max-width: 1024px) {
    .lp-hero { min-height: auto; }
    .lp-hero__grid { grid-template-columns: 1fr 420px; gap: 28px; }
    .lp-visual { transform: scale(.88); transform-origin: center; }
    .lp-service-grid { grid-template-columns: 1fr 1fr; }
    .lp-service-card { min-height: 315px; }
    .lp-benefits__grid { gap: 45px; }
    .lp-feature-list { grid-template-columns: 1fr; }
    .lp-feature { min-height: auto; }
    .lp-faq__grid { gap: 55px; }
}

@media (max-width: 820px) {
    .lp-container { width: min(100% - 36px, 720px); }
    .lp-section { padding: 82px 0; }
    .lp-header { height: 74px; }
    .lp-nav-toggle { display: block; }
    .lp-header.is-menu-open .lp-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .lp-header.is-menu-open .lp-nav-toggle span:nth-child(2) { opacity: 0; }
    .lp-header.is-menu-open .lp-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .lp-nav {
        position: fixed;
        top: 74px;
        right: 0;
        left: 0;
        display: flex;
        max-height: 0;
        padding: 0 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 30px rgba(20, 26, 37, .09);
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height .32s ease, opacity .25s ease, padding .32s ease;
    }
    .lp-header.is-menu-open .lp-nav { max-height: calc(100vh - 74px); padding-top: 12px; padding-bottom: 23px; opacity: 1; pointer-events: auto; }
    .lp-nav > a:not(.lp-btn) { padding: 13px 4px; border-bottom: 1px solid #f0ede7; font-size: 15px; }
    .lp-nav > a:not(.lp-btn)::after { display: none; }
    .lp-nav .lp-btn { margin-top: 15px; }
    .lp-hero { padding-top: 120px; }
    .lp-hero__grid { grid-template-columns: 1fr; text-align: center; }
    .lp-hero h1,
    .lp-hero__lead { margin-right: auto; margin-left: auto; }
    .lp-hero__actions,
    .lp-trust { justify-content: center; }
    .lp-visual { width: 500px; max-width: 100%; min-height: 520px; margin: -15px auto -30px; transform: scale(.9); }
    .lp-stats { margin-top: 10px; grid-template-columns: 1fr 1fr; }
    .lp-stats > div { padding: 13px; }
    .lp-stats > div:nth-child(2) { border-right: 0; }
    .lp-stats > div:nth-child(-n+2) { border-bottom: 1px solid #eee5d4; }
    .lp-section-head { grid-template-columns: 1fr; gap: 22px; }
    .lp-benefits__grid { grid-template-columns: 1fr; }
    .lp-benefits__intro,
    .lp-faq__intro { position: static; }
    .lp-feature-list { grid-template-columns: 1fr 1fr; }
    .lp-timeline { grid-template-columns: 1fr 1fr; row-gap: 55px; }
    .lp-timeline::before { display: none; }
    .lp-plan-grid { grid-template-columns: 1fr; max-width: 520px; gap: 24px; }
    .lp-plan { min-height: auto; }
    .lp-plan > p { min-height: 0; }
    .lp-plan--featured { transform: none; }
    .lp-faq__grid { grid-template-columns: 1fr; gap: 35px; }
    .lp-cta__inner { flex-direction: column; align-items: flex-start; }
    .lp-cta__action { align-items: flex-start; }
    .lp-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .lp-footer__about { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    .lp-container { width: calc(100% - 28px); }
    .lp-section { padding: 68px 0; }
    .lp-brand__logo img { max-width: 128px; height: 38px; }
    .lp-hero { padding: 106px 0 35px; }
    .lp-hero h1 { font-size: clamp(42px, 13vw, 56px); }
    .lp-hero__lead { font-size: 16px; }
    .lp-eyebrow { font-size: 9px; }
    .lp-hero__actions { flex-direction: column; }
    .lp-hero__actions .lp-btn { width: 100%; }
    .lp-trust { align-items: flex-start; text-align: left; }
    .lp-visual { min-height: 460px; margin: -25px auto -45px; transform: scale(.76); }
    .lp-float-card--order { left: -25px; }
    .lp-float-card--world { right: -30px; }
    .lp-stats { padding: 8px; border-radius: 16px; }
    .lp-stats strong { font-size: 22px; }
    .lp-stats span { font-size: 9px; }
    .lp-section h2,
    .lp-centered-head h2,
    .lp-faq__intro h2 { font-size: 34px; }
    .lp-centered-head { margin-bottom: 42px; }
    .lp-service-grid,
    .lp-feature-list { grid-template-columns: 1fr; }
    .lp-service-card { min-height: 320px; }
    .lp-mini-dashboard__bottom { gap: 15px; }
    .lp-timeline { grid-template-columns: 1fr; gap: 42px; }
    .lp-step { display: grid; grid-template-columns: 58px 1fr; column-gap: 18px; text-align: left; }
    .lp-step__number { display: none; }
    .lp-step__dot { grid-row: 1 / span 2; margin: 0; }
    .lp-step h3 { margin-top: 4px; }
    .lp-step p { max-width: none; margin: 0; }
    .lp-plan { padding: 28px 22px; }
    .lp-accordion summary { font-size: 14px; }
    .lp-cta { padding: 62px 0; }
    .lp-cta__action,
    .lp-cta__action .lp-btn { width: 100%; }
    .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
    .lp-footer__about,
    .lp-footer__grid > div:last-child { grid-column: 1 / -1; }
    .lp-footer__bottom { flex-direction: column; gap: 5px; }
    .lp-floating { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .lp-reveal { opacity: 1; transform: none; }
}
