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

:root {
    --lp-primary: #285da7;
    --lp-primary-dark: #1e4f93;
    --lp-text: #0f172a;
    --lp-muted: #64748b;
    --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;
}

.lp-animate {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    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-content>* {
    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 .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;
        min-height: 100svh;
        align-items: flex-end;
        padding-top: 24px;
        padding-bottom: 80px;
    }
}

.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 (max-width: 767px) {
    .lp-hero-content {
        max-width: 100%;
        padding: 22px 18px 18px;
        margin: 0 12px;
        border-radius: 18px;
        background: linear-gradient(to bottom, rgba(7, 11, 20, 0.55) 0%, rgba(7, 11, 20, 0.82) 100%);
    }
}

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

.lp-hero-logo {
    width: clamp(160px, 18vw, 300px);
    height: auto;
    object-fit: contain;
    filter: none;
    animation: lp-logo-float 5s ease-in-out 820ms infinite;
}

.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(240px, 72vw, 330px);
    }

    .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-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-download-cta--inline {
        min-height: 60px;
        font-size: clamp(14px, 4.4vw, 20px);
    }

    .lp-hero-note,
    .lp-download-note {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.5;
    }
}

.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 (max-width: 767px) {
    .lp-scroll-down {
        bottom: 16px;
        font-size: 16px;
        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: 24px;
    }
}

.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%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero-content>* {
        opacity: 1;
        transform: none;
        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-text);
    margin: 0 0 14px;
    line-height: 1.1;
    text-align: center;
}

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

/* ===== STATS / ABOUT ===== */
.lp-about {
    background: var(--lp-white);
    padding: 80px 0 72px;
    border-bottom: 1px solid var(--lp-border);
    /* Subtle radial haze at corners */
    background-image:
        radial-gradient(ellipse 60% 80% at 0% 100%, rgba(40, 93, 167, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 70% at 100% 0%, rgba(40, 93, 167, 0.04) 0%, transparent 50%);
}

.lp-about-inner {
    text-align: center;
}

.lp-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 48px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    background: var(--lp-bg);
}

.lp-stat {
    flex: 1;
    min-width: 140px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.lp-stat-num {
    font-size: 38px;
    font-weight: 900;
    color: var(--lp-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

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

.lp-stat-label {
    font-size: 13px;
    color: var(--lp-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

@media (max-width: 600px) {
    .lp-stat-divider {
        display: none;
    }

    .lp-stats-row {
        border-radius: 16px;
    }

    .lp-stat {
        border-bottom: 1px solid var(--lp-border);
    }

    .lp-stat:last-child {
        border-bottom: none;
    }
}

/* ===== HOW IT WORKS ===== */
.lp-how {
    padding: 80px 0 72px;
    border-bottom: 1px solid var(--lp-border);
    /* Subtle dot grid texture */
    background-color: var(--lp-bg);
    background-image:
        radial-gradient(circle, rgba(40, 93, 167, 0.10) 1px, transparent 1px),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(40, 93, 167, 0.05) 0%, transparent 60%);
    background-size: 28px 28px, 100% 100%;
}

.lp-how-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 8px;
}

.lp-step {
    position: relative;
    text-align: center;
    min-height: 252px;
    padding: 28px 20px 24px;
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.lp-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(40, 93, 167, 0.10) 0%, rgba(40, 93, 167, 0.02) 35%, transparent 65%);
    opacity: 0;
    transition: opacity 280ms ease;
}

.lp-step:hover {
    transform: translateY(-6px);
    border-color: rgba(40, 93, 167, 0.30);
    box-shadow: 0 16px 40px rgba(40, 93, 167, 0.14);
}

.lp-step:hover::before {
    opacity: 1;
}

.lp-step-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(40, 93, 167, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.lp-step-icon i {
    font-size: 22px;
    color: var(--lp-primary);
}

.lp-step-num {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(40, 93, 167, 0.50);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lp-step h3 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    color: var(--lp-text);
    margin: 0 0 8px;
}

.lp-step p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0;
}

.lp-step-icon {
    animation: lp-step-icon-float 3s ease-in-out infinite;
}

.lp-step:nth-child(2) .lp-step-icon,
.lp-step:nth-child(6) .lp-step-icon {
    animation-delay: 240ms;
}

.lp-step:nth-child(3) .lp-step-icon,
.lp-step:nth-child(7) .lp-step-icon {
    animation-delay: 480ms;
}

.lp-step:nth-child(4) .lp-step-icon,
.lp-step:nth-child(8) .lp-step-icon {
    animation-delay: 720ms;
}

@keyframes lp-step-icon-float {

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

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

@media (max-width: 1199px) {
    .lp-how-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .lp-step {
        min-height: 228px;
        padding: 24px 16px 20px;
    }

    .lp-step h3 {
        font-size: 22px;
    }

    .lp-step p {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 575px) {
    .lp-how-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-step {
        min-height: auto;
        padding: 22px 16px;
    }

    .lp-step h3 {
        font-size: 20px;
    }
}

/* ===== APP FEATURES ===== */
.lp-appfeat {
    padding: 88px 0 78px;
    border-bottom: 1px solid var(--lp-border);
    position: relative;
    overflow: hidden;
    background-color: var(--lp-white);
    background-image:
        radial-gradient(circle at 10% 15%, rgba(40, 93, 167, 0.10) 0%, rgba(40, 93, 167, 0) 30%),
        radial-gradient(circle at 88% 72%, rgba(40, 93, 167, 0.10) 0%, rgba(40, 93, 167, 0) 34%),
        repeating-linear-gradient(140deg,
            transparent,
            transparent 44px,
            rgba(40, 93, 167, 0.02) 44px,
            rgba(40, 93, 167, 0.02) 45px);
}

.lp-appfeat-head {
    text-align: center;
    margin-bottom: 38px;
}

.lp-appfeat-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(40, 93, 167, 0.10);
    color: var(--lp-primary-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-appfeat .lp-section-sub {
    max-width: 660px;
    margin-bottom: 0;
}

.lp-appfeat-grid {
    display: grid;
    grid-template-columns: minmax(260px, 320px) auto minmax(260px, 320px);
    align-items: center;
    gap: 28px;
    justify-content: center;
}

.lp-appfeat-col {
    flex: 1;
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.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 {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border: 1px solid rgba(40, 93, 167, 0.14);
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fbff 0%, #edf3fa 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease, box-shadow 240ms ease;
    overflow: hidden;
}

.lp-appfeat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(40, 93, 167, 0.32);
    box-shadow: 0 16px 36px rgba(40, 93, 167, 0.13);
}

.lp-appfeat-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
    transform: translateX(-150%);
    transition: transform 520ms ease;
}

.lp-appfeat-item:hover::after {
    transform: translateX(150%);
}

.lp-appfeat-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(40, 93, 167, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(40, 93, 167, 0.10);
}

.lp-appfeat-ico i {
    font-size: 16px;
    color: var(--lp-primary);
}

.lp-appfeat-item strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 3px;
}

.lp-appfeat-item p {
    margin: 0;
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.5;
}

/* Phone frame */
.lp-appfeat-phone {
    position: relative;
    flex-shrink: 0;
    padding: 12px;
    justify-self: center;
    align-self: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.lp-phone-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(64, 130, 208, 0.32);
    pointer-events: none;
    animation: lp-orbit-pulse 3.8s ease-in-out infinite;
}

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

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

.lp-phone-frame {
    width: 220px;
    height: 410px;
    border: 3px solid #13244a;
    border-radius: 42px;
    background: #0d1831;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.10),
        0 34px 86px rgba(11, 18, 32, 0.36);
    animation: lp-phone-float 4.2s ease-in-out infinite;
    z-index: 1;
    margin: 0 auto;
}

.lp-phone-frame.lp-phone-sm {
    width: 160px;
    height: 310px;
    border-radius: 30px;
}

.lp-phone-notch {
    width: 60px;
    height: 16px;
    background: #1a1a2e;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lp-phone-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 8%, rgba(80, 140, 226, 0.30) 0%, transparent 42%),
        linear-gradient(145deg, #0f1f44 0%, #1d3e79 100%);
}

.lp-phone-icon {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 12px;
}

.lp-phone-logo {
    max-width: 132px;
    height: auto;
    object-fit: contain;
    filter: none;
    margin-bottom: 12px;
}

.lp-phone-name {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 4px;
}

.lp-phone-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 0.05em;
}

.lp-phone-btn {
    margin-top: 18px;
    background: var(--lp-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(40, 93, 167, 0.34);
}

@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: 900px) {
    .lp-appfeat-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 18px;
    }

    .lp-appfeat-col {
        max-width: 100%;
        width: 100%;
        gap: 12px;
    }

    .lp-appfeat-phone {
        order: -1;
        margin: 4px auto 10px;
        justify-self: center;
        align-self: center;
    }

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

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

    .lp-phone-frame {
        width: 160px;
        height: 310px;
        border-radius: 30px;
    }

    .lp-phone-logo {
        max-width: 112px;
    }

    .lp-phone-btn {
        font-size: 13px;
        padding: 9px 14px;
    }
}

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

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

    .lp-appfeat-item::after {
        display: none;
    }
}

/* ===== DOWNLOAD ===== */
.lp-download {
    padding: 64px 0;
    background-color: var(--lp-bg);
    /* Subtle cross-hatch dots */
    background-image: radial-gradient(circle, rgba(40, 93, 167, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
}

.lp-download-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
    border: 1px solid rgba(40, 93, 167, 0.14);
    border-radius: var(--lp-radius);
    padding: 48px 0 0 52px;
    overflow: hidden;
    min-height: 280px;
    position: relative;
    /* Light blue gradient base */
    background-color: #eaf1fb;
    /* Subtle arc texture on the right */
    background-image:
        radial-gradient(ellipse 80% 80% at 90% 50%, transparent 56%, rgba(40, 93, 167, 0.07) 56.5%, rgba(40, 93, 167, 0.07) 57.5%, transparent 58%),
        radial-gradient(ellipse 95% 95% at 90% 50%, transparent 56%, rgba(40, 93, 167, 0.05) 56.5%, rgba(40, 93, 167, 0.05) 57.5%, transparent 58%),
        radial-gradient(ellipse 110% 110% at 90% 50%, transparent 56%, rgba(40, 93, 167, 0.04) 56.5%, rgba(40, 93, 167, 0.04) 57.5%, transparent 58%),
        radial-gradient(ellipse 50% 60% at 85% 40%, rgba(40, 93, 167, 0.10) 0%, transparent 60%),
        linear-gradient(135deg, #edf3fc 0%, #e1ecf9 100%);
}

.lp-download-inner::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -80px;
    left: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 150, 233, 0.20) 0%, rgba(61, 150, 233, 0) 70%);
    pointer-events: none;
    animation: lp-download-glow-drift 6.8s ease-in-out infinite;
}

.lp-download-text {
    flex: 1;
    padding-bottom: 48px;
}

.lp-download-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.lp-download-text p {
    font-size: 15px;
    color: var(--lp-muted);
    margin: 0 0 24px;
}

.lp-download-note {
    color: rgba(15, 23, 42, 0.68);
    margin-top: 12px;
    margin-bottom: 0;
}

.lp-download-badges {
    margin: 0 0 16px;
    gap: 10px;
}

.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: 48px;
}

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

.lp-download-phone {
    flex-shrink: 0;
    align-self: flex-end;
    display: flex;
    align-items: flex-end;
}

.lp-phone-img-wrap {
    position: relative;
    display: inline-block;
    width: 300px;
    margin-right: 60px;
    margin-bottom: -14px;
    animation: none;
}

.lp-phone-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay sits in the screen area of the phone (roughly top 20-55%) */
.lp-phone-overlay-text {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 72%;
    pointer-events: none;
}

.lp-phone-overlay-heading {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.lp-phone-overlay-logo {
    max-width: 110px;
    height: auto;
    filter: none;
}

@keyframes lp-download-phone-float {

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

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

@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: 767px) {
    .lp-download-inner {
        flex-direction: column;
        align-items: center;
        padding: 32px 24px 0;
        text-align: center;
    }

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

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

    .lp-download-note {
        text-align: center;
    }

    .lp-phone-img-wrap {
        width: 200px;
        margin-bottom: -10px;
    }

    .lp-download-text {
        padding-bottom: 24px;
    }
}

@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;
}