/* =========================================================
   LEAD GENERATION
========================================================= */

.lg-intro,
.lg-capabilities,
.lg-journey,
.lg-technology,
.lg-why,
.lg-final-cta {
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.lg-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #7146e8;

    font-size: 13px;

     font-weight: 700;

    letter-spacing: 2px;

}


.lg-section-label span {

    width: 34px;

    height: 3px;

    border-radius: 20px;

    background: currentColor;

}


.lg-title {

    max-width: 720px;

    margin: 16px 0 22px;

    color: #191d25;

    font-size: clamp(38px, 4.2vw, 58px);

    line-height: 1.08;

     font-weight: 700;

    letter-spacing: -1px;

}


.lg-title span {

    color: #0d6efd;

}


.lg-text {

    max-width: 680px;

    color: #697582;

    font-size: 17px;

    line-height: 1.75;

}


/* =========================================================
   INTRO VISUAL
========================================================= */

.lg-visual {

    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.lg-visual-bg {

    position: absolute;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(113,70,232,.14),
            rgba(113,70,232,.04) 50%,
            transparent 70%
        );

    animation:
        lgPulse 4s ease-in-out infinite;

}


@keyframes lgPulse {

    0%,
    100% {
        transform: scale(.92);
    }

    50% {
        transform: scale(1.08);
    }

}


/* =========================================================
   FUNNEL
========================================================= */

.lg-funnel {

    position: relative;

    z-index: 3;

    width: 390px;

    padding: 30px;

    border: 1px solid #e5def7;

    border-radius: 25px;

    background: rgba(255,255,255,.92);

    box-shadow:
        0 25px 65px rgba(60,40,100,.12);

}


.lg-funnel-title {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    color: #737b87;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.lg-funnel-title i {

    color: #7146e8;

}


.lg-funnel-stage {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 10px auto;

    padding: 13px 18px;

    border-radius: 9px;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .3s ease;

}


.lg-funnel-stage:hover {

    transform:
        translateX(7px);

}


.lg-funnel-stage strong {

    font-size: 15px;

}


.stage-one {

    width: 100%;

    background:
        linear-gradient(
            90deg,
            #8e6bea,
            #7146e8
        );

}


.stage-two {

    width: 84%;

    background:
        linear-gradient(
            90deg,
            #9b7ced,
            #8059e6
        );

}


.stage-three {

    width: 68%;

    background:
        linear-gradient(
            90deg,
            #aa8bef,
            #9068e7
        );

}


.stage-four {

    width: 52%;

    background:
        linear-gradient(
            90deg,
            #b99bf2,
            #9d75e9
        );

}


/* =========================================================
   LEAD BADGE
========================================================= */

.lg-lead-badge {

    position: absolute;

    z-index: 5;

    top: 75px;

    left: 5px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 14px;

    border: 1px solid #e5def8;

    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 15px 30px rgba(50,40,90,.1);

    animation:
        lgFloat 4s ease-in-out infinite;

}


.lg-lead-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #f0ebff;

    color: #7146e8;

}


.lg-lead-badge span {

    display: block;

    color: #9a9fa7;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

}


.lg-lead-badge strong {

    display: block;

    margin-top: 3px;

    color: #353a43;

    font-size: 12px;

}


.lg-lead-badge > i {

    color: #32a867;

    font-size: 17px;

}


@keyframes lgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================================
   DATA CARD
========================================================= */

.lg-data-card {

    position: absolute;

    z-index: 5;

    right: 0;

    bottom: 70px;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 225px;

    padding: 13px;

    border: 1px solid #e6e0f6;

    border-radius: 14px;

    background: rgba(255,255,255,.95);

    box-shadow:
        0 18px 40px rgba(50,40,90,.12);

    animation:
        lgFloat 4.5s ease-in-out infinite;

    animation-delay: .7s;

}


.lg-data-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #edf9f2;

    color: #2ea66a;

}


.lg-data-card span {

    display: block;

    color: #999fa8;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

}


.lg-data-card strong {

    display: block;

    margin-top: 3px;

    color: #333841;

    font-size: 16px;

}


.lg-data-card > i {

    margin-left: auto;

    color: #2ea66a;

}


/* =========================================================
   ORBITS
========================================================= */

.lg-orbit {

    position: absolute;

    border: 1px solid rgba(113,70,232,.14);

    border-radius: 50%;

    animation:
        lgRotate 20s linear infinite;

}


.orbit-one {

    width: 470px;

    height: 470px;

}


.orbit-two {

    width: 350px;

    height: 350px;

    animation-direction: reverse;

    animation-duration: 14s;

}


@keyframes lgRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   DOTS
========================================================= */

.lg-dots {

    position: absolute;

    right: 0;

    top: 25px;

    width: 80px;

    height: 80px;

    background-image:
        radial-gradient(
            #7146e8 1.5px,
            transparent 1.5px
        );

    background-size: 13px 13px;

    opacity: .25;

}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.lg-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.lg-highlight {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 155px;

    padding: 11px 13px;

    border: 1px solid #e8e4f0;

    border-radius: 12px;

    background: #fbfaff;

}


.lg-highlight > i {

    width: 37px;

    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #eee8ff;

    color: #7146e8;

    font-size: 14px;

}


.lg-highlight strong {

    display: block;

    color: #333841;

    font-size: 13px;

}


.lg-highlight span {

    display: block;

    margin-top: 2px;

    color: #9299a2;

    font-size: 10px;

}


/* =========================================================
   CAPABILITIES
========================================================= */

.lg-capabilities {

    background: #f8f9fc;

}


.lg-heading > p {

    max-width: 720px;

    margin: auto;

    color: #78838e;

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
   SERVICE CARDS
========================================================= */

.lg-service-card {

    position: relative;

    height: 100%;

    min-height: 315px;

    padding: 28px;

    overflow: hidden;

    border: 1px solid #e1e5eb;

    border-radius: 20px;

    background: #fff;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.lg-service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #7146e8,
            #a86bf0
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .4s ease;

}


.lg-service-card:hover {

    transform: translateY(-9px);

    border-color: rgba(113,70,232,.18);

    box-shadow:
        0 22px 50px rgba(35,45,80,.09);

}


.lg-service-card:hover::before {

    transform: scaleX(1);

}


.lg-card-number {

    color: #c5cad2;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;

}


.lg-card-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 20px 0;

    border-radius: 17px;

    background: #f0ebff;

    color: #7146e8;

    font-size: 22px;

    transition:
        all .35s ease;

}


.lg-service-card:hover
.lg-card-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7146e8,
            #9d5ee7
        );

    transform:
        rotate(-6deg)
        scale(1.08);

    box-shadow:
        0 12px 25px rgba(113,70,232,.2);

}


.lg-service-card h3 {

    margin-bottom: 11px;

    color: #22272f;

    font-size: 21px;

     font-weight: 700;

}


.lg-service-card p {

    margin: 0;

    color: #78828e;

    font-size: 15px;

    line-height: 1.65;

}


.lg-card-bottom {

    position: absolute;

    right: 25px;

    bottom: 20px;

    left: 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.lg-card-bottom span {

    color: #b2a8c9;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.lg-card-bottom i {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f1edfb;

    color: #7146e8;

    font-size: 10px;

    opacity: 0;

    transform: translateX(-8px);

    transition: all .3s ease;

}


.lg-service-card:hover
.lg-card-bottom i {

    opacity: 1;

    transform: translateX(0);

}


/* =========================================================
   JOURNEY
========================================================= */

.lg-journey {

    background: #fff;

}


.lg-main-btn {

    margin-top: 10px;

    padding: 13px 22px;

    border-radius: 9px;

    font-weight: 700;

    transition: all .3s ease;

}


.lg-main-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(13,110,253,.18);

}


.lg-journey-container {

    position: relative;

    padding: 8px 0;

}


.lg-journey-line {

    position: absolute;

    top: 35px;

    bottom: 35px;

    left: 30px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            #7146e8,
            #ddd4f5
        );

}


.lg-journey-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 20px;

}


.lg-journey-item:last-child {

    margin-bottom: 0;

}


.lg-journey-icon {

    position: relative;

    z-index: 3;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border: 6px solid #f3effc;

    border-radius: 17px;

    background: #fff;

    color: #7146e8;

    font-size: 19px;

    box-shadow:
        0 8px 20px rgba(60,40,100,.07);

    transition: all .35s ease;

}


.lg-journey-item:hover
.lg-journey-icon {

    color: #fff;

    background: #7146e8;

    transform:
        translateX(6px);

}


.lg-journey-item small {

    display: block;

    color: #a09aaf;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.lg-journey-item strong {

    display: block;

    margin-top: 3px;

    color: #292e36;

    font-size: 18px;

     font-weight: 700;

}


.lg-journey-item span {

    display: block;

    margin-top: 2px;

    color: #89929d;

    font-size: 13px;

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.lg-technology {

    background: #f8f9fc;

}


.lg-tech-points {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px 25px;

    margin-top: 28px;

}


.lg-tech-points div {

    color: #59636f;

    font-size: 14px;

}


.lg-tech-points i {

    margin-right: 8px;

    color: #7146e8;

}


/* =========================================================
   ANALYTICS CARD
========================================================= */

.lg-analytics-card {

    position: relative;

    min-height: 390px;

    padding: 28px;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #211648,
            #5836a5
        );

    color: #fff;

    box-shadow:
        0 25px 55px rgba(50,35,100,.16);

}


.lg-analytics-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.lg-analytics-header span {

    display: block;

    color: rgba(255,255,255,.48);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.lg-analytics-header strong {

    display: block;

    margin-top: 5px;

    font-size: 21px;

}


.lg-analytics-header > i {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 13px;

    background: rgba(255,255,255,.08);

    font-size: 18px;

}


/* =========================================================
   CHART
========================================================= */

.lg-chart {

    position: relative;

    height: 180px;

    margin-top: 35px;

    border-bottom: 1px solid rgba(255,255,255,.15);

    background-image:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );

    background-size: 100% 45px;

}


.lg-chart-line {

    position: absolute;

    left: 3%;

    right: 3%;

    bottom: 30px;

    height: 90px;

    border-top: 3px solid #fff;

    transform:
        skewY(-10deg)
        rotate(-1deg);

    border-radius: 50%;

    opacity: .85;

}


.chart-point {

    position: absolute;

    width: 10px;

    height: 10px;

    border: 3px solid #fff;

    border-radius: 50%;

    background: #7146e8;

    box-shadow:
        0 0 0 5px rgba(255,255,255,.1);

}


.point-a {
    left: 8%;
    bottom: 52px;
}

.point-b {
    left: 28%;
    bottom: 76px;
}

.point-c {
    left: 48%;
    bottom: 91px;
}

.point-d {
    left: 68%;
    bottom: 119px;
}

.point-e {
    right: 7%;
    bottom: 143px;
}


/* =========================================================
   CHART STATS
========================================================= */

.lg-chart-stats {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 20px;

}


.lg-chart-stats div {

    padding: 10px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 10px;

    background: rgba(255,255,255,.06);

}


.lg-chart-stats span {

    display: block;

    color: rgba(255,255,255,.45);

    font-size: 7px;

     font-weight: 700;

    letter-spacing: 1px;

}


.lg-chart-stats strong {

    display: block;

    margin-top: 4px;

    font-size: 18px;

}


/* =========================================================
   WHY
========================================================= */

.lg-why {

    background: #fff;

}


.lg-why-card {

    height: 100%;

    padding: 30px 25px;

    text-align: center;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    background: #fff;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.lg-why-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 40px rgba(35,45,80,.08);

}


.lg-why-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 16px;

    background: #f0ebff;

    color: #7146e8;

    font-size: 21px;

    transition: all .35s ease;

}


.lg-why-card:hover
.lg-why-icon {

    color: #fff;

    background: #7146e8;

    transform:
        rotate(-6deg);

}


.lg-why-card h3 {

    margin-bottom: 8px;

    color: #272c34;

    font-size: 20px;

     font-weight: 700;

}


.lg-why-card p {

    margin: 0;

    color: #7d8791;

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   FINAL CTA
========================================================= */

.lg-final-cta {

    background: #fff;

}


.lg-final-box {

    position: relative;

    overflow: hidden;

    padding: 75px 25px;

    text-align: center;

    border: 1px solid #e4dcf5;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #f0ebff,
            #faf7ff
        );

}


.lg-final-content {

    position: relative;

    z-index: 3;

}


.lg-final-content h2 {

    max-width: 850px;

    margin: 18px auto;

    color: #191d25;

    font-size: clamp(38px,4.5vw,58px);

    line-height: 1.08;

     font-weight: 700;

}


.lg-final-content h2 span {

    color: #0d6efd;

}


.lg-final-content p {

    max-width: 720px;

    margin: auto;

    color: #717c88;

    font-size: 18px;

    line-height: 1.7;

}


.lg-final-btn {

    margin-top: 28px;

    padding: 14px 25px;

    border-radius: 9px;

    font-weight: 700;

    transition: all .3s ease;

}


.lg-final-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(13,110,253,.18);

}


/* =========================================================
   FINAL ORBITS
========================================================= */

.lg-final-orbit {

    position: absolute;

    border: 1px solid rgba(113,70,232,.12);

    border-radius: 50%;

    animation:
        lgFinalOrbit 20s linear infinite;

}


.lg-final-orbit.orbit-a {

    width: 400px;

    height: 400px;

    top: -260px;

    left: -100px;

}


.lg-final-orbit.orbit-b {

    width: 500px;

    height: 500px;

    right: -180px;

    bottom: -350px;

    animation-direction: reverse;

}


@keyframes lgFinalOrbit {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .lg-visual {

        margin-bottom: 20px;

    }

}


@media (max-width: 767.98px) {

    .lg-title {

        font-size: 40px;

    }

    .lg-text {

        font-size: 16px;

    }

    .lg-funnel {

        width: 80%;

    }

    .lg-visual {

        min-height: 470px;

    }

    .lg-lead-badge {

        left: 0;

    }

    .lg-data-card {

        right: 0;

    }

    .lg-tech-points {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 575.98px) {

    .lg-title {

        font-size: 35px;

    }

    .lg-visual {

        min-height: 410px;

    }

    .lg-funnel {

        width: 85%;

        padding: 22px;

    }

    .lg-funnel-stage {

        font-size: 10px;

    }

    .lg-funnel-stage strong {

        font-size: 12px;

    }

    .lg-lead-badge {

        transform: scale(.85);

        transform-origin: left top;

    }

    .lg-data-card {

        transform: scale(.85);

        transform-origin: right bottom;

    }

    .lg-highlights {

        flex-direction: column;

    }

    .lg-highlight {

        width: 100%;

    }

    .lg-chart-stats {

        grid-template-columns: 1fr;

    }

    .lg-chart-stats div {

        display: flex;

        align-items: center;

        justify-content: space-between;

    }

    .lg-final-box {

        padding: 55px 18px;

    }

    .lg-final-content h2 {

        font-size: 35px;

    }

}