.ps-wrapper-c6803976 {
    font-family: sans-serif;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ps-header {
    text-align: center;
    margin-bottom: 40px;
}

.ps-header-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.ps-header-icon svg {
    width: 40px;
    height: 40px;
}

.ps-header-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111;
}

.ps-header-desc {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.ps-clients-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ps-client-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.ps-client-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.ps-client-row {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.ps-client-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ps-avatar-initials {
    font-size: 24px;
    font-weight: 700;
    color: #6b7280;
}

.ps-client-info {
    flex-grow: 1;
    min-width: 250px;
}

.ps-client-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #111;
}

.ps-client-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 10px;
}

.ps-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ps-tag {
    background: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.ps-client-action {
    flex-shrink: 0;
}

.ps-btn {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ps-btn:hover {
    opacity: 0.9;
}

.ps-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
    border-top: 1px solid transparent;
}

.ps-client-item.is-active .ps-accordion-content {
    border-top-color: #e5e7eb;
}

.ps-accordion-inner {
    padding: 30px 20px;
}

.ps-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.ps-accordion-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #111;
}

.ps-mt {
    margin-top: 30px;
}

.ps-detail-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.ps-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.ps-metric-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.ps-client-item.is-active .ps-metric-card {
    transform: translateY(0);
    opacity: 1;
}

.ps-metric-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ps-metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.ps-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.ps-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.ps-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ps-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .ps-client-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .ps-client-action {
        width: 100%;
    }
    .ps-btn {
        width: 100%;
    }
}