﻿.lp-section {
    position: relative;
}

.lp-card {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

    .lp-card:hover {
        transform: translateY(-8px);
        border-color: rgba(53,145,212,0.55);
        box-shadow: 0 22px 70px rgba(53,145,212,0.18);
    }

.lp-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.lp-link {
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 6px;
    transition: transform .25s ease, opacity .25s ease;
}

    .lp-link:hover {
        opacity: 1;
        transform: translateX(6px);
    }

.lp-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.lp-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    transition: transform .25s ease, border-color .25s ease;
}

    .lp-badge:hover {
        transform: translateY(-3px);
        border-color: rgba(53,145,212,0.65);
    }

.lp-btn-glow {
    position: relative;
}

    .lp-btn-glow::after {
        content: "";
        position: absolute;
        inset: -14px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(53,145,212,0.35), transparent 62%);
        filter: blur(8px);
        opacity: 0;
        transition: opacity .25s ease;
        z-index: -1;
    }

    .lp-btn-glow:hover::after {
        opacity: 1;
    }

.lp-hero {
    isolation: isolate;
}

.lp-bg {
    position: relative;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.lp-grid {
   position: fixed;      /* important */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    margin-top: 0;
    opacity: 0.22;

    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 46px 46px;

    mask-image: radial-gradient(circle at 30% 25%, #000 40%, transparent 70%);
    pointer-events: none; /* optional */
}

.lp-blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(44px);
    opacity: 0.55;
    transform: translate3d(0,0,0);
    will-change: transform;
}

.lp-blob-1 {
    background: rgba(53,145,212,0.45);
    top: -180px;
    left: -120px;
    animation: lpFloat1 9s ease-in-out infinite;
}

.lp-blob-2 {
    background: rgba(42,122,184,0.35);
    bottom: -220px;
    right: -140px;
    animation: lpFloat2 10.5s ease-in-out infinite;
}

.lp-blob-3 {
    background: rgba(53,145,212,0.22);
    top: 25%;
    right: 10%;
    width: 420px;
    height: 420px;
    animation: lpFloat3 12s ease-in-out infinite;
}

@keyframes lpFloat1 {
    0%, 100% {
        transform: translate(-20px, 0px) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

@keyframes lpFloat2 {
    0%, 100% {
        transform: translate(10px, -10px) scale(1);
    }

    50% {
        transform: translate(-30px, -30px) scale(1.06);
    }
}

@keyframes lpFloat3 {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }

    50% {
        transform: translate(-20px, 25px) scale(1.04);
    }
}

.lp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 850ms cubic-bezier(.2,.8,.2,1), transform 850ms cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
}

    .lp-reveal.lp-in {
        opacity: 1;
        transform: translateY(0);
    }

.lp-delay-1 {
    transition-delay: 120ms;
}

.lp-delay-2 {
    transition-delay: 240ms;
}

.lp-delay-3 {
    transition-delay: 360ms;
}

.lp-delay-4 {
    transition-delay: 480ms;
}

@media (prefers-reduced-motion: reduce) {
    .lp-reveal, .lp-reveal.lp-in {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .lp-blob {
        animation: none !important;
    }
}


.lp-pricing {
    padding: 90px 0;
    background: var(--bg-dark);
}

.lp-pricing-grid {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-price-card {
    width: min(360px, 100%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 70px rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    display: flex;
    flex-direction: column;
}

    .lp-price-card:hover {
        transform: translateY(-10px);
        border-color: rgba(53,145,212,0.55);
        box-shadow: 0 26px 90px rgba(53,145,212,0.20);
    }

.lp-price-head {
    height:300px;
    position: relative;
    padding: 44px 18px 34px;
    text-align: center;
    color: #fff;
}

.lp-price-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(53,145,212,0.95), rgba(42,122,184,0.95));
}

.lp-price-bg-featured {
    background: linear-gradient(135deg, rgba(53,145,212,1), rgba(10,240,199,0.85));
}

.lp-price-waves {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 170px;
}

.lp-wave {
    fill: rgba(255,255,255,0.18);
    transition: transform .55s ease;
}

    .lp-wave.w4 {
        fill: rgba(255,255,255,0.28);
    }

    .lp-wave.w3 {
        fill: rgba(255,255,255,0.22);
    }

    .lp-wave.w2 {
        fill: rgba(255,255,255,0.18);
    }

    .lp-wave.w1 {
        fill: rgba(255,255,255,0.16);
    }

.lp-price-card:hover .lp-wave.w1 {
    transform: translateX(14px);
}

.lp-price-card:hover .lp-wave.w2 {
    transform: translateX(-14px);
}

.lp-price {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 3.4rem;
    line-height: 1;
    margin-bottom: 10px;
}

.lp-cur {
    font-size: 0.22em;
    vertical-align: top;
    opacity: 0.95;
}

.lp-per {
    font-size: 0.22em;
    font-style: italic;
    opacity: 0.9;
    margin-left: 6px;
}

.lp-plan {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.95;
}

.lp-features {
    list-style: none;
    margin: 0;
    padding: 18px 22px 26px;
    text-align: center;
    color: rgba(255,255,255,0.92);
}

    .lp-features li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

        .lp-features li:last-child {
            border-bottom: 0;
        }

.lp-price-btn {
    margin: 0 22px 22px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 0;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, rgba(53,145,212,1), rgba(42,122,184,1));
    transition: transform .25s ease, filter .25s ease;
}

    .lp-price-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.08);
    }

.lp-featured {
    border-color: rgba(53,145,212,0.40);
    box-shadow: 0 26px 90px rgba(53,145,212,0.18);
    transform: translateY(-6px);
}

@media (max-width: 992px) {
    .lp-featured {
        transform: none;
    }
}
