/* =========================================================
   TELEMARKETING & SALES
========================================================= */

.ts-intro,
.ts-capabilities,
.ts-journey,
.ts-technology,
.ts-final-cta {
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.ts-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #7146e8;

    font-size: 13px;

     font-weight: 700;

    letter-spacing: 2px;

}


.ts-section-label span {

    width: 34px;

    height: 3px;

    border-radius: 20px;

    background: currentColor;

}


.ts-title {

    max-width: 720px;

    margin: 16px 0 22px;

    color: #191d25;

    font-size: clamp(38px, 4.2vw, 58px);

    line-height: 1.08;

     font-weight: 700;

    letter-spacing: -1px;

}


.ts-title span {

    color: #0d6efd;

}


.ts-text {

    max-width: 680px;

    color: #697582;

    font-size: 17px;

    line-height: 1.75;

}


/* =========================================================
   INTRO
========================================================= */

.ts-intro {

    background: #fff;

}


.ts-highlight-row {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;

}


.ts-highlight {

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 220px;

    padding: 13px 15px;

    border: 1px solid #e8e3f8;

    border-radius: 13px;

    background: #fbfaff;

}


.ts-highlight > i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #eee8ff;

    color: #7146e8;

}


.ts-highlight strong {

    display: block;

    color: #30353e;

    font-size: 13px;

}


.ts-highlight span {

    display: block;

    margin-top: 3px;

    color: #89929d;

    font-size: 11px;

}


/* =========================================================
   SALES VISUAL
========================================================= */

.ts-sales-visual {

    position: relative;

    min-height: 500px;

}


.ts-visual-main {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #f1ecff,
            #faf8ff
        );

}


.ts-visual-glow {

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(113,70,232,.12);

    filter: blur(25px);

    animation: tsGlow 4s ease-in-out infinite;

}


@keyframes tsGlow {

    0%,
    100% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1.15);
    }

}


/* =========================================================
   CALL WINDOW
========================================================= */

.ts-call-window {

    position: relative;

    z-index: 3;

    width: 390px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 22px;

    background: rgba(255,255,255,.92);

    box-shadow:
        0 30px 70px rgba(70,50,120,.14);

    animation:
        tsFloat 5s ease-in-out infinite;

}


@keyframes tsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


.ts-call-header {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 17px 20px;

    border-bottom: 1px solid #eeeaf6;

    color: #444955;

    font-size: 13px;

    font-weight: 700;

}


.ts-call-header i {

    margin-left: auto;

    color: #a3a8b0;

}


.ts-online-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #32b768;

    box-shadow:
        0 0 0 5px rgba(50,183,104,.1);

}


.ts-call-body {

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 45px 20px 30px;

}


.ts-avatar {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #7146e8,
            #a060ee
        );

    color: #fff;

    font-size: 26px;

    box-shadow:
        0 12px 30px rgba(113,70,232,.22);

}


.ts-wave {

    display: flex;

    align-items: center;

    gap: 5px;

    height: 45px;

    margin: 22px 0 12px;

}


.ts-wave span {

    width: 4px;

    height: 15px;

    border-radius: 5px;

    background: #8b63e8;

    animation:
        tsWave .9s ease-in-out infinite;

}


.ts-wave span:nth-child(2) {
    animation-delay: .1s;
}

.ts-wave span:nth-child(3) {
    animation-delay: .2s;
}

.ts-wave span:nth-child(4) {
    animation-delay: .3s;
}

.ts-wave span:nth-child(5) {
    animation-delay: .4s;
}

.ts-wave span:nth-child(6) {
    animation-delay: .3s;
}

.ts-wave span:nth-child(7) {
    animation-delay: .2s;
}

.ts-wave span:nth-child(8) {
    animation-delay: .1s;
}


@keyframes tsWave {

    0%,
    100% {
        height: 12px;
    }

    50% {
        height: 36px;
    }

}


.ts-call-body small {

    color: #9299a3;

    font-size: 11px;

}


.ts-call-actions {

    display: flex;

    justify-content: center;

    gap: 18px;

    padding: 18px;

    background: #faf9fd;

}


.ts-call-actions span {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eeeef3;

    color: #747b86;

    font-size: 13px;

}


.ts-call-actions span.active {

    background: #7146e8;

    color: #fff;

    box-shadow:
        0 8px 18px rgba(113,70,232,.25);

}


/* =========================================================
   CONVERSION CARD
========================================================= */

.ts-conversion-card {

    position: absolute;

    z-index: 5;

    right: 25px;

    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 230px;

    padding: 13px;

    border: 1px solid #eeeaf8;

    border-radius: 14px;

    background: rgba(255,255,255,.95);

    box-shadow:
        0 18px 35px rgba(60,40,100,.12);

}


.ts-conversion-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #edf9f2;

    color: #2da562;

}


.ts-conversion-card span {

    display: block;

    color: #9a9fa7;

    font-size: 8px;

     font-weight: 700;

    letter-spacing: 1px;

}


.ts-conversion-card strong {

    display: block;

    margin-top: 3px;

    color: #363a42;

    font-size: 12px;

}


.ts-up {

    margin-left: auto;

    color: #2da562;

}


/* =========================================================
   FLOATING BADGE
========================================================= */

.ts-floating-badge {

    position: absolute;

    z-index: 6;

    top: 65px;

    left: 35px;

    padding: 10px 14px;

    border: 1px solid #e3dbf8;

    border-radius: 30px;

    background: rgba(255,255,255,.92);

    color: #7146e8;

    font-size: 11px;

     font-weight: 700;

    box-shadow:
        0 12px 25px rgba(50,40,90,.08);

    animation:
        tsBadge 3.5s ease-in-out infinite;

}


.ts-floating-badge i {

    margin-right: 5px;

    color: #36a96a;

}


@keyframes tsBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   DOTS
========================================================= */

.ts-visual-dots {

    position: absolute;

    right: -10px;

    top: 15px;

    width: 90px;

    height: 90px;

    background-image:
        radial-gradient(
            #7146e8 1.5px,
            transparent 1.5px
        );

    background-size: 13px 13px;

    opacity: .25;

}


/* =========================================================
   CAPABILITIES
========================================================= */

.ts-capabilities {

    background: #f8f9fc;

}


.ts-heading > p {

    max-width: 700px;

    margin: auto;

    color: #78838e;

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
   SERVICE CARDS
========================================================= */

.ts-service-card {

    position: relative;

    height: 100%;

    min-height: 300px;

    padding: 28px;

    overflow: hidden;

    border: 1px solid #e1e5eb;

    border-radius: 20px;

    background: #fff;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.ts-service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #7146e8,
            #a66af1
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .4s ease;

}


.ts-service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(113,70,232,.18);

    box-shadow:
        0 22px 50px rgba(35,45,80,.09);

}


.ts-service-card:hover::before {

    transform: scaleX(1);

}


.ts-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}


.ts-card-top > span {

    color: #c5c9d1;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;

}


.ts-card-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: #f0ebff;

    color: #7146e8;

    font-size: 21px;

    transition: all .35s ease;

}


.ts-service-card:hover
.ts-card-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7146e8,
            #9c5de5
        );

    transform:
        rotate(-6deg)
        scale(1.08);

}


.ts-service-card h3 {

    margin-bottom: 12px;

    color: #22272f;

    font-size: 21px;

     font-weight: 700;

}


.ts-service-card p {

    margin: 0;

    color: #78828e;

    font-size: 15px;

    line-height: 1.65;

}


.ts-card-tag {

    position: absolute;

    right: 25px;

    bottom: 22px;

    color: #b2a7cf;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   JOURNEY
========================================================= */

.ts-journey {

    background: #fff;

}


.ts-main-btn {

    margin-top: 10px;

    padding: 13px 22px;

    border-radius: 9px;

    font-weight: 700;

    transition: all .3s ease;

}


.ts-main-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(13,110,253,.18);

}


.ts-journey-wrapper {

    position: relative;

    padding: 10px 0;

}


.ts-journey-line {

    position: absolute;

    top: 35px;

    bottom: 35px;

    left: 44px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            #7146e8,
            #ded4f7
        );

}


.ts-journey-step {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;

}


.ts-journey-step:last-child {

    margin-bottom: 0;

}


.ts-step-number {

    position: relative;

    z-index: 3;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #fff;

    color: #7146e8;

    border: 2px solid #ded5f7;

    font-size: 9px;

    font-weight: 900;

}


.ts-step-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 17px;

    background: #f3efff;

    color: #7146e8;

    font-size: 20px;

    transition: all .35s ease;

}


.ts-journey-step:hover
.ts-step-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7146e8,
            #9c5de5
        );

    transform: translateX(5px);

}


.ts-journey-step strong {

    display: block;

    color: #292e36;

    font-size: 18px;

     font-weight: 700;

}


.ts-journey-step span {

    display: block;

    margin-top: 3px;

    color: #89929d;

    font-size: 13px;

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.ts-technology {

    background: #f8f9fc;

}


.ts-tech-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px 25px;

    margin-top: 28px;

}


.ts-tech-list div {

    color: #59636f;

    font-size: 14px;

}


.ts-tech-list i {

    margin-right: 8px;

    color: #7146e8;

}


.ts-tech-card {

    position: relative;

    min-height: 420px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 35px;

    overflow: hidden;

    text-align: center;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #24154d,
            #5734a5
        );

    color: #fff;

}


.ts-tech-circle {

    position: absolute;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    animation:
        tsRotate 20s linear infinite;

}


.circle-a {

    width: 300px;

    height: 300px;

}


.circle-b {

    width: 470px;

    height: 470px;

    animation-direction: reverse;

    animation-duration: 28s;

}


@keyframes tsRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


.ts-tech-icon {

    position: relative;

    z-index: 2;

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 20px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.15);

    font-size: 28px;

}


.ts-tech-card > span {

    position: relative;

    z-index: 2;

    color: rgba(255,255,255,.55);

    font-size: 10px;

     font-weight: 700;

    letter-spacing: 2px;

}


.ts-tech-card h3 {

    position: relative;

    z-index: 2;

    margin: 15px 0;

    font-size: 29px;

    line-height: 1.25;

     font-weight: 700;

}


.ts-tech-card p {

    position: relative;

    z-index: 2;

    max-width: 340px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   FINAL CTA
========================================================= */

.ts-final-cta {

    background: #fff;

}


.ts-final-box {

    position: relative;

    overflow: hidden;

    padding: 75px 25px;

    text-align: center;

    border: 1px solid #e5ddf7;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #f0ebff,
            #faf7ff
        );

}


.ts-final-content {

    position: relative;

    z-index: 3;

}


.ts-final-content h2 {

    max-width: 850px;

    margin: 18px auto;

    color: #191d25;

    font-size: clamp(38px,4.5vw,58px);

    line-height: 1.08;

     font-weight: 700;

}


.ts-final-content h2 span {

    color: #0d6efd;

}


.ts-final-content p {

    max-width: 700px;

    margin: auto;

    color: #717c88;

    font-size: 18px;

    line-height: 1.7;

}


.ts-final-btn {

    margin-top: 28px;

    padding: 14px 25px;

    border-radius: 9px;

    font-weight: 700;

    transition: all .3s ease;

}


.ts-final-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(13,110,253,.18);

}


/* =========================================================
   CTA ORBITS
========================================================= */

.ts-final-orbit {

    position: absolute;

    border: 1px solid rgba(113,70,232,.12);

    border-radius: 50%;

    animation:
        tsOrbit 20s linear infinite;

}


.orbit-a {

    width: 400px;

    height: 400px;

    top: -260px;

    left: -100px;

}


.orbit-b {

    width: 500px;

    height: 500px;

    right: -180px;

    bottom: -350px;

    animation-direction: reverse;

}


@keyframes tsOrbit {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .ts-content {
        padding-left: 0;
    }

    .ts-sales-visual {
        margin-top: 20px;
    }

}


@media (max-width: 767.98px) {

    .ts-title {
        font-size: 40px;
    }

    .ts-text {
        font-size: 16px;
    }

    .ts-visual-main {
        min-height: 450px;
    }

    .ts-call-window {
        width: 75%;
    }

    .ts-conversion-card {
        right: 15px;
        bottom: 35px;
    }

    .ts-floating-badge {
        left: 15px;
        top: 35px;
    }

    .ts-tech-list {
        grid-template-columns: 1fr;
    }

    .ts-tech-card {
        min-height: 380px;
    }

}


@media (max-width: 575.98px) {

    .ts-title {
        font-size: 35px;
    }

    .ts-highlight-row {
        flex-direction: column;
    }

    .ts-highlight {
        width: 100%;
    }

    .ts-sales-visual {
        min-height: 400px;
    }

    .ts-visual-main {
        min-height: 400px;
    }

    .ts-call-window {
        width: 82%;
    }

    .ts-call-body {
        padding: 30px 15px 20px;
    }

    .ts-conversion-card {
        min-width: 190px;
        transform: scale(.9);
        transform-origin: right bottom;
    }

    .ts-journey-line {
        left: 34px;
    }

    .ts-step-icon {
        width: 52px;
        height: 52px;
    }

    .ts-journey-step strong {
        font-size: 16px;
    }

    .ts-final-box {
        padding: 55px 18px;
    }

    .ts-final-content h2 {
        font-size: 35px;
    }

}