/* ===== Repair-it Landing Page ===== */

:root {
    --lp-primary: #285da7;
    --lp-primary-dark: #1e4f93;
    --lp-text: #0f172a;
    --lp-muted: #64748b;
    --lp-heading: #2f67b4;
    --lp-subheading: #6b7f99;
    --lp-important: #111827;
    --lp-border: rgba(15, 23, 42, 0.09);
    --lp-bg: #f8fafc;
    --lp-white: #ffffff;
    --lp-radius: 20px;
}

.landing-page {
    background: var(--lp-bg);
    font-family: inherit;
    overflow-x: hidden;
}

#wrapper.clearfix {
    overflow-x: clip;
}

.lp-animate {
    opacity: 1;
    transform: none;
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.lp-animate.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .lp-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-scroll-icon {
        animation: none;
    }
}

/* ===== HERO ===== */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("../images/hero/desktop/desktop-001.png") center/cover no-repeat;
    overflow: hidden;
}

.lp-hero-left>*,
.lp-hero-right {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.985);
    animation: lp-hero-in 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lp-hero-logo-wrap {
    animation-delay: 90ms;
}

.lp-hero-title {
    animation-delay: 190ms;
}

.lp-hero-sub {
    animation-delay: 300ms;
}

.lp-hero .lp-download-cta {
    animation-delay: 420ms;
    position: relative;
    overflow: hidden;
}

.lp-hero-note {
    animation-delay: 520ms;
}

.lp-hero-right {
    animation-delay: 300ms;
}

.lp-hero-grid {
    width: 100%;
}

.lp-hero-left {
    text-align: center;
}

.lp-hero-right {
    display: none;
}

.lp-hero-badges {
    display: none;
}

.lp-hero .lp-download-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 48%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 100%);
    transform: skewX(-20deg);
    animation: lp-cta-sheen 3.2s ease-in-out infinite;
}

@media (max-width: 767px) {
    .lp-hero {
        background-image: url("../images/hero/mobile/mobile-001.png");
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 100svh;
        align-items: flex-end;
        padding-top: 120px;
        padding-bottom: 36px;
    }

    .lp-hero-overlay {
        display: none;
    }
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(11, 18, 32, 0.55) 0%,
            rgba(11, 18, 32, 0.68) 60%,
            rgba(11, 18, 32, 0.80) 100%);
}

.lp-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 20px;
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .lp-hero {
        text-align: left;
    }

    .lp-hero-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 clamp(36px, 7vw, 124px);
        padding-bottom: 0;
    }

    .lp-hero-grid {
        display: block;
    }

    .lp-hero-left {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: min(860px, 54vw);
        margin: 0;
    }

    .lp-hero-logo-wrap {
        margin-bottom: 18px;
    }

    .lp-hero-title {
        font-size: clamp(58px, 5.4vw, 84px);
        line-height: 1.02;
        margin-bottom: 16px;
    }

    .lp-hero-sub {
        font-size: 19px;
        max-width: 620px;
        line-height: 1.55;
        margin-bottom: 24px;
        color: rgba(255, 255, 255, 0.9);
        text-align: left;
    }

    .lp-hero-badges {
        display: flex;
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 14px;
    }

    .lp-hero-badges .lp-badge-img {
        height: 54px;
    }

    .lp-hero .lp-hero-cta {
        display: none !important;
    }

    .lp-hero-note {
        margin-top: 0;
        font-size: 20px;
        color: rgba(255, 255, 255, 0.86);
    }

    .lp-hero-right {
        display: none;
    }

    .lp-hero-device {
        width: min(320px, 24vw);
        max-width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
    }

    .lp-hero-note {
        max-width: 680px;
        font-size: 17px;
        line-height: 1.45;
        white-space: normal;
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .lp-hero-content {
        padding: 0 32px;
    }

    .lp-hero-left {
        max-width: min(700px, 64vw);
    }

    .lp-hero-title {
        font-size: clamp(46px, 6.2vw, 66px);
        line-height: 1.04;
        margin-bottom: 14px;
    }

    .lp-hero-sub {
        font-size: 17px;
        max-width: 560px;
        margin-bottom: 20px;
    }

    .lp-hero-badges .lp-badge-img {
        height: 48px;
    }

    .lp-hero-note {
        max-width: 560px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .lp-hero-content {
        max-width: 100%;
        padding: 0 18px 0;
        margin: 0 12px;
        border-radius: 0;
        background: transparent;
        animation: lp-mobile-panel-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .lp-hero .lp-hero-cta {
        animation: lp-mobile-cta-breathe 3.6s ease-in-out 900ms infinite;
    }
}

.lp-hero-logo-wrap {
    margin-bottom: 20px;
}

.lp-hero-logo {
    width: clamp(160px, 18vw, 300px);
    height: auto;
    object-fit: contain;
    filter: none;
    animation: none;
}

.lp-hero-title {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 18px;
}

@media (max-width: 767px) {
    .lp-hero-logo-wrap {
        margin-bottom: 16px;
    }

    .lp-hero-logo {
        width: clamp(180px, 56vw, 250px);
    }

    .lp-hero-title {
        font-size: clamp(42px, 12vw, 54px);
        line-height: 1.08;
        margin-bottom: 14px;
    }
}

.lp-hero-title strong {
    font-weight: 900;
}

.lp-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin: 0 0 32px;
}

@media (max-width: 767px) {
    .lp-hero-sub {
        font-size: 17px;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .lp-hero-badges,
    .lp-hero-right {
        display: none;
    }
}

.lp-download-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #3aa0e6;
    color: #ffffff;
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
    box-shadow: 0 14px 28px rgba(58, 160, 230, 0.28);
}

.lp-download-cta:hover,
.lp-download-cta:focus {
    text-decoration: none;
    color: #ffffff;
    background: #2f92d8;
    transform: translateY(-1px);
}

.lp-download-cta--inline {
    min-width: 220px;
    min-height: 52px;
    font-size: clamp(17px, 1.7vw, 22px);
}

.lp-hero-note,
.lp-download-note {
    margin: 14px 0 0;
    font-size: 19px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

/* Store badge images */
.lp-badge-img {
    height: 52px;
    width: auto;
    display: block;
    border-radius: 10px;
    transition: opacity 140ms ease, transform 140ms ease;
}

.lp-badge-img:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.lp-badge-dark {
    filter: none;
}

/* Store buttons */
.lp-store-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .lp-download-cta {
        width: 100%;
        max-width: 430px;
        min-height: 66px;
        padding: 16px 20px;
        font-size: clamp(14px, 4.8vw, 22px);
    }

    .lp-hero .lp-store-btns.lp-hero-badges {
        display: none !important;
    }

    .lp-hero a.lp-download-cta.lp-hero-cta {
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 12px;
    }

    .lp-download-cta--inline {
        min-height: 60px;
        font-size: clamp(14px, 4.4vw, 20px);
    }

    .lp-hero-note,
    .lp-download-note {
        margin-top: 12px;
        font-size: clamp(10px, 2.9vw, 12px);
        line-height: 1.2;
    }

    .lp-hero-note {
        white-space: normal;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .lp-hero a.lp-download-cta.lp-hero-cta {
        display: none !important;
    }
}

.lp-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 11px 20px;
    color: #fff;
    text-decoration: none;
    transition: background 140ms ease, transform 140ms ease;
}

.lp-store-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.lp-store-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.lp-store-btn span small {
    font-size: 10px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.lp-store-btn span {
    font-size: 16px;
    font-weight: 700;
}

/* Scroll down */
.lp-scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: color 140ms ease;
    opacity: 0;
    animation: lp-fade-in 650ms ease forwards;
    animation-delay: 680ms;
}

@media (min-width: 768px) {
    .lp-scroll-down {
        display: none;
    }
}

@media (max-width: 767px) {
    .lp-scroll-down {
        bottom: 14px;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(10, 18, 31, 0.26);
        backdrop-filter: blur(6px);
        font-size: 12px;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    }

    .lp-scroll-down span {
        line-height: 1;
    }

    .lp-scroll-icon {
        font-size: 18px;
    }
}

.lp-scroll-down:hover {
    color: #fff;
    text-decoration: none;
}

.lp-scroll-icon {
    font-size: 18px;
    animation: lp-bounce 1.8s ease-in-out infinite;
    display: inline-block;
    line-height: 1;
}

@keyframes lp-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@keyframes lp-hero-in {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes lp-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lp-logo-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes lp-cta-sheen {

    0%,
    65% {
        left: -60%;
    }

    100% {
        left: 125%;
    }
}

@keyframes lp-mobile-panel-in {
    from {
        opacity: 0.9;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-mobile-cta-breathe {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 14px 28px rgba(58, 160, 230, 0.28);
    }

    50% {
        transform: translateY(-1px) scale(1.01);
        box-shadow: 0 18px 34px rgba(58, 160, 230, 0.36);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero-content>* {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .lp-hero-content,
    .lp-hero .lp-hero-cta {
        animation: none;
    }

    .lp-hero-logo,
    .lp-hero .lp-download-cta::after,
    .lp-scroll-down {
        animation: none;
    }

    .lp-scroll-down {
        opacity: 1;
    }
}

/* ===== SECTION SHARED ===== */
.lp-section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--lp-heading);
    margin: 0 0 14px;
    line-height: 1.1;
    text-align: center;
}

.lp-section-sub {
    font-size: 16px;
    color: var(--lp-subheading);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 42px;
    line-height: 1.65;
}

/* ===== STATS / ABOUT ===== */
.lp-about {
    position: relative;
    overflow: hidden;
    padding: 62px 0 58px;
    border-bottom: 1px solid rgba(71, 105, 170, 0.1);
    background:
        radial-gradient(circle at 8% 78%, rgba(145, 183, 255, 0.18) 0%, transparent 20%),
        radial-gradient(circle at 98% 2%, rgba(145, 183, 255, 0.22) 0%, transparent 16%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 58%, #f5f8fe 100%);
}

.lp-about::before,
.lp-about::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
}

.lp-about::before {
    width: 360px;
    height: 360px;
    left: -120px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(67, 140, 255, 0.14) 0%, rgba(67, 140, 255, 0) 72%);
}

.lp-about::after {
    width: 440px;
    height: 440px;
    top: -220px;
    right: -150px;
    background: radial-gradient(circle, rgba(67, 140, 255, 0.14) 0%, rgba(67, 140, 255, 0) 72%);
}

.lp-about .container {
    position: relative;
}

.lp-about-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.lp-about-deco--dots {
    left: 0;
    top: 158px;
    width: 92px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.lp-about-deco--dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(173, 198, 246, 0.65);
}

.lp-about-deco--corner {
    right: -18px;
    top: -48px;
    width: 230px;
    height: 230px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    background:
        radial-gradient(circle at 32% 34%, rgba(255, 255, 255, 0.5) 0%, transparent 38%),
        linear-gradient(180deg, rgba(189, 213, 248, 0.36) 0%, rgba(189, 213, 248, 0.18) 100%);
}

.lp-about-flight {
    position: absolute;
    right: -20px;
    top: 126px;
    width: 320px;
    height: 170px;
    z-index: 0;
    pointer-events: none;
}

.lp-about-flight::before {
    content: "";
    position: absolute;
    inset: 32px 0 0 165px;
    border: 2px dashed rgba(190, 203, 228, 0.9);
    border-left: none;
    border-bottom: none;
    border-radius: 0 120px 120px 0;
    transform: rotate(9deg);
}

.lp-about-flight::after {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 12px;
    width: 155px;
    height: 70px;
    border: 2px dashed rgba(190, 203, 228, 0.9);
    border-top: none;
    border-left: none;
    border-radius: 0 0 100px 0;
}

.lp-about-flight i {
    position: absolute;
    left: 142px;
    top: 12px;
    font-size: 36px;
    color: #1e8cff;
    transform: rotate(22deg);
    text-shadow: 0 10px 24px rgba(30, 140, 255, 0.16);
}

.lp-about-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1120px;
    margin: 0 auto;
}

.lp-about .lp-section-title {
    margin-bottom: 16px;
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 900;
    color: #1f5dde;
    text-shadow: none;
}

.lp-about .lp-section-title br {
    display: block;
}

.lp-about .lp-section-sub {
    max-width: 760px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #415986;
}

.lp-stats-row {
    display: flex;
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 18px 28px rgba(103, 124, 166, 0.16));
}

.lp-stat {
    position: relative;
    flex: 1 1 33.333%;
    min-width: 0;
    padding: 28px 24px 28px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    min-height: 214px;
    border: 2px solid #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
    overflow: hidden;
    isolation: isolate;
    transition: transform 180ms ease;
}

.lp-stat::before {
    content: "";
    position: absolute;
    inset: auto auto 20px auto;
    right: 20px;
    bottom: 18px;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(2px);
}

.lp-stat::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.24) 0%, transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 52%);
    z-index: -1;
}

.lp-stat:hover {
    transform: translateY(-4px);
}

.lp-stat--garages {
    background: linear-gradient(135deg, #1d4fdf 0%, #2d93ef 100%);
    border-radius: 24px 0 0 24px;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
}

.lp-stat--garages::before {
    right: 18px;
    bottom: 14px;
    width: 104px;
    height: 76px;
    border-radius: 24px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 2px, transparent 2px);
    background-size: 15px 15px;
    background-color: transparent;
}

.lp-stat--cities {
    margin-left: -14px;
    background: linear-gradient(135deg, #18b79d 0%, #3fd98a 100%);
    clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 28px 100%, 0 50%);
}

.lp-stat--cities::before {
    width: 164px;
    height: 82px;
    right: 18px;
    bottom: 0;
    border-radius: 0;
    background:
        linear-gradient(transparent 0%, transparent 42%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.12) 100%);
    clip-path: polygon(0 100%, 0 76%, 12% 60%, 20% 78%, 30% 52%, 41% 70%, 50% 38%, 63% 58%, 73% 28%, 82% 46%, 92% 14%, 100% 100%);
    filter: none;
}

.lp-stat--cities::before {
    background:
        linear-gradient(transparent 0%, transparent 42%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.12) 100%);
    clip-path: polygon(0 100%, 0 76%, 12% 60%, 20% 78%, 30% 52%, 41% 70%, 50% 38%, 63% 58%, 73% 28%, 82% 46%, 92% 14%, 100% 100%);
}

.lp-stat--repairs {
    margin-left: -14px;
    background: linear-gradient(135deg, #ff7a20 0%, #ffbb2d 100%);
    border-radius: 0 24px 24px 0;
    clip-path: polygon(28px 0, 100% 0, 100% 100%, 28px 100%, 0 50%);
}

.lp-stat--repairs::before {
    width: 140px;
    height: 64px;
    right: 10px;
    bottom: 8px;
    border-radius: 0;
    background: rgba(255, 196, 76, 0.22);
    clip-path: polygon(2% 100%, 10% 76%, 20% 76%, 28% 58%, 60% 58%, 72% 72%, 82% 72%, 96% 58%, 99% 72%, 94% 100%);
    filter: none;
}

.lp-stat-media {
    flex: 0 0 112px;
    display: flex;
    justify-content: center;
}

.lp-stat-icon-shell {
    position: relative;
    width: 112px;
    height: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 0 0 14px rgba(255, 255, 255, 0.12),
        0 14px 28px rgba(12, 32, 76, 0.14);
}

.lp-stat-icon-shell::before {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.98) 100%);
}

.lp-stat-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: #2474f4;
    font-size: 34px;
}

.lp-stat--cities .lp-stat-icon {
    color: #19b494;
}

.lp-stat--repairs .lp-stat-icon {
    color: #ff7b20;
}

.lp-stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.lp-stat-num {
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.05em;
    line-height: 1;
    text-shadow: none;
    margin-bottom: 6px;
}

.lp-stat-num sup {
    font-size: 18px;
    vertical-align: super;
}

.lp-stat-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.05;
}

.lp-stat-rule {
    width: 120px;
    height: 2px;
    margin: 10px 0 12px;
    background: rgba(255, 255, 255, 0.78);
}

.lp-stat-note {
    max-width: 240px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.lp-stat-divider {
    width: 1px;
    height: 56px;
    background: var(--lp-border);
    flex-shrink: 0;
}

@media (max-width: 1180px) {
    .lp-stats-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        filter: none;
    }

    .lp-stat,
    .lp-stat--garages,
    .lp-stat--cities,
    .lp-stat--repairs {
        margin-left: 0;
        width: 100%;
        clip-path: none;
        border-radius: 26px;
    }

    .lp-stat--repairs {
        grid-column: 1 / -1;
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .lp-about-flight {
        right: 12px;
        top: 124px;
        transform: scale(0.72);
        transform-origin: top right;
    }

    .lp-about .lp-section-sub {
        font-size: 16px;
    }

    .lp-stat {
        padding: 24px 20px 24px 22px;
        gap: 14px;
    }

    .lp-stat-media {
        flex-basis: 94px;
    }

    .lp-stat-icon-shell {
        width: 94px;
        height: 94px;
    }

    .lp-stat-icon-shell::before {
        inset: 13px;
    }

    .lp-stat-icon {
        width: 52px;
        height: 52px;
        font-size: 30px;
    }

    .lp-stat-label {
        font-size: 13px;
    }

    .lp-stat-note {
        font-size: 12px;
    }
}

@media (max-width: 980px) {
    .lp-stats-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        filter: none;
    }

    .lp-stat,
    .lp-stat--garages,
    .lp-stat--cities,
    .lp-stat--repairs {
        margin-left: 0;
        width: 100%;
        clip-path: none;
        border-radius: 26px;
    }

    .lp-about-flight {
        display: none;
    }
}

@media (max-width: 600px) {
    .lp-about {
        padding: 74px 0 68px;
    }

    .lp-about-deco--dots {
        left: 10px;
        top: 146px;
        gap: 10px;
        width: 70px;
    }

    .lp-about .lp-section-title {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 0.98;
        margin-bottom: 14px;
    }

    .lp-about .lp-section-sub {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 30px;
    }

    .lp-stat-divider {
        display: none;
    }

    .lp-stat {
        min-height: 0;
        padding: 22px 18px 22px;
        border-radius: 22px;
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .lp-stat-media {
        flex: 0 0 82px;
    }

    .lp-stat-icon-shell {
        width: 82px;
        height: 82px;
        box-shadow:
            inset 0 0 0 10px rgba(255, 255, 255, 0.12),
            0 12px 24px rgba(12, 32, 76, 0.12);
    }

    .lp-stat-icon-shell::before {
        inset: 11px;
    }

    .lp-stat-icon {
        width: 46px;
        height: 46px;
        font-size: 26px;
    }

    .lp-stat-content {
        align-items: flex-start;
    }

    .lp-stat-num {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .lp-stat-label {
        font-size: 13px;
    }

    .lp-stat-rule {
        width: 84px;
        margin: 8px 0;
    }

    .lp-stat-note {
        max-width: none;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .lp-stat {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .lp-stat-content {
        align-items: center;
    }

    .lp-stat-rule {
        width: 120px;
    }
}

/* ===== HOW IT WORKS ===== */
.lp-how {
    position: relative;
    overflow: hidden;
    padding: 70px 0 64px;
    border-bottom: 1px solid rgba(71, 105, 170, 0.1);
    background:
        radial-gradient(circle at 7% 84%, rgba(160, 192, 248, 0.16) 0%, transparent 18%),
        radial-gradient(circle at 98% 0%, rgba(160, 192, 248, 0.18) 0%, transparent 16%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 58%, #f4f8ff 100%);
}

.lp-how .container {
    position: relative;
    max-width: 1560px;
}

.lp-how-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.lp-how-deco--corner {
    top: -96px;
    right: -54px;
    width: 268px;
    height: 268px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    background:
        radial-gradient(circle at 28% 34%, rgba(255, 255, 255, 0.55) 0%, transparent 36%),
        linear-gradient(180deg, rgba(198, 217, 247, 0.38) 0%, rgba(198, 217, 247, 0.18) 100%);
}

.lp-how-head {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto 42px;
    text-align: center;
}

.lp-how .lp-section-title {
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 900;
    color: #1f5dde;
}

.lp-how .lp-section-sub {
    max-width: 780px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.65;
    color: #5a7195;
}

.lp-how-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.lp-how-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.lp-step {
    --step-color: #1f66ec;
    position: relative;
    flex: 0 0 188px;
    max-width: 188px;
    min-height: 0;
    padding: 12px 12px 0;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.lp-step:hover {
    transform: translateY(-6px);
}

.lp-step-badge {
    position: absolute;
    top: 4px;
    left: 16px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--step-color);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.03em;
    box-shadow: 0 12px 22px color-mix(in srgb, var(--step-color) 26%, transparent);
}

.lp-step-icon,
.lp-step-orb {
    position: relative;
    width: 104px;
    height: 104px;
    margin: 18px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--step-color);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 14px 24px color-mix(in srgb, var(--step-color) 14%, transparent),
        inset 0 0 0 10px rgba(255, 255, 255, 0.98);
    animation: lp-how-orb-float 3.2s ease-in-out infinite;
}

.lp-step-icon::before,
.lp-step-orb::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.lp-step-icon i,
.lp-step-orb i {
    position: relative;
    z-index: 1;
    font-size: 44px;
    color: var(--step-color);
}

.lp-step h3 {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.15;
    color: #101828;
    margin: 0 0 10px;
}

.lp-step p {
    font-size: 13px;
    color: #59708f;
    line-height: 1.6;
    margin: 0;
}

.lp-how-connector {
    --path-color: #1f66ec;
    position: relative;
    flex: 0 0 126px;
    height: 118px;
    margin-top: 52px;
}

.lp-how-connector svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.lp-how-connector path {
    fill: none;
    stroke: var(--path-color);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 8 10;
    opacity: 0.92;
}

.lp-how-traveler {
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--path-color);
    filter: drop-shadow(0 8px 14px color-mix(in srgb, var(--path-color) 24%, transparent));
    offset-rotate: 0deg;
    offset-distance: 0%;
}

.lp-how-traveler i {
    display: inline-block;
    font-size: 28px;
    line-height: 1;
}

.lp-how-arrow {
    position: absolute;
    right: -2px;
    bottom: 18px;
    color: var(--path-color);
    font-size: 24px;
    transform: rotate(14deg);
    filter: drop-shadow(0 8px 12px color-mix(in srgb, var(--path-color) 24%, transparent));
}

.lp-how-connector--wave-a .lp-how-traveler {
    offset-path: path("M 12 50 C 54 8, 102 12, 126 56 C 149 96, 188 98, 214 58");
}

.lp-how-connector--wave-b .lp-how-traveler {
    offset-path: path("M 12 70 C 40 102, 86 102, 114 64 C 140 26, 180 20, 214 56");
}

.lp-how-connector--to-app {
    flex-basis: 148px;
    height: 150px;
    margin-top: 38px;
}

.lp-how-connector--to-app .lp-how-traveler {
    offset-path: path("M 10 54 C 54 22, 92 118, 140 102 C 156 96, 166 82, 170 64");
}

.lp-how-connector--bridge {
    display: none;
}

.lp-how-app {
    position: relative;
    flex: 0 0 174px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: -6px;
    margin-left: 4px;
}

.lp-how-app::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    width: 236px;
    height: 236px;
    border-radius: 50%;
    background: rgba(74, 129, 236, 0.16);
    transform: translateX(-50%);
    z-index: -1;
}

.lp-how-app-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 318px;
}

.lp-how-app-img-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.lp-how-app-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 30px rgba(29, 71, 148, 0.20));
}

.lp-how-app-copy {
    text-align: center;
    color: #436188;
}

.lp-how-app-copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 900;
    color: #1d59d8;
}

.lp-how-app-copy span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
}

.lp-step--blue,
.lp-how-connector--blue {
    --step-color: #1f66ec;
    --path-color: #1f66ec;
}

.lp-step--teal,
.lp-how-connector--teal {
    --step-color: #18b8cf;
    --path-color: #18b8cf;
}

.lp-step--green,
.lp-how-connector--green {
    --step-color: #78bd39;
    --path-color: #78bd39;
}

.lp-step--orange,
.lp-how-connector--orange {
    --step-color: #ff8d1a;
    --path-color: #ff8d1a;
}

.lp-step--purple,
.lp-how-connector--purple {
    --step-color: #7d48e7;
    --path-color: #7d48e7;
}

.lp-step--cyan,
.lp-how-connector--cyan {
    --step-color: #18b4d0;
    --path-color: #18b4d0;
}

.lp-step--indigo,
.lp-how-connector--indigo {
    --step-color: #3974ff;
    --path-color: #3974ff;
}

.lp-step--violet,
.lp-how-connector--violet {
    --step-color: #7b44e5;
    --path-color: #7b44e5;
}

@keyframes lp-how-orb-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes lp-how-travel {
    0% {
        offset-distance: 0%;
        opacity: 0;
        transform: scale(0.82);
    }

    4% {
        opacity: 1;
    }

    18% {
        offset-distance: 100%;
        opacity: 1;
        transform: scale(1);
    }

    22%,
    100% {
        offset-distance: 100%;
        opacity: 0;
        transform: scale(0.82);
    }
}

@media (prefers-reduced-motion: reduce) {

    .lp-step-icon,
    .lp-step-orb {
        animation: none;
    }

    .lp-how-traveler {
        offset-distance: 100%;
    }
}

@media (max-width: 1380px) {
    .lp-how-row {
        transform: scale(0.94);
        transform-origin: center top;
    }
}

@media (max-width: 1199px) {
    .lp-how {
        padding: 62px 0 58px;
    }

    .lp-how .container {
        max-width: 1320px;
    }

    .lp-how .lp-section-sub {
        font-size: 16px;
    }

    .lp-how-grid {
        gap: 54px;
    }

    .lp-step {
        flex-basis: 170px;
        max-width: 170px;
    }

    .lp-how-connector {
        flex-basis: 108px;
    }

    .lp-how-app {
        flex-basis: 156px;
    }
}

@media (max-width: 991px) {
    .lp-how {
        padding: 56px 0 54px;
    }

    .lp-how-deco--corner {
        display: none;
    }

    .lp-how-head {
        margin-bottom: 34px;
    }

    .lp-how-grid {
        gap: 0;
        align-items: center;
    }

    .lp-how-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: min(100%, 360px);
        margin: 0 auto;
        gap: 0;
        transform: none;
    }

    .lp-how-row--bottom {
        margin-top: 4px;
    }

    .lp-step {
        width: min(100%, 320px);
        max-width: 320px;
        padding: 0 14px;
    }

    .lp-step-badge {
        top: 4px;
        left: calc(50% - 66px);
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .lp-step-icon,
    .lp-step-orb {
        width: 84px;
        height: 84px;
        margin-top: 10px;
        margin-bottom: 14px;
    }

    .lp-step-icon::before,
    .lp-step-orb::before {
        inset: 8px;
    }

    .lp-step-icon i,
    .lp-step-orb i {
        font-size: 34px;
    }

    .lp-step h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .lp-step p {
        font-size: 14px;
        max-width: 270px;
        margin: 0 auto;
    }

    .lp-how-connector,
    .lp-how-connector--bridge {
        display: block;
        flex: 0 0 auto;
        width: 118px;
        height: 124px;
        margin: -2px 0 2px;
    }

    .lp-how-connector svg,
    .lp-how-connector--bridge svg {
        transform: rotate(90deg) scale(1.02);
        transform-origin: center;
    }

    .lp-how-connector path,
    .lp-how-connector--bridge path {
        stroke-width: 3.2;
        stroke-dasharray: 7 10;
    }

    .lp-how-connector .lp-how-traveler,
    .lp-how-connector--bridge .lp-how-traveler {
        width: 30px;
        height: 30px;
        animation-duration: 8.8s;
    }

    .lp-how-connector .lp-how-traveler i,
    .lp-how-connector--bridge .lp-how-traveler i {
        font-size: 26px;
    }

    .lp-how-connector--wave-a .lp-how-traveler {
        offset-path: path("M 56 8 C 96 24, 104 56, 78 84 C 52 110, 38 136, 58 166");
    }

    .lp-how-connector--wave-b .lp-how-traveler {
        offset-path: path("M 62 8 C 26 28, 24 62, 48 92 C 72 124, 92 144, 72 168");
    }

    .lp-how-connector--bridge {
        width: 126px;
        height: 136px;
        margin: 4px auto 6px;
    }

    .lp-how-connector--bridge .lp-how-traveler {
        offset-path: path("M 62 8 C 102 28, 108 66, 80 96 C 48 128, 42 156, 64 182");
    }

    .lp-how-connector--to-app {
        width: 132px;
        height: 166px;
        margin-top: 6px;
    }

    .lp-how-connector--to-app svg {
        transform: rotate(96deg) scale(1.08);
    }

    .lp-how-connector--to-app .lp-how-traveler {
        offset-path: path("M 62 6 C 96 28, 100 72, 78 106 C 62 132, 72 156, 114 166");
    }

    .lp-how-app {
        width: min(100%, 260px);
        margin-top: 6px;
        margin-left: 0;
    }

    .lp-how-app-visual {
        min-height: 210px;
    }

    .lp-how-app-img-wrap {
        position: relative;
        top: auto;
        left: auto;
        width: 126px;
        transform: none;
    }

    .lp-how-app-copy strong {
        font-size: 18px;
    }

    .lp-how-arrow {
        display: none;
    }
}

@media (max-width: 575px) {
    .lp-how .lp-section-title {
        font-size: clamp(32px, 10vw, 46px);
    }

    .lp-how .lp-section-sub {
        font-size: 15px;
    }

    .lp-how-row {
        width: min(100%, 300px);
    }

    .lp-step {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .lp-step-badge {
        left: calc(50% - 62px);
    }

    .lp-step-icon,
    .lp-step-orb {
        width: 78px;
        height: 78px;
    }

    .lp-step-icon i,
    .lp-step-orb i {
        font-size: 32px;
    }

    .lp-how-connector,
    .lp-how-connector--bridge {
        width: 110px;
        height: 114px;
    }

    .lp-how-connector--to-app {
        height: 152px;
    }

    .lp-how-app-visual {
        min-height: 302px;
    }

    .lp-how-app-img-wrap {
        width: 220px;
    }

    .lp-how-app::before {
        top: 40px;
        width: 236px;
        height: 236px;
    }
}

/* ===== APP FEATURES ===== */
.lp-appfeat {
    padding: 66px 0 60px;
    border-bottom: 1px solid var(--lp-border);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 88%, rgba(144, 182, 247, 0.16) 0%, transparent 18%),
        radial-gradient(circle at 98% 2%, rgba(160, 190, 248, 0.18) 0%, transparent 16%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 56%, #f4f8ff 100%);
}

.lp-appfeat::before,
.lp-appfeat::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

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

.lp-appfeat::after {
    top: -118px;
    left: 0;
    right: 0;
    width: 100%;
    height: 320px;
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
    background:
        radial-gradient(ellipse at 68% 32%, rgba(255, 255, 255, 0.5) 0%, transparent 36%),
        linear-gradient(180deg, rgba(198, 217, 247, 0.34) 0%, rgba(198, 217, 247, 0.14) 100%);
}

.lp-appfeat .container {
    position: relative;
    z-index: 1;
}

.lp-appfeat-head {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}

.lp-appfeat-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 10px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1d5ef0 0%, #4d42f3 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(37, 85, 219, 0.18);
}

.lp-appfeat .lp-section-title {
    font-size: clamp(32px, 4.1vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 14px;
    color: #0f2367;
}

.lp-appfeat .lp-section-title br {
    display: block;
}

.lp-appfeat .lp-section-title span,
.lp-appfeat .lp-section-title strong {
    color: #1f5dde;
}

.lp-appfeat .lp-section-sub {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #526887;
}

.lp-appfeat-grid {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(260px, 360px) minmax(320px, 420px);
    align-items: center;
    gap: 24px;
    justify-content: center;
    max-width: 1480px;
    margin: 0 auto;
}

.lp-appfeat-col {
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-appfeat-grid>.lp-appfeat-col:first-child {
    justify-self: end;
}

.lp-appfeat-grid>.lp-appfeat-col:last-child {
    justify-self: start;
}

.lp-appfeat-item {
    --accent: #1f5dde;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-appfeat-item:hover {
    transform: translateY(-5px);
}

.lp-appfeat-col--right .lp-appfeat-item {
    flex-direction: row-reverse;
}

.lp-appfeat-item--blue {
    --accent: #245ff1;
}

.lp-appfeat-item--teal {
    --accent: #19c5bc;
}

.lp-appfeat-item--violet {
    --accent: #6f38ef;
}

.lp-appfeat-item--orange {
    --accent: #ff8a1c;
}

.lp-appfeat-item--pink {
    --accent: #f3278b;
}

.lp-appfeat-item--sky {
    --accent: #1a8eff;
}

.lp-appfeat-orb {
    position: relative;
    flex: 0 0 104px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.4) 16%, transparent 17%), linear-gradient(180deg, color-mix(in srgb, var(--accent) 90%, white 8%) 0%, var(--accent) 100%);
    box-shadow:
        0 18px 34px color-mix(in srgb, var(--accent) 28%, transparent),
        inset 0 0 0 14px rgba(255, 255, 255, 0.14);
}

.lp-appfeat-orb::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px dashed color-mix(in srgb, var(--accent) 55%, white 22%);
    opacity: 0.7;
}

.lp-appfeat-orb i {
    position: relative;
    z-index: 1;
    font-size: 44px;
    color: #ffffff;
    filter: drop-shadow(0 10px 16px rgba(7, 25, 64, 0.16));
}

.lp-appfeat-link {
    position: relative;
    flex: 0 0 36px;
    height: 2px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 70%, white 14%);
}

.lp-appfeat-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 16%, transparent);
}

.lp-appfeat-col--right .lp-appfeat-link::after {
    right: auto;
    left: -2px;
}

.lp-appfeat-card {
    position: relative;
    flex: 1;
    min-height: 140px;
    padding: 18px 28px 18px 28px;
    border-radius: 24px;
    border: 1px solid rgba(71, 105, 170, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 32px rgba(48, 74, 126, 0.08);
    overflow: hidden;
}

.lp-appfeat-card::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 0;
    bottom: 14px;
    width: 4px;
    border-radius: 4px 0 0 4px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 76%, white 14%) 0%, var(--accent) 100%);
}

.lp-appfeat-num {
    display: block;
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    color: var(--accent);
}

.lp-appfeat-item strong {
    display: block;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 800;
    color: #12182b;
    margin-bottom: 8px;
}

.lp-appfeat-item p {
    margin: 0;
    font-size: 13px;
    color: #596f8e;
    line-height: 1.5;
}

.lp-appfeat-phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 540px;
    justify-self: center;
}

.lp-phone-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(115, 151, 225, 0.22);
    pointer-events: none;
    animation: lp-orbit-pulse 3.8s ease-in-out infinite;
}

.lp-phone-orbit--one {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lp-phone-orbit--two {
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 900ms;
}

.lp-appfeat-phone-glow {
    position: absolute;
    left: 50%;
    top: 58%;
    width: 300px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 150, 232, 0.24) 0%, rgba(112, 150, 232, 0.14) 34%, transparent 72%);
    transform: translate(-50%, -50%);
    filter: blur(6px);
}

.lp-phone-frame {
    position: relative;
    animation: lp-phone-float 4.2s ease-in-out infinite;
    z-index: 1;
    width: min(320px, 100%);
}

.lp-phone-frame--image {
    background: transparent;
    box-shadow: none;
}

.lp-appfeat-phone-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 30px rgba(24, 54, 117, 0.2));
}

@keyframes lp-phone-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes lp-orbit-pulse {

    0%,
    100% {
        opacity: 0.42;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.16;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@media (max-width: 1300px) {
    .lp-appfeat-grid {
        grid-template-columns: minmax(280px, 380px) minmax(240px, 320px) minmax(280px, 380px);
        gap: 18px;
    }

    .lp-appfeat-orb {
        flex-basis: 94px;
        width: 94px;
        height: 94px;
    }

    .lp-appfeat-orb i {
        font-size: 38px;
    }

    .lp-appfeat-card {
        min-height: 132px;
        padding: 16px 24px;
    }

    .lp-appfeat-item strong {
        font-size: 18px;
    }

    .lp-phone-orbit--one {
        width: 290px;
        height: 290px;
    }

    .lp-phone-orbit--two {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 1100px) {
    .lp-appfeat-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lp-appfeat-col {
        max-width: 920px;
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 24px;
    }

    .lp-appfeat-phone {
        order: -1;
        min-height: 460px;
    }

    .lp-appfeat-col--right .lp-appfeat-item {
        flex-direction: row;
    }

    .lp-appfeat-col--right .lp-appfeat-link::after {
        left: auto;
        right: -2px;
    }

    .lp-appfeat-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 430px;
        justify-self: center;
    }

    .lp-phone-orbit--one {
        width: 272px;
        height: 272px;
    }

    .lp-phone-orbit--two {
        width: 320px;
        height: 320px;
    }

    .lp-phone-frame {
        width: min(280px, 70vw);
    }
}

@media (max-width: 767px) {
    .lp-appfeat {
        padding: 48px 0 46px;
    }

    .lp-appfeat::after {
        width: 100%;
        height: 220px;
        top: -82px;
        left: 0;
        right: 0;
    }

    .lp-appfeat-head {
        margin-bottom: 22px;
    }

    .lp-appfeat-kicker {
        padding: 9px 18px;
        font-size: 12px;
    }

    .lp-appfeat .lp-section-title {
        font-size: clamp(32px, 10.6vw, 48px);
        margin-bottom: 12px;
    }

    .lp-appfeat .lp-section-sub {
        font-size: 15px;
    }

    .lp-appfeat-col {
        display: flex;
        flex-direction: column;
        max-width: 440px;
        gap: 14px;
    }

    .lp-appfeat-phone {
        min-height: 360px;
        margin-bottom: 4px;
    }

    .lp-appfeat-item,
    .lp-appfeat-col--right .lp-appfeat-item {
        gap: 10px;
    }

    .lp-appfeat-orb {
        flex-basis: 74px;
        width: 74px;
        height: 74px;
    }

    .lp-appfeat-orb::before {
        inset: -8px;
    }

    .lp-appfeat-orb i {
        font-size: 30px;
    }

    .lp-appfeat-link {
        flex-basis: 22px;
    }

    .lp-appfeat-card {
        min-height: 0;
        padding: 14px 18px 14px 18px;
        border-radius: 20px;
    }

    .lp-appfeat-item strong {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .lp-appfeat-item p {
        font-size: 13px;
    }

    .lp-appfeat-num {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .lp-phone-orbit--one {
        width: 230px;
        height: 230px;
    }

    .lp-phone-orbit--two {
        width: 268px;
        height: 268px;
    }

    .lp-appfeat-phone-glow {
        width: 220px;
        height: 240px;
    }

    .lp-phone-frame {
        width: min(220px, 62vw);
    }
}

@media (prefers-reduced-motion: reduce) {

    .lp-phone-orbit,
    .lp-phone-frame {
        animation: none;
    }
}

/* ===== DOWNLOAD ===== */
.lp-download {
    padding: 52px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
}

@media (max-width: 767px) and (hover: none),
(max-width: 767px) and (pointer: coarse) {
    .lp-hero {
        /* Keep hero sticky so the first stacked section can slide above it. */
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .lp-stack-section {
        position: -webkit-sticky;
        position: sticky;
        top: 0px;
        border-radius: 26px 26px 0 0;
        overflow: hidden;
        isolation: isolate;
        /* Start with some base shadow to look distinct from the start */
        box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
        transform-origin: top center;
        /* Let GSAP handle transform and filter for smoothness, rather than CSS transitions */
        will-change: transform, filter, box-shadow;
    }

    .lp-stack-section.lp-stack-section--free {
        position: relative;
    }

    .lp-stack-section+.lp-stack-section {
        margin-top: 0;
        /* Keep natural document flow so next section stacks only after previous content scrolls. */
    }

    .lp-about.lp-stack-section {
        margin-top: -10px;
        z-index: 2;
    }

    .lp-how.lp-stack-section {
        z-index: 3;
    }

    .lp-appfeat.lp-stack-section {
        z-index: 4;
    }

    .lp-download.lp-stack-section {
        z-index: 5;
        margin-bottom: 0;
    }

    .lp-about,
    .lp-how,
    .lp-appfeat,
    .lp-download {
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .lp-appfeat-head {
        margin-bottom: 22px;
    }
}

.lp-download-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(40, 93, 167, 0.14);
    border-radius: 30px;
    padding: 38px 44px 36px;
    overflow: hidden;
    min-height: 0;
    position: relative;
    background:
        radial-gradient(circle at 10% 12%, rgba(186, 208, 248, 0.28) 0%, transparent 18%),
        linear-gradient(135deg, #eff5ff 0%, #eef3fd 52%, #ecf2fd 100%);
    box-shadow: 0 18px 36px rgba(57, 86, 144, 0.08);
}

.lp-download-inner::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    top: -136px;
    left: -126px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 166, 240, 0.24) 0%, rgba(129, 166, 240, 0) 72%);
    pointer-events: none;
    animation: lp-download-glow-drift 6.8s ease-in-out infinite;
}

.lp-download-inner::after {
    content: "";
    position: absolute;
    right: -72px;
    top: -92px;
    width: 320px;
    height: 320px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    background:
        radial-gradient(circle at 28% 34%, rgba(255, 255, 255, 0.48) 0%, transparent 36%),
        linear-gradient(180deg, rgba(198, 217, 247, 0.34) 0%, rgba(198, 217, 247, 0.14) 100%);
    pointer-events: none;
}

.lp-download-text {
    flex: 1;
    max-width: 620px;
    position: relative;
    z-index: 1;
}

.lp-download-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1d5ef0 0%, #7150ef 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 16px 28px rgba(37, 85, 219, 0.16);
}

.lp-download-text h2 {
    font-size: clamp(34px, 4.3vw, 58px);
    font-weight: 900;
    color: #0d1f67;
    letter-spacing: -0.05em;
    line-height: 0.96;
    margin: 0 0 16px;
}

.lp-download-text h2 span {
    color: #1f5dde;
}

.lp-download-text p {
    font-size: 16px;
    color: #566b8c;
    line-height: 1.55;
    margin: 0 0 28px;
}

.lp-download-badges {
    margin: 0 0 28px;
    gap: 12px;
}

.lp-download-badges a {
    display: inline-block;
    transition: transform 180ms ease;
    animation: lp-download-badge-float 3.2s ease-in-out infinite;
}

.lp-download-badges a:nth-child(2) {
    animation-delay: 220ms;
}

.lp-download-badges a:hover {
    transform: translateY(-3px) scale(1.02);
}

.lp-download-badges .lp-badge-img {
    height: 56px;
}

.lp-store-btns--dark {
    justify-content: flex-start;
}

.lp-download-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.lp-download-highlight {
    --accent: #245ff1;
    text-align: center;
}

.lp-download-highlight--blue {
    --accent: #245ff1;
}

.lp-download-highlight--teal {
    --accent: #12b8a9;
}

.lp-download-highlight--violet {
    --accent: #7a3eed;
}

.lp-download-highlight--amber {
    --accent: #f39a16;
}

.lp-download-highlight-icon {
    position: relative;
    width: 78px;
    height: 78px;
    margin: 0 auto 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, white 88%) 0%, color-mix(in srgb, var(--accent) 18%, white 82%) 100%);
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent) 24%, white 76%);
}

.lp-download-highlight-icon::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px solid color-mix(in srgb, var(--accent) 30%, white 70%);
}

.lp-download-highlight-icon i {
    font-size: 34px;
    color: var(--accent);
}

.lp-download-highlight strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--accent);
}

.lp-download-highlight p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #596f8e;
}

.lp-download-trustbar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 20px;
    border: 1px solid rgba(73, 113, 190, 0.14);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lp-download-trust-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #1f5dde;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(31, 93, 222, 0.22);
}

.lp-download-trust-copy {
    font-size: 15px;
    color: #1f5dde;
    white-space: nowrap;
}

.lp-download-trust-copy strong {
    font-weight: 800;
}

.lp-download-trust-copy span {
    color: rgba(31, 93, 222, 0.68);
    margin: 0 4px;
}

.lp-download-trust-note {
    font-size: 14px;
    color: #5c7090;
    white-space: nowrap;
}

.lp-download-trust-note i {
    color: #1f5dde;
}

.lp-download-phone {
    position: relative;
    flex: 0 0 min(48%, 640px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    z-index: 1;
}

.lp-download-stage {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lp-download-stage-ring {
    position: absolute;
    left: 50%;
    top: 54%;
    border-radius: 50%;
    border: 1.5px solid rgba(130, 163, 228, 0.14);
    transform: translate(-50%, -50%);
}

.lp-download-stage-ring--one {
    width: 360px;
    height: 360px;
}

.lp-download-stage-ring--two {
    width: 434px;
    height: 434px;
}

.lp-download-stage-ring--three {
    width: 506px;
    height: 506px;
}

.lp-download-stage-glow {
    position: absolute;
    left: 58%;
    top: 56%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(33, 112, 246, 0.9) 0%, rgba(111, 84, 242, 0.9) 100%);
    transform: translate(-50%, -50%);
}

.lp-download-stage-base {
    position: absolute;
    left: 58%;
    bottom: 24px;
    width: 320px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f9fbff 0%, #d6e0fb 100%);
    transform: translateX(-50%);
    box-shadow:
        inset 0 -8px 16px rgba(80, 120, 220, 0.18),
        0 18px 34px rgba(64, 101, 173, 0.14);
}

.lp-download-visual-deco {
    position: absolute;
    pointer-events: none;
}

.lp-download-visual-deco--dots {
    top: 18px;
    right: 10px;
    width: 104px;
    height: 82px;
    background-image: radial-gradient(circle, rgba(140, 170, 238, 0.8) 0 2px, transparent 2.5px);
    background-size: 28px 28px;
}

.lp-download-visual-deco--spark {
    width: 20px;
    height: 20px;
}

.lp-download-visual-deco--spark::before,
.lp-download-visual-deco--spark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(151, 180, 244, 0.8);
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.lp-download-visual-deco--spark::before {
    width: 20px;
    height: 2px;
}

.lp-download-visual-deco--spark::after {
    width: 2px;
    height: 20px;
}

.lp-download-visual-deco--spark-a {
    top: 112px;
    right: 104px;
}

.lp-download-visual-deco--spark-b {
    bottom: 154px;
    left: 126px;
}

.lp-download-float {
    position: absolute;
    left: 12%;
    top: 18%;
    width: 180px;
    height: 160px;
    pointer-events: none;
}

.lp-download-float-path {
    position: absolute;
    left: 50px;
    top: 48px;
    width: 116px;
    height: 102px;
    border: 3px dashed rgba(103, 144, 240, 0.72);
    border-left: none;
    border-bottom: none;
    border-radius: 0 120px 0 0;
    transform: rotate(20deg);
}

.lp-download-float-badge {
    position: absolute;
    left: 34px;
    top: 0;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #4a83ff 0%, #6f84ff 100%);
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 18px 30px rgba(74, 131, 255, 0.22);
    animation: lp-download-badge-float 3.6s ease-in-out infinite;
}

.lp-download-float-arrow {
    position: absolute;
    right: 8px;
    top: 84px;
    color: #5a8dff;
    font-size: 28px;
    transform: rotate(18deg);
}

.lp-phone-img-wrap {
    position: relative;
    display: inline-block;
    width: min(280px, 100%);
    margin-right: 0;
    margin-bottom: 0;
    z-index: 2;
    transform: rotate(14deg) translateX(18px) translateY(-30px);
    transform-origin: center bottom;
    animation: lp-download-phone-float 4.2s ease-in-out infinite;
}

.lp-phone-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 34px 42px rgba(17, 41, 93, 0.18));
}

@keyframes lp-download-phone-float {

    0%,
    100% {
        transform: rotate(14deg) translateX(18px) translateY(-30px);
    }

    50% {
        transform: rotate(14deg) translateX(18px) translateY(-38px);
    }
}

@keyframes lp-download-badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes lp-download-glow-drift {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.8;
    }

    50% {
        transform: translate3d(24px, 18px, 0);
        opacity: 1;
    }
}

@media (max-width: 1180px) {
    .lp-download-inner {
        gap: 16px;
        padding: 32px 30px;
    }

    .lp-download-text {
        max-width: 560px;
    }

    .lp-download-text h2 {
        font-size: clamp(32px, 4.4vw, 50px);
    }

    .lp-download-text p {
        font-size: 15px;
    }

    .lp-download-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 20px;
    }

    .lp-download-phone {
        flex-basis: min(42%, 460px);
        min-height: 470px;
    }

    .lp-download-stage-ring--one {
        width: 300px;
        height: 300px;
    }

    .lp-download-stage-ring--two {
        width: 362px;
        height: 362px;
    }

    .lp-download-stage-ring--three {
        width: 426px;
        height: 426px;
    }

    .lp-download-stage-glow {
        width: 300px;
        height: 300px;
    }

    .lp-download-stage-base {
        width: 270px;
        height: 42px;
    }

    .lp-phone-img-wrap {
        width: min(240px, 100%);
        transform: rotate(13deg) translateX(14px) translateY(-22px);
    }

    .lp-download-float {
        left: 2%;
        top: 14%;
        transform: scale(0.88);
        transform-origin: top left;
    }
}

@media (max-width: 767px) {
    .lp-download-inner {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px 24px;
        text-align: center;
    }

    .lp-store-btns--dark {
        justify-content: center;
    }

    .lp-download-badges .lp-badge-img {
        height: 44px;
    }

    .lp-download-text {
        max-width: 100%;
    }

    .lp-download-kicker {
        margin-bottom: 14px;
        padding: 9px 18px;
        font-size: 12px;
    }

    .lp-download-text h2 {
        font-size: clamp(34px, 12vw, 52px);
        margin-bottom: 14px;
    }

    .lp-download-text p {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .lp-download-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
        margin-bottom: 22px;
    }

    .lp-download-highlight-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 10px;
    }

    .lp-download-highlight-icon i {
        font-size: 28px;
    }

    .lp-download-highlight strong {
        font-size: 15px;
    }

    .lp-download-highlight p {
        font-size: 12px;
    }

    .lp-download-trustbar {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .lp-download-trust-copy,
    .lp-download-trust-note {
        white-space: normal;
        text-align: center;
    }

    .lp-download-phone {
        min-height: 360px;
        width: 100%;
    }

    .lp-download-visual-deco--dots {
        top: 0;
        right: 0;
        width: 76px;
        height: 60px;
        background-size: 22px 22px;
    }

    .lp-download-float {
        left: -2px;
        top: 8%;
        width: 122px;
        height: 120px;
    }

    .lp-download-float-path {
        left: 36px;
        top: 42px;
        width: 82px;
        height: 66px;
        border-width: 2px;
    }

    .lp-download-float-badge {
        width: 58px;
        height: 58px;
        font-size: 26px;
        border-radius: 18px;
    }

    .lp-download-float-arrow {
        top: 74px;
        right: 6px;
        font-size: 22px;
    }

    .lp-download-stage-ring--one {
        width: 220px;
        height: 220px;
    }

    .lp-download-stage-ring--two {
        width: 270px;
        height: 270px;
    }

    .lp-download-stage-ring--three {
        width: 318px;
        height: 318px;
    }

    .lp-download-stage-glow {
        width: 232px;
        height: 232px;
        left: 54%;
        top: 57%;
    }

    .lp-download-stage-base {
        width: 206px;
        height: 34px;
        left: 54%;
        bottom: 18px;
    }

    .lp-phone-img-wrap {
        width: min(190px, 56vw);
        transform: rotate(12deg) translateX(10px) translateY(-16px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .lp-download-inner::before,
    .lp-download-badges a,
    .lp-phone-img-wrap {
        animation: none;
    }
}

/* ===== LEGACY STYLES (kept for fallback) ===== */
.landing-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.landing-card-head {
    padding: 16px 18px;
    border-bottom: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.landing-chiprow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.landing-chip,
.landing-location-btn {
    border: 1px solid rgba(40, 93, 167, 0.26);
    background: var(--lp-white);
    color: var(--lp-primary);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.landing-chip.is-active {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    color: #fff;
}

.landing-body {
    padding: 18px;
}

.landing-search {
    margin-top: 10px;
}

.landing-search input.form-control {
    border-radius: 12px;
    height: 46px;
    border-color: rgba(15, 23, 42, 0.12);
}

.landing-grid {
    max-height: 320px;
    overflow: auto;
    padding-right: 6px;
}

.landing-grid .brand-detail {
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    background: var(--lp-white);
    transition: transform 120ms ease;
}

.landing-grid .brand-detail:hover {
    transform: translateY(-2px);
}

.landing-grid .brand-image {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
}

.landing-grid .brand-image img {
    max-height: 44px;
    max-width: 100%;
    object-fit: contain;
}

/* ===== MOBILE STICKY BANNER ===== */
.lp-mobile-app-banner {
    display: none;
}

@media (max-width: 767px) {
    .lp-mobile-app-banner {
        display: block;
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: 16px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(120%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, visibility 0.4s ease;
    }

    .lp-mobile-app-banner.show-banner {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .lp-mobile-app-banner-inner {
        background: #000;
        border-radius: 12px;
        padding: 10px 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    .lp-banner-logo {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        object-fit: contain;
        background: #fff;
        padding: 4px;
        flex-shrink: 0;
    }

    .lp-banner-text {
        flex: 1;
        color: #fff;
        font-size: 13.5px;
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.01em;
        display: flex;
        flex-direction: column;
    }

    .lp-banner-btn {
        background: #fff;
        color: var(--lp-primary);
        padding: 9px 18px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 800;
        text-decoration: none;
        white-space: nowrap;
        transition: opacity 0.2s ease;
    }

    .lp-banner-btn:active {
        opacity: 0.8;
    }
}