@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        z-index: 3;
    }

    /* How to Use */
    .lp-how-to {
        text-align: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .lp-section-title {
        font-size: 48px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 60px;
        color: #1d1d1f;
    }

    /* Native Usage Flow */
    .lp-container .lp-section-title {
        margin-bottom: 60px;
    }

    .lp-steps-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 40px;
        margin-bottom: 60px;
        position: relative;
    }

    .lp-step-item {
        flex: 1;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    }

    .lp-step-header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-left: 4px;
    }

    .lp-step-number {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #007AFF;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 2px 4px rgba(0, 122, 255, 0.2);
    }

    .lp-step-title {
        font-size: 17px;
        font-weight: 600;
        color: #1d1d1f;
        line-height: 1.2;
        margin: 0;
    }

    .lp-step-image-container {
        position: relative;
        padding: 0;
        margin-top: 10px;
    }

    .lp-step-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
        /* Refined Window shadow */
        margin-top: 0;
        background: transparent;
        transition: transform 0.3s ease;
    }

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

    .lp-step-connector {
        padding-top: 200px;
        /* Align with middle of images roughly */
        opacity: 0.8;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .lp-steps-wrapper {
            flex-direction: column;
            gap: 60px;
            align-items: center;
        }

        .lp-step-connector {
            transform: rotate(90deg);
            padding: 0;
        }
    }

    /* Feature Rows (Zig-Zag) */
    .lp-bento-section {
        padding-bottom: 80px;
        padding-top: 80px;
        background: #F5F5F7;
    }

    .lp-bento-grid {
        display: flex;
        flex-direction: column;
        gap: 100px;
        margin-bottom: 60px;
    }

    .lp-bento-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        padding: 0;
        background: transparent;
        /* Remove card bg for cleaner row look, or keep if requested. Let's make them clean rows first as per "Left pic Right text". usually implies sections. */
        border: none;
        box-shadow: none;
        min-height: auto;
        overflow: visible;
        flex-direction: row-reverse;
        /* Default: Image Left, Content Right */
    }

    .lp-bento-card:nth-child(even) {
        flex-direction: row;
        /* Even: Content Left, Image Right */
    }

    .lp-bento-content {
        flex: 1;
        max-width: 450px;
    }

    .lp-bento-title {
        font-size: 32px;
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: -0.01em;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #1d1d1f 0%, #434344 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .lp-bento-text {
        font-size: 18px;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .lp-bento-img {
        flex: 1;
        position: relative;
        height: auto;
        background: transparent;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none !important;
        /* Override hover effects */
        width: auto;
    }

    .lp-bento-img img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);
        /* Window shadow */
    }

    .lp-bento-card:hover .lp-bento-img {
        transform: translateY(-5px) !important;
        transition: transform 0.3s ease;
    }

    /* Full width card override removal - handled by generic row logic */

    @media (max-width: 1024px) {
        .lp-bento-card {
            gap: 40px;
        }

        .lp-bento-title {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        .lp-bento-card {
            flex-direction: column-reverse !important;
            /* Image top, Text bottom. Or column. usually text on top is better for mobile? Let's do Image Top */
            gap: 30px;
            text-align: center;
        }

        .lp-bento-card:nth-child(even) {
            flex-direction: column-reverse !important;
        }

        .lp-bento-content {
            max-width: 100%;
        }

        .lp-bento-text {
            font-size: 16px;
        }
    }

    /* Testimonials */
    .lp-testimonials {
        background-color: #FFFFFF;
        padding-bottom: 40px;
    }

    .lp-testimonials .lp-section-title {
        text-align: center;
    }

    .lp-review-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: flex-start;
    }

    .lp-review-card {
        padding: 32px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        background: #FFFFFF;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8), 0 10px 40px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: auto;
        border-radius: 24px;
    }

    .lp-review-grid>div:nth-child(2) {
        margin-top: 40px;
    }

    .lp-review-card:hover {
        background: #FFFFFF;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        border-color: transparent;
    }

    .lp-review-quote {
        font-size: 17px;
        line-height: 1.6;
        color: var(--text-primary);
        margin-bottom: 24px;
        font-style: normal;
    }

    .quote-icon {
        color: var(--accent-blue);
        font-size: 40px;
        line-height: 1;
        margin-bottom: 16px;
        opacity: 0.2;
        font-family: serif;
    }

    .lp-review-meta {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .lp-review-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .lp-review-author {
        font-size: 15px;
        font-weight: 600;
    }

    .lp-review-role {
        font-size: 13px;
        color: var(--text-secondary);
        display: block;
    }

    /* FAQ */
    .lp-faq {
        max-width: 860px;
        margin: 0 auto;
    }

    .lp-faq .lp-section-title {
        text-align: center;
    }

    .lp-faq-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 32px 0;
    }

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

    .lp-faq-question {
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--text-primary);
    }

    .lp-faq-answer {
        font-size: 17px;
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 90%;
    }

    /* Bottom CTA */
    .lp-bottom-cta {
        text-align: center;
        padding: 80px 0 120px 0;
        background: linear-gradient(135deg, #007AFF 0%, #004080 100%);
        color: white;
    }

    .lp-bottom-cta h2 {
        font-size: 48px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 40px;
        color: #FFFFFF;
    }

    .lp-bottom-cta .lp-btn {
        margin-top: 40px;
        background: #FFFFFF;
        color: #007AFF;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .lp-bottom-cta .lp-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        background: #FFFFFF;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .lp-hero h1 {
            font-size: 52px;
        }

        .lp-section-title {
            font-size: 36px;
        }

        .full-width-card {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }

        .full-width-card .lp-bento-content {
            padding-right: 0;
            flex: auto;
        }

        .full-width-card .lp-bento-img {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .lp-hero h1 {
            font-size: 40px;
        }

        .lp-hero-desc {
            font-size: 20px;
        }

        .lp-feature-top,
        .lp-bento-grid,
        .lp-review-grid,
        .lp-steps-wrapper {
            grid-template-columns: 1fr;
            flex-direction: column;
            align-items: center;
        }

        .full-width-card {
            grid-column: span 1;
        }

        .lp-step-item,
        .lp-bento-card {
            width: 100%;
        }

        .product-links {
            display: none;
        }

        /* Simplify nav on mobile */
    }