/* =========================================================
   DATA & PROCESS MANAGEMENT
========================================================= */

.dpm-intro,
.dpm-capabilities,
.dpm-lifecycle,
.dpm-process,
.dpm-technology,
.dpm-outcomes,
.dpm-final-cta {
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.dpm-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #7146e8;

    font-size: 13px;

     font-weight: 700;

    letter-spacing: 2px;

}


.dpm-section-label span {

    width: 34px;

    height: 3px;

    border-radius: 20px;

    background: currentColor;

}


.dpm-title {

    max-width: 760px;

    margin: 16px 0 22px;

    color: #1d2027;

    font-size: clamp(38px, 4.2vw, 58px);

    line-height: 1.08;

     font-weight: 700;

    letter-spacing: -1px;

}


.dpm-title span {

    color: #0d6efd;

}


.dpm-text {

    max-width: 700px;

    color: #6e7985;

    font-size: 17px;

    line-height: 1.75;

}


/* =========================================================
   DATA VISUAL
========================================================= */

.dpm-data-visual {

    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.dpm-glow {

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(113,70,232,.16),
            rgba(113,70,232,.04) 52%,
            transparent 70%
        );

    animation:
        dpmGlow 5s ease-in-out infinite;

}


@keyframes dpmGlow {

    0%,
    100% {
        transform: scale(.95);
    }

    50% {
        transform: scale(1.07);
    }

}


/* =========================================================
   MAIN DATA PANEL
========================================================= */

.dpm-main-panel {

    position: relative;

    z-index: 5;

    width: 420px;

    overflow: hidden;

    border: 1px solid #e4e0ed;

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(53,43,90,.14);

    animation:
        dpmPanelFloat 5s ease-in-out infinite;

}


@keyframes dpmPanelFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


.dpm-panel-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px;

    border-bottom: 1px solid #eeeaf4;

}


.dpm-panel-header span {

    display: block;

    color: #9a9fa8;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.7px;

}


.dpm-panel-header strong {

    display: block;

    margin-top: 4px;

    color: #2c3038;

    font-size: 15px;

}


.dpm-status {

    display: flex !important;

    align-items: center;

    gap: 6px;

    color: #3ca36b !important;

    font-size: 9px !important;

    letter-spacing: 1px !important;

}


.dpm-status span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #3ca36b;

    box-shadow:
        0 0 0 5px rgba(60,163,107,.1);

}


/* =========================================================
   SOURCE ROW
========================================================= */

.dpm-panel-body {

    padding: 18px 20px;

}


.dpm-source-row {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    border: 1px solid #eeeaf4;

    border-radius: 13px;

    background: #fbfaff;

    transition: all .3s ease;

}


.dpm-source-row:hover {

    transform: translateX(5px);

    border-color: #dcd3f2;

}


.dpm-source-row.active {

    border-color: #dcd2f4;

    background: #f5f0ff;

}


.dpm-source-icon {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #eee8ff;

    color: #7146e8;

    font-size: 15px;

}


.dpm-source-row strong {

    display: block;

    color: #373c45;

    font-size: 12px;

}


.dpm-source-row span {

    display: block;

    margin-top: 3px;

    color: #969ca5;

    font-size: 9px;

}


.dpm-source-row > i:last-child {

    margin-left: auto;

    color: #3ca36b;

    font-size: 13px;

}


.dpm-spin {

    color: #7146e8 !important;

    animation:
        dpmSpin 2s linear infinite;

}


@keyframes dpmSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   CONNECTOR
========================================================= */

.dpm-connector {

    position: relative;

    height: 15px;

    margin-left: 32px;

    border-left: 2px dashed #dcd6e8;

}


.dpm-connector span {

    position: absolute;

    top: 5px;

    left: -4px;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #7146e8;

    animation:
        dpmMove 1.7s linear infinite;

}


@keyframes dpmMove {

    from {
        top: 0;
    }

    to {
        top: 11px;
    }

}


/* =========================================================
   METRICS
========================================================= */

.dpm-metrics {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid #eeeaf4;

}


.dpm-metrics > div {

    padding: 17px 10px;

    text-align: center;

    border-right: 1px solid #eeeaf4;

}


.dpm-metrics > div:last-child {

    border-right: 0;

}


.dpm-metrics strong {

    display: block;

    color: #7146e8;

    font-size: 18px;

     font-weight: 700;

}


.dpm-metrics span {

    display: block;

    margin-top: 3px;

    color: #9298a1;

    font-size: 8px;

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.dpm-floating-card {

    position: absolute;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border: 1px solid #e5e0ee;

    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 18px 40px rgba(55,45,90,.12);

    animation:
        dpmFloat 4s ease-in-out infinite;

}


.dpm-card-top {

    top: 65px;

    left: 0;

}


.dpm-card-bottom {

    right: 0;

    bottom: 70px;

    animation-delay: .8s;

}


@keyframes dpmFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


.dpm-floating-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #f0ebff;

    color: #7146e8;

}


.dpm-floating-card span {

    display: block;

    color: #999fa8;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

}


.dpm-floating-card strong {

    display: block;

    margin-top: 3px;

    color: #343942;

    font-size: 11px;

}


/* =========================================================
   DOT PATTERN
========================================================= */

.dpm-dot-pattern {

    position: absolute;

    top: 10px;

    right: 0;

    width: 85px;

    height: 85px;

    opacity: .25;

    background-image:
        radial-gradient(
            #7146e8 1.5px,
            transparent 1.5px
        );

    background-size: 13px 13px;

}


/* =========================================================
   INTRO POINTS
========================================================= */

.dpm-intro-points {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 28px;

}


.dpm-intro-points > div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px;

    border: 1px solid #e8e4ef;

    border-radius: 12px;

    background: #fbfaff;

    color: #59636e;

    font-size: 13px;

    font-weight: 600;

}


.dpm-intro-points i {

    color: #7146e8;

}


/* =========================================================
   CAPABILITIES
========================================================= */

.dpm-capabilities {

    background: #f8f9fc;

}


.dpm-heading > p {

    max-width: 750px;

    margin: auto;

    color: #78838e;

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
   CAPABILITY CARD
========================================================= */

.dpm-capability-card {

    position: relative;

    height: 100%;

    min-height: 365px;

    padding: 28px;

    overflow: hidden;

    border: 1px solid #e0e4ea;

    border-radius: 20px;

    background: #fff;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.dpm-capability-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #7146e8,
            #a665ec
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .4s ease;

}


.dpm-capability-card:hover {

    transform: translateY(-8px);

    border-color: rgba(113,70,232,.2);

    box-shadow:
        0 22px 50px rgba(40,45,75,.09);

}


.dpm-capability-card:hover::before {

    transform: scaleX(1);

}


.dpm-card-topline {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.dpm-card-topline span {

    color: #c1c6ce;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}


.dpm-card-topline i {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: #f0ebff;

    color: #7146e8;

    transition: all .35s ease;

}


.dpm-capability-card:hover
.dpm-card-topline i {

    color: #fff;

    background: #7146e8;

    transform:
        rotate(-7deg)
        scale(1.07);

}


.dpm-capability-card h3 {

    margin: 25px 0 10px;

    color: #252a32;

    font-size: 21px;

    line-height: 1.3;

     font-weight: 700;

}


.dpm-capability-card p {

    color: #7a8590;

    font-size: 14px;

    line-height: 1.65;

}


.dpm-capability-card ul {

    margin: 20px 0 0;

    padding: 0;

    list-style: none;

}


.dpm-capability-card li {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 9px;

    color: #606b76;

    font-size: 13px;

}


.dpm-capability-card li i {

    color: #7146e8;

    font-size: 10px;

}


.dpm-card-arrow {

    position: absolute;

    right: 23px;

    bottom: 20px;

    width: 34px;

    height: 34px;

    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;

}


.dpm-capability-card:hover
.dpm-card-arrow {

    opacity: 1;

    transform: translateX(0);

}


/* =========================================================
   LIFECYCLE
========================================================= */

.dpm-lifecycle {

    background: #fff;

}


.dpm-btn {

    margin-top: 15px;

    padding: 13px 22px;

    border-radius: 9px;

    font-weight: 700;

}


.dpm-lifecycle-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 300px;

    padding: 35px 20px;

    border: 1px solid #e5e1ed;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #faf9fd,
            #fff
        );

    box-shadow:
        0 20px 50px rgba(50,45,80,.06);

}


.dpm-life-line {

    position: absolute;

    top: 87px;

    left: 9%;

    right: 9%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #7146e8,
            #dcd4ef
        );

}


.dpm-life-step {

    position: relative;

    z-index: 2;

    width: 18%;

    text-align: center;

}


.dpm-life-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 15px;

    border: 5px solid #f2eefb;

    border-radius: 17px;

    background: #fff;

    color: #7146e8;

    font-size: 18px;

    box-shadow:
        0 8px 20px rgba(50,40,90,.08);

    transition: all .35s ease;

}


.dpm-life-step:hover
.dpm-life-icon {

    color: #fff;

    background: #7146e8;

    transform:
        translateY(-6px)
        rotate(-5deg);

}


.dpm-life-step small {

    display: block;

    color: #a2a5ad;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

}


.dpm-life-step strong {

    display: block;

    margin-top: 4px;

    color: #30353d;

    font-size: 17px;

     font-weight: 700;

}


.dpm-life-step span {

    display: block;

    margin-top: 4px;

    color: #8a929c;

    font-size: 10px;

    line-height: 1.4;

}


/* =========================================================
   PROCESS
========================================================= */

.dpm-process {

    background: #f8f9fc;

}


.dpm-process-card {

    position: relative;

    height: 100%;

    padding: 30px 25px;

    text-align: center;

    border: 1px solid #e1e5eb;

    border-radius: 18px;

    background: #fff;

    transition: all .35s ease;

}


.dpm-process-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 42px rgba(40,45,70,.08);

}


.dpm-process-number {

    position: absolute;

    top: 15px;

    right: 18px;

    color: #c8ccd3;

    font-size: 11px;

    font-weight: 900;

}


.dpm-process-card > i {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 10px auto 18px;

    border-radius: 16px;

    background: #f0ebff;

    color: #7146e8;

    font-size: 20px;

    transition: all .35s ease;

}


.dpm-process-card:hover > i {

    color: #fff;

    background: #7146e8;

    transform: rotate(-7deg);

}


.dpm-process-card h3 {

    color: #2c3139;

    font-size: 20px;

     font-weight: 700;

}


.dpm-process-card p {

    margin: 8px 0 0;

    color: #7c8691;

    font-size: 13px;

    line-height: 1.65;

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.dpm-technology {

    background: #fff;

}


.dpm-tech-visual {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 27px;

    background:
        linear-gradient(
            135deg,
            #211546,
            #6137a9
        );

    box-shadow:
        0 25px 55px rgba(50,35,90,.18);

}


.dpm-tech-grid {

    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            rgba(255,255,255,.35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.35) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

}


.dpm-tech-circle {

    position: absolute;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    animation:
        dpmTechRotate 22s linear infinite;

}


.circle-one {

    width: 270px;

    height: 270px;

}


.circle-two {

    width: 390px;

    height: 390px;

    animation-direction: reverse;

    animation-duration: 28s;

}


@keyframes dpmTechRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


.dpm-tech-core {

    position: relative;

    z-index: 5;

    width: 120px;

    height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 30px;

    background: rgba(255,255,255,.1);

    color: #fff;

    text-align: center;

    backdrop-filter: blur(10px);

    animation:
        dpmCore 3s ease-in-out infinite;

}


.dpm-tech-core i {

    font-size: 28px;

}


.dpm-tech-core span {

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

}


@keyframes dpmCore {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

}


/* =========================================================
   TECH NODES
========================================================= */

.dpm-tech-node {

    position: absolute;

    z-index: 7;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 11px;

    background: rgba(255,255,255,.09);

    color: #fff;

    font-size: 9px;

     font-weight: 700;

    letter-spacing: 1px;

    backdrop-filter: blur(8px);

    animation:
        dpmNode 4s ease-in-out infinite;

}


.dpm-tech-node i {

    color: #ddd3ff;

}


.node-one {

    top: 65px;

    left: 50px;

}


.node-two {

    top: 85px;

    right: 45px;

    animation-delay: .6s;

}


.node-three {

    bottom: 65px;

    left: 60px;

    animation-delay: 1s;

}


.node-four {

    right: 45px;

    bottom: 75px;

    animation-delay: .8s;

}


@keyframes dpmNode {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   TECH LIST
========================================================= */

.dpm-tech-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px 25px;

    margin-top: 28px;

}


.dpm-tech-list div {

    color: #59636f;

    font-size: 14px;

}


.dpm-tech-list i {

    margin-right: 8px;

    color: #7146e8;

}


/* =========================================================
   OUTCOMES
========================================================= */

.dpm-outcomes {

    background: #f8f9fc;

}


.dpm-outcome {

    height: 100%;

    padding: 30px 24px;

    text-align: center;

    border: 1px solid #e1e5eb;

    border-radius: 18px;

    background: #fff;

    transition: all .35s ease;

}


.dpm-outcome:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(40,45,70,.08);

}


.dpm-outcome > div {

    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;

}


.dpm-outcome:hover
> div {

    color: #fff;

    background: #7146e8;

    transform: rotate(-7deg);

}


.dpm-outcome h3 {

    margin-bottom: 8px;

    color: #292e36;

    font-size: 19px;

     font-weight: 700;

}


.dpm-outcome p {

    margin: 0;

    color: #7c8691;

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   FINAL CTA
========================================================= */

.dpm-final-cta {

    background: #fff;

}


.dpm-final-box {

    position: relative;

    overflow: hidden;

    padding: 75px 25px;

    text-align: center;

    border: 1px solid #e3daf5;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #f0ebff,
            #fbf9ff
        );

}


.dpm-final-content {

    position: relative;

    z-index: 3;

}


.dpm-final-content h2 {

    max-width: 850px;

    margin: 18px auto;

    color: #1d2027;

    font-size: clamp(38px,4.5vw,58px);

    line-height: 1.08;

     font-weight: 700;

}


.dpm-final-content h2 span {

    color: #0d6efd;

}


.dpm-final-content p {

    max-width: 730px;

    margin: auto;

    color: #727c87;

    font-size: 18px;

    line-height: 1.7;

}


.dpm-final-btn {

    margin-top: 28px;

    padding: 14px 25px;

    border-radius: 9px;

    font-weight: 700;

    transition: all .3s ease;

}


.dpm-final-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(113,70,232,.2);

}


/* =========================================================
   FINAL DECORATION
========================================================= */

.dpm-final-circle {

    position: absolute;

    border: 1px solid rgba(113,70,232,.12);

    border-radius: 50%;

    animation:
        dpmFinalRotate 20s linear infinite;

}


.circle-left {

    width: 420px;

    height: 420px;

    top: -270px;

    left: -100px;

}


.circle-right {

    width: 500px;

    height: 500px;

    right: -180px;

    bottom: -340px;

    animation-direction: reverse;

}


@keyframes dpmFinalRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .dpm-data-visual {

        min-height: 500px;

    }

    .dpm-lifecycle-box {

        margin-top: 15px;

    }

}


@media (max-width: 767.98px) {

    .dpm-title {

        font-size: 40px;

    }

    .dpm-text {

        font-size: 16px;

    }

    .dpm-main-panel {

        width: 78%;

    }

    .dpm-intro-points {

        grid-template-columns: 1fr;

    }

    .dpm-lifecycle-box {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px;

        padding: 30px;

    }

    .dpm-life-step {

        width: auto;

    }

    .dpm-life-line {

        display: none;

    }

}


@media (max-width: 575.98px) {

    .dpm-title {

        font-size: 35px;

    }

    .dpm-data-visual {

        min-height: 440px;

    }

    .dpm-main-panel {

        width: 84%;

    }

    .dpm-floating-card {

        transform: scale(.82);

    }

    .dpm-card-top {

        left: -5px;

    }

    .dpm-card-bottom {

        right: -5px;

    }

    .dpm-metrics strong {

        font-size: 15px;

    }

    .dpm-metrics span {

        font-size: 7px;

    }

    .dpm-tech-visual {

        min-height: 370px;

    }

    .dpm-tech-node {

        padding: 8px 9px;

        font-size: 8px;

    }

    .node-one {

        left: 20px;

    }

    .node-two {

        right: 20px;

    }

    .node-three {

        left: 20px;

    }

    .node-four {

        right: 20px;

    }

    .dpm-tech-list {

        grid-template-columns: 1fr;

    }

    .dpm-final-box {

        padding: 55px 18px;

    }

    .dpm-final-content h2 {

        font-size: 35px;

    }

}