.pulse-ts-section {
    position: relative;
    overflow: hidden;
    background: #f8f5fb;
}

.pulse-ts-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(102, 32, 161, 0.12), transparent 65%);
    top: -120px;
    left: -120px;
    pointer-events: none;
}

.pulse-ts-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(22, 7, 34, 0.08), transparent 65%);
    right: -160px;
    bottom: -160px;
    pointer-events: none;
}

.pulse-ts-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.pulse-ts-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.pulse-ts-small-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.pulse-ts-small-line {
    width: 55px;
    height: 2px;
    background: #6620a1;
    display: inline-block;
}

.pulse-ts-small-title {
    font-size: 15px;
    font-weight: 700;
    color: #160722;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.pulse-ts-heading {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #160722;
}

.pulse-ts-description {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
}

.pulse-ts-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 0 18px;
}

.pulse-ts-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
    will-change: transform;
    align-items: stretch;
}

.pulse-ts-card {
    position: relative;
    flex: 0 0 calc(25% - 18px);
    background: #ffffff;
    border-radius: 26px;
    padding: 34px 28px 30px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(22, 7, 34, 0.035);
    transition: all 0.3s ease;
    min-height: 410px;
    border: 1px solid rgba(102, 32, 161, 0.04);
}

.pulse-ts-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #6620a1;
}

.pulse-ts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(102, 32, 161, 0.08);
}

.pulse-ts-image {
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 4px solid #6620a1;
    padding: 4px;
    overflow: hidden;
    background: #ffffff;
}

.pulse-ts-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

.pulse-ts-quote {
    font-size: 56px;
    line-height: 1;
    color: #6620a1;
    font-weight: 800;
    margin-bottom: -12px;
}

.pulse-ts-text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #160722;
}

.pulse-ts-stars {
    color: #6620a1;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.pulse-ts-name {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    color: #6620a1;
}

.pulse-ts-position {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #160722;
    opacity: 0.78;
}

/* Slider Dots */
.pulse-ts-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
}

.pulse-ts-dot,
.pulse-ts-dot[type="button"],
button.pulse-ts-dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 50% !important;
    background: rgba(102, 32, 161, 0.28) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.pulse-ts-dot.active,
.pulse-ts-dot[type="button"].active,
button.pulse-ts-dot.active {
    width: 28px !important;
    max-width: 28px !important;
    min-width: 28px !important;
    height: 10px !important;
    border-radius: 30px !important;
    background: #6620a1 !important;
}

.pulse-ts-dot:hover,
.pulse-ts-dot:focus,
.pulse-ts-dot:active,
button.pulse-ts-dot:hover,
button.pulse-ts-dot:focus,
button.pulse-ts-dot:active {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: #6620a1 !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .pulse-ts-card {
        flex: 0 0 calc(50% - 12px);
    }

    .pulse-ts-heading {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .pulse-ts-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 32px 24px;
    }

    .pulse-ts-heading {
        font-size: 30px;
    }

    .pulse-ts-description {
        font-size: 16px;
    }

    .pulse-ts-small-wrap {
        gap: 10px;
    }

    .pulse-ts-small-line {
        width: 36px;
    }
}