/* =========================================================
   CPAAS HERO SECTION
========================================================= */

.cpaas-hero-section {

    position: relative;

    width: 100%;

    min-height: 599px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 100px 0 0px;

    /* background:
        radial-gradient(
            circle at 80% 30%,
            rgba(247, 71, 128, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(105, 65, 255, 0.15),
            transparent 30%
        ),
        #100a21; */

          background: radial-gradient(
            circle at 80% 50%,
            rgba(87, 87, 209, .14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8f9ff 0%,
            #ffffff 50%,
            #f3f6ff 100%
        );

    color: #ffffff;

}


/* =========================================================
   GRID BACKGROUND
========================================================= */

.cpaas-grid-bg {

    position: absolute;

    inset: 0;

    opacity: 0.22;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.045) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 20%,
        #000 80%,
        transparent
    );

    animation: cpaasGridMove 18s linear infinite;

}

@keyframes cpaasGridMove {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(55px);
    }

}


/* =========================================================
   GLOW
========================================================= */

.cpaas-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    pointer-events: none;

    animation: cpaasGlowFloat 7s ease-in-out infinite;

}

.cpaas-glow-1 {

    width: 280px;
    height: 280px;

    top: 5%;
    right: 15%;

    background: rgba(247,71,128,0.18);

}

.cpaas-glow-2 {

    width: 220px;
    height: 220px;

    bottom: 10%;
    left: 5%;

    background: rgba(102,70,255,0.16);

    animation-delay: -3s;

}

.cpaas-glow-3 {

    width: 160px;
    height: 160px;

    top: 45%;
    right: 40%;

    background: rgba(255,100,180,0.10);

    animation-delay: -5s;

}

@keyframes cpaasGlowFloat {

    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(25px,-25px);
    }

}


/* =========================================================
   PARTICLES
========================================================= */

.cpaas-particle {

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #f74780;

    box-shadow: 0 0 15px rgba(247,71,128,0.8);

    animation: cpaasParticle 6s ease-in-out infinite;

}

.particle-1 {
    top: 18%;
    left: 8%;
}

.particle-2 {
    top: 72%;
    left: 22%;
    animation-delay: -2s;
}

.particle-3 {
    top: 25%;
    right: 8%;
    animation-delay: -4s;
}

.particle-4 {
    bottom: 20%;
    right: 18%;
    animation-delay: -1s;
}

.particle-5 {
    top: 55%;
    left: 48%;
    animation-delay: -3s;
}

.particle-6 {
    bottom: 12%;
    left: 65%;
    animation-delay: -5s;
}

@keyframes cpaasParticle {

    0%,100% {
        transform: translate(0,0);
        opacity: .35;
    }

    50% {
        transform: translate(20px,-30px);
        opacity: 1;
    }

}


/* =========================================================
   HERO CONTENT
========================================================= */

.cpaas-hero-content {

    position: relative;

    z-index: 5;

    max-width: 650px;

    animation: cpaasContentIn 1s ease both;

}

@keyframes cpaasContentIn {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   BADGE
========================================================= */

.cpaas-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    margin-bottom: 22px;

    /* border: 1px solid rgba(247,71,128,0.3); */

    border-radius: 50px;

 background: radial-gradient(circle at 85% 25%, rgba(108, 44, 255, .16), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(233, 30, 99, .12), transparent 30%),
        #ffffff;

    color: #1f1343;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}

.cpaas-badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c72d49;

    box-shadow:
        0 0 0 5px rgb(96 221 165 / 10%);

    animation: badgePulse 1.7s infinite;

}

@keyframes badgePulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }

}

.cpaas-badge-live {

    padding: 3px 7px;

    border-radius: 20px;

    background: #f74780;

    color: #fff;

    font-size: 8px;

}


/* =========================================================
   HEADING
========================================================= */

.cpaas-hero-content h1 {

    margin: 0 0 22px;

    font-size: clamp(42px, 4vw, 72px);

    line-height: 1.05;

    font-weight: 800;
    color: #1f1343;

    letter-spacing: -2px;

}

.cpaas-hero-content h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #1f1343,
            #c72d49,
            #f74780
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    background-size: 200% auto;

    animation: cpaasGradientText 4s linear infinite;

}

@keyframes cpaasGradientText {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.cpaas-hero-description {

    max-width: 570px;

    margin: 0 0 30px;

    color: #6c757d;

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   BUTTONS
========================================================= */

.cpaas-hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 35px;

}

.cpaas-primary-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 24px;

    border: 0;

    border-radius: 10px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f74780
        );

    color: #fff !important;

    font-size: 14px;

    font-weight: 700;

    /* box-shadow:
        0 12px 30px rgba(247,71,128,0.25); */

    transition: all .35s ease;

}

.cpaas-primary-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.3),
            transparent
        );

    transition: .6s;

}

.cpaas-primary-btn:hover::before {
    left: 100%;
}

.cpaas-primary-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px #f74780;
        color: #fff !important;

}


.cpaas-secondary-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 22px;

    border: 1px solid #f74780;

    border-radius: 10px;

    background: rgba(255,255,255,0.04);

    color: #1f1343 !important;

    font-size: 14px;

    font-weight: 600;

    transition: all .35s ease;

}

.cpaas-secondary-btn:hover {

    transform: translateY(-4px);

    border-color: #1f1343;

    color: #f74780 !important;

}


/* =========================================================
   TRUST
========================================================= */

.cpaas-trust-row {

    display: flex;

    align-items: center;

    gap: 22px;

}

.cpaas-trust-item {

    display: flex;

    align-items: center;

    gap: 10px;

}

.cpaas-trust-item > i {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 9px;

    background: rgba(247,71,128,0.1);

    color: #c72d49;

}

.cpaas-trust-item strong {

    display: block;

    color: #1f1343;

    font-size: 12px;

}

.cpaas-trust-item span {

    display: block;

    margin-top: 2px;

    color: #6c757d;

    font-size: 10px;

}

.cpaas-trust-divider {

    width: 1px;

    height: 32px;

    background: rgba(255,255,255,.12);

}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.cpaas-hero-visual {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

    animation: cpaasVisualIn 1s .2s ease both;

}

@keyframes cpaasVisualIn {

    from {
        opacity: 0;
        transform: translateX(40px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}


/* =========================================================
   RINGS
========================================================= */

.cpaas-ring {

    position: absolute;

    border: 1px solid rgba(247,71,128,.12);

    border-radius: 50%;

    animation: cpaasRingRotate 18s linear infinite;

}

.ring-one {

    width: 520px;
    height: 520px;

}

.ring-two {

    width: 410px;
    height: 410px;

    border-style: dashed;

    animation-duration: 25s;

    animation-direction: reverse;

}

.ring-three {

    width: 300px;
    height: 300px;

    border-color: rgba(196,130,255,.13);

    animation-duration: 14s;

}

@keyframes cpaasRingRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   MAIN PLATFORM CARD
========================================================= */

.cpaas-platform-card {

    position: relative;

    z-index: 5;

    width: 390px;

    padding: 18px;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(37,24,66,.96),
            rgba(20,13,40,.97)
        );

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        0 0 50px rgba(247,71,128,.08);

    animation: platformFloat 5s ease-in-out infinite;

}

@keyframes platformFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   PLATFORM HEADER
========================================================= */

.cpaas-platform-header {

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;

}

.cpaas-platform-title {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

}

.platform-status {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #55e68a;

    box-shadow: 0 0 12px #55e68a;

    animation: statusPulse 1.5s infinite;

}

@keyframes statusPulse {

    50% {
        opacity: .35;
    }

}

.platform-dots {

    display: flex;

    gap: 4px;

}

.platform-dots span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: rgba(255,255,255,.25);

}


/* =========================================================
   API TERMINAL
========================================================= */

.cpaas-api-terminal {

    margin-bottom: 13px;

    border-radius: 12px;

    overflow: hidden;

    background: #0c0817;

    border: 1px solid rgba(255,255,255,.07);

}

.terminal-top {

    display: flex;

    align-items: center;

    gap: 5px;

    padding: 9px 12px;

    border-bottom: 1px solid rgba(255,255,255,.06);

}

.terminal-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

}

.terminal-dot.red {
    background: #ff5f57;
}

.terminal-dot.yellow {
    background: #febc2e;
}

.terminal-dot.green {
    background: #28c840;
}

.terminal-title {

    margin-left: 8px;

    color: rgba(255,255,255,.35);

    font-size: 8px;

    letter-spacing: 1px;

}

.terminal-code {

    padding: 12px;

    color: #aaa;

    font-family: monospace;

    font-size: 10px;

    line-height: 1.8;

}

.code-purple {
    color: #c58cff;
}

.code-key {
    color: #f8a0be;
}

.code-green {
    color: #65e6a1;
}

.code-blue {
    color: #70b9ff;
}

.code-pink {
    color: #f74780;
}


/* =========================================================
   CHANNEL GRID
========================================================= */

.cpaas-channel-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

}

.cpaas-channel-card {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 10px;

    background: rgba(255,255,255,.035);

    transition: all .3s ease;

}

.cpaas-channel-card:hover {

    transform: translateY(-3px);

    background: rgba(255,255,255,.07);

    border-color: rgba(247,71,128,.25);

}

.channel-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 8px;

    background: #f74780;

    color: #fff;

}

.channel-info {

    flex: 1;

}

.channel-info strong {

    display: block;

    color: #fff;

    font-size: 10px;

}

.channel-info span {

    display: block;

    color: rgba(255,255,255,.38);

    font-size: 8px;

}

.channel-check {

    color: #55e68a;

    font-size: 9px;

}


/* =========================================================
   PLATFORM FOOTER
========================================================= */

.cpaas-platform-footer {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 13px;

    padding-top: 13px;

    border-top: 1px solid rgba(255,255,255,.07);

}

.cpaas-platform-footer > div:first-child span {

    display: block;

    color: rgba(255,255,255,.4);

    font-size: 8px;

}

.cpaas-platform-footer > div:first-child strong {

    color: #fff;

    font-size: 15px;

}

.mini-chart {

    flex: 1;

    height: 30px;

    display: flex;

    align-items: flex-end;

    gap: 3px;

}

.mini-chart span {

    flex: 1;

    border-radius: 3px 3px 0 0;

    background:
        linear-gradient(
            to top,
            #f74780,
            #c98bff
        );

    animation: chartPulse 1.4s ease-in-out infinite alternate;

}

.mini-chart span:nth-child(1) {
    height: 35%;
}

.mini-chart span:nth-child(2) {
    height: 55%;
    animation-delay: .1s;
}

.mini-chart span:nth-child(3) {
    height: 45%;
    animation-delay: .2s;
}

.mini-chart span:nth-child(4) {
    height: 75%;
    animation-delay: .3s;
}

.mini-chart span:nth-child(5) {
    height: 60%;
    animation-delay: .4s;
}

.mini-chart span:nth-child(6) {
    height: 90%;
    animation-delay: .5s;
}

.mini-chart span:nth-child(7) {
    height: 72%;
    animation-delay: .6s;
}

@keyframes chartPulse {

    from {
        transform: scaleY(.75);
    }

    to {
        transform: scaleY(1);
    }

}

.growth {

    color: #55e68a;

    font-size: 9px;

    white-space: nowrap;

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.cpaas-floating-card {

    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 145px;

    padding: 10px 12px;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 12px;

    background: rgba(27,18,49,.9);

    backdrop-filter: blur(15px);

    box-shadow: 0 15px 35px rgba(0,0,0,.3);

    animation: floatingCard 4s ease-in-out infinite;

}

.cpaas-floating-card strong {

    display: block;

    color: #fff;

    font-size: 10px;

}

.cpaas-floating-card span {

    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.4);

    font-size: 8px;

}

.floating-card-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 8px;

    background: #f74780;

    color: #fff;

}

.floating-check {

    margin-left: auto;

    color: #55e68a;

    font-size: 11px;

}

.floating-sms {

    top: 8%;

    left: 0;

}

.floating-whatsapp {

    top: 24%;

    right: -5%;

    animation-delay: -1.5s;

}

.floating-voice {

    bottom: 13%;

    left: 2%;

    animation-delay: -3s;

}

@keyframes floatingCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   API BUBBLE
========================================================= */

.cpaas-api-bubble {

    position: absolute;

    right: 4%;

    bottom: 8%;

    z-index: 12;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    border: 1px solid rgba(247,71,128,.35);

    background:
        linear-gradient(
            135deg,
            rgba(247,71,128,.18),
            rgba(111,73,255,.15)
        );

    color: #f74780;

    box-shadow:
        0 0 30px rgba(247,71,128,.18);

    animation: apiBubble 3s ease-in-out infinite;

}

.cpaas-api-bubble i {
    font-size: 17px;
}

.cpaas-api-bubble span {
    font-size: 8px;
    font-weight: 700;
}

@keyframes apiBubble {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}


/* =========================================================
   CENTER ORB
========================================================= */

.cpaas-center-orb {

    position: absolute;

    z-index: 8;

    width: 62px;
    height: 62px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            #f74780,
            #f74780 60%,
            transparent 70%
        );

    box-shadow:
        0 0 40px rgba(247,71,128,.35);

    animation: centerOrbPulse 2.5s ease-in-out infinite;

}

.orb-inner {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #211437;

    color: #fff;

}

@keyframes centerOrbPulse {

    0%,100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(247,71,128,.25);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 55px rgba(247,71,128,.45);
    }

}


/* =========================================================
   SCROLL
========================================================= */

.cpaas-scroll-indicator {

    position: absolute;

    bottom: 22px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,.3);

    font-size: 8px;

    letter-spacing: 2px;

    z-index: 5;

}

.cpaas-scroll-indicator i {

    color: #f74780;

    animation: scrollArrow 1.5s infinite;

}

@keyframes scrollArrow {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .cpaas-hero-section {
        min-height: 680px;
    }

    .cpaas-platform-card {
        width: 370px;
    }

    .ring-one {
        width: 470px;
        height: 470px;
    }

    .ring-two {
        width: 370px;
        height: 370px;
    }

    .ring-three {
        width: 280px;
        height: 280px;
    }

    .floating-whatsapp {
        right: -2%;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cpaas-hero-section {

        min-height: auto;

        padding: 100px 0 90px;

    }

    .cpaas-hero-content {

        max-width: 720px;

        margin: 0 auto;

        text-align: center;

    }

    .cpaas-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .cpaas-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cpaas-hero-buttons {

        justify-content: center;

    }

    .cpaas-trust-row {

        justify-content: center;

    }

    .cpaas-hero-visual {

        min-height: 570px;

        margin-top: 30px;

    }

    .floating-sms {
        left: 7%;
    }

    .floating-voice {
        left: 8%;
    }

    .floating-whatsapp {
        right: 7%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cpaas-hero-section {

        padding: 85px 0 75px;

    }

    .cpaas-hero-content h1 {

        font-size: 43px;

        letter-spacing: -1.5px;

    }

    .cpaas-hero-description {

        font-size: 15px;

        line-height: 1.7;

        padding: 0 10px;

    }

    .cpaas-hero-buttons {

        flex-direction: column;

        width: 100%;

        gap: 10px;

    }

    .cpaas-primary-btn,
    .cpaas-secondary-btn {

        width: 100%;

        max-width: 290px;

        justify-content: center;

    }

    .cpaas-trust-row {

        flex-direction: column;

        gap: 12px;

    }

    .cpaas-trust-divider {

        display: none;

    }

    .cpaas-hero-visual {

        min-height: 500px;

        margin-top: 15px;

        transform: scale(.88);

    }

    .cpaas-platform-card {

        width: 340px;

    }

    .ring-one {

        width: 410px;
        height: 410px;

    }

    .ring-two {

        width: 330px;
        height: 330px;

    }

    .ring-three {

        width: 250px;
        height: 250px;

    }

    .floating-sms {

        left: -2%;

        top: 5%;

    }

    .floating-whatsapp {

        right: -2%;

        top: 23%;

    }

    .floating-voice {

        left: -2%;

        bottom: 10%;

    }

    .cpaas-api-bubble {

        right: 0;

        bottom: 6%;

    }

    .cpaas-scroll-indicator {

        display: none;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cpaas-hero-section {

        padding: 70px 0 55px;

    }

    .cpaas-hero-content h1 {

        font-size: 35px;

        line-height: 1.08;

    }

    .cpaas-hero-description {

        font-size: 14px;

    }

    .cpaas-hero-badge {

        font-size: 9px;

        letter-spacing: 1px;

    }

    .cpaas-hero-visual {

        min-height: 430px;

        transform: scale(.72);

        transform-origin: center center;

        margin-top: -10px;

        margin-bottom: -35px;

    }

    .cpaas-platform-card {

        width: 360px;

    }

    .floating-sms {

        left: -12%;

    }

    .floating-whatsapp {

        right: -12%;

    }

    .floating-voice {

        left: -12%;

    }

    .cpaas-api-bubble {

        right: -8%;

    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .cpaas-hero-content h1 {

        font-size: 31px;

    }

    .cpaas-hero-description {

        font-size: 13px;

    }

    .cpaas-hero-visual {

        transform: scale(.62);

        margin-top: -11px;

        margin-bottom: -80px;

    }

}


/* =========================================================
   CPAAS BENEFITS - PREMIUM ANIMATED DESIGN
========================================================= */

.cpaas-benefits-section {

    position: relative;

    overflow: hidden;

    padding: 100px 0 90px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(247, 71, 128, .055),
            transparent 28%
        ),
        #ffffff;

}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.cpaas-bg-grid {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(31, 19, 67, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(31, 19, 67, .035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 75%
        );

}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.cpaas-bg-orb {

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .10;

    pointer-events: none;

    animation: backgroundOrbMove 10s ease-in-out infinite;

}

.cpaas-orb-one {

    left: -230px;
    top: 20%;

    background: #f74780;

}

.cpaas-orb-two {

    right: -220px;
    top: 10%;

    background: #6246ea;

    animation-delay: -3s;

}

.cpaas-orb-three {

    left: 45%;
    bottom: -300px;

    width: 500px;
    height: 500px;

    background: #64b9ca;

    animation-delay: -6s;

}


@keyframes backgroundOrbMove {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0)
            scale(1);

    }

    50% {

        transform:
            translate3d(35px, -25px, 0)
            scale(1.12);

    }

}


/* =========================================================
   HEADING
========================================================= */

.cpaas-benefits-heading {

    position: relative;

    z-index: 5;

    max-width: 750px;

    margin: 0 auto 65px;

    text-align: center;

}


.cpaas-heading-badge {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 14px;

    margin-bottom: 14px;

    border: 1px solid rgba(247, 71, 128, .18);

    border-radius: 30px;

    background: rgba(247, 71, 128, .05);

    color: #1f1343;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.badge-pulse {

    position: relative;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #f74780;

    box-shadow:
        0 0 0 0 rgba(247, 71, 128, .5);

    animation: badgePulse 2s infinite;

}


@keyframes badgePulse {

    0% {

        box-shadow:
            0 0 0 0 rgba(247, 71, 128, .5);

    }

    70% {

        box-shadow:
            0 0 0 7px rgba(247, 71, 128, 0);

    }

    100% {

        box-shadow:
            0 0 0 0 rgba(247, 71, 128, 0);

    }

}


.cpaas-benefits-heading h2 {

    margin: 0;

    color: #1f1343;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -.7px;

}


.cpaas-benefits-heading h2 span {

    display: inline-block;

    background:
        linear-gradient(
            90deg,
            #1f1343,
            #c72d49,
            #f74780
        );

    background-size: 300% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: gradientTextMove 6s linear infinite;

}


@keyframes gradientTextMove {

    to {
        background-position: 300% center;
    }

}


.cpaas-benefits-heading p {

    max-width: 600px;

    margin: 15px auto 0;

    color: #777;

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.cpaas-benefits-wrapper {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        410px
        minmax(0, 1fr);

    align-items: center;

    gap: 45px;

    max-width: 1240px;

    margin: 0 auto;

}


/* =========================================================
   BENEFIT SIDES
========================================================= */

.cpaas-benefits-side {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.cpaas-benefits-left {

    align-items: flex-end;

}


.cpaas-benefits-right {

    align-items: flex-start;

}


/* =========================================================
   BENEFIT CARD
========================================================= */

.cpaas-benefit-card {

    position: relative;

    display: flex;

    align-items: flex-start;

    width: 100%;

    max-width: 330px;

    min-height: 105px;

    padding: 16px;

    overflow: hidden;

    border: 1px solid rgba(31, 19, 67, .08);

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.98),
            rgba(250,250,255,.95)
        );

    box-shadow:
        0 8px 25px rgba(31,19,67,.06);

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        border-color .45s ease;

    animation:
        benefitCardFloat 5s ease-in-out infinite;

}


.cpaas-benefit-card:nth-child(2) {
    animation-delay: -.7s;
}

.cpaas-benefit-card:nth-child(3) {
    animation-delay: -1.4s;
}

.cpaas-benefit-card:nth-child(4) {
    animation-delay: -2.1s;
}

.cpaas-benefit-card:nth-child(5) {
    animation-delay: -2.8s;
}


@keyframes benefitCardFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-5px);

    }

}


/* =========================================================
   CARD HOVER
========================================================= */

.cpaas-benefit-card:hover {

    transform:
        translateY(-9px)
        scale(1.025);

    border-color:
        rgba(247, 71, 128, .28);

    box-shadow:
        0 20px 45px rgba(31,19,67,.12),
        0 0 0 1px rgba(247,71,128,.04);

}


.cpaas-benefit-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        linear-gradient(
            180deg,
            #1f1343,
            #c72d49,
            #f74780
        );

    transform:
        scaleY(0);

    transform-origin:
        center;

    transition:
        transform .4s ease;

}


.cpaas-benefit-card:hover::before {

    transform:
        scaleY(1);

}


/* =========================================================
   CARD SHINE
========================================================= */

.benefit-card-shine {

    position: absolute;

    width: 80px;
    height: 200%;

    top: -50%;

    left: -120px;

    transform:
        rotate(25deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.75),
            transparent
        );

    transition:
        left .7s ease;

    pointer-events: none;

}


.cpaas-benefit-card:hover
.benefit-card-shine {

    left: 110%;

}


/* =========================================================
   ICON
========================================================= */

.benefit-card-icon {

    position: relative;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-right: 13px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(100,185,202,.12),
            rgba(247,71,128,.08)
        );

    color: #c72d49;

    font-size: 18px;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;

}


.benefit-card-icon::after {

    content: "";

    position: absolute;

    inset: -4px;

    border-radius: inherit;

    border: 1px solid rgba(100,185,202,.15);

    transform: scale(.8);

    opacity: 0;

    transition:
        transform .4s ease,
        opacity .4s ease;

}


.cpaas-benefit-card:hover
.benefit-card-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #f74780,
            #f74780
        );

    transform:
        scale(1.1)
        rotate(-6deg);

}


.cpaas-benefit-card:hover
.benefit-card-icon::after {

    transform: scale(1);

    opacity: 1;

}


/* =========================================================
   CARD CONTENT
========================================================= */

.benefit-card-content {

    flex: 1;

}


.benefit-number {

    margin-bottom: 2px;

    color: #b4b0bc;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.benefit-card-content h3 {

    margin: 0 0 6px;

    color: #1f2937;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 800;

}


.benefit-card-content p {

    margin: 0;

    color: #777;

    font-size: 12px;

    line-height: 1.55;

}


/* =========================================================
   CENTER VISUAL
========================================================= */

.cpaas-benefits-center {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 410px;
    height: 470px;

}


/* =========================================================
   CENTRAL GLOW
========================================================= */

.cpaas-center-glow {

    position: absolute;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(247,71,128,.20),
            rgba(98,70,234,.08) 42%,
            transparent 72%
        );

    filter: blur(10px);

    animation:
        centerGlowPulse 3.5s ease-in-out infinite;

}


@keyframes centerGlowPulse {

    0%,
    100% {

        transform: scale(.88);

        opacity: .65;

    }

    50% {

        transform: scale(1.18);

        opacity: 1;

    }

}


/* =========================================================
   ORBITS
========================================================= */

.cpaas-orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    pointer-events: none;

}


.orbit-large {

    width: 380px;
    height: 380px;

    border:
        1px dashed rgba(100,185,202,.27);

    animation:
        orbitClockwise 22s linear infinite;

}


.orbit-medium {

    width: 310px;
    height: 310px;

    border:
        1px solid rgba(247,71,128,.18);

    animation:
        orbitAntiClockwise 16s linear infinite;

}


.orbit-small {

    width: 235px;
    height: 235px;

    border:
        1px dashed rgba(98,70,234,.30);

    animation:
        orbitClockwise 12s linear infinite;

}


@keyframes orbitClockwise {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


@keyframes orbitAntiClockwise {

    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

}


/* =========================================================
   ORBIT DOTS
========================================================= */

.orbit-dot {

    position: absolute;

    z-index: 4;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #64b9ca;

    box-shadow:
        0 0 0 4px rgba(100,185,202,.10),
        0 0 15px rgba(100,185,202,.45);

    animation:
        orbitDotPulse 2s ease-in-out infinite;

}


.orbit-dot-1 {

    top: 52px;
    left: 50%;

}

.orbit-dot-2 {

    top: 125px;
    right: 32px;

    animation-delay: -.3s;

}

.orbit-dot-3 {

    bottom: 80px;
    right: 48px;

    animation-delay: -.6s;

}

.orbit-dot-4 {

    bottom: 45px;
    left: 50%;

    animation-delay: -.9s;

}

.orbit-dot-5 {

    bottom: 90px;
    left: 42px;

    animation-delay: -1.2s;

}

.orbit-dot-6 {

    top: 125px;
    left: 32px;

    animation-delay: -1.5s;

}


@keyframes orbitDotPulse {

    0%,
    100% {

        transform: scale(.8);

        opacity: .55;

    }

    50% {

        transform: scale(1.35);

        opacity: 1;

    }

}


/* =========================================================
   CENTER IMAGE
========================================================= */

.cpaas-center-image {

    position: relative;

    z-index: 8;

    width: 245px;

    animation:
        centerImageFloat 4s ease-in-out infinite;

}


.cpaas-center-image img {

    position: relative;

    z-index: 5;

    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 30px rgba(31,19,67,.16)
        );

}


@keyframes centerImageFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


/* =========================================================
   IMAGE GLOW RING
========================================================= */

.image-glow-ring {

    position: absolute;

    z-index: -1;

    left: 50%;
    top: 50%;

    width: 185px;
    height: 185px;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(247,71,128,.17),
            transparent 68%
        );

    animation:
        imageRingPulse 3s ease-in-out infinite;

}


@keyframes imageRingPulse {

    0%,
    100% {

        transform:
            translate(-50%, -50%)
            scale(.85);

    }

    50% {

        transform:
            translate(-50%, -50%)
            scale(1.18);

    }

}


/* =========================================================
   FLOATING COMMUNICATION NODES
========================================================= */

.cpaas-floating-node {

    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border:
        1px solid rgba(100,185,202,.28);

    border-radius: 50%;

    background:
        rgba(255,255,255,.96);

    color: #64b9ca;

    font-size: 15px;

    box-shadow:
        0 10px 25px rgba(31,19,67,.10);

    backdrop-filter:
        blur(8px);

    animation:
        floatingNode 3.5s ease-in-out infinite;

}


.cpaas-floating-node::before {

    content: "";

    position: absolute;

    inset: -5px;

    border:
        1px solid rgba(100,185,202,.12);

    border-radius: 50%;

    animation:
        nodeRing 2.5s linear infinite;

}


@keyframes floatingNode {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0);

    }

    50% {

        transform:
            translateY(-9px)
            rotate(5deg);

    }

}


@keyframes nodeRing {

    0% {

        transform: scale(.85);

        opacity: 1;

    }

    100% {

        transform: scale(1.35);

        opacity: 0;

    }

}


/* NODE POSITIONS */

.node-message {

    top: 55px;
    left: 50px;

}

.node-whatsapp {

    top: 105px;
    right: 30px;

    color: #25d366;

    animation-delay: -.6s;

}

.node-phone {

    bottom: 105px;
    right: 35px;

    color: #6246ea;

    animation-delay: -1.2s;

}

.node-email {

    bottom: 50px;
    left: 50px;

    color: #f74780;

    animation-delay: -1.8s;

}

.node-ai {

    top: 205px;
    left: 15px;

    color: #6246ea;

    animation-delay: -2.4s;

}

.node-security {

    top: 205px;
    right: 8px;

    color: #64b9ca;

    animation-delay: -3s;

}


/* =========================================================
   CENTER LABEL
========================================================= */

.cpaas-center-label {

    position: absolute;

    z-index: 12;

    bottom: 88px;
    left: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    transform:
        translateX(-50%);

    padding: 5px 13px;

    border:
        1px solid rgba(247,71,128,.15);

    border-radius: 20px;

    background:
        rgba(255,255,255,.88);

    box-shadow:
        0 8px 20px rgba(31,19,67,.06);

    backdrop-filter:
        blur(10px);

}


.cpaas-center-label span {

    color: #999;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.cpaas-center-label strong {

    color: #1f1343;

    font-size: 14px;

    font-weight: 900;

}


/* =========================================================
   CENTER CONNECTING LINES
========================================================= */

.center-line {

    position: absolute;

    z-index: 1;

    height: 1px;

    width: 65px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(100,185,202,.45),
            transparent
        );

    opacity: .55;

    animation:
        connectionLinePulse 2.5s ease-in-out infinite;

}


.line-left-top {

    left: -10px;
    top: 165px;

    transform:
        rotate(-15deg);

}


.line-left-bottom {

    left: -10px;
    bottom: 155px;

    transform:
        rotate(15deg);

    animation-delay: -.8s;

}


.line-right-top {

    right: -10px;
    top: 165px;

    transform:
        rotate(15deg);

    animation-delay: -1.2s;

}


.line-right-bottom {

    right: -10px;
    bottom: 155px;

    transform:
        rotate(-15deg);

    animation-delay: -1.8s;

}


@keyframes connectionLinePulse {

    0%,
    100% {

        opacity: .2;

    }

    50% {

        opacity: .8;

    }

}


/* =========================================================
   BOTTOM STATS
========================================================= */

.cpaas-benefits-stats {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    max-width: 900px;

    margin: 70px auto 0;

    padding: 18px 25px;

    border:
        1px solid rgba(31,19,67,.07);

    border-radius: 16px;

    background:
        rgba(255,255,255,.80);

    box-shadow:
        0 12px 35px rgba(31,19,67,.06);

    backdrop-filter:
        blur(12px);

}


.cpaas-stat-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 22px;

}


.stat-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 10px;

    background:
        rgba(247,71,128,.07);

    color: #f74780;

    font-size: 13px;

}


.cpaas-stat-item strong {

    display: block;

    color: #1f1343;

    font-size: 12px;

    line-height: 1.2;

}


.cpaas-stat-item span {

    display: block;

    margin-top: 2px;

    color: #999;

    font-size: 9px;

}


.cpaas-stat-divider {

    width: 1px;

    height: 32px;

    background:
        rgba(31,19,67,.09);

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .cpaas-benefits-wrapper {

        grid-template-columns:
            minmax(0, 1fr)
            340px
            minmax(0, 1fr);

        gap: 20px;

    }

    .cpaas-benefits-center {

        width: 340px;
        height: 430px;

    }

    .cpaas-benefit-card {

        max-width: 300px;

    }

    .cpaas-center-image {

        width: 210px;

    }

    .orbit-large {

        width: 330px;
        height: 330px;

    }

    .orbit-medium {

        width: 275px;
        height: 275px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cpaas-benefits-section {

        padding: 80px 0;

    }

    .cpaas-benefits-heading {

        margin-bottom: 40px;

    }

    .cpaas-benefits-heading h2 {

        font-size: 36px;

    }

    .cpaas-benefits-wrapper {

        grid-template-columns: 1fr 1fr;

        gap: 18px;

    }

    .cpaas-benefits-center {

        grid-column: 1 / -1;
        grid-row: 1;

        width: 380px;
        height: 390px;

        margin: 0 auto 15px;

    }

    .cpaas-benefits-left {

        grid-column: 1;
        grid-row: 2;

        align-items: stretch;

    }

    .cpaas-benefits-right {

        grid-column: 2;
        grid-row: 2;

        align-items: stretch;

    }

    .cpaas-benefit-card {

        max-width: 100%;

    }

    .cpaas-benefits-stats {

        margin-top: 45px;

    }

    .cpaas-stat-item {

        padding: 0 10px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cpaas-benefits-section {

        padding: 65px 0;

    }

    .cpaas-benefits-heading {

        margin-bottom: 30px;

        padding: 0 10px;

    }

    .cpaas-heading-badge {

        font-size: 8px;

        letter-spacing: 1.3px;

    }

    .cpaas-benefits-heading h2 {

        font-size: 30px;

        line-height: 1.2;

    }

    .cpaas-benefits-heading p {

        font-size: 15px;

        line-height: 1.6;

    }

    .cpaas-benefits-wrapper {

        display: flex;

        flex-direction: column;

        gap: 18px;

    }

    /* CENTER FIRST */

    .cpaas-benefits-center {

        order: 1;

        width: 320px;
        height: 350px;

        margin: 0 auto 5px;

    }

    /* LEFT CARDS */

    .cpaas-benefits-left {

        order: 2;

        width: 100%;

    }

    /* RIGHT CARDS */

    .cpaas-benefits-right {

        order: 3;

        width: 100%;

    }

    .cpaas-benefit-card {

        max-width: 100%;

        min-height: 100px;

        padding: 14px;

        border-radius: 13px;

    }

    .benefit-card-icon {

        flex: 0 0 44px;

        width: 44px;
        height: 44px;

        margin-right: 11px;

        font-size: 16px;

    }

    .benefit-card-content h3 {

        font-size: 12px;

    }

    .benefit-card-content p {

        font-size: 12px;

        line-height: 1.5;

    }

    .benefit-number {

        font-size: 8px;

    }

    .cpaas-center-image {

        width: 180px;

    }

    .orbit-large {

        width: 295px;
        height: 295px;

    }

    .orbit-medium {

        width: 245px;
        height: 245px;

    }

    .orbit-small {

        width: 190px;
        height: 190px;

    }

    .cpaas-center-glow {

        width: 170px;
        height: 170px;

    }

    .node-message {

        top: 40px;
        left: 28px;

    }

    .node-whatsapp {

        top: 70px;
        right: 15px;

    }

    .node-phone {

        bottom: 75px;
        right: 18px;

    }

    .node-email {

        bottom: 35px;
        left: 28px;

    }

    .node-ai {

        top: 155px;
        left: 2px;

    }

    .node-security {

        top: 155px;
        right: -2px;

    }

    .cpaas-floating-node {

        width: 37px;
        height: 37px;

        font-size: 12px;

    }

    .cpaas-center-label {

        bottom: 62px;

    }

    .center-line {

        display: none;

    }

    /* STATS */

    .cpaas-benefits-stats {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;

        margin-top: 35px;

        padding: 17px;

    }

    .cpaas-stat-divider {

        display: none;

    }

    .cpaas-stat-item {

        padding: 7px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cpaas-benefits-section {

        padding: 55px 0;

    }

    .cpaas-benefits-heading h2 {

        font-size: 26px;

    }

    .cpaas-benefits-heading p {

        font-size: 15px;

    }

    .cpaas-benefits-center {

        width: 285px;
        height: 315px;

    }

    .cpaas-center-image {

        width: 160px;

    }

    .orbit-large {

        width: 270px;
        height: 270px;

    }

    .orbit-medium {

        width: 220px;
        height: 220px;

    }

    .orbit-small {

        width: 175px;
        height: 175px;

    }

    .cpaas-floating-node {

        width: 34px;
        height: 34px;

        font-size: 10px;

    }

    .node-message {

        top: 35px;
        left: 22px;

    }

    .node-whatsapp {

        top: 62px;
        right: 12px;

    }

    .node-phone {

        bottom: 65px;
        right: 15px;

    }

    .node-email {

        bottom: 30px;
        left: 22px;

    }

    .node-ai {

        top: 140px;
        left: 0;

    }

    .node-security {

        top: 140px;
        right: -2px;

    }

    .cpaas-benefit-card {

        min-height: 94px;

        padding: 12px;

    }

    .benefit-card-icon {

        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        font-size: 14px;

    }

    .benefit-card-content h3 {

        font-size: 11px;

    }

    .benefit-card-content p {

        font-size: 12px;

    }

    .cpaas-stat-item {

        gap: 7px;

    }

    .stat-icon {

        width: 30px;
        height: 30px;

        font-size: 11px;

    }

    .cpaas-stat-item strong {

        font-size: 10px;

    }

    .cpaas-stat-item span {

        font-size: 8px;

    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .cpaas-benefits-center {

        width: 260px;
        height: 290px;

    }

    .cpaas-center-image {

        width: 145px;

    }

    .orbit-large {

        width: 245px;
        height: 245px;

    }

    .orbit-medium {

        width: 205px;
        height: 205px;

    }

    .orbit-small {

        width: 160px;
        height: 160px;

    }

    .cpaas-benefit-card {

        padding: 10px;

    }

}



/* =========================================================
   CPAAS FAQ SECTION
========================================================= */

.cpaas-faq-section {

    position: relative;

    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfaff 50%,
            #ffffff 100%
        );

}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.cpaas-faq-orb {

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    filter: blur(110px);

    opacity: .08;

    pointer-events: none;

    animation:
        faqOrbFloat 9s ease-in-out infinite;

}


.faq-orb-left {

    left: -200px;
    top: 20%;

    background: #f74780;

}


.faq-orb-right {

    right: -200px;
    bottom: 5%;

    background: #6246ea;

    animation-delay: -4s;

}


@keyframes faqOrbFloat {

    0%,
    100% {

        transform:
            translate(0, 0)
            scale(1);

    }

    50% {

        transform:
            translate(30px, -25px)
            scale(1.12);

    }

}


/* =========================================================
   FAQ HEADING
========================================================= */

.cpaas-faq-heading {

    position: relative;

    z-index: 5;

    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;

}


.cpaas-faq-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 15px;

    margin-bottom: 14px;

    border: 1px solid rgba(247,71,128,.18);

    border-radius: 30px;

    background: rgba(247,71,128,.05);

    color: #1f1343;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.faq-badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #f74780;

    box-shadow:
        0 0 0 5px rgba(247,71,128,.08);

    animation:
        faqBadgePulse 2s infinite;

}


@keyframes faqBadgePulse {

    0%,
    100% {

        box-shadow:
            0 0 0 0 rgba(247,71,128,.15);

    }

    50% {

        box-shadow:
            0 0 0 6px rgba(247,71,128,0);

    }

}


.cpaas-faq-heading h2 {

    margin: 0;

    color: #1f1343;

    font-size: 42px;

    font-weight: 800;

    line-height: 1.15;

}


.cpaas-faq-heading h2 span {

    background:
        linear-gradient(
            90deg,
            #c72d49,
            #1f1343,
            #f74780
        );

    background-size: 300% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation:
        faqGradientMove 6s linear infinite;

}


@keyframes faqGradientMove {

    to {

        background-position:
            300% center;

    }

}


.cpaas-faq-heading p {

    max-width: 620px;

    margin: 14px auto 0;

    color: #777;

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   FAQ VISUAL
========================================================= */

.cpaas-faq-visual {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    height: 500px;

}


/* =========================================================
   VISUAL GLOW
========================================================= */

.faq-main-glow {

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(247,71,128,.17),
            rgba(98,70,234,.07) 45%,
            transparent 72%
        );

    filter: blur(12px);

    animation:
        faqGlowPulse 4s ease-in-out infinite;

}


@keyframes faqGlowPulse {

    0%,
    100% {

        transform: scale(.85);

        opacity: .65;

    }

    50% {

        transform: scale(1.15);

        opacity: 1;

    }

}


/* =========================================================
   ORBITS
========================================================= */

.faq-visual-orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

}


.faq-orbit-1 {

    width: 350px;
    height: 350px;

    border:
        1px dashed rgba(100,185,202,.35);

    animation:
        faqOrbitRotate 18s linear infinite;

}


.faq-orbit-2 {

    width: 280px;
    height: 280px;

    border:
        1px solid rgba(247,71,128,.18);

    animation:
        faqOrbitRotateReverse 14s linear infinite;

}


@keyframes faqOrbitRotate {

    from {

        transform:
            translate(-50%, -50%)
            rotate(0);

    }

    to {

        transform:
            translate(-50%, -50%)
            rotate(360deg);

    }

}


@keyframes faqOrbitRotateReverse {

    from {

        transform:
            translate(-50%, -50%)
            rotate(360deg);

    }

    to {

        transform:
            translate(-50%, -50%)
            rotate(0);

    }

}


/* =========================================================
   MAIN CIRCLE
========================================================= */

.faq-main-circle {

    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #f8f5ff
        );

    border:
        1px solid rgba(247,71,128,.15);

    box-shadow:
        0 25px 60px rgba(31,19,67,.13),
        inset 0 0 30px rgba(247,71,128,.04);

    animation:
        faqMainFloat 4s ease-in-out infinite;

}


@keyframes faqMainFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-9px);

    }

}


.faq-circle-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin-bottom: 10px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #f74780,
            #6246ea
        );

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 12px 25px rgba(247,71,128,.25);

    animation:
        faqIconPulse 3s ease-in-out infinite;

}


@keyframes faqIconPulse {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

}


.faq-main-circle span {

    color: #999;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.faq-main-circle strong {

    margin-top: 3px;

    color: #1f1343;

    font-size: 19px;

    font-weight: 900;

}


/* =========================================================
   FLOATING ICONS
========================================================= */

.faq-floating-icon {

    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(100,185,202,.25);

    border-radius: 50%;

    background:
        rgba(255,255,255,.95);

    color: #64b9ca;

    font-size: 14px;

    box-shadow:
        0 10px 25px rgba(31,19,67,.10);

    backdrop-filter:
        blur(8px);

    animation:
        faqFloatingIcon 3.5s ease-in-out infinite;

}


.faq-floating-icon::after {

    content: "";

    position: absolute;

    inset: -5px;

    border:
        1px solid rgba(100,185,202,.12);

    border-radius: 50%;

    animation:
        faqIconRing 2.5s infinite;

}


@keyframes faqFloatingIcon {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0);

    }

    50% {

        transform:
            translateY(-9px)
            rotate(5deg);

    }

}


@keyframes faqIconRing {

    0% {

        transform: scale(.85);

        opacity: .8;

    }

    100% {

        transform: scale(1.4);

        opacity: 0;

    }

}


.faq-icon-1 {

    top: 55px;
    left: 65px;

}


.faq-icon-2 {

    top: 100px;
    right: 35px;

    color: #6246ea;

    animation-delay: -.7s;

}


.faq-icon-3 {

    bottom: 105px;
    right: 50px;

    color: #f74780;

    animation-delay: -1.4s;

}


.faq-icon-4 {

    bottom: 55px;
    left: 70px;

    color: #6246ea;

    animation-delay: -2.1s;

}


.faq-icon-5 {

    top: 210px;
    left: 25px;

    color: #64b9ca;

    animation-delay: -2.8s;

}


/* =========================================================
   STATUS CARD
========================================================= */

.faq-status-card {

    position: absolute;

    z-index: 12;

    right: 10px;
    bottom: 70px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 14px;

    border:
        1px solid rgba(31,19,67,.07);

    border-radius: 12px;

    background:
        rgba(255,255,255,.90);

    box-shadow:
        0 12px 25px rgba(31,19,67,.10);

    backdrop-filter:
        blur(10px);

    animation:
        statusFloat 4s ease-in-out infinite;

}


@keyframes statusFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-6px);

    }

}


.faq-status-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #28c76f;

    box-shadow:
        0 0 0 5px rgba(40,199,111,.08);

    animation:
        statusPulse 2s infinite;

}


@keyframes statusPulse {

    50% {

        box-shadow:
            0 0 0 8px rgba(40,199,111,0);

    }

}


.faq-status-card strong {

    display: block;

    color: #1f1343;

    font-size: 10px;

}


.faq-status-card small {

    display: block;

    margin-top: 2px;

    color: #999;

    font-size: 8px;

}


/* =========================================================
   FAQ ACCORDION
========================================================= */

.cpaas-faq-accordion {

    position: relative;

}


.cpaas-faq-item {

    position: relative;

    margin-bottom: 12px;

    overflow: hidden;

    border:
        1px solid rgba(31,19,67,.08);

    border-radius: 14px;

    background:
        rgba(255,255,255,.88);

    box-shadow:
        0 7px 22px rgba(31,19,67,.045);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.cpaas-faq-item:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(247,71,128,.18);

    box-shadow:
        0 14px 30px rgba(31,19,67,.08);

}


.cpaas-faq-item.active {

    border-color:
        rgba(247,71,128,.22);

    box-shadow:
        0 15px 35px rgba(31,19,67,.08);

}


/* =========================================================
   QUESTION
========================================================= */

.cpaas-faq-question {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    padding: 17px 18px;

    border: 0;

    outline: none;

    background: transparent;

    text-align: left;

    cursor: pointer;

}


.faq-question-number {

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 31px;

    width: 31px;
    height: 31px;

    margin-right: 12px;

    border-radius: 9px;

    background:
        rgba(100,185,202,.09);

    color: #f74780;

    font-size: 9px;

    font-weight: 800;

}


.cpaas-faq-item.active
.faq-question-number {

    background:
        rgba(247,71,128,.10);

    color: #f74780;

}


.faq-question-text {

    flex: 1;

    color: #1f2937;

    font-size: 12px;

    font-weight: 750;

    line-height: 1.4;

}


.faq-question-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    background:
        #f7f7fa;

    color: #f74780;

    font-size: 10px;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;

}


.cpaas-faq-question:not(.collapsed)
.faq-question-icon {

    transform:
        rotate(45deg);

    background:
        rgba(247,71,128,.09);

    color: #f74780;

}


/* =========================================================
   ANSWER
========================================================= */

.cpaas-faq-answer {

    padding:
        0 55px 19px 61px;

    color: #777;

    font-size: 12px;

    line-height: 1.75;

}


/* =========================================================
   CTA
========================================================= */

.cpaas-faq-cta {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    max-width: 900px;

    margin: 60px auto 0;

    padding: 22px 25px;

    overflow: hidden;

    border:
        1px solid #1f1343;

    border-radius: 17px;

    background:
        linear-gradient(
            110deg,
            rgba(247,71,128,.045),
            rgba(98,70,234,.045)
        );

}


.cpaas-faq-cta::before {

    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -70px;
    top: -80px;

    border-radius: 50%;

    background:
        rgba(247,71,128,.08);

    filter: blur(20px);

}


.faq-cta-content {

    position: relative;

    z-index: 2;

}


.faq-cta-content span {

    display: block;

    margin-bottom: 4px;

    color: #f74780;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.faq-cta-content h3 {

    margin: 0;

    color: #1f1343;

    font-size: 16px;

    font-weight: 800;

}


.faq-cta-button {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 17px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #f74780,
            #f74780
        );

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 22px rgba(98,70,234,.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.faq-cta-button:hover {

    color: #ffffff !important;

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 30px rgba(98,70,234,.25);

}


.faq-cta-button i {

    transition:
        transform .3s ease;

}


.faq-cta-button:hover i {

    transform:
        translateX(4px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cpaas-faq-section {

        padding: 80px 0;

    }

    .cpaas-faq-heading h2 {

        font-size: 36px;

    }

    .cpaas-faq-visual {

        height: 430px;

        margin-bottom: 20px;

    }

    .faq-orbit-1 {

        width: 320px;
        height: 320px;

    }

    .faq-orbit-2 {

        width: 260px;
        height: 260px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cpaas-faq-section {

        padding: 65px 0;

    }

    .cpaas-faq-heading {

        margin-bottom: 35px;

        padding: 0 10px;

    }

    .cpaas-faq-heading h2 {

        font-size: 30px;

    }

    .cpaas-faq-heading p {

        font-size: 11px;

    }

    .cpaas-faq-visual {

        height: 350px;

        margin-bottom: 10px;

    }

    .faq-main-circle {

        width: 175px;
        height: 175px;

    }

    .faq-circle-icon {

        width: 50px;
        height: 50px;

        border-radius: 16px;

        font-size: 20px;

    }

    .faq-main-circle strong {

        font-size: 16px;

    }

    .faq-orbit-1 {

        width: 290px;
        height: 290px;

    }

    .faq-orbit-2 {

        width: 230px;
        height: 230px;

    }

    .faq-floating-icon {

        width: 37px;
        height: 37px;

        font-size: 11px;

    }

    .faq-icon-1 {

        top: 30px;
        left: 35px;

    }

    .faq-icon-2 {

        top: 65px;
        right: 20px;

    }

    .faq-icon-3 {

        bottom: 70px;
        right: 30px;

    }

    .faq-icon-4 {

        bottom: 30px;
        left: 40px;

    }

    .faq-icon-5 {

        top: 145px;
        left: 10px;

    }

    .faq-status-card {

        right: 5px;
        bottom: 45px;

    }

    .cpaas-faq-question {

        padding: 14px;

    }

    .faq-question-number {

        flex: 0 0 28px;

        width: 28px;
        height: 28px;

        margin-right: 9px;

    }

    .faq-question-text {

        font-size: 11px;

    }

    .faq-question-icon {

        width: 26px;
        height: 26px;

        font-size: 9px;

    }

    .cpaas-faq-answer {

        padding:
            0 15px 17px 51px;

        font-size: 12px;

        line-height: 1.65;

    }

    .cpaas-faq-cta {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 40px;

        padding: 20px;

    }

    .faq-cta-content h3 {

        font-size: 14px;

    }

    .faq-cta-button {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cpaas-faq-section {

        padding: 55px 0;

    }

    .cpaas-faq-heading h2 {

        font-size: 27px;

    }

    .cpaas-faq-visual {

        height: 310px;

    }

    .faq-main-circle {

        width: 155px;
        height: 155px;

    }

    .faq-circle-icon {

        width: 45px;
        height: 45px;

        margin-bottom: 7px;

        font-size: 18px;

    }

    .faq-main-circle span {

        font-size: 7px;

    }

    .faq-main-circle strong {

        font-size: 14px;

    }

    .faq-orbit-1 {

        width: 255px;
        height: 255px;

    }

    .faq-orbit-2 {

        width: 205px;
        height: 205px;

    }

    .faq-status-card {

        padding: 8px 10px;

    }

    .faq-status-card strong {

        font-size: 9px;

    }

    .faq-status-card small {

        font-size: 7px;

    }

    .faq-question-text {

        font-size: 10px;

    }

    .cpaas-faq-answer {

        font-size: 12px;

    }

}

/* =========================================================
   CPAAS INDUSTRIES SECTION
========================================================= */

.cpaas-industries-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(98, 70, 234, .10), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(247, 71, 128, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.cpaas-industry-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(3px);
    animation: industryOrbFloat 8s ease-in-out infinite;
}

.industry-orb-1 {
    width: 280px;
    height: 280px;
    top: 120px;
    left: -150px;
    background: rgba(98, 70, 234, .10);
}

.industry-orb-2 {
    width: 330px;
    height: 330px;
    right: -170px;
    bottom: 80px;
    background: rgba(247, 71, 128, .09);
    animation-delay: -4s;
}


/* =========================================================
   GRID BACKGROUND
========================================================= */

.cpaas-industry-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(98, 70, 234, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(98, 70, 234, .035) 1px, transparent 1px);

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.cpaas-industries-heading {
    position: relative;
    z-index: 2;

    max-width: 780px;
    margin: 0 auto 60px;

    text-align: center;
}

.cpaas-industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    border: 1px solid rgba(98, 70, 234, .16);
    border-radius: 50px;

    background: rgba(255, 255, 255, .75);

    color: #1f1343;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;

    box-shadow: 0 10px 30px rgba(98, 70, 234, .08);

    animation: industryBadgeFloat 3s ease-in-out infinite;
}

.industry-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f74780;
    box-shadow:
        0 0 0 5px rgba(247, 71, 128, .10),
        0 0 15px rgba(247, 71, 128, .45);
    animation: industryDotPulse 1.8s ease-in-out infinite;
}

.cpaas-industries-heading h2 {
    margin: 20px 0 15px;

    color: #1f1343;

    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.cpaas-industries-heading h2 span {
    display: inline-block;

    background: linear-gradient(
        90deg,
#c72d49,
      #1f1343,
#f74780

    );

    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: industryGradient 4s linear infinite;
}

.cpaas-industries-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #6f6a80;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.cpaas-industries-grid {
    position: relative;
    z-index: 3;
}


/* =========================================================
   INDUSTRY CARD
========================================================= */

.cpaas-industry-card {
    position: relative;

    min-height: 315px;

    padding: 30px 26px;

    overflow: hidden;

    border: 1px solid rgba(98, 70, 234, .10);
    border-radius: 24px;

    background: rgba(255, 255, 255, .88);

    box-shadow:
        0 15px 45px rgba(31, 19, 67, .06);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

    isolation: isolate;
}

.cpaas-industry-card:hover {
    transform: translateY(-12px);

    border-color: rgba(98, 70, 234, .28);

    box-shadow:
        0 25px 60px rgba(98, 70, 234, .13);
}


/* =========================================================
   CARD GLOW
========================================================= */

.industry-card-glow {
    position: absolute;

    width: 150px;
    height: 150px;

    top: -80px;
    right: -70px;

    border-radius: 50%;

    background: rgba(98, 70, 234, .14);

    filter: blur(25px);

    transition: .5s ease;

    z-index: -1;
}

.cpaas-industry-card:hover .industry-card-glow {
    transform: scale(2);
    background: rgba(247, 71, 128, .16);
}


/* =========================================================
   ICON
========================================================= */

.industry-icon-wrap {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            rgba(98, 70, 234, .12),
            rgba(247, 71, 128, .10)
        );

    color: #c72d49;

    font-size: 22px;

    box-shadow:
        inset 0 0 0 1px rgba(98, 70, 234, .08);

    transition: .45s ease;
}

.industry-icon-wrap::before {
    content: "";

    position: absolute;
    inset: -5px;

    border: 1px solid rgba(98, 70, 234, .15);

    border-radius: 20px;

    opacity: 0;

    transform: scale(.8);

    transition: .45s ease;
}

.cpaas-industry-card:hover .industry-icon-wrap {
    transform: rotate(-5deg) scale(1.08);

    background:
        linear-gradient(
            135deg,
            #f74780
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(98, 70, 234, .25);
}

.cpaas-industry-card:hover .industry-icon-wrap::before {
    opacity: 1;
    transform: scale(1.1);
}


/* =========================================================
   CARD NUMBER
========================================================= */

.industry-card-number {
    position: absolute;

    top: 25px;
    right: 24px;

    color: rgba(98, 70, 234, .10);

    font-size: 36px;
    font-weight: 900;

    line-height: 1;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.cpaas-industry-card h3 {
    margin: 0 0 10px;

    color: #1f1343;

    font-size: 18px;
    font-weight: 800;

    transition: .3s ease;
}

.cpaas-industry-card:hover h3 {
    color: #c72d49;
}

.cpaas-industry-card p {
    min-height: 70px;

    margin: 0 0 20px;

    color: #777287;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   TAGS
========================================================= */

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.industry-tags span {
    padding: 5px 9px;

    border-radius: 20px;

    background: #f6f3ff;

    color: #1f1343;

    font-size: 9px;
    font-weight: 700;

    transition: .3s ease;
}

.cpaas-industry-card:hover .industry-tags span {
    background: rgba(98, 70, 234, .10);
}


/* =========================================================
   ARROW
========================================================= */

.industry-arrow a{
    position: absolute;

    right: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #f7f4ff !important;

    color: #1f1343 !important;

    font-size: 11px;

    transition: .4s ease;
}

.cpaas-industry-card:hover .industry-arrow a{
    transform: translateX(5px);

    background: #f74780 !important;

    color: #ffffff !important;

    box-shadow:
        0 8px 20px rgba(98, 70, 234, .25);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.cpaas-industries-bottom {
    position: relative;
    z-index: 3;

    margin-top: 70px;
}

.industries-bottom-line {
    width: 100%;
    height: 1px;

    margin-bottom: 28px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(98, 70, 234, .18),
            transparent
        );
}

.industries-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 32px;

    border: 1px solid rgba(98, 70, 234, .10);
    border-radius: 22px;

    background: rgba(255, 255, 255, .75);

    box-shadow:
        0 15px 45px rgba(31, 19, 67, .05);
}

.industries-bottom-content span {
    display: block;

    margin-bottom: 7px;

    color: #f74780;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.industries-bottom-content h3 {
    margin: 0;

    color: #1f1343;

    font-size: 20px;
    font-weight: 800;
}

.industries-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    padding: 13px 22px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            
            #f74780
        );

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 11px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(98, 70, 234, .22);

    transition: .4s ease;
}

.industries-cta-btn:hover {
    transform: translateY(-4px);
    color: #fff !important;

    box-shadow:
        0 18px 40px rgba(98, 70, 234, .30);
}

.industries-cta-btn i {
    transition: .3s ease;
}

.industries-cta-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes industryOrbFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(25px, -30px, 0);
    }
}

@keyframes industryBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes industryDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .65;
    }
}

@keyframes industryGradient {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .cpaas-industries-section {
        padding: 90px 0;
    }

    .cpaas-industry-card {
        min-height: 300px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cpaas-industries-section {
        padding: 80px 0;
    }

    .cpaas-industries-heading {
        margin-bottom: 45px;
    }

    .cpaas-industries-heading h2 {
        font-size: 38px;
    }

    .cpaas-industry-card {
        min-height: 295px;
    }

    .industries-bottom-content {
        padding: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cpaas-industries-section {
        padding: 65px 0;
    }

    .cpaas-industries-heading {
        padding: 0 12px;
        margin-bottom: 35px;
    }

    .cpaas-industries-heading h2 {
        font-size: 31px;
        letter-spacing: -.8px;
    }

    .cpaas-industries-heading p {
        font-size: 12px;
    }

    .cpaas-industry-card {
        min-height: auto;
        padding: 25px 22px;
        border-radius: 20px;
    }

    .cpaas-industry-card p {
        min-height: auto;
    }

    .industries-bottom-content {
        flex-direction: column;
        align-items: flex-start;

        padding: 24px 20px;
    }

    .industries-bottom-content h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .industries-cta-btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cpaas-industries-section {
        padding: 55px 0;
    }

    .cpaas-industries-heading h2 {
        font-size: 27px;
    }

    .cpaas-industry-badge {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .cpaas-industry-card {
        padding: 23px 20px;
    }

    .industry-icon-wrap {
        width: 52px;
        height: 52px;
        font-size: 19px;
    }

    .cpaas-industry-card h3 {
        font-size: 16px;
    }

    .cpaas-industry-card p {
        font-size: 11px;
    }

    .industry-card-number {
        font-size: 30px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {

    .cpaas-industries-heading h2 {
        font-size: 24px;
    }

    .cpaas-industry-card {
        padding: 20px 17px;
    }

    .industries-bottom-content h3 {
        font-size: 16px;
    }

}