/* ==========================================================
   GLOBAL FIX
   ========================================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    overflow-x:hidden;
    scroll-behavior: smooth;
}

body{
    font-family:'Nunito',sans-serif;
    overflow-x:hidden;
    margin:0;
    padding:0;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img {
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none !important;
}

.lp-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 24px;
    position:relative;
    z-index:10;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.lp-hero {
    position: relative;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(0, 195, 255, .12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(8, 86, 232, .12), transparent 40%),
        #ffffff;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 86, 232, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 86, 232, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.lp-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0856E8, #00c3ff);
    filter: blur(120px);
    opacity: .12;
}

.lp-hero-glow-1 {
    top: -250px;
    left: -150px;
}

.lp-hero-glow-2 {
    bottom: -250px;
    right: -150px;
}

.lp-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(8, 86, 232, .06);
    border: 1px solid rgba(8, 86, 232, .12);
    color: #0856E8;
    font-size: 14px;
    font-weight: 700;
    /* margin-bottom: 24px; */
}

.lp-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00c3ff;
}

.lp-hero-title {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 800;
    color: #0B1020;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

@media (max-width: 767px) {
    .lp-hero-title, .lp-hero-desc  {
        text-align: center;
    }

    .lp-hero-badge {
        font-size: 12px;
    }

    .lp-hero-content, {
        text-align: center;
    }

    .lp-hero-trust {
        align-self: center;
        text-align: center;
        justify-content: center;ss
    }

}

.lp-gradient-text {
    background: linear-gradient(90deg, #0856E8, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #64748B;
    max-width: 640px;
    margin-bottom: 36px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #0856E8, #00c3ff);
    box-shadow: 0 20px 40px rgba(8, 86, 232, .25);
    transition: .3s;
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
}

.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #fff;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.lp-btn-secondary:hover {
    transform: translateY(-3px);
}

.lp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.lp-trust-item {
    display: flex;
    flex-direction: column;
}

.lp-trust-number {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}

.lp-trust-label {
    font-size: 14px;
    color: #64748B;
}

.lp-hero-visual {
    position: relative;
}


.lp-dashboard-top {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.lp-dashboard-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.lp-dashboard-screen {
    border-radius: 20px;
    overflow: hidden;
}

.lp-dashboard-screen img {
    width: 100%;
    display: block;
}

.lp-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-floating-card svg {
    width: 42px;
    height: 42px;
}

.lp-card-1 {
    top: 60px;
    left: -60px;
}

.lp-card-2 {
    bottom: 80px;
    right: -40px;
}

.lp-floating-title {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
}

.lp-floating-desc {
    color: #64748B;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .lp-hero {
        padding: 120px 0;
    }

    .lp-hero-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero-title {
        font-size: 52px;
    }

    .lp-card-1 {
        top: 60px;
        left: -20px;
    }

    .lp-card-2 {
        bottom: 80px;
        right: -20px;
    }
}

@media (max-width: 768px) {
    .lp-card-1 {
        top: -20px;
    }

    .lp-card-2 {
        bottom: -20px;
    }

    .lp-hero-title {
        font-size: 40px;
    }

    .lp-hero-desc {
        font-size: 16px;
    }

    .lp-hero-actions {
        flex-direction: column;
    }

    .lp-btn-primary,
    .lp-btn-secondary {
        width: 100%;
    }
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */

.lp-clients {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #fff;
}

.lp-clients::before {
    content: '';
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 195, 255, .10),
            transparent 70%
        );
    pointer-events: none;
}

.lp-clients-header {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
}

.lp-section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(8, 86, 232, .08);
    border: 1px solid rgba(8, 86, 232, .12);
    color: #0856E8;
    font-size: 14px;
    font-weight: 700;
}

.lp-section-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #121212;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .lp-section-title {
        font-size: 32px;
    }
    
}

.lp-section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #64748B;
}

/* ==========================================
CLIENT LOGO
========================================== */

.lp-clients{
    padding:120px 0;
    position:relative;
}

.lp-marquee{
    margin:25px 0;
    mask-image:linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );

    -webkit-mask-image:linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
}

.lp-marquee-track{

    display:flex;
    width:max-content;
    gap:24px;

    animation:scrollLeft 40s linear infinite;
}

.lp-marquee.reverse .lp-marquee-track{

    animation:scrollRight 40s linear infinite;

}

.lp-marquee:hover .lp-marquee-track{

    animation-play-state:paused;

}

.lp-logo-item{

    width:260px;
    height:110px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;

    border-radius:22px;

    border:1px solid #E8EEF7;

    transition:.35s;
}

.lp-logo-item:hover{

    border-color:#00C3FF;
}

.lp-logo-item img{
    max-width:150px;
    max-height:70px;
    object-fit:contain;
    opacity:.75;
    transition:.35s;
}

.lp-logo-item:hover img{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}

/* animation */

@keyframes scrollLeft{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@keyframes scrollRight{

    from{
        transform:translateX(-50%);
    }

    to{
        transform:translateX(0);
    }

}

/* responsive */

@media(max-width:768px){

    .lp-logo-item{

        width:180px;
        height:90px;

    }

    .lp-logo-item img{

        max-width:110px;

    }

    .lp-marquee-track{

        animation-duration:28s;

    }

}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */

.lp-benefits {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );
}

.lp-benefits-glow {
    position: absolute;
    top: -250px;
    right: -250px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 195, 255, .12),
            transparent 70%
        );
    pointer-events: none;
}

.lp-benefits-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lp-benefit-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    border: 1px solid #EEF2F7;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    transition: .4s ease;
}

.lp-benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 195, 255, .35);
    box-shadow: 0 30px 80px rgba(8, 86, 232, .12);
}

.lp-benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(8, 86, 232, .03),
            rgba(0, 195, 255, .05)
        );
    opacity: 0;
    transition: .4s;
}

.lp-benefit-card:hover::before {
    opacity: 1;
}

.lp-benefit-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 24px;
}

.lp-benefit-icon svg {
    width: 28px;
    height: 28px;
}

.lp-benefit-card h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
}

.lp-benefit-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748B;
}

@media (max-width: 1024px) {
    .lp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-benefits {
        padding: 90px 0;
    }

    .lp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .lp-benefit-card {
        padding: 28px;
    }
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

.lp-why {
    position: relative;
    padding: 120px 0;
    background: #F8FBFF;
    overflow: hidden;
}

.lp-why::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -300px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 195, 255, .08),
            transparent 70%
        );
    pointer-events: none;
}

.lp-why-header {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lp-why-card {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    border: 1px solid #EEF2F7;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.lp-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 195, 255, .30);
    box-shadow: 0 25px 60px rgba(8, 86, 232, .10);
}

.lp-why-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    background:
        linear-gradient(
            135deg,
            #0856E8,
            #00c3ff
        );
    box-shadow: 0 15px 35px rgba(8, 86, 232, .18);
}

.lp-why-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.lp-why-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748B;
}

@media (max-width: 1024px) {
    .lp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-why {
        padding: 90px 0;
    }

    .lp-why-grid {
        grid-template-columns: 1fr;
    }

    .lp-container {
        padding: 64px 16px;
    }
}

/* ============================================================
   PRICING SECTIONN
   ============================================================ */

.lp-pricing .lp-container {
    position: relative;
    padding: 120px 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lp-pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: center;
    max-width: 1200px;
    align-self: center;
}

.lp-pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid #EAEFF5;
    border-radius: 32px;
    padding: 24px;
    transition: .35s;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .05);
}

.lp-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(8, 86, 232, .10);
}

.lp-pricing-featured {
    transform: scale(1.04);
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #0856E8, #00C3FF) border-box;
    border: 2px solid transparent;
}

.lp-recommended-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0856E8, #00C3FF);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
}

.lp-plan-name {
    font-size: 30px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
}

.lp-plan-description {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 28px;
}

.lp-old-price {
    text-decoration: line-through;
    color: rgb(233, 28, 28);
    margin-bottom: 8px;
}

.lp-price {
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    color: #0F172A;
}

.lp-renew-price {
    margin-top: 14px;
    font-size: 14px;
    color: #64748B;
}

.lp-price-wrapper {
    margin-bottom: 30px;
}

.lp-pricing-btn {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #F8FAFC;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.lp-pricing-btn-primary {
    color: #fff;
    background:
        linear-gradient(
            90deg,
            #0856E8,
            #00C3FF
        );
}

.lp-feature-heading {
    margin: 30px 0 20px;
    font-weight: 800;
    color: #111827;
}

.lp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-feature-list li {
    position: relative;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid #EEF2F7;
    color: #334155;
    font-size: 13px;
    line-height: 1.6;
}

.lp-feature-list li:last-child {
    border: none;
}

.lp-feature-list li strong {
    color: #111827;
}

.lp-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14CBA8;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .lp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .lp-pricing-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .lp-pricing {
        padding: 0px 0;
    }

    .lp-price {
        font-size: 24px;
    }

    .lp-pricing-card {
        padding: 30px;
    }
}

/* ============================================================
   PREMIUM FEATURES SECTION
   ============================================================ */

.lp-premium-features {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.lp-features-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
}

.lp-features-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: center;
}

.lp-features-illustration {
    position: sticky;
    top: 120px;
}

.lp-illustration-placeholder {
    height: 420px;
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            rgba(8, 86, 232, .08),
            rgba(0, 195, 255, .08)
        );
    border: 1px solid #E6EEF9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-illustration-placeholder img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lp-note {
    margin-top: 20px;
    font-size: 14px;
    color: #DC2626;
    font-style: italic;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.lp-feature-item {
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: #0F172A;
    transition: .3s;
}

.lp-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 195, 255, .4);
    box-shadow: 0 20px 50px rgba(8, 86, 232, .08);
}

.lp-feature-item span {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14CBA8;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .lp-features-layout {
        grid-template-columns: 1fr;
    }

    .lp-features-illustration {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .lp-premium-features {
        padding: 90px 0;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */

.lp-portfolio {
    padding: 140px 0;
    background: #F8FBFF;
}

.lp-portfolio-header {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 70px;
}

.lp-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lp-showcase-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #E8EEF7;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .05);
    transition: .4s;
}

.lp-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(8, 86, 232, .12);
}

.lp-showcase-card img {
    width: 100%;
    display: block;
    transform: translateY(0);
    transition: transform 1s linear;
}

.lp-showcase-card:hover img {
    transform: translateY(calc(-100% + 520px));
}

.lp-scroll-indicator {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 56px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .7);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
    opacity: 1;
    transition: .3s;
}

.lp-showcase-card:hover .lp-scroll-indicator {
    opacity: 0;
}

.lp-scroll-indicator span {
    width: 6px;
    height: 10px;
    border-radius: 10px;
    background: #0856E8;
    animation: lpScrollHint 1.6s infinite;
}

@keyframes lpScrollHint {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(18px);
        opacity: .2;
    }
}

@media (max-width: 1200px) {
    .lp-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .lp-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-showcase-grid {
        grid-template-columns: 1fr;
    }

    .lp-showcase-card {
        height: 500px;
    }
}


/* ==========================
FAQ
========================== */

.lp-faq{
    padding:120px 0;
    background:#fff;
}

.lp-faq-header{
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
}

.lp-faq-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.lp-faq-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.lp-faq-item{
    background:#fff;
    border:1px solid #E8EEF7;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.3s;
}

.lp-faq-item:hover{
    transform:translateY(-2px);
}

.lp-faq-item summary{
    list-style:none;
    cursor:pointer;

    padding:28px 32px;

    font-size:18px;
    font-weight:700;

    color:#142B66;

    position:relative;
}

.lp-faq-item summary::-webkit-details-marker{
    display:none;
}

.lp-faq-item summary::after{

    content:"+";

    position:absolute;
    right:30px;
    top:50%;

    transform:translateY(-50%);

    width:34px;
    height:34px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#F4F8FF;

    font-size:22px;
    font-weight:700;

    color:#0856E8;
}

.lp-faq-item[open] summary{
    background:linear-gradient(
        90deg,
        #1D33C7,
        #1693D9
    );

    color:#fff;
}

.lp-faq-item[open] summary::after{
    content:"−";
    background:rgba(255,255,255,.15);
    color:#fff;
}

.lp-faq-content{
    padding:30px 32px;
    line-height:1.9;
    color:#4F5E79;
}

.lp-faq-content p:not(:last-child){
    margin-bottom:20px;
}

@media (max-width: 767px) {
    .lp-faq-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
}
}

/* Import Font */

  /* Base Variables */
  :root {
    --lp-purple-bg: #4163f9;
    --lp-purple-glow: #00b7ff;
    --lp-yellow-btn: #FFD426;
    --lp-yellow-btn-hover: #F2C300;
    --lp-text-dark: #111827;
    --lp-text-light: #FFFFFF;
    --lp-text-muted: #E2D1FE;
  }

  /* CTA Section Reset & Wrapper */
  .lp-cta-wrapper {
    font-family: var(--lp-font-primary);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .lp-cta-wrapper * {
    box-sizing: border-box;
  }

  /* Main Section Styling */
  .lp-cta-section {
    position: relative;
    background-color: var(--lp-purple-bg);
    background-image: radial-gradient(circle at 50% 30%, var(--lp-purple-glow) 0%, transparent 60%);
    padding-top: 120px;
    padding-bottom: 0;
    overflow: hidden;
    text-align: center;
    color: var(--lp-text-light);
  }

  /* Container */
  .lp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
  }

  /* Badge / Eyebrow */
  .lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 6px 20px 6px 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .lp-avatars {
    display: flex;
    align-items: center;
  }

  .lp-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--lp-purple-bg);
    margin-left: -12px;
    object-fit: cover;
  }

  .lp-avatar-img:first-child {
    margin-left: 0;
  }

  .lp-badge-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lp-text-light);
  }

  /* Typography */
  .lp-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
  }

  .lp-subheadline {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: white !important;
    max-width: 600px;
    margin: 0 auto 40px auto;
  }

  /* CTA Button */
  a.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: white !important;
    color: #4163f9;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .lp-btn-primary:hover {
    background-color: var(--lp-yellow-btn-hover);
    transform: translateY(-3px);
  }

  .lp-btn-arrow {
    transition: transform 0.3s ease;
  }

  .lp-btn-primary:hover .lp-btn-arrow {
    transform: translateX(4px);
  }

  /* Mockup Showcase Area */
  .lp-mockup-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
    height: 450px; /* Limits visible height to create the cut-off effect */
    position: relative;
    gap: 24px;
  }

  /* Individual Mockup Cards */
  .lp-mockup-card {
    flex: 0 0 320px;
    background-color: #ffffff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .lp-mockup-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Staggered Positioning */
  .lp-mockup-1, .lp-mockup-5 {
    transform: translateY(160px);
    z-index: 1;
    opacity: 0.8;
  }

  .lp-mockup-2, .lp-mockup-4 {
    transform: translateY(80px);
    z-index: 2;
    opacity: 0.9;
  }

  .lp-mockup-3 {
    transform: translateY(0);
    z-index: 3;
    flex: 0 0 380px; /* Center card slightly wider */
  }

  /* Hover Effects on Mockups */
  .lp-mockup-card:hover {
    transform: translateY(calc(var(--original-y, 0px) - 15px)) !important;
    z-index: 10;
    opacity: 1;
  }
  
  .lp-mockup-1:hover, .lp-mockup-5:hover { --original-y: 160px; }
  .lp-mockup-2:hover, .lp-mockup-4:hover { --original-y: 80px; }
  .lp-mockup-3:hover { --original-y: 0px; }

  /* Responsive Design */
  @media (max-width: 1280px) {
    .lp-mockup-card { flex: 0 0 280px; }
    .lp-mockup-3 { flex: 0 0 340px; }
  }

  @media (max-width: 1024px) {
    .lp-headline { font-size: 48px; }
    .lp-mockup-showcase { gap: 16px; }
    
  }

  @media (max-width: 768px) {
    .lp-cta-section { padding-top: 80px; }
    .lp-headline { font-size: 36px; }
    .lp-badge { flex-direction: column; gap: 12px; padding: 12px 24px; border-radius: 20px;}
    .lp-mockup-showcase { height: 350px; margin-top: 60px;}
   
    .lp-mockup-3 { flex: 0 0 90%; transform: translateY(40px); }
    .lp-mockup-3:hover { --original-y: 40px; }
  }



/* ==========================
FOOTER
========================== */

.lp-footer{

    background: #002066;
background: radial-gradient(circle, rgba(0, 32, 102, 1) 0%, rgba(0, 6, 18, 1) 100%);

    color:#fff;

    padding-top:90px;
}

.lp-footer-logo {
    width: 250px;
}

.lp-footer-grid{

    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.lp-footer-about {
    align-self: center;
    flex-direction: row;
    justify-items: center;
    text-align: center;
}

.lp-footer-about p{

    max-width:640px;

    line-height:1.9;

    color:rgba(255,255,255,.7);
}

.lp-footer-column h4{

    margin-bottom:24px;

    font-size:18px;
    font-weight:700;
}

.lp-footer-column ul{

    margin:0;
    padding:0;

    list-style:none;
}

.lp-footer-column li{
    margin-bottom:14px;
}

.lp-footer-column a{

    color:rgba(255,255,255,.7);

    transition:.3s;
}

.lp-footer-column a:hover{
    color:#fff;
}

.lp-footer-bottom{

    margin-top:60px;

    padding:25px 0;

    border-top:
    1px solid rgba(255,255,255,.08);

    text-align:center;
}

.lp-footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.6);
}

@media (max-width: 767px ) {
    .lp-footer-grid{
    grid-template-columns:
    1fr;
    gap: 24px;
}
}

/* ==========================
   FLOATING WHATSAPP BUTTON
========================== */

.lp-wa-float{

    position:fixed;
    right:28px;
    bottom:28px;

    display:flex;
    align-items:center;
    gap:14px;

    padding:12px 22px 12px 12px;

    border-radius:100px;

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.4);

    box-shadow:
        0 20px 60px rgba(8,86,232,.18),
        0 8px 20px rgba(0,0,0,.08);

    text-decoration:none;

    z-index:9999;

    transition:.35s cubic-bezier(.2,.8,.2,1);

    overflow:hidden;
}

.lp-wa-float:hover{

    transform:
        translateY(-6px)
        scale(1.03);

    box-shadow:
        0 30px 70px rgba(8,86,232,.25),
        0 15px 35px rgba(0,0,0,.12);
}

.lp-wa-float::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(8,86,232,.04),
        rgba(0,195,255,.08)
    );

    opacity:0;

    transition:.35s;
}

.lp-wa-float:hover::before{

    opacity:1;
}

.lp-wa-icon{

    position:relative;

    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.lp-wa-icon svg{

    width:30px;
    height:30px;

    position:relative;
    z-index:2;
}

.lp-wa-icon::after{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    border-radius:18px;

    border:2px solid rgba(37,211,102,.5);

    animation:lpWhatsappPulse 2.2s infinite;
}

.lp-wa-content{

    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
}

.lp-wa-label{

    font-size:12px;

    color:#64748B;

    margin-bottom:2px;
}

.lp-wa-content strong{

    font-size:16px;

    font-weight:800;

    color:#111827;
}

@keyframes lpWhatsappPulse{

    0%{

        transform:scale(1);

        opacity:1;
    }

    100%{

        transform:scale(1.55);

        opacity:0;
    }

}

/* Floating Animation */

.lp-wa-float{

    animation:
        lpWhatsappFloat 4s ease-in-out infinite;
}

@keyframes lpWhatsappFloat{

    0%,100%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-10px);
    }

}

/* Notification Dot */

.lp-wa-icon::before{

    content:"";

    position:absolute;

    top:-3px;
    right:-3px;

    width:14px;
    height:14px;

    background:#ff4242;

    border:3px solid white;

    border-radius:50%;

    animation:lpNotify 1.4s infinite;
}

@keyframes lpNotify{

    0%,100%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.35);
    }

}

/* Mobile */

@media(max-width:768px){

    .lp-wa-float{

        right:18px;
        bottom:18px;

        padding:12px;

        border-radius:50%;
    }

    .lp-wa-content{

        display:none;
    }

    .lp-wa-icon{

        width:58px;
        height:58px;
    }

}

