.panaflex-process-grid {
    display: grid;
    gap: 30px;
}

.panaflex-process-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panaflex-process-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.panaflex-process-icon-wrap {
    line-height: 1;
}

.panaflex-process-icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.panaflex-process-item:hover .panaflex-process-icon-bg {
    background-color: var(--brand-color);
}

.panaflex-process-item:hover .panaflex-process-icon {
    color: #fff;
    fill: #fff;
}

.panaflex-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s ease;
}

.panaflex-process-icon svg {
    fill: currentColor;
    transition: fill 0.3s ease;
}

.panaflex-process-heading {
    margin: 0;
    line-height: 1.3;
}

.panaflex-process-text {
    margin: 8px 0 0 0;
    line-height: 1.5;
}

.panaflex-process-text:empty {
    display: none;
}

.panaflex-process-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.panaflex-process-rating-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.panaflex-process-star {
    line-height: 1;
}
